/* ──────────────────────────────────────────────────────────
   White Duke — site.css
   Minimal · monochrome · one sans · quiet motion
   ────────────────────────────────────────────────────────── */

:root {
  --bg: #050505;
  --bg-2: #0a0a0a;
  --surface: #0c0c0c;
  --surface-2: #111;
  --ink: #f4f4f4;
  --ink-soft: rgba(244,244,244,0.62);
  --ink-mute: rgba(244,244,244,0.34);
  --ink-faint: rgba(244,244,244,0.12);
  --line: rgba(244,244,244,0.07);
  --line-strong: rgba(244,244,244,0.14);
  --sans: "Geist", -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;
  --max: 1180px;
  --pad: clamp(20px, 4.4vw, 56px);
  --gap-sec: clamp(88px, 11vw, 160px);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { background: var(--bg); color: var(--ink); font-family: var(--sans); font-weight: 400; -webkit-font-smoothing: antialiased; }
html { scroll-behavior: smooth; }
body { overflow-x: hidden; line-height: 1.5; font-size: 16px; letter-spacing: -0.01em; }

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

.mono { font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-mute); }

/* ──────────── LOADER (cinematic boot) ──────────── */
.loader {
  position: fixed; inset: 0; z-index: 9999;
  background: radial-gradient(120% 120% at 50% 32%, #0d0d0d 0%, #000 74%);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  overflow: hidden;
  transition: opacity 760ms cubic-bezier(0.4, 0, 0.2, 1);
}
.loader.done { opacity: 0; pointer-events: none; }
.loader.gone { display: none; }
/* lock page scroll while booting so the scrollbar gutter can't shift centering */
html.wd-booting, html.wd-booting body { overflow: hidden !important; }
/* dim starfield behind everything */
.loader::before {
  content: ""; position: absolute; inset: -10%;
  background-image:
    radial-gradient(1.4px 1.4px at 20% 30%, rgba(255,255,255,0.5), transparent 60%),
    radial-gradient(1.2px 1.2px at 75% 22%, rgba(255,255,255,0.4), transparent 60%),
    radial-gradient(1.3px 1.3px at 60% 70%, rgba(255,255,255,0.4), transparent 60%),
    radial-gradient(1px 1px   at 35% 80%, rgba(255,255,255,0.35), transparent 60%),
    radial-gradient(1.1px 1.1px at 88% 65%, rgba(255,255,255,0.4), transparent 60%),
    radial-gradient(1px 1px   at 12% 60%, rgba(255,255,255,0.3), transparent 60%);
  animation: starTwinkle 4.2s ease-in-out infinite alternate;
  opacity: 0.7;
}
@keyframes starTwinkle { 0% { opacity: 0.35; } 100% { opacity: 0.85; } }

@keyframes spin { to { transform: rotate(360deg); } }

.loader-stage {
  position: relative;
  width: clamp(210px, 46vmin, 320px);
  height: clamp(210px, 46vmin, 320px);
  opacity: 0; transform: scale(0.9);
  animation: stageIn 950ms cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}
@keyframes stageIn { to { opacity: 1; transform: scale(1); } }
/* rotating conic "aurora" glow behind everything (centred via negative margins
   so the spin transform doesn't override its position) */
.loader-stage::before {
  content: ""; position: absolute; top: 50%; left: 50%;
  width: 150%; height: 150%; margin: -75% 0 0 -75%;
  border-radius: 50%;
  background: conic-gradient(from 0deg,
    rgba(255,255,255,0) 0deg, rgba(255,255,255,0.13) 60deg,
    rgba(255,255,255,0) 140deg, rgba(255,255,255,0.09) 220deg,
    rgba(255,255,255,0) 320deg);
  filter: blur(46px); opacity: 0.75; pointer-events: none;
  animation: spin 9s linear infinite;
}
/* sonar pulse rings (centred on the mascot) */
.loader-stage::after {
  content: ""; position: absolute; top: 50%; left: 50%;
  width: 46%; height: 46%; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.5);
  animation: sonar 2.6s cubic-bezier(0.2, 0.6, 0.3, 1) infinite;
}
@keyframes sonar {
  0%   { transform: translate(-50%, -50%) scale(0.6); opacity: 0.7; }
  80%  { opacity: 0; }
  100% { transform: translate(-50%, -50%) scale(2.3); opacity: 0; }
}

/* concentric rotating rings */
.loader-stage .lr {
  position: absolute; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.10);
  will-change: transform;
}
.loader-stage .lr1 { inset: 0;   border-style: dashed; border-color: rgba(255,255,255,0.14); animation: spin 16s linear infinite; }
.loader-stage .lr2 { inset: 12%; border-color: rgba(255,255,255,0.09); animation: spin 11s linear infinite reverse; }
.loader-stage .lr3 { inset: 24%; border-color: rgba(255,255,255,0.06); animation: spin 8s linear infinite; }

/* rotating arc sweep — "scanning" the channel */
.loader-sweep {
  position: absolute; inset: 1%;
  border-radius: 50%;
  background: conic-gradient(from 0deg, rgba(255,255,255,0) 0 64%, rgba(255,255,255,0.6) 90%, rgba(255,255,255,0) 100%);
  -webkit-mask: radial-gradient(closest-side, transparent 77%, #000 79%);
          mask: radial-gradient(closest-side, transparent 77%, #000 79%);
  animation: spin 1.5s cubic-bezier(0.5, 0.15, 0.5, 0.85) infinite;
  will-change: transform;
}
/* faint counter-rotating inner sweep for depth */
.loader-sweep::before {
  content: ""; position: absolute; inset: 6%; border-radius: 50%;
  background: conic-gradient(from 180deg, rgba(255,255,255,0) 0 70%, rgba(255,255,255,0.32) 92%, rgba(255,255,255,0) 100%);
  -webkit-mask: radial-gradient(closest-side, transparent 74%, #000 76%);
          mask: radial-gradient(closest-side, transparent 74%, #000 76%);
  animation: spin 3.4s linear infinite reverse;
}

/* two counter-rotating glow dots */
.loader-orbit { position: absolute; will-change: transform; }
.loader-orbit .dot {
  position: absolute; border-radius: 50%; background: #fff;
}
.loader-orbit.lo1 { inset: -2%; animation: spin 3.4s linear infinite; }
.loader-orbit.lo1 .dot { top: -4px; left: 50%; transform: translateX(-50%); width: 7px; height: 7px; box-shadow: 0 0 16px 3px rgba(255,255,255,0.85); }
.loader-orbit.lo2 { inset: 9%; animation: spin 4.8s linear infinite reverse; }
.loader-orbit.lo2 .dot { bottom: -3px; left: 50%; transform: translateX(-50%); width: 5px; height: 5px; box-shadow: 0 0 12px 2px rgba(255,255,255,0.7); }

/* floating particles — container is absolute so it never becomes a layout item */
.loader-particles { position: absolute; inset: 0; pointer-events: none; }
.loader-particles span {
  position: absolute; width: 3px; height: 3px; border-radius: 50%;
  background: rgba(255,255,255,0.7); box-shadow: 0 0 8px rgba(255,255,255,0.6);
  animation: floatP 5s ease-in-out infinite;
}
.loader-particles span:nth-child(1) { top: 8%;  left: 24%; animation-delay: 0s;   }
.loader-particles span:nth-child(2) { top: 18%; left: 82%; animation-delay: 0.6s; }
.loader-particles span:nth-child(3) { top: 72%; left: 14%; animation-delay: 1.2s; }
.loader-particles span:nth-child(4) { top: 86%; left: 70%; animation-delay: 1.8s; }
.loader-particles span:nth-child(5) { top: 50%; left: 4%;  animation-delay: 2.4s; }
.loader-particles span:nth-child(6) { top: 40%; left: 94%; animation-delay: 3.0s; }
@keyframes floatP {
  0%, 100% { transform: translateY(0) scale(0.8); opacity: 0.25; }
  50%      { transform: translateY(-12px) scale(1.2); opacity: 1; }
}

/* breathing aura (centred on the mascot) */
.loader-aura {
  position: absolute; top: 50%; left: 50%; width: 72%; height: 72%; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.26) 0%, rgba(255,255,255,0) 62%);
  filter: blur(30px);
  animation: auraPulse 2.6s ease-in-out infinite alternate;
}
@keyframes auraPulse { 0% { transform: translate(-50%, -50%) scale(0.85); opacity: 0.5; } 100% { transform: translate(-50%, -50%) scale(1.14); opacity: 1; } }

/* mascot — absolutely centred on the EXACT same point as the rings.
   transform handles centre+scale; the `translate` property handles the float
   bob independently, so the two never fight. */
.loader-mascot {
  position: absolute; top: 50%; left: 50%; z-index: 2;
  width: 46%; height: 46%; object-fit: contain;
  filter: drop-shadow(0 0 30px rgba(255,255,255,0.34));
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.82);
  animation: mascotIn 1000ms cubic-bezier(0.2, 0.8, 0.2, 1) 240ms forwards,
             floaty 4.2s ease-in-out 1.3s infinite alternate;
}
@keyframes mascotIn { to { opacity: 1; transform: translate(-50%, -50%) scale(1); } }
@keyframes floaty { 0% { translate: 0 -5px; } 100% { translate: 0 5px; } }

.loader-word {
  position: relative;
  margin-top: 34px;
  font-family: var(--sans); font-weight: 600;
  font-size: clamp(15px, 1.8vw, 19px);
  letter-spacing: 0.42em; text-indent: 0.42em;
  text-transform: uppercase;
  background: linear-gradient(100deg, rgba(255,255,255,0.30) 18%, #fff 50%, rgba(255,255,255,0.30) 82%);
  background-size: 220% 100%;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  opacity: 0;
  animation: wordReveal 700ms cubic-bezier(0.2, 0.8, 0.2, 1) 500ms forwards,
             shimmer 2.4s linear 1.2s infinite;
}
/* thin underline that draws outward */
.loader-word::after {
  content: ""; position: absolute; left: 50%; bottom: -12px;
  width: 0; height: 1px; transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.9), transparent);
  animation: lineDraw 800ms cubic-bezier(0.2, 0.8, 0.2, 1) 1100ms forwards;
}
@keyframes lineDraw { to { width: 132%; } }
@keyframes wordReveal { from { opacity: 0; letter-spacing: 0.7em; filter: blur(6px); } to { opacity: 1; letter-spacing: 0.42em; filter: blur(0); } }
@keyframes shimmer { 0% { background-position: 130% 0; } 100% { background-position: -130% 0; } }

.loader-sub {
  margin-top: 14px;
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.4em; text-transform: uppercase;
  color: rgba(255,255,255,0.34);
  opacity: 0;
  animation: subIn 700ms ease 1000ms forwards;
}
@keyframes subIn { to { opacity: 1; } }

/* ──────────── NAV ──────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  padding: 14px var(--pad);
  background: rgba(5,5,5,0.72);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border-bottom: 1px solid var(--line);
  opacity: 0; transform: translateY(-10px);
  transition: opacity 600ms ease, transform 600ms ease;
}
.nav.shown { opacity: 1; transform: translateY(0); }

.brand {
  display: flex; align-items: center; gap: 12px;
  min-width: 0;
}
.brand-mark {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.brand-mark img {
  width: 100%; height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 6px rgba(255,255,255,0.14));
}
.brand-word {
  font-family: var(--sans); font-weight: 600;
  font-size: 15px; color: var(--ink);
  letter-spacing: -0.005em;
  white-space: nowrap;
}

.nav-links { display: flex; gap: 28px; }
.nav-links a {
  font-size: 13.5px; color: var(--ink-soft); font-weight: 400;
  transition: color 180ms;
}
.nav-links a:hover { color: var(--ink); }

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

.nav-burger {
  display: none;
  width: 40px; height: 40px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  align-items: center; justify-content: center; flex-direction: column;
  gap: 5px;
  background: rgba(255,255,255,0.02);
  transition: background 200ms;
}
.nav-burger:hover { background: rgba(255,255,255,0.06); }
.nav-burger span {
  display: block; width: 16px; height: 1.5px;
  background: var(--ink); border-radius: 2px;
  transition: transform 240ms ease, opacity 200ms ease;
  transform-origin: center;
}

/* ──────────── BUTTONS ──────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  height: 40px; padding: 0 18px;
  border-radius: 999px;
  font-size: 13.5px; font-weight: 500;
  transition: transform 220ms cubic-bezier(0.2, 0.8, 0.2, 1), background 200ms, color 200ms, box-shadow 240ms;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-lg { height: 54px; padding: 0 28px; font-size: 14.5px; }
.btn-block { width: 100%; }

.btn-primary { background: #fff; color: #0a0a0a; }
.btn-primary:hover { box-shadow: 0 10px 30px rgba(255,255,255,0.16); }
.btn-ghost {
  background: rgba(255,255,255,0.04);
  color: var(--ink);
  border: 1px solid var(--line-strong);
}
.btn-ghost:hover { background: rgba(255,255,255,0.08); }

/* ──────────── HERO ──────────── */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 120px var(--pad) 80px;
  display: flex; flex-direction: column; justify-content: center;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  will-change: transform;
}
.hero-orb-1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(255,255,255,0.13) 0%, rgba(255,255,255,0) 65%);
  top: -200px; right: -100px;
  animation: drift1 18s ease-in-out infinite alternate;
}
.hero-orb-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(180,180,180,0.08) 0%, rgba(0,0,0,0) 70%);
  bottom: -150px; left: -100px;
  animation: drift2 22s ease-in-out infinite alternate;
}
@keyframes drift1 { 0% { transform: translate3d(0,0,0) scale(1); } 100% { transform: translate3d(-60px, 40px, 0) scale(1.1); } }
@keyframes drift2 { 0% { transform: translate3d(0,0,0) scale(1); } 100% { transform: translate3d(80px, -60px, 0) scale(0.95); } }

.hero-grid {
  position: relative; z-index: 1;
  max-width: var(--max); margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(36px, 6vw, 90px);
  align-items: center;
}

/* hero entrance — staggered, runs after loader fades */
.hero-text > * { opacity: 0; transform: translateY(14px); }
.nav.shown ~ main .hero-text > * { animation: heroIn 800ms cubic-bezier(0.2, 0.8, 0.2, 1) forwards; }
.nav.shown ~ main .hero-text .eyebrow       { animation-delay: 0.05s; }
.nav.shown ~ main .hero-text .display       { animation-delay: 0.15s; }
.nav.shown ~ main .hero-text .lede          { animation-delay: 0.30s; }
.nav.shown ~ main .hero-text .hero-actions  { animation-delay: 0.42s; }
.nav.shown ~ main .hero-text .hero-meta     { animation-delay: 0.54s; }
.hero-mascot { opacity: 0; transform: translateY(20px) scale(0.96); }
.nav.shown ~ main .hero-mascot { animation: heroIn 1200ms cubic-bezier(0.2, 0.8, 0.2, 1) 0.1s forwards; }
@keyframes heroIn { to { opacity: 1; transform: translateY(0) scale(1); } }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono); font-size: 10.5px;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--ink-soft);
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  margin-bottom: 28px;
}
.eyebrow .dot { width: 6px; height: 6px; border-radius: 99px; background: #b6f0c6; box-shadow: 0 0 8px #b6f0c6; }

.display {
  font-family: var(--sans);
  font-weight: 500;
  font-size: clamp(48px, 8.4vw, 120px);
  line-height: 0.96; letter-spacing: -0.04em;
  color: var(--ink);
}

.lede {
  margin-top: 28px;
  font-size: clamp(16px, 1.3vw, 18px);
  line-height: 1.55;
  max-width: 380px;
  color: var(--ink-soft);
}

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

.hero-meta {
  margin-top: 56px;
  display: flex; gap: clamp(28px, 5vw, 60px);
}
.hero-meta > div { display: flex; flex-direction: column; gap: 6px; }
.hero-meta .num {
  font-family: var(--sans); font-weight: 500;
  font-size: clamp(32px, 4vw, 44px); line-height: 1;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.hero-meta .lbl {
  font-family: var(--mono); font-size: 10.5px;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--ink-mute);
}

.hero-mascot {
  position: relative;
  display: grid; place-items: center;
  aspect-ratio: 1;
  max-width: 520px; margin: 0 auto;
}
.hero-mascot img {
  width: 100%; height: 100%; object-fit: contain;
  position: relative; z-index: 2;
  animation: float 7s ease-in-out infinite alternate;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.7)) drop-shadow(0 0 50px rgba(255,255,255,0.12));
  will-change: transform;
}
@keyframes float {
  0%   { transform: translateY(-6px); }
  100% { transform: translateY(6px); }
}
.mascot-halo {
  position: absolute; inset: -8%;
  background: radial-gradient(circle, rgba(255,255,255,0.14) 0%, rgba(255,255,255,0) 55%);
  filter: blur(40px);
  animation: halo 9s ease-in-out infinite alternate;
  will-change: transform, opacity;
}
@keyframes halo {
  0%   { transform: scale(0.92); opacity: 0.65; }
  100% { transform: scale(1.08); opacity: 1; }
}

/* ──────────── SECTION HEADS ──────────── */
.section-label {
  display: inline-flex; align-items: baseline; gap: 12px;
  font-family: var(--mono); font-size: 10.5px;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--ink-mute);
}
.section-label span { color: var(--ink); }
.section-head {
  max-width: var(--max); margin: 0 auto 64px auto;
  padding: 0 var(--pad);
  display: flex; flex-direction: column; gap: 20px;
}

.h-section {
  font-family: var(--sans); font-weight: 500;
  font-size: clamp(36px, 5.5vw, 72px);
  line-height: 1; letter-spacing: -0.035em;
  color: var(--ink);
}

/* ──────────── MANIFESTO ──────────── */
.manifesto {
  max-width: 1040px; margin: 0 auto;
  padding: var(--gap-sec) var(--pad);
}
.manifesto .section-label { margin-bottom: 32px; }
.manifesto-text {
  font-family: var(--sans); font-weight: 400;
  font-size: clamp(32px, 5.2vw, 68px);
  line-height: 1.1; letter-spacing: -0.035em;
  color: var(--ink);
}

/* ──────────── FEATURES (looping marquee) ──────────── */
.features { padding: 0 0 var(--gap-sec); }

.feat-marquee {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
}
.feat-track {
  display: flex;
  width: max-content;
  animation: marquee 80s linear infinite;
  will-change: transform;
}
.feat-marquee:hover .feat-track,
.feat-marquee:focus-within .feat-track { animation-play-state: paused; }
@keyframes marquee {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}
.feat {
  width: 320px;
  flex-shrink: 0;
  background: var(--bg);
  padding: clamp(28px, 3vw, 40px) clamp(24px, 2.5vw, 36px);
  display: flex; flex-direction: column; gap: 12px;
  min-height: 240px;
  border-right: 1px solid var(--line);
  transition: background 300ms;
}
.feat:hover { background: #0a0a0a; }
.feat-num {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.3em; color: var(--ink-mute);
}
.feat h3 {
  font-family: var(--sans); font-weight: 500;
  font-size: clamp(22px, 2.2vw, 28px);
  line-height: 1.15; letter-spacing: -0.02em;
  color: var(--ink);
  margin-top: auto;
}
.feat p {
  font-size: 14px; line-height: 1.5;
  color: var(--ink-soft);
}

/* ──────────── NETWORK BAND ──────────── */
.network {
  padding: var(--gap-sec) var(--pad);
  max-width: var(--max); margin: 0 auto;
}
.network .section-label { display: block; margin-bottom: 48px; }
.net-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: clamp(24px, 3vw, 48px);
}
.net-stat {
  display: flex; flex-direction: column; gap: 14px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.net-num {
  font-family: var(--sans); font-weight: 500;
  font-size: clamp(48px, 6.2vw, 84px);
  line-height: 0.95; letter-spacing: -0.045em;
  color: var(--ink);
  display: flex; align-items: baseline; gap: 4px;
}
.net-num span { font-size: 0.4em; color: var(--ink-soft); font-weight: 400; }
.net-num .unit { font-family: var(--mono); font-size: 0.22em; letter-spacing: 0.15em; color: var(--ink-mute); margin-left: 8px; align-self: end; padding-bottom: 0.4em; font-weight: 400; }
.net-lbl {
  font-family: var(--mono); font-size: 10.5px;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--ink-mute);
}

/* ──────────── PRICING ──────────── */
.pricing { padding: 0 0 var(--gap-sec); }

.price-grid {
  max-width: var(--max); margin: 0 auto;
  padding: 0 var(--pad);
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
}
.price {
  position: relative;
  background: var(--surface);
  border-radius: 22px;
  padding: 32px 28px 26px;
  display: flex; flex-direction: column; gap: 14px;
  transition: transform 280ms, background 280ms;
}
.price:hover { transform: translateY(-3px); background: #0e0e0e; }
.price-feat {
  background: #111;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.08);
}
.price-tag {
  position: absolute; top: 22px; right: 22px;
  padding: 5px 12px; border-radius: 999px;
  background: #fff; color: #0a0a0a;
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.3em; text-transform: uppercase;
  font-weight: 500;
}
.price-months {
  font-family: var(--sans); font-weight: 500;
  font-size: 58px; line-height: 0.9;
  letter-spacing: -0.05em;
  display: flex; align-items: baseline; gap: 10px;
  color: var(--ink);
}
.price-months span {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 400;
}
.price-amount {
  display: flex; align-items: baseline; gap: 6px;
  margin-top: 4px;
}
.price-amount .val { font-size: 32px; font-weight: 500; color: var(--ink); letter-spacing: -0.025em; }
.price-amount .cur { font-size: 20px; color: var(--ink-soft); font-weight: 400; }
.price-per { font-family: var(--mono); font-size: 11px; color: var(--ink-mute); letter-spacing: 0.05em; margin-bottom: 6px; }

.price .btn { margin-top: auto; }

.price-foot {
  max-width: var(--max); margin: 32px auto 0;
  padding: 0 var(--pad);
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--ink-mute); text-align: center;
}

/* ──────────── FAQ ──────────── */
.faq { padding: 0 0 var(--gap-sec); }
.faq-list {
  max-width: 820px; margin: 0 auto;
  padding: 0 var(--pad);
  display: flex; flex-direction: column;
}
.faq details {
  border-top: 1px solid var(--line);
  padding: 24px 4px;
}
.faq details:last-of-type { border-bottom: 1px solid var(--line); }
.faq summary {
  list-style: none;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; cursor: pointer;
  font-family: var(--sans); font-weight: 500;
  font-size: clamp(17px, 1.7vw, 21px);
  color: var(--ink);
  letter-spacing: -0.015em;
}
.faq summary::-webkit-details-marker { display: none; }
.faq-icon {
  position: relative;
  width: 28px; height: 28px;
  flex-shrink: 0;
}
.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute; left: 50%; top: 50%;
  width: 12px; height: 1.5px;
  background: var(--ink);
  border-radius: 1px;
  transform: translate(-50%, -50%);
  transition: transform 260ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
.faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq details[open] .faq-icon::after { transform: translate(-50%, -50%) rotate(0deg); }
.faq details p {
  margin-top: 14px;
  font-size: 14.5px; line-height: 1.6;
  color: var(--ink-soft);
  max-width: 60ch;
  opacity: 0; transform: translateY(-4px);
  animation: faqIn 340ms ease forwards;
}
@keyframes faqIn { to { opacity: 1; transform: translateY(0); } }

/* ──────────── FINAL CTA ──────────── */
.cta {
  position: relative;
  padding: clamp(96px, 14vw, 160px) var(--pad);
  text-align: center;
  overflow: hidden;
}
.cta-orb {
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: clamp(400px, 60vw, 900px);
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(255,255,255,0.18) 0%, rgba(255,255,255,0) 60%);
  filter: blur(80px);
  pointer-events: none;
  animation: ctaOrb 12s ease-in-out infinite alternate;
  will-change: transform, opacity;
}
@keyframes ctaOrb {
  0%   { transform: translate(-50%, -50%) scale(0.9); opacity: 0.7; }
  100% { transform: translate(-50%, -50%) scale(1.15); opacity: 1; }
}
.cta-title {
  position: relative;
  font-family: var(--sans); font-weight: 500;
  font-size: clamp(44px, 7vw, 92px);
  line-height: 0.98; letter-spacing: -0.04em;
  margin-bottom: 36px;
  color: var(--ink);
}
.cta .btn { position: relative; }

/* ──────────── FOOTER ──────────── */
.foot {
  border-top: 1px solid var(--line);
  padding: 56px var(--pad) 28px;
}
.foot-top {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 1.4fr 2fr; gap: 56px;
}
.foot-brand {
  display: flex; flex-direction: column; gap: 12px;
}
.foot-mark {
  font-family: var(--sans); font-weight: 600;
  font-size: 22px; letter-spacing: -0.015em;
  color: var(--ink);
}
.foot-tagline {
  font-size: 14px; color: var(--ink-soft); max-width: 260px; line-height: 1.5;
}
.foot-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.foot-cols > div { display: flex; flex-direction: column; gap: 10px; }
.foot-h {
  font-family: var(--mono); font-size: 10.5px;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 6px;
}
.foot-cols a {
  font-size: 14px; color: var(--ink-soft);
  transition: color 180ms;
}
.foot-cols a:hover { color: var(--ink); }
.foot-bot {
  max-width: var(--max); margin: 56px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; color: var(--ink-mute);
  font-family: var(--mono); letter-spacing: 0.1em;
}

/* ──────────── REVEAL ──────────── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 900ms cubic-bezier(0.2, 0.8, 0.2, 1), transform 900ms cubic-bezier(0.2, 0.8, 0.2, 1); }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ──────────── MOBILE MENU ──────────── */
.mobile-menu {
  position: fixed; inset: 0;
  z-index: 190;
  background: rgba(5,5,5,0.94);
  backdrop-filter: blur(28px) saturate(160%);
  -webkit-backdrop-filter: blur(28px) saturate(160%);
  padding: 88px 28px 32px;
  display: flex; flex-direction: column; gap: 4px;
  opacity: 0; visibility: hidden;
  transition: opacity 280ms ease, visibility 0s linear 280ms;
  overflow-y: auto;
}
.mobile-menu.open {
  opacity: 1; visibility: visible;
  transition: opacity 280ms ease, visibility 0s linear 0s;
}
.mobile-menu a {
  font-family: var(--sans); font-weight: 500;
  font-size: 28px; letter-spacing: -0.02em;
  color: var(--ink);
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  opacity: 0; transform: translateY(10px);
  transition: opacity 400ms ease, transform 400ms ease;
}
.mobile-menu.open a {
  opacity: 1; transform: translateY(0);
}
.mobile-menu.open a:nth-child(1) { transition-delay: 0.05s; }
.mobile-menu.open a:nth-child(2) { transition-delay: 0.10s; }
.mobile-menu.open a:nth-child(3) { transition-delay: 0.15s; }
.mobile-menu.open a:nth-child(4) { transition-delay: 0.20s; }
.mobile-menu.open a:nth-child(5) { transition-delay: 0.25s; }
.mobile-menu .mob-cta {
  margin-top: 24px;
  display: inline-flex; align-self: stretch; justify-content: center;
  background: #fff; color: #0a0a0a;
  padding: 16px 24px; border-radius: 999px;
  font-size: 15px; font-weight: 600;
  border: 0;
}

body.menu-open { overflow: hidden; }
.menu-open .nav-burger span:first-child { transform: translateY(3.25px) rotate(45deg); }
.menu-open .nav-burger span:last-child { transform: translateY(-3.25px) rotate(-45deg); }

/* ──────────── RESPONSIVE ──────────── */
@media (max-width: 960px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .nav-btn { display: none; }

  .hero { padding: 110px var(--pad) 64px; min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-mascot { order: -1; max-width: 280px; }
  .hero-meta { gap: 28px; flex-wrap: wrap; }

  .net-grid { grid-template-columns: repeat(2, 1fr); gap: 32px 24px; }
  .price-grid { grid-template-columns: 1fr; }

  .foot-top { grid-template-columns: 1fr; gap: 36px; }
  .foot-bot { flex-direction: column; gap: 10px; }

  .manifesto-text { font-size: clamp(28px, 7vw, 52px); }
}

@media (max-width: 560px) {
  :root { --pad: 18px; --gap-sec: 80px; }
  .nav { padding: 12px 16px; }
  .brand-word { font-size: 14px; }
  .brand-mark { width: 34px; height: 34px; }

  .display { font-size: clamp(44px, 13vw, 72px); letter-spacing: -0.035em; }
  .lede { font-size: 15px; }
  .hero-meta { gap: 24px; }
  .hero-meta .num { font-size: 30px; }
  .hero-meta .lbl { font-size: 10px; }

  .feat { width: 260px; min-height: 200px; padding: 26px 22px; }
  .feat h3 { font-size: 22px; }

  .net-grid { grid-template-columns: repeat(2, 1fr); gap: 28px 16px; }
  .net-num { font-size: clamp(40px, 14vw, 56px); }

  .price-months { font-size: 48px; }
  .price { padding: 26px 22px 22px; }

  .foot-cols { grid-template-columns: 1fr 1fr; gap: 24px; }

  .cta-title { font-size: clamp(40px, 10vw, 64px); }
  .h-section { font-size: clamp(32px, 8vw, 48px); }

  .mobile-menu { padding: 80px 22px 28px; }
  .mobile-menu a { font-size: 24px; padding: 16px 0; }
}

@media (hover: none) {
  .feat:hover, .price:hover, .btn:hover, .nav-burger:hover { transform: none; background: ; }
}

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