:root {
  color-scheme: dark;
  --ink: #001326;
  --ink-2: #001d35;
  --ink-3: #002c49;
  --panel: rgba(3, 49, 76, .74);
  --panel-solid: #063653;
  --line: rgba(74, 203, 244, .22);
  --line-strong: rgba(74, 203, 244, .55);
  --paper: #f5fbff;
  --muted: #9ab5ca;
  --cyan: #37c8ff;
  --cyan-soft: #91dcff;
  --blue: #247bff;
  --mint: #21d7ac;
  --coral: #ff5e74;
  --amber: #ffbb38;
  --radius-sm: 18px;
  --radius: 28px;
  --radius-lg: 42px;
  --shadow: 0 30px 100px rgba(0, 7, 18, .42);
  --ease: cubic-bezier(.2, .78, .18, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--paper);
  background: var(--ink);
  font-family: Manrope, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  z-index: -2;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(97, 209, 246, .025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(97, 209, 246, .025) 1px, transparent 1px);
  background-size: 68px 68px;
  mask-image: linear-gradient(to bottom, #000, transparent 88%);
}

.ambient {
  position: fixed;
  z-index: -3;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 82% 12%, rgba(29, 126, 255, .20), transparent 31rem),
    radial-gradient(circle at 9% 45%, rgba(33, 215, 172, .10), transparent 34rem),
    linear-gradient(155deg, var(--ink-2), var(--ink) 58%, #000d1c);
}

a { color: inherit; }
img { max-width: 100%; }
button, input, select, textarea { font: inherit; }

.skip-link {
  position: fixed;
  z-index: 100;
  top: -100px;
  left: 18px;
  padding: 12px 18px;
  border-radius: 12px;
  color: #001426;
  background: var(--cyan);
  font-weight: 800;
  transition: top .2s ease;
}
.skip-link:focus { top: 18px; }

.shell { width: min(1240px, calc(100% - 48px)); margin-inline: auto; }
.section { padding-block: clamp(88px, 10vw, 150px); }

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid transparent;
  background: rgba(0, 19, 38, .30);
  backdrop-filter: blur(18px) saturate(140%);
  transition: background .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.site-header.is-scrolled {
  border-color: rgba(74, 203, 244, .13);
  background: rgba(0, 19, 38, .84);
  box-shadow: 0 12px 48px rgba(0, 7, 18, .28);
}

.nav {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--paper);
  text-decoration: none;
  font-size: 27px;
  font-weight: 800;
  font-style: italic;
  line-height: 1;
  letter-spacing: -1.8px;
}
.wordmark-logo {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  border-radius: 13px;
  box-shadow: 0 0 0 1px rgba(74, 203, 244, .32), 0 10px 28px rgba(0, 7, 18, .34);
}
.wordmark-name { color: var(--paper); }
.wordmark-name > span { color: var(--cyan); }

.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-links > a {
  position: relative;
  color: #b3c8d8;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}
.nav-links > a:not(.lang-link)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: var(--cyan);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s var(--ease);
}
.nav-links > a:hover, .nav-links > a:focus-visible { color: var(--paper); }
.nav-links > a:hover::after, .nav-links > a:focus-visible::after { transform: scaleX(1); transform-origin: left; }

.lang-link {
  min-width: 44px;
  min-height: 40px;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--paper) !important;
  background: rgba(5, 62, 91, .62);
  letter-spacing: .08em;
}
.lang-link:hover { border-color: var(--cyan); background: rgba(55, 200, 255, .12); }
.menu-toggle { display: none; }

.hero {
  min-height: 920px;
  padding-top: 148px;
  padding-bottom: 90px;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(380px, .88fr);
  align-items: center;
  gap: clamp(56px, 8vw, 120px);
}

.status-line {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--cyan-soft);
  font-family: "Space Mono", monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.status-line i { width: 8px; height: 8px; border-radius: 50%; background: var(--mint); box-shadow: 0 0 0 6px rgba(33, 215, 172, .10), 0 0 22px rgba(33, 215, 172, .8); }

h1, h2, h3 { overflow-wrap: normal; word-break: normal; }
p { overflow-wrap: anywhere; }
h1 {
  max-width: 850px;
  margin: 24px 0 14px;
  font-size: clamp(72px, 8.4vw, 124px);
  line-height: .98;
  letter-spacing: -.065em;
}
h1 > span {
  color: transparent;
  background: linear-gradient(105deg, #fff 0%, #d2f3ff 35%, var(--cyan) 70%, var(--mint) 110%);
  background-clip: text;
  -webkit-background-clip: text;
}

.hero-tagline {
  max-width: 760px;
  margin: 0 0 22px;
  color: var(--paper);
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 800;
  line-height: 1.13;
  letter-spacing: -.035em;
}
.hero-lead { max-width: 740px; margin: 0; color: #a9c0d2; font-size: clamp(17px, 1.65vw, 20px); line-height: 1.7; }
.hero-lead strong { color: #eaf8ff; }
.verification-note {
  max-width: 740px;
  margin: 22px 0 0;
  padding: 17px 19px;
  border: 1px solid rgba(55, 200, 255, .24);
  border-left: 3px solid var(--cyan);
  border-radius: 14px;
  color: #a9c0d2;
  background: rgba(3, 49, 76, .48);
  font-size: 13px;
  line-height: 1.65;
}
.verification-note strong { color: var(--cyan-soft); }
.hero-actions { margin-top: 38px; display: flex; flex-wrap: wrap; gap: 14px; }
.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 13px 21px;
  border: 1px solid transparent;
  border-radius: 16px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
  transition: transform .24s var(--ease), border-color .24s ease, background .24s ease, box-shadow .24s ease;
}
.button:hover { transform: translateY(-3px); }
.button-primary { color: #00172a; background: linear-gradient(110deg, var(--cyan-soft), var(--cyan)); box-shadow: 0 18px 48px rgba(55, 200, 255, .18); }
.button-primary:hover { box-shadow: 0 22px 56px rgba(55, 200, 255, .30); }
.button-ghost { border-color: var(--line); color: #d8ebf6; background: rgba(2, 43, 69, .42); }
.button-ghost:hover { border-color: var(--line-strong); background: rgba(6, 67, 99, .6); }

.hero-trust { margin: 32px 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 10px 22px; list-style: none; color: #93adbf; font-size: 12px; font-weight: 700; }
.hero-trust li { display: flex; align-items: center; gap: 8px; }
.hero-trust i { color: var(--mint); font-style: normal; }

.hero-device { position: relative; min-height: 690px; display: grid; place-items: center; isolation: isolate; }
.device-glow { position: absolute; z-index: -1; width: 88%; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle, rgba(55, 200, 255, .22), rgba(36, 123, 255, .08) 46%, transparent 70%); filter: blur(8px); }
.phone {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(132, 221, 255, .42);
  border-radius: 43px;
  background: #001a30;
  box-shadow: 0 45px 100px rgba(0, 6, 17, .62), inset 0 0 0 6px rgba(1, 18, 31, .9);
}
.phone::after { content: ""; position: absolute; inset: 0; pointer-events: none; border-radius: inherit; box-shadow: inset 0 0 0 7px rgba(0, 15, 29, .86), inset 0 0 0 8px rgba(108, 215, 252, .16); }
.phone img { width: 100%; height: auto; display: block; }
.phone-top { position: absolute; z-index: 4; top: 10px; left: 50%; transform: translateX(-50%); }
.phone-top span { width: 68px; height: 18px; display: block; border-radius: 999px; background: rgba(0, 8, 15, .94); }
.phone-hero { width: min(390px, 86vw); transform: rotate(2.3deg); animation: deviceFloat 6s ease-in-out infinite; }

.floating-note {
  position: absolute;
  z-index: 5;
  width: 205px;
  padding: 15px 17px;
  border: 1px solid rgba(123, 220, 255, .28);
  border-radius: 17px;
  background: rgba(2, 31, 51, .78);
  box-shadow: 0 22px 60px rgba(0, 7, 18, .42);
  backdrop-filter: blur(16px);
}
.floating-note strong, .floating-note span { display: block; }
.floating-note strong { margin-bottom: 4px; color: var(--paper); font-size: 13px; }
.floating-note span { color: var(--muted); font-size: 11px; line-height: 1.45; }
.note-budget { top: 18%; left: -9%; }
.note-readonly { right: -9%; bottom: 17%; }

@keyframes deviceFloat { 0%, 100% { transform: rotate(2.3deg) translateY(0); } 50% { transform: rotate(1.6deg) translateY(-12px); } }

.signal-rail { border-block: 1px solid rgba(74, 203, 244, .14); background: rgba(1, 30, 51, .55); }
.signal-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.signal-grid > div { min-height: 132px; padding: 26px 24px; display: grid; grid-template-columns: auto 1fr; grid-template-rows: auto auto; align-content: center; column-gap: 13px; border-left: 1px solid rgba(74, 203, 244, .12); }
.signal-grid > div:last-child { border-right: 1px solid rgba(74, 203, 244, .12); }
.signal-grid span { grid-row: 1 / span 2; color: var(--cyan); font-family: "Space Mono", monospace; font-size: 11px; }
.signal-grid strong { font-size: 15px; }
.signal-grid small { color: var(--muted); font-size: 11px; }

.section-heading { max-width: 870px; margin-bottom: clamp(44px, 7vw, 80px); }
.kicker { display: inline-flex; align-items: center; gap: 12px; color: var(--cyan); font-family: "Space Mono", monospace; font-size: 11px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.kicker::before { content: ""; width: 30px; height: 1px; background: linear-gradient(90deg, var(--cyan), var(--mint)); }
.section-heading h2, .access-intro h2, .privacy-statement h2, .gallery-heading h2, .final-cta h2 {
  margin: 18px 0 22px;
  font-size: clamp(40px, 5.4vw, 70px);
  line-height: 1.04;
  letter-spacing: -.055em;
}
.section-heading p, .access-intro p, .privacy-statement > p { max-width: 730px; margin: 0; color: var(--muted); font-size: 18px; }

.purpose-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.purpose-card {
  position: relative;
  min-height: 310px;
  padding: clamp(26px, 4vw, 42px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(5, 58, 88, .75), rgba(1, 27, 48, .84));
  transition: transform .32s var(--ease), border-color .32s ease;
}
.purpose-card:hover { transform: translateY(-7px); border-color: var(--line-strong); }
.purpose-card-accent { background: linear-gradient(140deg, rgba(5, 79, 103, .88), rgba(13, 49, 88, .84)); }
.purpose-card::after { content: ""; position: absolute; right: -50px; bottom: -70px; width: 200px; height: 200px; border-radius: 50%; border: 1px solid rgba(55, 200, 255, .12); box-shadow: 0 0 0 28px rgba(55, 200, 255, .025), 0 0 0 56px rgba(55, 200, 255, .018); }
.card-index { color: #6b8da4; font-family: "Space Mono", monospace; font-size: 11px; }
.line-icon { width: 50px; height: 50px; margin: 54px 0 22px; display: grid; place-items: center; border: 1px solid rgba(55, 200, 255, .36); border-radius: 15px; color: var(--cyan); background: rgba(55, 200, 255, .08); font-size: 26px; }
.purpose-card h3 { max-width: 450px; margin: 0 0 10px; font-size: clamp(22px, 3vw, 30px); letter-spacing: -.035em; }
.purpose-card p { max-width: 520px; margin: 0; color: var(--muted); }

.access-section { position: relative; border-block: 1px solid rgba(74, 203, 244, .12); background: linear-gradient(180deg, rgba(0, 29, 53, .92), rgba(0, 17, 32, .94)); }
.access-section::before { content: ""; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(circle at 78% 33%, rgba(33, 215, 172, .10), transparent 34rem); }
.access-intro { max-width: 920px; margin-bottom: 60px; }
.access-panel {
  position: relative;
  padding: clamp(28px, 5vw, 64px);
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(42px, 7vw, 90px);
  border: 1px solid rgba(74, 203, 244, .25);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(5, 61, 90, .66), rgba(0, 23, 43, .86));
  box-shadow: var(--shadow);
}
.permission-badge { display: inline-flex; align-items: center; gap: 10px; padding: 9px 12px; border: 1px solid rgba(33, 215, 172, .32); border-radius: 999px; color: #9af2dc; background: rgba(33, 215, 172, .07); font-family: "Space Mono", monospace; font-size: 10px; font-weight: 700; text-transform: uppercase; }
.permission-badge i { width: 7px; height: 7px; border-radius: 50%; background: var(--mint); box-shadow: 0 0 14px rgba(33, 215, 172, .8); }
.access-copy h3 { margin: 28px 0 16px; font-size: clamp(29px, 4vw, 43px); line-height: 1.12; letter-spacing: -.045em; }
.access-copy p { color: var(--muted); }
.data-chips { margin-top: 28px; display: flex; flex-wrap: wrap; gap: 9px; }
.data-chips span { padding: 8px 11px; border: 1px solid rgba(74, 203, 244, .18); border-radius: 11px; color: #bad3e2; background: rgba(0, 24, 43, .58); font-size: 11px; font-weight: 700; }

.access-flow { margin: 0; padding: 0; display: grid; gap: 12px; list-style: none; }
.access-flow li { padding: 19px; display: grid; grid-template-columns: 44px 1fr; gap: 16px; align-items: start; border: 1px solid rgba(74, 203, 244, .13); border-radius: 18px; background: rgba(0, 20, 38, .56); }
.access-flow b { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 13px; color: var(--cyan); background: rgba(55, 200, 255, .09); font-family: "Space Mono", monospace; font-size: 12px; }
.access-flow strong, .access-flow span { display: block; }
.access-flow strong { margin-bottom: 3px; font-size: 14px; }
.access-flow span { color: var(--muted); font-size: 12px; line-height: 1.55; }

.boundary-grid { margin-top: 18px; display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.boundary-card { padding: clamp(28px, 4vw, 44px); border: 1px solid var(--line); border-radius: var(--radius); background: rgba(2, 35, 57, .66); }
.boundary-card > span { font-family: "Space Mono", monospace; font-size: 10px; font-weight: 700; letter-spacing: .13em; }
.boundary-yes > span { color: var(--mint); }
.boundary-no > span { color: var(--coral); }
.boundary-card h3 { max-width: 520px; margin: 16px 0 22px; font-size: 25px; line-height: 1.25; letter-spacing: -.035em; }
.boundary-card ul { margin: 0; padding: 0; display: grid; gap: 10px; list-style: none; color: var(--muted); }
.boundary-card li { position: relative; padding-left: 22px; }
.boundary-card li::before { content: ""; position: absolute; top: .72em; left: 0; width: 8px; height: 2px; background: var(--cyan); }

.product-section { overflow: hidden; }
.showcase {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(150deg, rgba(6, 60, 90, .82), rgba(1, 25, 45, .9));
  box-shadow: var(--shadow);
}
.showcase::before { content: ""; position: absolute; width: 480px; height: 480px; right: -160px; bottom: -220px; border-radius: 50%; background: rgba(55, 200, 255, .08); filter: blur(10px); }
.showcase-primary { min-height: 720px; padding: clamp(32px, 6vw, 74px); display: grid; grid-template-columns: 1fr .72fr; align-items: center; gap: 70px; }
.showcase-number, .showcase-tile > div:first-child > span { color: var(--cyan); font-family: "Space Mono", monospace; font-size: 10px; font-weight: 700; letter-spacing: .13em; }
.showcase-copy h3 { max-width: 590px; margin: 20px 0; font-size: clamp(36px, 4.8vw, 61px); line-height: 1.03; letter-spacing: -.055em; }
.showcase-copy p { max-width: 580px; color: var(--muted); font-size: 17px; }
.showcase-copy ul { margin: 28px 0 0; padding: 0; display: grid; gap: 11px; list-style: none; color: #c0d6e4; font-size: 13px; }
.showcase-copy li::before { content: "↗"; margin-right: 11px; color: var(--mint); }
.phone-showcase { width: min(360px, 78vw); justify-self: center; transform: translateY(110px) rotate(2deg); }

.showcase-grid { margin-top: 18px; display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.showcase-tile { min-height: 650px; padding: clamp(28px, 4vw, 48px); display: grid; grid-template-columns: .92fr .68fr; gap: 32px; align-items: start; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: linear-gradient(145deg, rgba(4, 53, 82, .74), rgba(1, 25, 45, .86)); }
.showcase-tile h3 { margin: 18px 0 12px; font-size: clamp(27px, 3vw, 40px); line-height: 1.08; letter-spacing: -.045em; }
.showcase-tile p { color: var(--muted); }
.phone-tile { width: 260px; margin-bottom: -290px; justify-self: end; border-radius: 34px; transform: rotate(2deg); }

.gallery-heading { margin: 130px 0 48px; display: grid; grid-template-columns: 1.2fr .8fr; gap: 70px; align-items: end; }
.gallery-heading h2 { max-width: 700px; margin-bottom: 0; }
.gallery-heading > p { color: var(--muted); }
.screen-gallery { padding-bottom: 26px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.gallery-card { margin: 0; padding: 14px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: linear-gradient(150deg, rgba(4, 54, 82, .76), rgba(1, 25, 45, .86)); transition: transform .3s var(--ease), border-color .3s ease; }
.gallery-card:nth-child(even) { transform: translateY(36px); }
.gallery-card:hover { transform: translateY(-7px); border-color: var(--line-strong); }
.gallery-card:nth-child(even):hover { transform: translateY(29px); }
.phone-gallery { width: 100%; max-height: 520px; border-radius: 28px; box-shadow: 0 20px 60px rgba(0, 7, 17, .36); }
.gallery-card figcaption { padding: 20px 8px 10px; }
.gallery-card figcaption strong, .gallery-card figcaption span { display: block; }
.gallery-card figcaption strong { margin-bottom: 6px; font-size: 15px; }
.gallery-card figcaption span { color: var(--muted); font-size: 12px; }

.privacy-section { border-block: 1px solid rgba(74, 203, 244, .12); background: linear-gradient(125deg, rgba(0, 31, 54, .95), rgba(2, 62, 78, .72)); }
.privacy-layout { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(60px, 9vw, 130px); align-items: center; }
.privacy-statement h2 { max-width: 720px; }
.privacy-actions { margin-top: 36px; display: flex; flex-wrap: wrap; align-items: center; gap: 22px; }
.text-link { color: #cbe1ee; font-size: 13px; font-weight: 800; text-underline-offset: 5px; }
.control-list { border-top: 1px solid var(--line); }
.control-list > div { padding: 24px 0; display: grid; grid-template-columns: 44px 1fr; gap: 18px; border-bottom: 1px solid var(--line); }
.control-list b { color: var(--cyan); font-family: "Space Mono", monospace; font-size: 11px; }
.control-list span, .control-list strong { display: block; }
.control-list strong { margin-bottom: 4px; font-size: 15px; }
.control-list span { color: var(--muted); font-size: 13px; }

.faq { display: grid; grid-template-columns: .75fr 1.25fr; gap: 90px; align-items: start; }
.faq .section-heading { position: sticky; top: 120px; }
.faq-list { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { position: relative; padding: 26px 56px 26px 0; cursor: pointer; list-style: none; font-size: 18px; font-weight: 700; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary i { position: absolute; top: 24px; right: 8px; color: var(--cyan); font-family: "Space Mono", monospace; font-style: normal; transition: transform .2s ease; }
.faq details[open] summary i { transform: rotate(45deg); }
.faq details p { max-width: 750px; margin: -8px 0 28px; color: var(--muted); }

.final-cta {
  position: relative;
  margin-bottom: 100px;
  padding: clamp(42px, 7vw, 84px);
  overflow: hidden;
  border: 1px solid rgba(74, 203, 244, .32);
  border-radius: var(--radius-lg);
  background: linear-gradient(125deg, rgba(5, 66, 96, .92), rgba(1, 28, 49, .92));
  box-shadow: var(--shadow);
}
.final-cta::after { content: "SUBSCR."; position: absolute; right: -1vw; bottom: -7vw; color: rgba(122, 221, 255, .035); font-size: clamp(110px, 20vw, 290px); font-style: italic; font-weight: 800; line-height: 1; letter-spacing: -.08em; }
.final-cta > span { color: var(--cyan); font-family: "Space Mono", monospace; font-size: 10px; font-weight: 700; letter-spacing: .13em; }
.final-cta h2 { position: relative; z-index: 1; max-width: 940px; }
.final-cta > div { position: relative; z-index: 1; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 24px; }
.final-cta p { margin: 0; color: var(--muted); }
.final-cta a { color: var(--paper); font-size: clamp(18px, 2vw, 24px); font-weight: 800; text-underline-offset: 6px; }

.footer { padding: 56px 0 42px; border-top: 1px solid rgba(74, 203, 244, .13); background: rgba(0, 12, 24, .72); }
.footer-inner { display: grid; grid-template-columns: 1fr 1.2fr; gap: 30px 70px; align-items: start; }
.footer-wordmark { font-size: 34px; }
.footer-wordmark .wordmark-logo { width: 52px; height: 52px; flex-basis: 52px; border-radius: 15px; }
.footer p { max-width: 440px; margin: 0; color: var(--muted); font-size: 13px; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 16px 26px; }
.footer-links a { color: #b7cbd8; font-size: 12px; font-weight: 700; text-underline-offset: 5px; }
.footer small { color: #607f95; font-size: 10px; }

.legal-main { max-width: 920px; padding: 160px 0 120px; }
.legal-main h1 { margin-bottom: 32px; font-size: clamp(48px, 7vw, 76px); }
.legal-card { padding: clamp(26px, 5vw, 56px); border: 1px solid var(--line); border-radius: var(--radius); background: rgba(2, 42, 67, .76); box-shadow: var(--shadow); }
.legal-card h2 { margin: 42px 0 12px; font-size: clamp(22px, 3vw, 29px); letter-spacing: -.03em; }
.legal-card h2:first-child { margin-top: 0; }
.legal-card p, .legal-card li { color: #b4cad8; }
.legal-card strong { color: var(--paper); }

:focus-visible { outline: 3px solid rgba(55, 200, 255, .78); outline-offset: 4px; border-radius: 6px; }
/* Keep all verification content visible even for crawlers and browsers with JavaScript disabled. */
.reveal, .reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1080px) {
  .hero { grid-template-columns: minmax(0, 1fr) 380px; gap: 42px; }
  .floating-note { display: none; }
  .signal-grid { grid-template-columns: repeat(2, 1fr); }
  .signal-grid > div:nth-child(3) { border-top: 1px solid rgba(74, 203, 244, .12); }
  .signal-grid > div:nth-child(4) { border-top: 1px solid rgba(74, 203, 244, .12); border-right: 1px solid rgba(74, 203, 244, .12); }
  .showcase-primary { gap: 40px; }
  .showcase-tile { grid-template-columns: 1fr; }
  .phone-tile { justify-self: center; }
  .screen-gallery { grid-template-columns: repeat(2, 1fr); }
  .gallery-card:nth-child(even) { transform: none; }
  .gallery-card:nth-child(even):hover { transform: translateY(-7px); }
}

@media (max-width: 820px) {
  html { scroll-padding-top: 76px; }
  .shell { width: min(100% - 34px, 1240px); }
  .nav { min-height: 72px; }
  .menu-toggle { width: 46px; height: 46px; display: grid; place-content: center; gap: 7px; border: 1px solid var(--line); border-radius: 14px; color: var(--paper); background: rgba(2, 47, 73, .72); }
  .menu-toggle span { width: 20px; height: 2px; display: block; background: currentColor; transition: transform .2s ease; }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(4.5px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4.5px) rotate(-45deg); }
  .nav-links { position: absolute; top: 66px; right: 0; left: 0; padding: 18px; display: none; flex-direction: column; align-items: stretch; gap: 0; border: 1px solid var(--line); border-radius: 20px; background: rgba(0, 22, 41, .97); box-shadow: var(--shadow); }
  .nav-links.is-open { display: flex; }
  .nav-links > a { min-height: 48px; display: flex; align-items: center; padding-inline: 14px; border-bottom: 1px solid rgba(74, 203, 244, .10); }
  .nav-links > a::after { display: none; }
  .lang-link { margin-top: 12px; border-bottom: 1px solid var(--line) !important; }
  .hero { min-height: auto; padding-top: 130px; grid-template-columns: 1fr; gap: 64px; }
  .hero-device { min-height: auto; }
  .phone-hero { width: min(390px, 78vw); }
  .purpose-grid, .boundary-grid, .showcase-grid, .privacy-layout, .faq { grid-template-columns: 1fr; }
  .access-panel { grid-template-columns: 1fr; }
  .showcase-primary { min-height: auto; grid-template-columns: 1fr; }
  .phone-showcase { transform: translateY(100px) rotate(1deg); }
  .gallery-heading { grid-template-columns: 1fr; gap: 20px; }
  .faq { gap: 10px; }
  .faq .section-heading { position: static; }
  .footer-inner { grid-template-columns: 1fr; gap: 24px; }
  .footer-links { justify-content: flex-start; }
}

@media (max-width: 560px) {
  .shell { width: min(100% - 24px, 1240px); }
  .section { padding-block: 84px; }
  h1 { font-size: clamp(62px, 20vw, 86px); }
  .hero-tagline { font-size: clamp(25px, 8vw, 34px); }
  .verification-note { padding: 15px 16px; }
  .hero { padding-top: 116px; padding-bottom: 70px; }
  .hero-actions { flex-direction: column; }
  .button { width: 100%; }
  .hero-trust { display: grid; }
  .signal-grid { grid-template-columns: 1fr; }
  .signal-grid > div { min-height: 106px; border-right: 1px solid rgba(74, 203, 244, .12); border-bottom: 1px solid rgba(74, 203, 244, .12); }
  .signal-grid > div:last-child { border-bottom: 0; }
  .purpose-grid { grid-template-columns: 1fr; }
  .purpose-card { min-height: 280px; }
  .line-icon { margin-top: 40px; }
  .access-panel { padding: 22px; border-radius: 28px; }
  .access-flow li { grid-template-columns: 38px 1fr; padding: 15px; }
  .access-flow b { width: 36px; height: 36px; }
  .showcase-primary { padding: 27px; }
  .showcase-copy h3 { font-size: 38px; }
  .phone-showcase { width: 84%; }
  .showcase-tile { min-height: 640px; }
  .screen-gallery { margin-right: -12px; padding-right: 12px; display: flex; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; }
  .screen-gallery::-webkit-scrollbar { display: none; }
  .gallery-card { min-width: 78vw; scroll-snap-align: center; }
  .phone-gallery { max-height: 460px; }
  .privacy-actions { align-items: stretch; flex-direction: column; }
  .final-cta { margin-bottom: 70px; padding: 34px 26px; border-radius: 28px; }
  .final-cta > div { align-items: flex-start; flex-direction: column; }
  .legal-main { padding-top: 120px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}
