:root {
  color-scheme: dark;
  --ink: #07101f;
  --ink-soft: #0c1729;
  --paper: #f3f0e8;
  --paper-soft: #d8d4ca;
  --line: rgba(255, 255, 255, 0.16);
  --blue: #087cff;
  --cyan: #27f0ed;
  --green: #17b75a;
  --orange: #ef8700;
  --violet: #6959f7;
  --max: 1200px;
  --radius: 28px;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
  font-synthesis: none;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--ink);
  color: white;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
p { margin: 0; }

.shell {
  width: min(calc(100% - 48px), var(--max));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  border-radius: 999px;
  background: white;
  color: var(--ink);
  transform: translateY(-150%);
}

.skip-link:focus { transform: translateY(0); }

:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 4px;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 14px;
  width: 100%;
}

.nav {
  position: relative;
  display: flex;
  min-height: 68px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  overflow: hidden;
  padding: 8px 10px 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 24px;
  background: rgba(10, 20, 36, 0.78);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(26px) saturate(180%);
  -webkit-backdrop-filter: blur(26px) saturate(180%);
}

.nav::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 16% -80%, rgba(255,255,255,.34), transparent 42%),
    linear-gradient(115deg, rgba(255,255,255,.10), transparent 34%, rgba(39,240,237,.08));
  content: "";
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 1.05rem;
  font-weight: 750;
  letter-spacing: -0.02em;
}

.brand img {
  border-radius: 23%;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.3);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
}

.nav-links a, .footer-links a, .text-link { transition: color 160ms ease; }
.nav-links a:hover, .footer-links a:hover, .text-link:hover { color: var(--cyan); }

.nav-cta {
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
}

.privacy-nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.language-switcher {
  display: flex;
  padding: 3px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px;
  background: rgba(3,10,20,.28);
}

.language-switcher a {
  display: grid;
  width: 35px;
  height: 32px;
  place-items: center;
  border-radius: 999px;
  color: rgba(255,255,255,.6);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .04em;
  transition: background 160ms ease, color 160ms ease;
}

.language-switcher a:hover { color: white; }
.language-switcher a[aria-current="page"] { background: rgba(255,255,255,.18); color: white; box-shadow: inset 0 1px 0 rgba(255,255,255,.16); }

.hero {
  position: relative;
  overflow: hidden;
  min-height: 920px;
  padding-top: 96px;
  background-color: var(--ink);
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 64px 64px;
}

.hero::after {
  position: absolute;
  right: -12vw;
  bottom: -34vw;
  width: 70vw;
  aspect-ratio: 1;
  border: 1px solid rgba(39, 240, 237, 0.18);
  border-radius: 50%;
  box-shadow: 0 0 0 9vw rgba(39, 240, 237, 0.025), 0 0 0 18vw rgba(39, 240, 237, 0.018);
  content: "";
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(440px, 0.88fr);
  gap: 54px;
  align-items: center;
  min-height: 828px;
}

.hero-copy {
  padding: 80px 0 100px;
  animation: hero-copy 700ms cubic-bezier(.2,.8,.2,1) both;
}

.eyebrow, .section-number {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--cyan);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 26px;
  height: 2px;
  background: currentColor;
}

.hero h1, .intro h2, .feature-copy h2, .privacy h2, .questions h2, .download h2 {
  margin: 0;
  font-family: ui-rounded, "SF Pro Rounded", "Arial Rounded MT Bold", -apple-system, sans-serif;
  font-weight: 800;
  letter-spacing: -0.065em;
  text-wrap: balance;
}

.hero h1 {
  max-width: 750px;
  margin-top: 28px;
  font-size: clamp(4.2rem, 7vw, 7.4rem);
  line-height: 0.91;
}

h1 em, h2 em {
  color: var(--cyan);
  font-style: normal;
}

.hero-lede {
  max-width: 660px;
  margin-top: 32px;
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 0 22px;
  border-radius: 14px;
  font-weight: 750;
}

.button-primary {
  background: var(--cyan);
  color: #001917;
  box-shadow: 0 16px 42px rgba(39, 240, 237, 0.14);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.button-primary:hover { transform: translateY(-2px); box-shadow: 0 20px 52px rgba(39, 240, 237, 0.24); }
.availability { color: rgba(255, 255, 255, 0.5); font-size: 0.88rem; }

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 650px;
  margin: 52px 0 0;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.hero-facts div { display: grid; gap: 6px; padding-right: 16px; }
.hero-facts dt { color: rgba(255,255,255,.42); font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; }
.hero-facts dd { margin: 0; font-size: .92rem; font-weight: 700; }

.hero-stage {
  position: relative;
  min-height: 790px;
  margin: 0;
  animation: hero-stage 850ms 100ms cubic-bezier(.2,.8,.2,1) both;
}

.hero-stage figcaption {
  position: absolute;
  right: 4px;
  bottom: 32px;
  width: 210px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.72rem;
  line-height: 1.5;
}

.sheet {
  position: absolute;
  top: 165px;
  left: 50%;
  width: 330px;
  height: 495px;
  border-radius: 44px;
  transform-origin: 50% 100%;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.28), 0 35px 80px rgba(0,0,0,.25);
}

.sheet-orange { background: #d86c00; transform: translateX(-61%) rotate(-13deg); }
.sheet-green { background: #079542; transform: translateX(-46%) rotate(-4deg); }
.sheet-blue { background: #075edb; transform: translateX(-30%) rotate(7deg); }

.phone {
  position: relative;
  z-index: 3;
  overflow: hidden;
  aspect-ratio: 920 / 2000;
  padding: 7px;
  border: 2px solid #303742;
  border-radius: 58px;
  background: #050607;
  box-shadow: 0 42px 100px rgba(0, 0, 0, 0.58), inset 0 0 0 2px #0c0e11;
}

.phone img {
  width: 100%;
  height: 100%;
  border-radius: 50px;
  object-fit: cover;
}

.phone-hero {
  position: absolute;
  top: 42px;
  left: 50%;
  width: 356px;
  transform: translateX(-41%) rotate(1.5deg);
}

.orbit-note {
  position: absolute;
  z-index: 5;
  display: grid;
  min-width: 126px;
  gap: 3px;
  padding: 13px 16px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 16px;
  background: rgba(8, 17, 31, 0.86);
  box-shadow: 0 18px 40px rgba(0,0,0,.28);
  backdrop-filter: blur(16px);
}

.orbit-note b { font-size: 1.2rem; }
.orbit-note span { color: rgba(255,255,255,.52); font-size: .67rem; text-transform: uppercase; letter-spacing: .06em; }
.note-downloads { top: 205px; left: -20px; }
.note-downloads b { color: var(--blue); }
.note-change { right: -28px; bottom: 204px; }
.note-change b { color: #45dc72; }

.signal-strip {
  overflow: hidden;
  border-block: 1px solid rgba(255,255,255,.13);
  background: #091526;
}

.signal-track {
  display: flex;
  width: max-content;
  min-width: 100%;
  align-items: center;
  justify-content: space-around;
  gap: 30px;
  padding: 20px 24px;
  color: rgba(255,255,255,.56);
  font-size: .72rem;
  font-weight: 750;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.signal-track i { width: 5px; height: 5px; border-radius: 50%; background: var(--cyan); }
.section { padding-block: 130px; }
.section-number { margin-bottom: 36px; }

.intro {
  position: relative;
  overflow: hidden;
  color: var(--ink);
  background: var(--paper);
}

.intro::after {
  position: absolute;
  right: -120px;
  bottom: -210px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(7, 94, 219, .16);
  border-radius: 50%;
  box-shadow: 0 0 0 60px rgba(7,94,219,.035), 0 0 0 120px rgba(7,94,219,.025);
  content: "";
}

.intro-inner {
  position: relative;
  z-index: 1;
  padding-block: 104px 112px;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 96px;
  align-items: start;
}

.intro h2 {
  max-width: 680px;
  font-size: clamp(3.4rem, 6.2vw, 6.5rem);
  line-height: .94;
}

.intro h2 em { color: #075edb; }
.intro-copy { padding-top: 24px; border-top: 2px solid var(--ink); }
.section-lede { font-size: clamp(1.25rem, 2vw, 1.6rem); line-height: 1.45; letter-spacing: -.02em; }
.fine-print { margin-top: 24px; color: #5b5c60; line-height: 1.65; }

.feature-section {
  display: grid;
  grid-template-columns: minmax(360px, .9fr) minmax(0, 1fr);
  gap: clamp(60px, 9vw, 130px);
  align-items: center;
}

.feature-reverse .feature-visual { order: 2; }
.feature-reverse .feature-copy { order: 1; }

.feature-visual {
  position: relative;
  display: grid;
  min-height: 760px;
  place-items: center;
  overflow: hidden;
  border-radius: var(--radius);
  isolation: isolate;
}

.feature-visual::before, .feature-visual::after {
  position: absolute;
  border-radius: 36px;
  content: "";
}

.feature-visual::before {
  inset: 13% 8% 5% 22%;
  z-index: -2;
  background: rgba(0, 0, 0, .22);
  transform: rotate(9deg);
}

.feature-visual::after {
  inset: 4% 26% 12% 8%;
  z-index: -1;
  border: 1px solid rgba(255,255,255,.28);
  transform: rotate(-7deg);
}

.feature-visual-blue { background: #075edb; }
.feature-visual-green { background: #079542; }
.feature-visual-orange { background: #d86c00; }

.visual-index {
  position: absolute;
  top: 18px;
  left: 24px;
  color: rgba(255,255,255,.32);
  font-family: ui-rounded, sans-serif;
  font-size: 5.5rem;
  font-weight: 900;
  letter-spacing: -.08em;
}

.phone-feature { width: 318px; transform: rotate(1.5deg); }
.feature-visual-green .phone-feature { transform: rotate(-1.5deg); }

.feature-copy h2 {
  max-width: 650px;
  margin-top: 18px;
  font-size: clamp(3.2rem, 5vw, 5.2rem);
  line-height: .97;
}

.feature-copy > p:not(.eyebrow) {
  max-width: 610px;
  margin-top: 28px;
  color: rgba(255,255,255,.65);
  font-size: 1.15rem;
  line-height: 1.7;
}

.eyebrow-blue { color: #4aa4ff; }
.eyebrow-green { color: #48db81; }
.eyebrow-orange { color: #ffa027; }

.check-list {
  display: grid;
  max-width: 600px;
  gap: 0;
  margin: 36px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 17px 0 17px 34px;
  border-bottom: 1px solid var(--line);
  color: rgba(255,255,255,.82);
}

.check-list li::before {
  position: absolute;
  top: 17px;
  left: 2px;
  color: var(--cyan);
  content: "↗";
}

.privacy {
  color: var(--ink);
  background: var(--paper);
}

.privacy-grid {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 90px;
  align-items: end;
}

.privacy h2 {
  max-width: 770px;
  font-size: clamp(3.25rem, 5.5vw, 6rem);
  line-height: .96;
}

.privacy-copy > p { color: #4c4d51; font-size: 1.12rem; line-height: 1.7; }
.text-link { display: inline-block; margin-top: 24px; color: #075edb; font-weight: 750; }

.privacy-flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 24px;
  align-items: center;
  margin-top: 84px;
  padding-block: 28px;
  border-block: 1px solid rgba(7, 16, 31, .18);
}

.flow-node { display: grid; grid-template-columns: 52px 1fr; align-items: center; column-gap: 14px; }
.flow-node b { align-self: end; }
.flow-node small { grid-column: 2; color: #747478; }
.flow-icon { grid-row: span 2; display: grid; width: 52px; height: 52px; place-items: center; border-radius: 16px; background: var(--ink); color: white; font-weight: 900; }
.flow-icon svg { width: 30px; height: 30px; fill: none; stroke: currentColor; stroke-width: 2.3; stroke-linecap: round; stroke-linejoin: round; }
.flow-store .flow-icon { background: linear-gradient(145deg, #23b7f5, #0875e1); }
.flow-store .flow-icon svg { stroke-width: 2.8; }
.flow-middle .flow-icon { background: linear-gradient(145deg, #087cff, #6959f7); }
.flow-phone .flow-icon { background: linear-gradient(145deg, #17b75a, #078b42); }
.flow-arrow { color: #98999b; font-size: 1.5rem; }

.privacy-promises {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 46px;
  background: rgba(7,16,31,.17);
  border: 1px solid rgba(7,16,31,.17);
}

.privacy-promises p { display: grid; gap: 9px; min-height: 150px; align-content: center; padding: 24px; background: var(--paper); }
.privacy-promises span { color: #696a6e; font-size: .9rem; line-height: 1.5; }

.questions-grid {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: 80px;
}

.questions h2 { font-size: clamp(3rem, 5vw, 5.6rem); line-height: .95; }
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { display: flex; align-items: center; justify-content: space-between; min-height: 76px; gap: 24px; cursor: pointer; font-size: 1.1rem; font-weight: 700; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { color: var(--cyan); content: "+"; font-size: 1.6rem; font-weight: 400; }
.faq details[open] summary::after { content: "−"; }
.faq details p { max-width: 720px; padding: 0 48px 24px 0; color: rgba(255,255,255,.6); line-height: 1.65; }

.download {
  position: relative;
  overflow: hidden;
  min-height: 780px;
  display: grid;
  place-items: center;
  background: #075edb;
  text-align: center;
}

.download-art { position: absolute; inset: 0; opacity: .62; }
.download-art span { position: absolute; width: 38vw; max-width: 560px; aspect-ratio: 1; border: 1px solid rgba(255,255,255,.38); border-radius: 25%; }
.download-art span:nth-child(1) { top: -20%; left: -7%; transform: rotate(-18deg); }
.download-art span:nth-child(2) { top: 4%; right: -14%; background: #079542; transform: rotate(16deg); }
.download-art span:nth-child(3) { bottom: -42%; left: 28%; background: #d86c00; transform: rotate(35deg); }

.download-copy { position: relative; z-index: 1; display: grid; justify-items: center; }
.download-copy img { margin-bottom: 25px; border-radius: 25%; box-shadow: 0 24px 60px rgba(0,0,0,.35); }
.download-copy .eyebrow { color: white; }
.download h2 { max-width: 960px; margin-top: 22px; font-size: clamp(3.6rem, 7vw, 7.4rem); line-height: .92; }
.download h2 em { color: var(--cyan); }
.download-copy > p:not(.eyebrow) { max-width: 610px; margin-top: 28px; color: rgba(255,255,255,.74); font-size: 1.1rem; line-height: 1.65; }
.store-status { display: inline-flex; align-items: center; gap: 10px; margin-top: 32px; padding: 16px 22px; border: 1px solid rgba(255,255,255,.42); border-radius: 16px; background: rgba(5,14,29,.85); font-weight: 750; }
.store-status span { color: #48db81; }

.footer { padding-block: 36px; background: #050b15; color: rgba(255,255,255,.58); }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; align-items: center; gap: 24px; font-size: .82rem; }
.footer .brand { color: white; }
.footer-links { display: flex; justify-content: flex-end; gap: 24px; }

.privacy-hero {
  position: relative;
  overflow: hidden;
  padding: 190px 0 115px;
  background-color: var(--ink);
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 64px 64px;
}

.privacy-hero-grid {
  display: grid;
  grid-template-columns: 1fr 430px;
  gap: 80px;
  align-items: center;
}

.privacy-hero h1 {
  max-width: 850px;
  margin: 26px 0 0;
  font-family: ui-rounded, "SF Pro Rounded", "Arial Rounded MT Bold", -apple-system, sans-serif;
  font-size: clamp(4.4rem, 8vw, 8rem);
  font-weight: 800;
  letter-spacing: -.07em;
  line-height: .9;
}

.privacy-hero h1 em { color: var(--cyan); font-style: normal; }

.privacy-hero-lede {
  max-width: 680px;
  margin-top: 32px;
  color: rgba(255,255,255,.68);
  font-size: 1.18rem;
  line-height: 1.65;
}

.privacy-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 34px; }
.privacy-tags span { padding: 10px 14px; border: 1px solid rgba(255,255,255,.22); border-radius: 999px; color: rgba(255,255,255,.72); font-size: .78rem; font-weight: 700; }

.privacy-mark { position: relative; min-height: 410px; }
.privacy-sheet { position: absolute; top: 55px; left: 50%; width: 245px; height: 310px; border-radius: 42px; box-shadow: 0 34px 70px rgba(0,0,0,.3), inset 0 1px 0 rgba(255,255,255,.25); }
.privacy-sheet-orange { background: #d86c00; transform: translateX(-68%) rotate(-13deg); }
.privacy-sheet-green { background: #079542; transform: translateX(-52%) rotate(-3deg); }
.privacy-sheet-blue { background: #075edb; transform: translateX(-36%) rotate(8deg); }

.privacy-lock {
  position: absolute;
  top: 126px;
  left: 50%;
  display: grid;
  width: 182px;
  height: 182px;
  place-content: center;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 50%;
  background: rgba(7,16,31,.76);
  box-shadow: 0 24px 60px rgba(0,0,0,.35), inset 0 1px 0 rgba(255,255,255,.18);
  text-align: center;
  transform: translateX(-50%);
  backdrop-filter: blur(20px);
}

.privacy-lock span { position: relative; width: 34px; height: 27px; margin: 0 auto 13px; border-radius: 7px; background: var(--cyan); }
.privacy-lock span::before { position: absolute; bottom: 18px; left: 7px; width: 20px; height: 22px; border: 4px solid var(--cyan); border-bottom: 0; border-radius: 14px 14px 0 0; content: ""; }
.privacy-lock b { font-size: .8rem; letter-spacing: .08em; line-height: 1.35; text-transform: uppercase; }

.privacy-document { padding: 120px 0 140px; background: var(--paper); color: var(--ink); }
.privacy-layout { display: grid; grid-template-columns: 220px minmax(0, 780px); justify-content: space-between; gap: 100px; }

.privacy-toc { align-self: start; position: sticky; top: 110px; padding-top: 6px; }
.privacy-toc > p { margin-bottom: 18px; color: #77787b; font-size: .7rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.privacy-toc nav { display: grid; border-top: 1px solid rgba(7,16,31,.16); }
.privacy-toc a { display: grid; grid-template-columns: 30px 1fr; gap: 8px; padding: 14px 0; border-bottom: 1px solid rgba(7,16,31,.16); color: #55565a; font-size: .86rem; transition: color 160ms ease; }
.privacy-toc a:hover { color: #075edb; }
.privacy-toc a span { color: #a0a0a2; font-size: .7rem; font-weight: 800; }

.privacy-article > section { padding: 0 0 92px; scroll-margin-top: 120px; }
.privacy-article > section + section { padding-top: 92px; border-top: 1px solid rgba(7,16,31,.17); }
.policy-index { margin-bottom: 20px; color: #075edb; font-size: .72rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.privacy-article h2 { max-width: 720px; margin: 0 0 28px; font-family: ui-rounded, "SF Pro Rounded", "Arial Rounded MT Bold", sans-serif; font-size: clamp(2.8rem, 5vw, 4.7rem); letter-spacing: -.06em; line-height: .98; }
.privacy-article p:not(.policy-index) { color: #515257; font-size: 1.04rem; line-height: 1.75; }
.privacy-article p + p { margin-top: 18px; }
.privacy-article .policy-lede { color: var(--ink); font-size: 1.34rem; line-height: 1.55; }

.policy-statement { display: grid; grid-template-columns: 54px 1fr; gap: 18px; align-items: center; margin-top: 38px; padding: 24px; border-radius: 22px; background: #075edb; color: white; }
.policy-statement > span { display: grid; width: 54px; height: 54px; place-items: center; border-radius: 16px; background: var(--ink); color: var(--cyan); font-weight: 900; }
.policy-statement p { display: grid; gap: 4px; color: rgba(255,255,255,.74) !important; font-size: .92rem !important; line-height: 1.5 !important; }
.policy-statement b { color: white; font-size: 1rem; }

.data-list { margin: 38px 0 0; border-top: 1px solid rgba(7,16,31,.17); }
.data-list div { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; padding: 18px 0; border-bottom: 1px solid rgba(7,16,31,.17); }
.data-list dt { font-weight: 750; }
.data-list dd { margin: 0; color: #65666a; }

.service-list { margin-top: 38px; border-top: 1px solid rgba(7,16,31,.17); }
.service-list > div { display: grid; grid-template-columns: 48px minmax(0, 1fr); gap: 18px; align-items: start; padding: 22px 0; border-bottom: 1px solid rgba(7,16,31,.17); }
.service-list > div > span { display: grid; width: 38px; height: 38px; margin-top: 2px; place-items: center; border-radius: 12px; background: var(--ink); color: var(--cyan); font-size: .7rem; font-weight: 800; }
.service-list p { display: grid; gap: 8px; margin: 0; font-size: .94rem !important; line-height: 1.5 !important; }
.service-list b { color: var(--ink); font-size: 1.04rem; line-height: 1.25; }

.privacy-article .label-section { display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center; padding: 62px; border: 0; border-radius: 30px; background: var(--ink); color: white; }
.label-section .policy-index { color: var(--cyan); }
.label-section h2 { margin-bottom: 18px; }
.label-section p:not(.policy-index) { color: rgba(255,255,255,.62); }
.label-check { display: grid; width: 92px; height: 92px; place-items: center; border-radius: 50%; background: var(--green); color: white; font-size: 2.5rem; font-weight: 800; }

@keyframes hero-copy {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes hero-stage {
  from { opacity: 0; transform: translateY(36px) scale(.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 980px) {
  .hero { min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; padding-top: 70px; }
  .hero-copy { padding-bottom: 0; }
  .hero-stage { width: min(100%, 620px); min-height: 760px; margin-inline: auto; }
  .intro-grid, .privacy-grid { grid-template-columns: 1fr; gap: 44px; }
  .feature-section { grid-template-columns: minmax(300px,.8fr) minmax(0,1fr); gap: 48px; }
  .feature-visual { min-height: 660px; }
  .phone-feature { width: 280px; }
  .privacy-promises { grid-template-columns: 1fr 1fr; }
  .questions-grid { grid-template-columns: 1fr; gap: 46px; }
  .privacy-hero-grid { grid-template-columns: 1fr 300px; gap: 30px; }
  .privacy-mark { transform: scale(.8); }
  .privacy-layout { grid-template-columns: 170px minmax(0, 1fr); gap: 55px; }
}

@media (max-width: 720px) {
  .shell { width: min(calc(100% - 36px), var(--max)); }
  .site-header { top: 10px; }
  .nav { min-height: 62px; padding: 7px 8px 7px 10px; border-radius: 21px; }
  .nav-links { display: none; }
  .brand img { width: 42px; height: 42px; }
  .hero { padding-top: 82px; background-size: 44px 44px; }
  .hero-grid { gap: 28px; min-height: 0; padding-top: 20px; }
  .hero-copy { padding: 68px 0 0; }
  .hero h1 { margin-top: 20px; font-size: clamp(3.55rem, 18vw, 5.2rem); }
  .hero-lede { margin-top: 26px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 14px; }
  .hero-facts { margin-top: 42px; }
  .hero-facts dd { font-size: .78rem; }
  .hero-stage { min-height: 660px; }
  .phone-hero { top: 34px; width: min(78vw, 330px); transform: translateX(-50%) rotate(1deg); }
  .sheet { top: 120px; width: min(68vw, 300px); height: 430px; }
  .sheet-orange { transform: translateX(-65%) rotate(-13deg); }
  .sheet-green { transform: translateX(-51%) rotate(-4deg); }
  .sheet-blue { transform: translateX(-36%) rotate(7deg); }
  .note-downloads { top: 142px; left: 0; }
  .note-change { right: 0; bottom: 90px; }
  .orbit-note { min-width: 108px; padding: 10px 12px; }
  .hero-stage figcaption { right: auto; bottom: 18px; left: 50%; width: 240px; text-align: center; transform: translateX(-50%); }
  .signal-track { justify-content: flex-start; }
  .section { padding-block: 90px; }
  .section-number { margin-bottom: 28px; }
  .intro h2 { font-size: clamp(3.25rem, 16vw, 5rem); }
  .feature-section, .feature-reverse { grid-template-columns: 1fr; }
  .feature-reverse .feature-visual, .feature-reverse .feature-copy { order: initial; }
  .feature-visual { min-height: 680px; }
  .phone-feature { width: min(73vw, 300px); }
  .feature-copy h2 { font-size: clamp(3rem, 14vw, 4.5rem); }
  .privacy-flow { grid-template-columns: 1fr; gap: 16px; }
  .flow-arrow { transform: rotate(90deg); text-align: center; }
  .privacy-promises { grid-template-columns: 1fr; }
  .privacy-promises p { min-height: 112px; }
  .download { min-height: 700px; }
  .download-art span { width: 70vw; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  .footer-links { justify-content: center; }
  .privacy-hero { padding: 150px 0 72px; background-size: 44px 44px; }
  .privacy-hero-grid { grid-template-columns: 1fr; }
  .privacy-hero h1 { font-size: clamp(3.7rem, 17vw, 5.5rem); }
  .privacy-mark { min-height: 340px; transform: scale(.82); }
  .privacy-document { padding: 82px 0 100px; }
  .privacy-layout { grid-template-columns: 1fr; gap: 58px; }
  .privacy-toc { position: static; }
  .privacy-toc nav { grid-template-columns: 1fr 1fr; }
  .privacy-toc a { padding-right: 12px; }
  .privacy-article > section { padding-bottom: 70px; }
  .privacy-article > section + section { padding-top: 70px; }
  .privacy-article .label-section { padding: 34px 26px; }
  .privacy-back { display: none; }
  .privacy-page .nav { gap: 10px; }
  .privacy-page .language-switcher a { width: 32px; }
}

@media (max-width: 390px) {
  .shell { width: calc(100% - 28px); }
  .brand span { font-size: .94rem; }
  .nav-cta { padding: 9px 12px; }
  .hero-copy { padding-top: 52px; }
  .hero h1 { font-size: 3.45rem; }
  .hero-facts { grid-template-columns: 1fr; gap: 16px; }
  .hero-facts div { grid-template-columns: 82px 1fr; align-items: baseline; }
  .hero-stage { min-height: 610px; }
  .phone-hero { width: 280px; }
  .sheet { width: 245px; height: 390px; }
  .note-downloads { left: -4px; }
  .note-change { right: -4px; bottom: 76px; }
  .feature-visual { min-height: 610px; }
  .phone-feature { width: 260px; }
  .visual-index { font-size: 4.5rem; }
  .feature-copy h2, .privacy h2, .questions h2 { font-size: 2.9rem; }
  .faq summary { font-size: 1rem; }
  .privacy-hero h1 { font-size: 3.55rem; }
  .privacy-mark { margin-inline: -24px; }
  .privacy-toc nav { grid-template-columns: 1fr; }
  .privacy-article h2 { font-size: 2.75rem; }
  .data-list div { grid-template-columns: 1fr; gap: 7px; }
  .privacy-article .label-section { grid-template-columns: 1fr; }
  .label-check { width: 68px; height: 68px; font-size: 1.8rem; }
  .privacy-page .brand span { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
