:root {
  color-scheme: dark;
  --deep: #0B1020;
  --midnight: #121A33;
  --ink: #070B16;
  --ink-2: #050815;
  --text: #F7FBFF;
  --soft: #DFECFF;
  --muted: #AAB8D9;
  --muted-2: #7E8DB3;
  --line: rgba(190, 235, 255, 0.14);
  --line-strong: rgba(190, 235, 255, 0.28);
  --electric: #6FAEFF;
  --indigo: #6C6FFF;
  --ice: #BEEBFF;
  --violet: #9B7CFF;
  --mint: #79E4D0;
  --header-h: 72px;
  --page-pad: 18px;
  --max: 1180px;
  --hero-progress: 0;
  --scroll-progress: 0;
  --card-x: 0px;
  --card-y: 0px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 22px);
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  background:
    linear-gradient(180deg, rgba(11, 16, 32, 0.98) 0%, rgba(7, 11, 22, 1) 38%, rgba(8, 12, 25, 1) 70%, rgba(11, 16, 32, 1) 100%),
    repeating-linear-gradient(115deg, rgba(190, 235, 255, 0.04) 0 1px, transparent 1px 96px);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent 0 14%, rgba(190, 235, 255, 0.052) 14% 14.08%, transparent 14.08% 49%, rgba(111, 174, 255, 0.075) 49% 49.08%, transparent 49.08% 82%, rgba(155, 124, 255, 0.06) 82% 82.08%, transparent 82.08%),
    linear-gradient(180deg, rgba(108, 111, 255, 0.12), transparent 30%, rgba(121, 228, 208, 0.055) 72%, transparent);
  opacity: 0.78;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 80;
  transform: translateY(-140%);
  background: var(--ice);
  color: var(--deep);
  padding: 12px 16px;
  border-radius: 8px;
  font-weight: 900;
}

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

.scroll-progress {
  position: fixed;
  inset: 0 auto auto 0;
  z-index: 70;
  width: calc(var(--scroll-progress) * 100%);
  height: 2px;
  background: linear-gradient(90deg, var(--electric), var(--violet), var(--mint));
  box-shadow: 0 0 22px rgba(111, 174, 255, 0.58);
  transform-origin: left center;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px var(--page-pad);
  border-bottom: 1px solid rgba(190, 235, 255, 0.1);
  background: rgba(5, 8, 21, 0.66);
  backdrop-filter: blur(24px) saturate(150%);
  transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.site-header.has-scrolled {
  border-color: rgba(190, 235, 255, 0.18);
  background: rgba(5, 8, 21, 0.84);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.32);
}

.brand-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-weight: 950;
}

.brand-link img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  filter: drop-shadow(0 0 18px rgba(111, 174, 255, 0.42));
}

.menu-toggle {
  min-height: 44px;
  min-width: 76px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: rgba(18, 26, 51, 0.78);
  color: var(--text);
  font: inherit;
  font-weight: 900;
}

.header-actions {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  margin-left: auto;
}

.language-switcher {
  position: relative;
}

.language-button {
  min-width: 58px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 11px;
  border: 1px solid rgba(190, 235, 255, 0.2);
  border-radius: 8px;
  background: rgba(18, 26, 51, 0.72);
  color: var(--text);
  font: inherit;
  font-weight: 950;
  cursor: pointer;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.language-button:hover,
.language-button:focus-visible,
.language-switcher.is-open .language-button {
  transform: translateY(-1px);
  border-color: rgba(111, 174, 255, 0.58);
  background: rgba(23, 34, 68, 0.86);
  box-shadow: 0 14px 36px rgba(108, 111, 255, 0.18);
}

.language-button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  color: var(--ice);
}

.language-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 80;
  min-width: 192px;
  display: grid;
  gap: 4px;
  padding: 8px;
  border: 1px solid rgba(190, 235, 255, 0.18);
  border-radius: 8px;
  background: rgba(5, 8, 21, 0.96);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5), 0 0 42px rgba(111, 174, 255, 0.14);
  opacity: 0;
  transform: translateY(-6px) scale(0.98);
  pointer-events: none;
  transition: opacity 160ms ease, transform 160ms ease;
}

.language-switcher.is-open .language-menu {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.language-menu a {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 12px;
  border-radius: 8px;
  color: var(--muted);
  font-weight: 850;
}

.language-menu a:hover,
.language-menu a:focus-visible,
.language-menu a.is-current {
  color: var(--text);
  background: rgba(190, 235, 255, 0.08);
}

.language-menu small {
  color: var(--ice);
  font-size: 0.74rem;
  font-weight: 950;
}

.site-nav {
  position: fixed;
  left: 14px;
  right: 14px;
  top: calc(var(--header-h) + 8px);
  display: grid;
  gap: 8px;
  padding: 12px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: rgba(5, 8, 21, 0.96);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.46);
  opacity: 0;
  transform: translateY(-8px) scale(0.98);
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.site-nav.is-open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.site-nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 8px;
  color: var(--muted);
  font-weight: 850;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
  background: rgba(190, 235, 255, 0.08);
}

.site-nav .nav-cta {
  color: #FFFFFF;
  background: linear-gradient(135deg, var(--electric), var(--indigo));
  box-shadow: 0 16px 38px rgba(108, 111, 255, 0.3);
}

.hero {
  position: relative;
  min-height: calc(100svh - var(--header-h) - 58px);
  overflow: clip;
  isolation: isolate;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 24%;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(7, 11, 22, 0.94));
  z-index: -1;
}

.hero-field {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}

.hero-field::before,
.hero-field::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translate3d(0, calc(var(--hero-progress) * 34px), 0);
}

.hero-field::before {
  background:
    linear-gradient(90deg, transparent 0 42%, rgba(190, 235, 255, 0.08) 42% 42.12%, transparent 42.12%),
    repeating-linear-gradient(115deg, rgba(190, 235, 255, 0.04) 0 1px, transparent 1px 58px);
}

.hero-field::after {
  background:
    linear-gradient(125deg, rgba(111, 174, 255, 0.2), transparent 30%),
    linear-gradient(270deg, rgba(155, 124, 255, 0.2), transparent 46%),
    linear-gradient(0deg, rgba(121, 228, 208, 0.07), transparent 38%);
  opacity: 0.74;
}

.hero-field span {
  position: absolute;
  left: 50%;
  width: 1px;
  height: 120%;
  background: linear-gradient(180deg, transparent, rgba(190, 235, 255, 0.24), transparent);
  transform: translateX(-50%) rotate(17deg);
}

.hero-field span:nth-child(2) {
  left: 22%;
  opacity: 0.35;
}

.hero-field span:nth-child(3) {
  left: 76%;
  opacity: 0.26;
}

.hero-inner {
  width: min(var(--max), calc(100% - var(--page-pad) * 2));
  min-height: calc(100svh - var(--header-h) - 58px);
  margin: 0 auto;
  display: grid;
  align-items: center;
  gap: 34px;
  padding: 42px 0 48px;
}

.hero-copy {
  position: relative;
  z-index: 3;
  max-width: 690px;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: 0;
  line-height: 0.98;
  overflow-wrap: normal;
  word-break: normal;
}

h1 {
  max-width: 11ch;
  font-size: 3rem;
  font-weight: 980;
}

h2 {
  font-size: 2.12rem;
  font-weight: 950;
}

h3 {
  font-size: 1.12rem;
  font-weight: 900;
}

.section-kicker {
  margin: 0 0 14px;
  color: var(--ice);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 570px;
  margin: 22px 0 0;
  color: var(--soft);
  font-size: 1.1rem;
  line-height: 1.62;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  border-radius: 8px;
  font-weight: 950;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.btn:hover,
.btn:focus-visible,
.premium-panel a:hover,
.premium-panel a:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  color: #FFFFFF;
  background: linear-gradient(135deg, var(--electric), var(--indigo));
  box-shadow: 0 18px 48px rgba(108, 111, 255, 0.36);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  box-shadow: 0 24px 64px rgba(111, 174, 255, 0.42);
}

.btn-secondary {
  border: 1px solid var(--line-strong);
  color: var(--text);
  background: rgba(18, 26, 51, 0.46);
}

.trust-line {
  max-width: 610px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.hero-visual {
  position: relative;
  z-index: 2;
  min-height: 410px;
  pointer-events: none;
  transform:
    translate3d(calc(var(--card-x) * 0.18), calc(var(--card-y) * 0.18 - var(--hero-progress) * 18px), 0)
    scale(calc(1 - var(--hero-progress) * 0.035));
  transition: transform 120ms ease-out;
}

.hero-media-stack {
  position: relative;
  width: 100%;
  max-width: 540px;
  min-height: 410px;
  margin-left: auto;
}

.hero-photo {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(190, 235, 255, 0.18);
  border-radius: 8px;
  background: rgba(11, 16, 32, 0.7);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.45);
}

.hero-photo::after,
.benefit-photo::after,
.premium-panel::after,
.premium-poster::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-photo-main {
  top: 0;
  right: 0;
  width: 76%;
  height: 88%;
  transform: translate3d(0, calc(var(--hero-progress) * -26px), 0);
}

.hero-photo-main::after {
  background: linear-gradient(180deg, transparent 42%, rgba(5, 8, 21, 0.46));
}

.hero-photo-side {
  left: 0;
  bottom: 0;
  width: 48%;
  height: 48%;
  opacity: 0.92;
  transform: translate3d(0, calc(var(--hero-progress) * 22px), 0);
}

.hero-photo-side::after {
  background: linear-gradient(120deg, rgba(5, 8, 21, 0.18), transparent 54%);
}

.hero-photo img,
.benefit-photo img,
.premium-poster img,
.premium-panel img,
.final-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-logo-mark {
  position: absolute;
  left: 8%;
  top: 11%;
  width: 110px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid rgba(190, 235, 255, 0.2);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(11, 16, 32, 0.62), rgba(18, 26, 51, 0.42)),
    linear-gradient(135deg, rgba(111, 174, 255, 0.18), rgba(155, 124, 255, 0.16));
  box-shadow:
    0 20px 64px rgba(0, 0, 0, 0.38),
    0 0 54px rgba(111, 174, 255, 0.32);
}

.hero-logo-mark img {
  width: 76%;
  height: auto;
  aspect-ratio: 1;
  object-fit: contain;
  filter: drop-shadow(0 0 24px rgba(111, 174, 255, 0.46));
  animation: logoFloat 7s ease-in-out infinite;
}

.signal-strip {
  width: 100%;
  border-block: 1px solid rgba(190, 235, 255, 0.12);
  background: rgba(5, 8, 21, 0.46);
}

.signal-track {
  width: min(var(--max), calc(100% - var(--page-pad) * 2));
  min-height: 58px;
  margin: 0 auto;
  display: grid;
  gap: 0;
}

.signal-track span {
  min-height: 48px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(190, 235, 255, 0.08);
  color: var(--soft);
  font-size: 0.92rem;
  font-weight: 850;
}

.signal-track span:last-child {
  border-bottom: 0;
}

.section {
  width: min(var(--max), calc(100% - var(--page-pad) * 2));
  margin: 0 auto;
  padding: 86px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading p:not(.section-kicker),
.cinematic-copy p {
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.65;
}

.intro-strip {
  padding-top: 64px;
}

.flow-steps {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.flow-step {
  position: relative;
  display: grid;
  gap: 12px;
  padding: 26px 0;
}

.flow-step + .flow-step {
  border-top: 1px solid var(--line);
}

.flow-step span {
  color: var(--electric);
  font-size: 2.35rem;
  line-height: 0.9;
  font-weight: 980;
  text-shadow: 0 0 28px rgba(111, 174, 255, 0.3);
}

.flow-step p,
.benefit-rail p,
.premium-panel p,
.safety-list p,
.faq-list p,
.seo-block p,
.legal-content p,
.legal-hero p {
  color: var(--muted);
  line-height: 1.66;
}

.cinematic-section {
  display: grid;
  gap: 34px;
  align-items: start;
}

.cinematic-copy {
  max-width: 620px;
}

.benefit-stage {
  display: grid;
  gap: 18px;
}

.benefit-photo {
  position: relative;
  min-height: 340px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(190, 235, 255, 0.14);
  border-radius: 8px;
  background: rgba(11, 16, 32, 0.6);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.36);
}

.benefit-photo::after {
  background: linear-gradient(180deg, transparent 40%, rgba(5, 8, 21, 0.58));
}

.benefit-rail {
  display: grid;
  border-top: 1px solid var(--line);
}

.benefit-rail article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 10px 16px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.benefit-rail span {
  width: 38px;
  height: 2px;
  margin-top: 10px;
  background: linear-gradient(90deg, var(--electric), var(--mint));
  box-shadow: 0 0 22px rgba(111, 174, 255, 0.36);
}

.benefit-rail h3,
.benefit-rail p {
  grid-column: 2;
}

.feature-stage {
  width: 100%;
  padding: 100px max(var(--page-pad), calc((100% - var(--max)) / 2));
  border-block: 1px solid rgba(190, 235, 255, 0.11);
  background:
    linear-gradient(180deg, rgba(18, 26, 51, 0.7), rgba(7, 11, 22, 0.82)),
    repeating-linear-gradient(90deg, rgba(190, 235, 255, 0.035) 0 1px, transparent 1px 118px);
}

.feature-head {
  max-width: 760px;
  margin-bottom: 34px;
}

.feature-experience {
  display: grid;
  gap: 28px;
  align-items: center;
}

.phone-scene {
  min-height: 430px;
  display: grid;
  place-items: center;
  perspective: 1000px;
}

.phone-shell {
  position: relative;
  width: min(100%, 340px);
  min-height: 442px;
  padding: 58px 18px 24px;
  border: 1px solid rgba(190, 235, 255, 0.2);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(5, 8, 21, 0.92), rgba(18, 26, 51, 0.82)),
    repeating-linear-gradient(135deg, rgba(190, 235, 255, 0.055) 0 1px, transparent 1px 42px);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.04),
    0 34px 90px rgba(0, 0, 0, 0.42);
  transform:
    rotateX(7deg)
    rotateY(-10deg)
    translate3d(calc(var(--card-x) * 0.08), calc(var(--card-y) * 0.08), 0);
  transition: transform 120ms ease-out;
}

.phone-shell::after {
  content: "";
  position: absolute;
  inset: 13px;
  border: 1px solid rgba(190, 235, 255, 0.08);
  border-radius: 8px;
  pointer-events: none;
}

.phone-top {
  position: absolute;
  top: 18px;
  left: 50%;
  width: 76px;
  height: 5px;
  border-radius: 8px;
  background: rgba(190, 235, 255, 0.26);
  transform: translateX(-50%);
}

.phone-status {
  position: absolute;
  top: 34px;
  right: 28px;
  display: flex;
  gap: 5px;
}

.phone-status span {
  width: 6px;
  height: 6px;
  border-radius: 8px;
  background: var(--mint);
  box-shadow: 0 0 18px rgba(121, 228, 208, 0.42);
}

.message {
  position: relative;
  z-index: 1;
  max-width: 82%;
  margin: 14px 0;
  padding: 12px 14px;
  border: 1px solid rgba(190, 235, 255, 0.15);
  border-radius: 8px;
  color: var(--soft);
  background: rgba(190, 235, 255, 0.08);
  font-weight: 760;
  line-height: 1.36;
}

.message-right {
  margin-left: auto;
  background: linear-gradient(135deg, rgba(111, 174, 255, 0.28), rgba(108, 111, 255, 0.22));
}

.message.soft {
  color: var(--muted);
}

.message.glow {
  color: #FFFFFF;
  box-shadow: 0 0 32px rgba(111, 174, 255, 0.26);
}

.feature-list {
  display: grid;
  border-top: 1px solid var(--line);
}

.feature-line {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 12px;
  align-items: center;
  min-height: 70px;
  border-bottom: 1px solid var(--line);
}

.feature-line span {
  color: var(--electric);
  font-weight: 980;
}

.feature-line p {
  margin: 0;
  color: var(--soft);
  font-weight: 850;
  line-height: 1.35;
}

.premium-section {
  position: relative;
  overflow: clip;
  background:
    linear-gradient(180deg, rgba(7, 11, 22, 0.74), rgba(18, 26, 51, 0.5), rgba(7, 11, 22, 0.92)),
    repeating-linear-gradient(115deg, rgba(190, 235, 255, 0.035) 0 1px, transparent 1px 86px);
}

.premium-poster {
  position: relative;
  min-height: 300px;
  margin: 0 0 18px;
  overflow: hidden;
  border: 1px solid rgba(190, 235, 255, 0.16);
  border-radius: 8px;
  background: rgba(5, 8, 21, 0.72);
  box-shadow: 0 32px 92px rgba(0, 0, 0, 0.36);
}

.premium-poster::after {
  background:
    linear-gradient(90deg, rgba(5, 8, 21, 0.18), transparent 42%),
    linear-gradient(180deg, transparent 52%, rgba(5, 8, 21, 0.5));
}

.premium-showcase {
  display: grid;
  gap: 14px;
}

.premium-panel {
  position: relative;
  min-height: 430px;
  display: grid;
  align-content: end;
  overflow: hidden;
  border: 1px solid rgba(190, 235, 255, 0.16);
  border-radius: 8px;
  background: rgba(11, 16, 32, 0.72);
  transform-style: preserve-3d;
  transition: transform 260ms ease, border-color 260ms ease;
}

.premium-panel:hover {
  border-color: rgba(190, 235, 255, 0.34);
  transform: translateY(-4px);
}

.premium-panel img {
  position: absolute;
  inset: 0;
  transform: scale(1.04);
  opacity: 0.78;
  transition: transform 520ms ease, opacity 520ms ease;
}

.premium-panel:hover img {
  opacity: 0.92;
  transform: scale(1.08);
}

.premium-panel::after {
  background: linear-gradient(180deg, transparent 20%, rgba(5, 8, 21, 0.92));
}

.premium-panel div {
  position: relative;
  z-index: 2;
  padding: 22px;
}

.premium-panel p {
  margin: 10px 0 18px;
}

.premium-panel a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--ice);
  font-weight: 950;
  transition: transform 180ms ease, color 180ms ease;
}

.premium-panel a:hover,
.premium-panel a:focus-visible {
  color: #FFFFFF;
}

.safety-section {
  display: grid;
  gap: 28px;
  align-items: start;
}

.safety-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.safety-list p {
  margin: 0;
  padding: 20px 0 20px 28px;
  border-bottom: 1px solid var(--line);
  position: relative;
}

.safety-list p::before {
  content: "";
  position: absolute;
  left: 0;
  top: 29px;
  width: 8px;
  height: 8px;
  border-radius: 8px;
  background: var(--mint);
  box-shadow: 0 0 18px rgba(121, 228, 208, 0.5);
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(18, 26, 51, 0.34);
  overflow: hidden;
  transition: border-color 180ms ease, background 180ms ease;
}

.faq-list details[open] {
  border-color: rgba(190, 235, 255, 0.28);
  background: rgba(18, 26, 51, 0.52);
}

.faq-list summary {
  min-height: 60px;
  cursor: pointer;
  padding: 18px 20px;
  color: var(--text);
  font-weight: 900;
}

.faq-list summary::marker {
  color: var(--electric);
}

.faq-list p {
  margin: 0;
  padding: 0 20px 20px;
}

.seo-block {
  width: min(900px, calc(100% - var(--page-pad) * 2));
  margin: 0 auto;
  padding: 28px 0 86px;
}

.seo-block h2 {
  font-size: 1.5rem;
}

.final-cta {
  position: relative;
  min-height: 500px;
  display: grid;
  place-items: center;
  overflow: clip;
  padding: 76px var(--page-pad);
  text-align: center;
  border-top: 1px solid rgba(190, 235, 255, 0.12);
  background: #070B16;
}

.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(5, 8, 21, 0.2), rgba(5, 8, 21, 0.82)),
    linear-gradient(90deg, rgba(5, 8, 21, 0.9), rgba(5, 8, 21, 0.36), rgba(5, 8, 21, 0.9));
}

.final-cta > div:not(.final-mark) {
  position: relative;
  z-index: 2;
}

.final-cta h2 {
  max-width: 760px;
  margin: 0 auto;
}

.final-cta .btn {
  margin-top: 28px;
}

.final-mark {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.46;
  pointer-events: none;
}

.final-mark img {
  filter: saturate(1.02) brightness(0.82);
}

.site-footer {
  display: grid;
  gap: 20px;
  padding: 34px var(--page-pad) 42px;
  border-top: 1px solid rgba(190, 235, 255, 0.12);
  color: var(--muted);
  background: #070B16;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-weight: 950;
}

.footer-brand img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  filter: drop-shadow(0 0 14px rgba(111, 174, 255, 0.35));
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}

.site-footer a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--muted);
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--ice);
}

.site-footer p {
  margin: 0;
}

.legal-page {
  min-height: 100vh;
}

.legal-nav {
  position: static;
  display: flex;
  opacity: 1;
  transform: none;
  pointer-events: auto;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.legal-main {
  width: min(900px, calc(100% - var(--page-pad) * 2));
  margin: 0 auto;
  padding: 62px 0 88px;
}

.legal-hero {
  margin-bottom: 38px;
}

.legal-hero h1 {
  max-width: 100%;
}

.legal-hero p {
  max-width: 720px;
  font-size: 1.08rem;
}

.legal-content {
  display: grid;
  gap: 20px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.legal-content h2 {
  font-size: 1.25rem;
}

.legal-content p {
  margin: -8px 0 8px;
}

[data-reveal] {
  opacity: 1;
  transform: none;
  filter: none;
}

.js [data-reveal]:not([data-reveal="hero"]) {
  opacity: 0;
  transform: translateY(30px) scale(0.988);
  clip-path: inset(7% 0 0 0);
  filter: blur(4px);
  transition:
    opacity 620ms ease,
    transform 620ms cubic-bezier(0.16, 1, 0.3, 1),
    clip-path 620ms cubic-bezier(0.16, 1, 0.3, 1),
    filter 620ms ease;
}

.js [data-reveal="hero"] {
  opacity: 0;
  transform: translateY(18px);
  animation: heroCopyIn 860ms 80ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  clip-path: inset(0);
  filter: blur(0);
}

.js [data-stagger].is-visible > * {
  animation: staggerRise 760ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.js [data-stagger].is-visible > *:nth-child(2) {
  animation-delay: 90ms;
}

.js [data-stagger].is-visible > *:nth-child(3) {
  animation-delay: 180ms;
}

.js [data-stagger].is-visible > *:nth-child(4) {
  animation-delay: 270ms;
}

.js [data-stagger].is-visible > *:nth-child(5) {
  animation-delay: 360ms;
}

.js [data-stagger].is-visible > *:nth-child(6) {
  animation-delay: 450ms;
}

@keyframes heroCopyIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes logoFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(0, -8px, 0) scale(1.025);
  }
}

@media (min-width: 700px) {
  :root {
    --page-pad: 28px;
  }

  h1 {
    font-size: 4.35rem;
  }

  h2 {
    font-size: 2.85rem;
  }

  .hero-media-stack {
    min-height: 480px;
  }

  .signal-track {
    grid-template-columns: repeat(4, 1fr);
  }

  .signal-track span {
    min-height: 58px;
    padding-right: 18px;
    border-right: 1px solid rgba(190, 235, 255, 0.08);
    border-bottom: 0;
  }

  .signal-track span:last-child {
    border-right: 0;
  }

  .flow-steps {
    grid-template-columns: repeat(3, 1fr);
  }

  .flow-step {
    padding: 32px 26px 34px 0;
  }

  .flow-step + .flow-step {
    border-top: 0;
    border-left: 1px solid var(--line);
    padding-left: 26px;
  }

  .premium-showcase {
    grid-template-columns: repeat(3, 1fr);
  }

  .premium-poster {
    min-height: 420px;
  }

  .site-footer {
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .site-footer p {
    grid-column: 1 / -1;
  }
}

@media (min-width: 980px) {
  .menu-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    display: flex;
    align-items: center;
    gap: 4px;
    margin-left: auto;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }

  .header-actions {
    margin-left: 0;
  }

  .site-nav a {
    padding-inline: 12px;
  }

  .site-nav .nav-cta {
    margin-left: 4px;
    padding-inline: 16px;
  }

  .hero,
  .hero-inner {
    min-height: calc(100svh - var(--header-h) - 58px);
  }

  .hero-inner {
    grid-template-columns: minmax(0, 0.92fr) minmax(430px, 0.78fr);
    padding-top: 24px;
  }

  h1 {
    font-size: 5.35rem;
  }

  .hero-lead {
    font-size: 1.23rem;
  }

  .hero-visual {
    min-height: 560px;
  }

  .hero-media-stack {
    max-width: 620px;
    min-height: 560px;
  }

  .hero-logo-mark {
    width: 132px;
  }

  .cinematic-section,
  .feature-experience,
  .safety-section {
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
  }

  .cinematic-copy,
  .safety-copy {
    position: sticky;
    top: calc(var(--header-h) + 34px);
  }

  .benefit-photo {
    min-height: 480px;
  }

  .feature-experience {
    gap: 58px;
  }

  .premium-panel {
    min-height: 520px;
  }

  .final-cta h2 {
    font-size: 3.3rem;
  }
}

@media (max-width: 520px) {
  .brand-link span {
    max-width: calc(100vw - 270px);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .menu-toggle {
    position: relative;
    width: 54px;
    min-width: 54px;
    padding: 0;
    font-size: 0;
  }

  .menu-toggle::before {
    content: "";
    width: 18px;
    height: 2px;
    display: block;
    margin: auto;
    border-radius: 999px;
    background: currentColor;
    box-shadow: 0 -6px 0 currentColor, 0 6px 0 currentColor;
  }

  .legal-nav a:not(.nav-cta) {
    display: none;
  }

  .legal-nav .nav-cta {
    padding-inline: 12px;
  }

  h1 {
    font-size: 2.42rem;
  }

  h2 {
    font-size: 2rem;
  }

  .btn {
    width: 100%;
  }

  .hero,
  .hero-inner {
    min-height: calc(100svh - var(--header-h) - 56px);
  }

  .hero {
    overflow: hidden;
  }

  .hero-inner {
    display: block;
    padding-top: 36px;
    padding-bottom: 232px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-actions .btn {
    width: auto;
    min-height: 52px;
    padding-inline: 10px;
    font-size: 0.86rem;
    text-align: center;
    white-space: nowrap;
  }

  .hero-lead {
    font-size: 1.02rem;
  }

  .hero-visual,
  .hero-media-stack {
    min-height: 240px;
  }

  .hero-visual {
    position: absolute;
    left: var(--page-pad);
    right: var(--page-pad);
    bottom: 22px;
  }

  .hero-media-stack {
    max-width: 340px;
    margin-inline: auto;
  }

  .hero-photo-main {
    width: 82%;
    height: 100%;
  }

  .hero-photo-side {
    width: 53%;
    height: 50%;
  }

  .hero-logo-mark {
    width: 94px;
  }

  .phone-scene {
    min-height: 390px;
  }

  .phone-shell {
    min-height: 390px;
  }

  .premium-poster {
    min-height: 260px;
  }

  .section {
    padding: 68px 0;
  }

  .feature-stage {
    padding-top: 76px;
    padding-bottom: 76px;
  }
}

@media (max-width: 380px) {
  h1 {
    font-size: 2.28rem;
  }
}

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

  [data-reveal] {
    opacity: 1;
    transform: none;
    clip-path: none;
    filter: none;
  }

  .js [data-reveal="hero"] {
    animation: none;
    opacity: 1;
    transform: none;
  }
}
