:root {
  --canvas: #030303;
  --surface: #0b0a09;
  --surface-2: #15120d;
  --surface-3: #1d1912;
  --ink: #f8f7f4;
  --muted: #aaa69e;
  --gold: #dfa52c;
  --gold-bright: #ffd66b;
  --gold-deep: #845400;
  --silver: #c9d2e3;
  --mint: #35c76f;
  --line: rgba(255, 214, 107, .18);
  --max: 1180px;
  --radius: 28px;
  --shadow: 0 30px 80px rgba(0, 0, 0, .46);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; color-scheme: dark; }
body {
  margin: 0;
  background: var(--canvas);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .18;
  z-index: 20;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.95' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.11'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { color: inherit; }
::selection { background: var(--gold); color: #050403; }

.sr-only, .skip-link:not(:focus) {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link:focus {
  position: fixed;
  z-index: 100;
  left: 16px;
  top: 16px;
  padding: 10px 14px;
  background: var(--gold-bright);
  color: #000;
  border-radius: 10px;
}

.section-shell { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.section-pad { padding: 120px 0; position: relative; }
.kicker, .eyebrow, .feature-index {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--gold);
  font-size: .76rem;
  font-weight: 850;
  letter-spacing: .18em;
  line-height: 1.3;
  text-transform: uppercase;
}
.kicker::before { content: ""; width: 22px; height: 1px; background: currentColor; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { letter-spacing: -.045em; line-height: 1.03; }
h2 { font-size: clamp(2.6rem, 5.5vw, 5.4rem); margin-bottom: 24px; }
h2 em, h1 span { color: var(--gold-bright); font-style: normal; }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 18px 0;
  transition: background .25s, border-color .25s, padding .25s;
}
.site-header.scrolled {
  padding: 10px 0;
  background: rgba(3, 3, 3, .82);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  backdrop-filter: blur(18px);
}
.nav-shell {
  width: min(calc(100% - 36px), 1240px);
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 900; letter-spacing: .17em; font-size: .9rem; }
.brand img { border-radius: 12px; box-shadow: 0 0 25px rgba(223, 165, 44, .14); }
.brand > span > span { color: var(--gold-bright); }
.site-nav { display: flex; align-items: center; gap: 30px; font-size: .88rem; color: #c8c4bc; font-weight: 650; }
.site-nav a { transition: color .2s; }
.site-nav a:hover { color: #fff; }
.site-nav .nav-cta { padding: 10px 17px; color: #111; background: linear-gradient(135deg, #fff8e5, #f3bb3d); border-radius: 999px; }
.menu-toggle { display: none; width: 42px; height: 42px; border: 1px solid var(--line); background: #0a0907; border-radius: 12px; padding: 11px; }
.menu-toggle > span:not(.sr-only) { display: block; height: 1px; background: #fff; margin: 5px 0; }

.hero {
  position: relative;
  min-height: 880px;
  height: 100svh;
  max-height: 1040px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 73% 42%, rgba(223, 165, 44, .13), transparent 28%),
    linear-gradient(145deg, #100b04 0%, #030303 38%, #000 100%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 84%);
}
.ambient { position: absolute; border-radius: 50%; filter: blur(70px); opacity: .25; }
.ambient-one { width: 420px; height: 420px; right: -100px; top: 10%; background: #925c00; }
.ambient-two { width: 260px; height: 260px; left: 22%; bottom: -160px; background: #f3b731; opacity: .12; }
.hero-grid { display: grid; grid-template-columns: .92fr 1.08fr; align-items: center; gap: 60px; position: relative; z-index: 2; padding-top: 55px; }
.hero-copy { position: relative; z-index: 3; }
.eyebrow { margin-bottom: 23px; color: #d8d2c7; letter-spacing: .13em; }
.status-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold-bright); box-shadow: 0 0 0 5px rgba(255, 214, 107, .12), 0 0 18px var(--gold); }
.hero h1 { font-size: clamp(3.8rem, 7vw, 7.35rem); margin-bottom: 27px; max-width: 780px; }
.hero-lede { max-width: 600px; font-size: clamp(1.06rem, 1.5vw, 1.32rem); line-height: 1.65; color: var(--muted); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.button { min-height: 54px; padding: 0 22px; border-radius: 15px; display: inline-flex; align-items: center; justify-content: center; gap: 10px; font-size: .92rem; font-weight: 800; transition: transform .2s, border-color .2s, box-shadow .2s; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: #090806; background: linear-gradient(135deg, #fff9e9, #f7cd62 55%, #d89514); box-shadow: 0 14px 35px rgba(223, 165, 44, .18); }
.button-primary:hover { box-shadow: 0 18px 44px rgba(223, 165, 44, .28); }
.button-primary svg { width: 20px; height: 20px; fill: currentColor; }
.button-ghost { border: 1px solid rgba(255,255,255,.12); background: rgba(255,255,255,.035); color: #eeeae2; }
.button-ghost:hover { border-color: rgba(255,214,107,.4); }
.hero-proof { display: flex; flex-wrap: wrap; gap: 20px; margin-top: 24px; color: #827e77; font-size: .79rem; font-weight: 650; }
.hero-proof i { display: inline-grid; place-items: center; width: 17px; height: 17px; margin-right: 5px; border-radius: 50%; background: rgba(53,199,111,.13); color: var(--mint); font-style: normal; font-size: .65rem; }
.hero-visual { min-height: 700px; position: relative; perspective: 1400px; }
.phone {
  position: absolute;
  overflow: hidden;
  border: 8px solid #1d1c1a;
  border-radius: 46px;
  background: #000;
  box-shadow: var(--shadow), inset 0 0 0 1px rgba(255,255,255,.09);
}
.phone img { width: 100%; height: 100%; object-fit: cover; }
.phone-island { position: absolute; z-index: 2; top: 10px; left: 50%; transform: translateX(-50%); width: 30%; height: 22px; border-radius: 99px; background: #000; }
.phone-main { z-index: 3; width: 300px; height: 652px; left: 50%; top: 50%; transform: translate(-50%, -49%) rotateY(-3deg); }
.phone-left, .phone-right { width: 246px; height: 534px; top: 53%; filter: saturate(.8) brightness(.72); opacity: .75; }
.phone-left { z-index: 1; left: 0; transform: translateY(-50%) rotate(-8deg) rotateY(12deg); }
.phone-right { z-index: 2; right: -14px; transform: translateY(-50%) rotate(7deg) rotateY(-12deg); }
.orbit { position: absolute; border: 1px solid rgba(255,214,107,.14); border-radius: 50%; inset: 7% -3%; transform: rotate(-14deg); }
.orbit-two { inset: 22% 9%; transform: rotate(23deg); border-color: rgba(201,210,227,.09); }
.floating-chip { position: absolute; z-index: 5; display: flex; align-items: center; gap: 9px; padding: 11px 15px; border: 1px solid rgba(255,255,255,.1); background: rgba(14,12,9,.82); backdrop-filter: blur(12px); border-radius: 13px; color: #d8d5ce; font-size: .75rem; font-weight: 750; box-shadow: 0 12px 35px #000; }
.floating-chip span { color: var(--mint); }
.floating-chip strong { display: inline-grid; place-items: center; width: 27px; height: 27px; color: #111; background: var(--gold-bright); border-radius: 9px; }
.chip-top { top: 16%; right: -7%; animation: float 4.7s ease-in-out infinite; }
.chip-bottom { bottom: 13%; left: 0; animation: float 5.4s ease-in-out .8s infinite; }
@keyframes float { 50% { transform: translateY(-9px); } }
.scroll-cue { position: absolute; z-index: 4; bottom: 24px; left: 50%; width: 28px; height: 44px; border: 1px solid rgba(255,255,255,.17); border-radius: 99px; }
.scroll-cue span { position: absolute; top: 9px; left: 50%; width: 4px; height: 8px; margin-left: -2px; border-radius: 9px; background: var(--gold-bright); animation: scroll 1.8s infinite; }
@keyframes scroll { 70% { transform: translateY(15px); opacity: 0; } 71% { transform: translateY(0); opacity: 0; } 100% { opacity: 1; } }

.promise { padding-bottom: 0; background: #060504; }
.promise-grid { display: grid; grid-template-columns: 1.35fr .65fr; gap: 70px; align-items: end; }
.section-heading h2 { font-size: clamp(2.5rem, 4.3vw, 4.75rem); margin: 20px 0 0; }
.promise-copy { color: var(--muted); margin: 0 0 9px; font-size: 1.08rem; }
.marquee { margin-top: 100px; overflow: hidden; border-top: 1px solid rgba(255,255,255,.08); border-bottom: 1px solid rgba(255,255,255,.08); background: #0d0b07; transform: rotate(-1.2deg) scale(1.02); }
.marquee-track { width: max-content; display: flex; align-items: center; gap: 34px; padding: 15px 0; color: #817b72; font-size: .73rem; font-weight: 850; letter-spacing: .19em; animation: marquee 28s linear infinite; }
.marquee-track i { color: var(--gold); font-style: normal; font-size: .55rem; }
@keyframes marquee { to { transform: translateX(-50%); } }

.how { background: linear-gradient(#050403, #0d0904 60%, #050403); }
.section-intro { max-width: 680px; margin-bottom: 60px; }
.section-intro h2 { margin: 20px 0 22px; }
.section-intro p { max-width: 560px; color: var(--muted); font-size: 1.05rem; }
.section-intro.centered { text-align: center; margin-inline: auto; }
.section-intro.centered .kicker { justify-content: center; }
.section-intro.centered p { margin-inline: auto; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.step-card { min-height: 390px; padding: 30px; display: flex; flex-direction: column; border: 1px solid rgba(255,255,255,.08); border-radius: var(--radius); background: linear-gradient(145deg, rgba(255,255,255,.04), rgba(255,255,255,.01)); transition: transform .25s, border-color .25s; }
.step-card:hover { transform: translateY(-6px); border-color: rgba(255,214,107,.27); }
.step-card.featured { background: linear-gradient(145deg, #21180b, #0b0906 75%); border-color: rgba(223,165,44,.27); }
.step-number { color: #6f6b64; font-family: ui-monospace, monospace; font-size: .74rem; letter-spacing: .12em; }
.step-card h3 { font-size: 1.6rem; margin: auto 0 13px; }
.step-card p { margin: 0; color: var(--muted); font-size: .94rem; }
.step-icon { position: relative; height: 150px; margin: 30px 0; display: flex; align-items: end; justify-content: center; gap: 9px; }
.icon-library span { display: block; width: 56px; border-radius: 10px; background: linear-gradient(145deg, #f5d477, #8c5a06); box-shadow: 0 12px 25px rgba(223,165,44,.12); }
.icon-library span:nth-child(1) { height: 80px; transform: rotate(-9deg) translateY(8px); opacity: .5; }
.icon-library span:nth-child(2) { height: 110px; background: linear-gradient(145deg, #fff4cf, #d49313); }
.icon-library span:nth-child(3) { height: 80px; transform: rotate(9deg) translateY(8px); opacity: .5; }
.icon-podium span { display: block; width: 68px; border-radius: 9px 9px 2px 2px; background: #211d17; border: 1px solid rgba(255,255,255,.08); }
.icon-podium span:nth-child(1) { height: 64px; }
.icon-podium span:nth-child(2) { height: 108px; background: linear-gradient(#5a3a09, #21170a); border-color: rgba(255,214,107,.3); order: -1; }
.icon-podium span:nth-child(3) { height: 46px; }
.versus-mini { height: 150px; margin: 30px 0; display: flex; justify-content: center; align-items: center; }
.versus-mini span { width: 94px; height: 112px; display: grid; place-items: center; border-radius: 18px; font-size: 2rem; font-weight: 900; background: linear-gradient(145deg, #253c6e, #111c35); border: 1px solid rgba(255,255,255,.12); }
.versus-mini span:last-child { background: linear-gradient(145deg, #8242a6, #321841); }
.versus-mini b { z-index: 2; display: grid; place-items: center; width: 44px; height: 44px; margin: 0 -7px; border-radius: 50%; color: #111; background: var(--gold-bright); font-size: .75rem; box-shadow: 0 0 24px rgba(223,165,44,.38); }

.demo { background: #050505; border-top: 1px solid rgba(255,255,255,.05); border-bottom: 1px solid rgba(255,255,255,.05); }
.demo-grid { display: grid; grid-template-columns: .7fr 1.3fr; gap: 85px; align-items: center; }
.demo-copy h2 { margin: 20px 0 24px; font-size: clamp(3rem, 5vw, 5.1rem); }
.demo-copy > p { color: var(--muted); }
.demo-result { margin-top: 34px; padding: 18px; border-left: 2px solid var(--gold); background: linear-gradient(90deg, rgba(223,165,44,.09), transparent); }
.demo-result span { color: var(--gold); font-size: .67rem; font-weight: 850; letter-spacing: .15em; }
.demo-result p { margin: 5px 0 0; color: #cfcbc4; font-size: .9rem; }
.duel-stage { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.duel-card { min-width: 0; padding: 14px 14px 20px; text-align: left; border: 1px solid rgba(255,255,255,.1); background: linear-gradient(145deg, #12100c, #070706); border-radius: 26px; cursor: pointer; transition: transform .25s, border-color .25s, box-shadow .25s; }
.duel-card:hover, .duel-card.selected { transform: translateY(-7px); border-color: rgba(255,214,107,.48); box-shadow: 0 22px 55px rgba(0,0,0,.4), 0 0 36px rgba(223,165,44,.08); }
.album-art { position: relative; display: grid; place-items: center; width: 100%; aspect-ratio: 1; border-radius: 19px; overflow: hidden; background: linear-gradient(145deg, #1d376c, #6e83ad); }
.duel-purple .album-art { background: linear-gradient(145deg, #4c1f68, #b54fd2 56%, #624cbe); }
.album-art::before, .album-art::after { content: ""; position: absolute; border-radius: 50%; border: 1px solid rgba(255,255,255,.24); }
.album-art::before { width: 52%; height: 52%; }
.album-art::after { width: 20%; height: 20%; background: rgba(0,0,0,.7); border: 0; }
.album-art i { position: absolute; z-index: 2; left: 12%; bottom: 10%; font-size: 2.4rem; font-style: normal; font-weight: 900; color: rgba(255,255,255,.85); }
.album-art b { position: absolute; width: 62%; height: 150%; right: -16%; top: -55%; border-radius: 50%; background: rgba(255,255,255,.08); transform: rotate(-18deg); }
.duel-meta { display: block; padding: 20px 7px 18px; }
.duel-meta strong, .duel-meta small { display: block; }
.duel-meta strong { font-size: 1.2rem; letter-spacing: -.02em; }
.duel-meta small { margin-top: 5px; color: var(--muted); font-size: .75rem; }
.pick-label { display: flex; justify-content: space-between; align-items: center; margin: 0 7px; padding-top: 13px; border-top: 1px solid rgba(255,255,255,.08); color: #99958e; font-size: .72rem; font-weight: 750; text-transform: uppercase; letter-spacing: .08em; }
.pick-label i { color: var(--gold-bright); font-style: normal; }
.vs-badge { position: absolute; z-index: 3; left: 50%; top: 42%; transform: translate(-50%, -50%); display: grid; place-items: center; width: 52px; height: 52px; border: 3px solid #fff3ca; border-radius: 50%; color: #111; background: linear-gradient(145deg, #fff6d9, #edae25); font-size: .75rem; font-weight: 950; box-shadow: 0 0 34px rgba(223,165,44,.5); }

.features { background: linear-gradient(#090704, #030303 42%); }
.feature-showcase { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.feature-panel { min-height: 590px; border: 1px solid rgba(255,255,255,.07); border-radius: 32px; overflow: hidden; background: #0b0a08; }
.copy-panel { padding: clamp(34px, 5vw, 68px); display: flex; flex-direction: column; justify-content: center; }
.copy-panel h3 { max-width: 480px; font-size: clamp(2.2rem, 4vw, 4.2rem); margin: 22px 0; }
.copy-panel > p { max-width: 470px; color: var(--muted); }
.copy-panel ul { padding: 0; margin: 22px 0 0; list-style: none; }
.copy-panel li { padding: 11px 0 11px 28px; position: relative; border-top: 1px solid rgba(255,255,255,.07); color: #d4d0c8; font-size: .9rem; }
.copy-panel li::before { content: "✓"; position: absolute; left: 2px; color: var(--gold); }
.image-panel { position: relative; background: radial-gradient(circle at 50% 60%, rgba(223,165,44,.18), transparent 45%), #0b0804; }
.image-panel::before { content: ""; position: absolute; inset: 0; background-image: radial-gradient(rgba(255,214,107,.25) 1px, transparent 1px); background-size: 24px 24px; mask-image: linear-gradient(transparent, black 25%, transparent); opacity: .25; }
.feature-phone { width: 310px; height: 672px; top: 70px; left: 50%; transform: translateX(-50%); }
.history-panel { background: radial-gradient(circle at 50% 50%, rgba(201,210,227,.12), transparent 46%), #080706; }
.feature-index { color: var(--gold); }
.feature-strip { margin-top: 18px; display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid rgba(255,255,255,.07); border-radius: 26px; background: #0a0907; }
.feature-strip > div { padding: 28px; display: grid; grid-template-columns: auto 1fr; grid-template-rows: auto auto; column-gap: 15px; }
.feature-strip > div + div { border-left: 1px solid rgba(255,255,255,.07); }
.strip-icon { grid-row: 1 / 3; width: 45px; height: 45px; display: grid; place-items: center; border-radius: 13px; color: var(--gold-bright); background: rgba(223,165,44,.1); font-size: 1.2rem; }
.feature-strip strong { font-size: .9rem; }
.feature-strip small { color: var(--muted); font-size: .74rem; }

.privacy { overflow: hidden; background: #070705; }
.privacy-glow { position: absolute; width: 600px; height: 600px; left: -300px; top: 50%; transform: translateY(-50%); border-radius: 50%; background: rgba(223,165,44,.13); filter: blur(100px); }
.privacy-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 100px; align-items: center; }
.privacy-mark { position: relative; min-height: 430px; display: grid; place-items: center; }
.shield { position: relative; z-index: 2; width: 210px; height: 250px; display: grid; place-items: center; clip-path: polygon(50% 0, 92% 16%, 86% 72%, 50% 100%, 14% 72%, 8% 16%); background: linear-gradient(150deg, #fff4cc, #d59920 55%, #714603); filter: drop-shadow(0 22px 50px rgba(223,165,44,.22)); }
.shield::before { content: ""; position: absolute; inset: 4px; clip-path: inherit; background: linear-gradient(145deg, #221b0f, #070604); }
.shield span { position: relative; font-size: 3.4rem; color: var(--gold-bright); }
.signal-lines, .signal-lines::before, .signal-lines::after { position: absolute; inset: 10px; border: 1px solid rgba(255,214,107,.1); border-radius: 50%; }
.signal-lines::before, .signal-lines::after { content: ""; }
.signal-lines::before { inset: 42px; }
.signal-lines::after { inset: 84px; }
.signal-lines i { position: absolute; width: 8px; height: 8px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 15px var(--gold); }
.signal-lines i:nth-child(1) { left: 12%; top: 31%; }
.signal-lines i:nth-child(2) { right: 8%; bottom: 31%; }
.signal-lines i:nth-child(3) { left: 50%; bottom: 3%; }
.privacy-copy h2 { margin: 20px 0 25px; }
.privacy-copy > p { max-width: 630px; color: var(--muted); font-size: 1.03rem; }
.privacy-points { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 30px 0; }
.privacy-points span { font-size: .85rem; color: #d7d3cb; }
.privacy-points i { display: inline-grid; place-items: center; width: 21px; height: 21px; margin-right: 9px; color: var(--mint); background: rgba(53,199,111,.1); border-radius: 50%; font-style: normal; }
.text-link { color: var(--gold-bright); font-weight: 750; font-size: .9rem; }
.text-link span { display: inline-block; margin-left: 5px; transition: transform .2s; }
.text-link:hover span { transform: translateX(4px); }

.faq { background: #030303; }
.faq-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 90px; align-items: start; }
.faq .section-intro { position: sticky; top: 130px; }
.faq .section-intro a { color: var(--gold-bright); text-decoration: underline; text-underline-offset: 4px; }
.faq-list { border-top: 1px solid rgba(255,255,255,.12); }
.faq details { border-bottom: 1px solid rgba(255,255,255,.12); }
.faq summary { position: relative; padding: 25px 48px 25px 0; list-style: none; cursor: pointer; font-size: 1.05rem; font-weight: 750; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary span, .faq summary span::after { position: absolute; right: 5px; top: 50%; width: 16px; height: 1px; background: var(--gold-bright); }
.faq summary span::after { content: ""; transform: rotate(90deg); transition: transform .2s; }
.faq details[open] summary span::after { transform: rotate(0); }
.faq details p { padding: 0 40px 26px 0; margin: 0; color: var(--muted); }

.availability { background: linear-gradient(#030303, #0b0804); }
.availability-card { position: relative; min-height: 600px; padding: 78px 30px; overflow: hidden; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; border: 1px solid rgba(255,214,107,.18); border-radius: 38px; background: radial-gradient(circle at 50% 100%, rgba(223,165,44,.2), transparent 43%), linear-gradient(145deg, #151006, #050403 65%); }
.availability-card > *:not(.vinyl-lines) { position: relative; z-index: 2; }
.availability-card > img { border-radius: 26px; margin-bottom: 22px; box-shadow: 0 18px 55px rgba(223,165,44,.19); }
.availability-card h2 { max-width: 820px; margin: 18px 0; }
.availability-card > p { max-width: 600px; color: var(--muted); }
.availability-card > small { margin-top: 22px; color: #77736c; }
.centered-actions { justify-content: center; }
.vinyl-lines { position: absolute; width: 760px; height: 760px; border: 1px solid rgba(255,214,107,.09); border-radius: 50%; }
.vinyl-lines::before, .vinyl-lines::after { content: ""; position: absolute; border: inherit; border-radius: inherit; }
.vinyl-lines::before { inset: 100px; }
.vinyl-lines::after { inset: 220px; }

.site-footer { padding: 70px 0 24px; background: #090704; }
.footer-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; padding-bottom: 55px; }
.footer-grid > div:first-child p { color: #77736c; margin: 15px 0 0; }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.footer-links div { display: flex; flex-direction: column; gap: 9px; }
.footer-links strong { margin-bottom: 5px; font-size: .78rem; color: #fff; }
.footer-links a { color: #89857d; font-size: .78rem; }
.footer-links a:hover { color: var(--gold-bright); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.08); color: #66625c; font-size: .7rem; }

[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
[data-reveal].visible { opacity: 1; transform: translateY(0); }

/* Legal and support pages */
.subpage { background: linear-gradient(145deg, #0d0904, #030303 30%); min-height: 100vh; }
.subpage-main { padding: 150px 0 110px; }
.subpage-hero { max-width: 820px; margin-bottom: 65px; }
.subpage-hero h1 { font-size: clamp(3.2rem, 7vw, 6.2rem); margin: 18px 0 22px; }
.subpage-hero p { color: var(--muted); font-size: 1.08rem; }
.legal-layout { display: grid; grid-template-columns: 250px minmax(0, 760px); gap: 80px; align-items: start; }
.legal-aside { position: sticky; top: 120px; padding: 20px; border: 1px solid rgba(255,255,255,.08); border-radius: 18px; background: #0a0907; }
.legal-aside strong, .legal-aside a { display: block; }
.legal-aside strong { margin-bottom: 12px; color: var(--gold); font-size: .7rem; letter-spacing: .13em; text-transform: uppercase; }
.legal-aside a { padding: 6px 0; color: #918d85; font-size: .78rem; }
.legal-aside a:hover { color: var(--gold-bright); }
.legal-copy section { scroll-margin-top: 110px; padding-bottom: 34px; margin-bottom: 34px; border-bottom: 1px solid rgba(255,255,255,.08); }
.legal-copy h2 { font-size: clamp(1.65rem, 3vw, 2.25rem); margin-bottom: 15px; }
.legal-copy h3 { margin: 24px 0 10px; font-size: 1.05rem; }
.legal-copy p, .legal-copy li { color: #aaa69e; }
.legal-copy a { color: var(--gold-bright); text-decoration: underline; text-underline-offset: 3px; }
.legal-copy ul { padding-left: 20px; }
.legal-note { padding: 18px; border-left: 2px solid var(--gold); background: rgba(223,165,44,.07); border-radius: 0 12px 12px 0; }
.support-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 50px 0; }
.support-card { padding: 27px; border: 1px solid rgba(255,255,255,.08); border-radius: 22px; background: #0a0907; }
.support-card span { display: grid; place-items: center; width: 42px; height: 42px; margin-bottom: 35px; color: var(--gold-bright); background: rgba(223,165,44,.1); border-radius: 12px; }
.support-card h2 { font-size: 1.4rem; }
.support-card p { color: var(--muted); font-size: .87rem; }

@media (max-width: 1050px) {
  .hero { min-height: 820px; }
  .hero-grid { grid-template-columns: .9fr 1.1fr; gap: 25px; }
  .hero h1 { font-size: clamp(3.6rem, 7vw, 5.5rem); }
  .phone-main { width: 270px; height: 586px; }
  .phone-left, .phone-right { width: 200px; height: 434px; }
  .chip-top { right: 0; }
  .demo-grid { gap: 45px; }
  .feature-panel { min-height: 540px; }
  .privacy-grid { gap: 40px; }
}

@media (max-width: 820px) {
  .section-pad { padding: 88px 0; }
  .menu-toggle { display: block; position: relative; z-index: 3; }
  .site-nav { position: fixed; inset: 0; padding: 110px 28px 40px; flex-direction: column; align-items: stretch; gap: 0; background: rgba(3,3,3,.97); transform: translateY(-100%); opacity: 0; visibility: hidden; transition: transform .3s, opacity .3s, visibility .3s; }
  .site-nav.open { transform: translateY(0); opacity: 1; visibility: visible; }
  .site-nav a { padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,.08); font-size: 1.2rem; }
  .site-nav .nav-cta { margin-top: 18px; border: 0; text-align: center; }
  .site-nav.legal-nav { position: static; inset: auto; width: auto; padding: 0; flex-direction: row; align-items: center; gap: 16px; background: transparent; transform: none; opacity: 1; visibility: visible; }
  .site-nav.legal-nav a { padding: 0; border: 0; font-size: .78rem; }
  .hero { height: auto; min-height: 1080px; padding: 145px 0 70px; align-items: flex-start; }
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-copy { display: flex; flex-direction: column; align-items: center; }
  .hero-lede { max-width: 580px; }
  .hero-actions, .hero-proof { justify-content: center; }
  .hero-visual { min-height: 590px; width: min(100%, 620px); margin-inline: auto; }
  .phone-main { width: 257px; height: 558px; }
  .phone-left, .phone-right { width: 185px; height: 402px; }
  .chip-top { right: 2%; }
  .scroll-cue { display: none; }
  .promise-grid, .demo-grid, .privacy-grid, .faq-grid { grid-template-columns: 1fr; gap: 50px; }
  .steps { grid-template-columns: 1fr; }
  .step-card { min-height: 340px; }
  .step-icon, .versus-mini { height: 120px; margin: 20px 0; }
  .feature-showcase { grid-template-columns: 1fr; }
  .feature-panel { min-height: 500px; }
  .history-panel { order: 4; }
  .feature-strip { grid-template-columns: 1fr; }
  .feature-strip > div + div { border-left: 0; border-top: 1px solid rgba(255,255,255,.07); }
  .privacy-mark { min-height: 320px; }
  .shield { width: 165px; height: 200px; }
  .signal-lines { inset: 0 15%; }
  .faq .section-intro { position: static; }
  .footer-grid { grid-template-columns: 1fr; gap: 45px; }
  .legal-layout { grid-template-columns: 1fr; gap: 35px; }
  .legal-aside { position: static; display: none; }
  .support-grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .section-shell { width: min(calc(100% - 28px), var(--max)); }
  .section-pad { padding: 72px 0; }
  h2 { font-size: 2.65rem; }
  .brand { font-size: .77rem; }
  .brand img { width: 38px; height: 38px; }
  .hero { min-height: 960px; padding-top: 100px; }
  .hero-grid { padding-top: 20px; }
  .hero h1 { font-size: clamp(3.1rem, 15vw, 4.4rem); }
  .hero-lede { font-size: 1rem; }
  .hero-actions { width: 100%; }
  .hero-actions .button { width: 100%; }
  .hero-proof { gap: 10px 15px; }
  .hero-visual { min-height: 510px; margin-top: 25px; }
  .phone { border-width: 6px; border-radius: 36px; }
  .phone-main { width: 220px; height: 478px; }
  .phone-left, .phone-right { width: 140px; height: 304px; top: 56%; opacity: .56; }
  .phone-left { left: -4%; }
  .phone-right { right: -4%; }
  .phone-island { height: 16px; top: 8px; }
  .floating-chip { display: none; }
  .promise-grid { gap: 30px; }
  .marquee { margin-top: 65px; }
  .step-card { padding: 24px; }
  .duel-stage { gap: 8px; }
  .duel-card { padding: 8px 8px 15px; border-radius: 19px; }
  .album-art { border-radius: 14px; }
  .album-art i { font-size: 1.7rem; }
  .duel-meta { padding: 14px 3px; }
  .duel-meta strong { font-size: .9rem; }
  .duel-meta small { font-size: .64rem; line-height: 1.4; }
  .pick-label { margin: 0 3px; font-size: .58rem; }
  .vs-badge { width: 42px; height: 42px; }
  .feature-panel { min-height: 470px; }
  .copy-panel { padding: 30px 25px; }
  .feature-phone { width: 250px; height: 543px; }
  .privacy-points { grid-template-columns: 1fr; }
  .availability-card { padding: 60px 20px; border-radius: 28px; }
  .availability-card > img { width: 88px; height: 88px; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; }
  .subpage-main { padding-top: 120px; }
  .subpage-hero h1 { font-size: 3.15rem; }
}

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