/* ============ LifeAdmin OS — motion & depth pass ============ */
:root {
  --bg: #070609;
  --panel: #0d0b11;
  --line: rgba(255, 255, 255, 0.13);
  --line-dim: rgba(255, 255, 255, 0.07);
  --text: #f4f0e6;
  --text-dim: rgba(244, 240, 230, 0.66);
  --text-faint: rgba(244, 240, 230, 0.38);
  --purple: #a855f7;
  --magenta: #e935c1;
  --coral: #ff5c49;
  --orange: #ff8a2a;
  --grad: linear-gradient(90deg, var(--purple), var(--magenta) 45%, var(--coral) 72%, var(--orange));
  --wallgrad: linear-gradient(180deg, #a855f7 0%, #cf62c0 34%, #f77c74 68%, #ff9333 100%);
  --display: "Anton", "Archivo", system-ui, sans-serif;
  --body: "Archivo", system-ui, sans-serif;
  --pad: clamp(20px, 4.5vw, 64px);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
html.js-motion { scroll-behavior: auto; } /* Lenis drives scrolling */
html, body { overflow-x: clip; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
::selection { background: rgba(168, 85, 247, 0.45); }
a { color: inherit; }
h1, h2, h3 { font-weight: 400; }

:focus-visible { outline: 2px solid var(--orange); outline-offset: 3px; }

.skip-link {
  position: absolute; left: 16px; top: -64px; z-index: 200;
  background: var(--orange); color: #120b06; font-weight: 700;
  padding: 10px 18px; text-decoration: none; transition: top .2s;
}
.skip-link:focus { top: 16px; }

/* gradient highlight box */
.hl {
  background: var(--grad);
  color: var(--text);
  padding: 0 .08em;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  position: relative; z-index: -1;
}

/* ---- display line wrappers (editorial clip reveals) ---- */
.ln {
  display: block;
  --wx: 1.05;
  transform: scaleX(var(--wx));
  transform-origin: 0 50%;
  padding-bottom: .1em; margin-bottom: -.1em; /* descender room inside clip */
}
.ln__in { display: block; will-change: transform; }
.js-motion .ln { overflow: clip; }
.js-motion .ln__in { transform: translateY(114%); }
.js-motion .ln.ln--in { overflow: visible; }
.js-motion .ln.ln--in .ln__in { transform: none; }

/* ---- technical grid ---- */
.bg-grid {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 110px 110px;
}
main, .head, .menu, .foot { position: relative; z-index: 1; }

/* ============ glowing CTA pill ============ */
.cta-glow {
  display: inline-block;
  font-family: var(--display); text-transform: uppercase;
  font-size: clamp(17px, 1.6vw, 22px); letter-spacing: .12em;
  color: #000; text-decoration: none; text-align: center;
  font-weight: 700;

  text-shadow:
    0 1px 1px rgba(255,255,255,0.95),
    0 2px 3px rgba(255,255,255,0.7),
    0 0 2px rgba(255,255,255,0.9);

  background:
    radial-gradient(ellipse at top, rgba(255, 255, 255, 0.95) 0%, rgba(147, 197, 253, 0.85) 100%),
    linear-gradient(135deg,
      rgba(59, 130, 246, 1) 0%,
      rgba(96, 165, 250, 1) 50%,
      rgba(147, 197, 253, 1) 100%) !important;
  background-size: 100% 100%, 200% 100%;
  background-position: center, 0% 50%;

  border: 0;
  border-radius: 999px;
  cursor: pointer;
  padding: clamp(16px, 1.8vw, 22px) clamp(36px, 4.2vw, 62px);

  box-shadow:
    0 1px 0 rgba(255,255,255,0.9) inset,
    0 -1px 0 rgba(59,130,246,0.2) inset,
    0 4px 12px rgba(59, 130, 246, 0.4),
    0 8px 32px rgba(96, 165, 250, 0.35),
    0 16px 64px rgba(59, 130, 246, 0.25),
    0 0 100px rgba(96, 165, 250, 0.2);

  transition: all .4s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform, box-shadow, background-position;
  position: relative;
  overflow: hidden;
}

.cta-glow::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 999px;
  padding: 1.5px;
  background: linear-gradient(135deg, rgba(255,255,255,0.8), rgba(147,197,253,0.6), rgba(96,165,250,0.4));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.8;
  pointer-events: none;
}

.cta-glow::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(180deg, rgba(255,255,255,0.4), transparent);
  border-radius: 999px 999px 0 0;
  pointer-events: none;
}

.cta-glow:hover, .cta-glow:focus-visible {
  transform: translateY(-2px);
  background-position: center, 100% 50%;
  box-shadow:
    0 1px 0 rgba(255,255,255,1) inset,
    0 -1px 0 rgba(59,130,246,0.3) inset,
    0 6px 16px rgba(59, 130, 246, 0.5),
    0 12px 48px rgba(96, 165, 250, 0.45),
    0 20px 80px rgba(59, 130, 246, 0.35),
    0 0 140px rgba(96, 165, 250, 0.3);
}
/* ============ header ============ */
.head {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px var(--pad);
  pointer-events: none;
}
.head > * { pointer-events: auto; }
.head__logo {
  font-family: var(--display); font-size: 19px; letter-spacing: .04em;
  text-decoration: none; color: #fff;
  text-shadow: 0 0 10px rgba(0, 0, 139, .9), 0 0 22px rgba(29, 78, 216, .5);
}
.head__logo em {
  font-style: normal;
  color: rgba(96, 165, 250, 0.85);
  text-shadow:
    0 0 8px rgba(96, 165, 250, 0.8),
    0 0 16px rgba(59, 130, 246, 0.6),
    0 0 32px rgba(37, 99, 235, 0.4);
  font-weight: 300;
  letter-spacing: 0.08em;
}
.head__controls {
  display: flex; align-items: stretch; gap: 10px;
  border: 1px solid var(--line); border-radius: 8px;
  padding: 6px; background: rgba(7,6,9,.72);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
/* ============ compact header/menu JOIN button ============ */
.head__cta {
  font-family: var(--display); font-size: 13px; letter-spacing: .12em;
  color: #000; text-decoration: none;
  font-weight: 700;

  text-shadow:
    0 0.5px 0.5px rgba(255,255,255,0.95),
    0 1px 2px rgba(255,255,255,0.7);

  background:
    radial-gradient(ellipse at top, rgba(255, 255, 255, 0.9) 0%, rgba(147, 197, 253, 0.8) 100%),
    linear-gradient(135deg,
      rgba(59, 130, 246, 1) 0%,
      rgba(96, 165, 250, 1) 50%,
      rgba(147, 197, 253, 1) 100%) !important;

  border: 0;
  border-radius: 5px;
  padding: 10px 18px;
  display: grid;
  place-items: center;

  box-shadow:
    0 1px 0 rgba(255,255,255,0.8) inset,
    0 -0.5px 0 rgba(59,130,246,0.2) inset,
    0 2px 8px rgba(59, 130, 246, 0.35),
    0 4px 16px rgba(96, 165, 250, 0.25);

  transition: all .3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.head__cta::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 5px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255,255,255,0.7), rgba(147,197,253,0.5), rgba(96,165,250,0.4));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.7;
  pointer-events: none;
}

.head__cta::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(180deg, rgba(255,255,255,0.3), transparent);
  border-radius: 5px 5px 0 0;
  pointer-events: none;
}

.head__cta:hover {
  transform: translateY(-1px);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.9) inset,
    0 -0.5px 0 rgba(59,130,246,0.3) inset,
    0 3px 12px rgba(59, 130, 246, 0.45),
    0 6px 24px rgba(96, 165, 250, 0.35);
}
.head__burger {
  width: 44px; border: 0; border-left: 1px solid var(--line);
  background: none; cursor: pointer; border-radius: 0 5px 5px 0;
  display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 4px;
  padding: 0 0 0 10px;
}
.head__burger span { display: block; width: 20px; height: 2px; background: var(--text); transition: transform .3s, opacity .3s; }
.head__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.head__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.head__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ============ overlay menu ============ */
.menu[hidden] { display: none; }
.menu {
  position: fixed; inset: 0; z-index: 90;
  background: rgba(7,6,9,.96);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  display: flex; flex-direction: column; justify-content: center; gap: 8vh;
  padding: 120px var(--pad) 60px;
}
.menu__nav { display: flex; flex-direction: column; }
.menu__link {
  font-family: var(--display); text-transform: uppercase;
  font-size: clamp(38px, 7vw, 84px); line-height: 1.1;
  color: var(--text); text-decoration: none;
  border-bottom: 1px solid var(--line-dim);
  padding: .12em 0;
  display: flex; align-items: baseline; gap: 22px;
  transition: color .2s;
}
.menu__link:hover, .menu__link:focus-visible { color: var(--orange); }
.menu__num { font-size: .32em; color: var(--magenta); letter-spacing: .1em; }
.menu__foot { display: flex; flex-wrap: wrap; gap: 20px; align-items: center; justify-content: space-between; }
.menu__mail { font-family: var(--display); font-size: 15px; letter-spacing: .1em; color: var(--text-dim); text-decoration: none; }
.menu__mail:hover { color: var(--text); }
.head__cta--menu { font-size: 16px; padding: 14px 26px; }

/* ============ hero ============ */
.hero {
  min-height: 100svh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; position: relative; overflow: clip;
  padding: 120px var(--pad) 90px;
}
.hero__glow { position: absolute; z-index: -1; pointer-events: none; filter: blur(70px); will-change: transform; }
.hero__glow--l {
  width: 46vw; height: 60vh; left: -14vw; bottom: -12vh;
  background: radial-gradient(ellipse at center, rgba(59,130,246,.55), rgba(37,99,235,.22) 55%, transparent 75%);
}
.hero__glow--r {
  width: 42vw; height: 55vh; right: -14vw; top: -10vh;
  background: radial-gradient(ellipse at center, rgba(96,165,250,.5), rgba(29,78,216,.2) 55%, transparent 75%);
}
.hero__title { font-family: var(--display); text-transform: uppercase; color: var(--text); }
.hero__l {
  display: block; line-height: .87; letter-spacing: .004em;
  --wx: 1.06;
  transform: scaleX(var(--wx));
  transform-origin: 50% 50%;
  padding-bottom: .08em; margin-bottom: -.05em;
}
.hero__lin { display: block; will-change: transform; }
.js-motion .hero__l { overflow: clip; }
.js-motion .hero__lin { transform: translateY(116%); }
.js-motion .hero--in .hero__l { overflow: visible; }
.hero__l--1 { font-size: clamp(40px, 8.6vw, 122px); }
.hero__l--2 { font-size: clamp(44px, 9.6vw, 136px); }
.hero__l--3 {
  --g: 1;
  font-size: clamp(30px, 7vw, 100px);
  text-shadow:
    0 0 14px rgba(59, 130, 246, calc(.75 * var(--g))),
    0 0 40px rgba(37, 99, 235, calc(.65 * var(--g))),
    0 0 90px rgba(96, 165, 250, calc(.5 * var(--g))),
    0 0 140px rgba(29, 78, 216, calc(.4 * var(--g)));
}
.hero__sub {
  position: absolute; bottom: 34px; left: 50%; transform: translateX(-50%);
  max-width: 520px; width: calc(100% - 2 * var(--pad));
  font-size: 15px; color: var(--text-dim);
}
.hero__scroll {
  position: absolute; bottom: 28px; right: var(--pad);
  width: 46px; height: 46px; border: 1px solid var(--line); border-radius: 8px;
  display: grid; place-items: center; color: var(--text-dim);
}
.hero__scroll svg { animation: scrollNudge 1.8s ease-in-out infinite; }
@keyframes scrollNudge { 0%, 100% { transform: translateY(-2px); } 50% { transform: translateY(3px); } }
.hero__pixdeco { position: absolute; bottom: 24px; left: var(--pad); display: grid; grid-template-columns: repeat(2, 12px); gap: 4px; }
.hero__pixdeco span { width: 12px; height: 12px; }
.hero__pixdeco span:nth-child(1) { background: var(--purple); }
.hero__pixdeco span:nth-child(4) { background: var(--orange); }

/* ============ problem ============ */
.problem {
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 6vw, 110px);
  padding: clamp(90px, 14vh, 170px) var(--pad);
  max-width: 1400px; margin: 0 auto;
}
.problem__left { position: sticky; top: 16vh; align-self: start; }
.problem__title {
  font-family: var(--display); text-transform: uppercase;
  font-size: clamp(52px, 6.6vw, 104px); line-height: .9;
}
.problem__tag {
  display: inline-block; margin-top: 40px;
  font-family: var(--display); font-size: 14px; letter-spacing: .16em;
  color: var(--orange); border: 1px solid rgba(255,138,42,.5);
  padding: 9px 16px; transform: rotate(-4deg);
}
.problem__cards { display: flex; flex-direction: column; gap: 22px; }

/* base = fully active look (static / reduced-motion / no-JS) */
.pcard {
  position: relative;
  border: 1px solid rgba(233,53,193,.55); border-radius: 12px;
  background: rgba(14, 9, 18, .9);
  padding: clamp(26px, 3vw, 40px) clamp(24px, 3vw, 40px);
  display: flex; gap: 24px; align-items: center;
  transition: border-color .5s, background .5s;
}
.pcard__num {
  position: absolute; top: -12px; left: -1px;
  font-family: var(--display); font-size: 12px; letter-spacing: .1em;
  background: var(--bg); border: 1px solid rgba(233,53,193,.55);
  padding: 3px 9px; color: var(--magenta);
  transition: color .5s, border-color .5s;
}
.pcard__icon { width: 58px; flex: none; color: var(--text); opacity: 1; transition: opacity .5s, color .5s; }
.pcard__icon svg { width: 100%; height: auto; }
.pcard__text {
  position: relative;
  font-family: var(--display); text-transform: uppercase;
  font-size: clamp(21px, 2.3vw, 32px); line-height: 1.02; letter-spacing: .01em;
  color: rgba(244, 240, 230, .34);
}
.pcard__text::after {
  content: attr(data-text);
  position: absolute; inset: 0;
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  opacity: 1; transition: opacity .55s ease;
}
/* motion mode: cards rest dim, activate in the focus band */
.js-motion .pcard:not(.is-active) { border-color: var(--line); background: rgba(10, 8, 14, .82); }
.js-motion .pcard:not(.is-active) .pcard__num { color: var(--text-dim); border-color: var(--line); }
.js-motion .pcard:not(.is-active) .pcard__icon { opacity: .45; color: var(--text-faint); }
.js-motion .pcard:not(.is-active) .pcard__text::after { opacity: 0; }

/* ============ pixel transition ============ */
.pix { position: relative; }
.pix__stage { position: relative; }
.pix__fallback { position: absolute; inset: 0; background: var(--wallgrad); background-attachment: fixed; }
.pix__canvas { display: none; }
.pix__ch {
  position: relative; z-index: 2;
  min-height: 100svh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 0 var(--pad); gap: 26px;
}
/* motion mode: sticky stage + live canvas */
.js-motion .pix { height: 330vh; }
.js-motion .pix__stage { position: sticky; top: 0; height: 100svh; overflow: clip; }
.js-motion .pix__fallback { opacity: 0; z-index: 0; } /* crossfade target at the finale */
.js-motion .pix--nogl .pix__fallback { opacity: 1; } /* WebGL unavailable */
.js-motion .pix__canvas { display: block; position: absolute; inset: 0; width: 100%; height: 100%; z-index: 1; }
.js-motion .pix__ch { position: absolute; inset: 0; min-height: 0; }
.pix__big {
  font-family: var(--display); text-transform: uppercase;
  font-size: clamp(64px, 11vw, 158px); line-height: .88;
  color: #f6ede9;
  transform: scaleX(1.05);
  text-shadow: 0 3px 0 rgba(190, 60, 120, .35), 0 0 34px rgba(96, 165, 250, .4);
}
.pix__with {
  font-family: var(--display); font-size: clamp(15px, 1.8vw, 22px);
  letter-spacing: .22em; color: #f6ede9;
  border: 1px solid rgba(246, 237, 233, .55); padding: 10px 22px;
}
.pix__st {
  font-family: var(--display); text-transform: uppercase;
  font-size: clamp(58px, 10.5vw, 150px); line-height: .88;
  color: #f8efe9;
  transform: scaleX(1.05);
  text-shadow: 0 3px 0 rgba(190, 60, 120, .3), 0 0 40px rgba(96, 165, 250, .45);
}

/* ============ statement chapter ============ */
/* viewport-fixed gradient so the completed pixel wall hands off seamlessly */
.stmts { position: relative; background: var(--wallgrad); background-attachment: fixed; }
.stmts__st {
  min-height: 100svh;
  display: grid; place-items: center;
  padding: 0 var(--pad); text-align: center;
  will-change: transform, opacity, filter;
}
.js-motion .stmts__stage { position: relative; height: 100svh; overflow: clip; }
.js-motion .stmts__st { position: absolute; inset: 0; min-height: 0; }

/* ============ product showcase ============ */
.show { position: relative; background: var(--bg); }
.show__pin { position: relative; padding: 110px var(--pad) 60px; }
.show__glow { position: absolute; z-index: 0; pointer-events: none; filter: blur(80px); }
.show__glow--l { width: 38vw; height: 70vh; left: -16vw; top: 15vh; background: radial-gradient(ellipse, rgba(59,130,246,.5), transparent 70%); }
.show__glow--r { width: 38vw; height: 70vh; right: -16vw; bottom: 5vh; background: radial-gradient(ellipse, rgba(96,165,250,.42), transparent 70%); }
.show__rail { position: relative; z-index: 1; display: flex; flex-direction: column; gap: 28px; }
/* horizontal pinned mode (motion + desktop) */
.show--h .show__pin {
  height: 100svh; overflow: clip;
  display: flex; flex-direction: column; justify-content: center;
  padding-top: 90px; padding-bottom: 40px;
}
.show--h .show__rail { flex-direction: row; gap: 4vw; will-change: transform; }
.show--h .scard { flex: none; width: min(88vw, 1240px); height: min(72vh, 720px); overflow: hidden; }
.scard {
  background: #0c0a10;
  border: 1px solid var(--line-dim); border-radius: 16px;
  padding: clamp(28px, 3.6vw, 60px);
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(26px, 3.5vw, 60px);
  align-items: center;
  box-shadow: 0 30px 80px rgba(0,0,0,.5);
}
.scard__num {
  display: block; font-family: var(--display);
  font-size: clamp(64px, 7vw, 110px); line-height: .9; color: var(--text);
  margin-bottom: 18px;
}
.scard__label {
  display: block; font-family: var(--body); font-weight: 600;
  font-size: 13px; letter-spacing: .22em; color: var(--magenta);
  margin-bottom: 14px;
}
.scard__head {
  font-family: var(--display); text-transform: uppercase;
  font-size: clamp(30px, 3.4vw, 52px); line-height: .9;
  margin-bottom: 18px;
}
.scard__body { color: var(--text-dim); max-width: 44ch; margin-bottom: 20px; }
.scard__points { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.scard__points li { display: flex; gap: 12px; align-items: center; font-weight: 600; font-size: 14.5px; }
.scard__points li::before {
  content: "\2726"; color: var(--magenta); font-size: 15px;
  text-shadow: 0 0 10px rgba(59,130,246,.7);
}

/* product visuals */
.vis {
  background: #12101a; border: 1px solid var(--line-dim); border-radius: 12px;
  padding: 18px; display: flex; flex-direction: column; gap: 9px;
  min-height: 320px; justify-content: center;
}
.vis__bar {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--display); font-size: 12px; letter-spacing: .18em;
  color: var(--text-dim); padding-bottom: 10px; border-bottom: 1px solid var(--line-dim);
}
.vis__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--text-faint); }
.vis__dot--live { background: var(--magenta); box-shadow: 0 0 10px #3b82f6; animation: pulse 1.6s infinite; }
@keyframes pulse { 50% { opacity: .4; } }
.vrow {
  display: flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,.03); border: 1px solid var(--line-dim);
  border-radius: 8px; padding: 11px 14px; font-size: 13.5px;
}
.vrow--dim { opacity: .5; }
.vrow__d { font-size: 11px; color: var(--text-faint); letter-spacing: .06em; min-width: 44px; }
.vrow__n { font-weight: 600; }
.vrow__f {
  margin-left: auto; font-family: var(--display); font-size: 10px; letter-spacing: .12em;
  color: var(--orange); border: 1px solid rgba(255,138,42,.5); padding: 3px 8px; border-radius: 4px;
  white-space: nowrap;
}
.vrow__f--off { color: var(--text-faint); border-color: var(--line-dim); }
.vrow__t { margin-left: auto; font-size: 11.5px; letter-spacing: .08em; color: var(--text-faint); }
.vrow__a { font-weight: 700; min-width: 62px; text-align: right; font-variant-numeric: tabular-nums; }
.vrow__c { width: 10px; height: 10px; flex: none; background: var(--c); }
.vis__foot {
  margin-top: 4px; font-family: var(--display); font-size: 12px; letter-spacing: .16em;
  color: var(--purple); text-align: center; padding-top: 10px; border-top: 1px solid var(--line-dim);
}
.vis__foot--warn { color: var(--orange); }
.vis__kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px; margin-bottom: 4px; }
.kpi { border: 1px solid var(--line-dim); border-radius: 8px; padding: 10px 12px; background: rgba(255,255,255,.02); }
.kpi__l { display: block; font-size: 9.5px; letter-spacing: .14em; color: var(--text-faint); font-weight: 600; }
.kpi__v { font-family: var(--display); font-size: 21px; font-variant-numeric: tabular-nums; }
.vis__chart { width: 100%; height: auto; }
.vis__legend { display: flex; justify-content: space-between; font-size: 11.5px; color: var(--text-dim); font-variant-numeric: tabular-nums; }
.alert {
  display: flex; gap: 14px; align-items: center;
  background: rgba(255,255,255,.03); border: 1px solid var(--line-dim);
  border-radius: 8px; padding: 13px 15px;
}
.alert__t {
  font-family: var(--display); font-size: 11px; letter-spacing: .1em;
  color: var(--purple); border: 1px solid rgba(168,85,247,.5);
  padding: 4px 8px; border-radius: 4px; white-space: nowrap; flex: none;
}
.alert__t--hot { color: var(--orange); border-color: rgba(255,138,42,.6); }
.alert strong { display: block; font-size: 14px; }
.alert div span { font-size: 12px; color: var(--text-faint); }
.step { display: flex; gap: 14px; align-items: center; background: rgba(255,255,255,.03); border: 1px solid var(--line-dim); border-radius: 8px; padding: 12px 15px; }
.step__n {
  width: 26px; height: 26px; flex: none; border-radius: 6px;
  display: grid; place-items: center;
  font-family: var(--display); font-size: 13px;
  border: 1px solid var(--line); color: var(--text-dim);
}
.step--done .step__n { background: var(--grad); border: 0; color: #16091f; }
.step--now { border-color: rgba(233,53,193,.5); }
.step--now .step__n { border-color: var(--magenta); color: var(--magenta); }
.step strong { display: block; font-size: 14px; }
.step div span { font-size: 12px; color: var(--text-faint); }

/* progress track */
.show__trackwrap { position: relative; z-index: 1; max-width: 1240px; width: 100%; margin: 34px auto 0; display: none; }
.show--h .show__trackwrap { display: block; }
.show__ticks { display: flex; justify-content: space-between; margin-bottom: 10px; }
.show__ticks span { font-family: var(--display); font-size: 12px; letter-spacing: .1em; color: var(--text-faint); transition: color .3s; }
.show__ticks span.is-on { color: var(--orange); }
.show__track { height: 8px; background: rgba(255,255,255,.09); border-radius: 999px; overflow: hidden; }
.show__fill {
  height: 100%; width: 2%;
  background: linear-gradient(90deg, var(--orange), var(--magenta) 55%, var(--purple));
  border-radius: 999px;
  box-shadow: 0 0 16px rgba(59,130,246,.6);
}

/* ============ marquee bands ============ */
.bands { overflow: hidden; margin: clamp(70px, 12vh, 140px) 0; }
.band { overflow: clip; padding: clamp(14px, 1.6vw, 22px) 0; }
.band--black { background: #000; border-top: 1px solid var(--line-dim); border-bottom: 1px solid var(--line-dim); }
.band--purple { background: linear-gradient(90deg, #7c3aed, #a855f7); }
.band--orange { background: linear-gradient(90deg, #ff8a2a, #ff5c49); }
.band__rail { display: flex; gap: 38px; width: max-content; align-items: center; animation: bandMove 22s linear infinite; will-change: transform; }
.band__rail--rev { animation-direction: reverse; }
.band span {
  font-family: var(--display); text-transform: uppercase;
  font-size: clamp(26px, 3.4vw, 44px); white-space: nowrap; line-height: 1.05;
}
.band--black span { color: var(--text); }
.band--black i { color: var(--orange); }
.band--purple span, .band--purple i { color: #12061e; }
.band--orange span, .band--orange i { color: #1c0a03; }
.band i { font-style: normal; font-size: .5em; }
@keyframes bandMove { to { transform: translateX(-33.3334%); } }

/* ============ waitlist ============ */
.wait { position: relative; padding: clamp(90px, 14vh, 170px) var(--pad); }
.wait__glow {
  position: absolute; right: -18vw; top: 8vh; width: 46vw; height: 80vh;
  background: radial-gradient(ellipse, rgba(59,130,246,.4), transparent 70%);
  filter: blur(80px); pointer-events: none;
}
.wait__grid {
  position: relative; max-width: 1400px; margin: 0 auto;
  display: grid; grid-template-columns: 1.15fr 1fr; gap: clamp(44px, 6vw, 110px);
  align-items: start;
}
.wait__title {
  font-family: var(--display); text-transform: uppercase;
  font-size: clamp(40px, 4.9vw, 76px); line-height: .9;
  margin-bottom: clamp(36px, 5vh, 60px);
}
.wait__perks { list-style: none; display: flex; flex-direction: column; }
.perk {
  display: flex; gap: 22px; align-items: flex-start;
  padding: 22px 4px; border-top: 1px solid var(--line-dim);
}
.perk:last-child { border-bottom: 1px solid var(--line-dim); }
.perk__num { font-family: var(--display); font-size: 15px; color: var(--orange); padding-top: 3px; }
.perk strong { display: block; font-family: var(--display); font-size: 19px; letter-spacing: .04em; margin-bottom: 4px; }
.perk p { color: var(--text-dim); font-size: 14.5px; }

.wform {
  background: var(--panel); border: 1px solid var(--line); border-radius: 16px;
  padding: clamp(28px, 3.4vw, 48px);
  display: flex; flex-direction: column; gap: 20px;
  box-shadow: 0 0 60px rgba(59,130,246,.14), 0 30px 80px rgba(0,0,0,.5);
}
.wform__kicker { font-family: var(--display); font-size: 12px; letter-spacing: .24em; color: var(--magenta); }
.wform__head { font-family: var(--display); text-transform: uppercase; font-size: clamp(30px, 3vw, 44px); line-height: .95; }
.wform__field { display: flex; flex-direction: column; gap: 8px; }
.wform__field label { font-family: var(--display); font-size: 12px; letter-spacing: .14em; }
.wform__opt { color: var(--text-faint); }
.wform__field input {
  background: rgba(255,255,255,.045); border: 1px solid var(--line);
  border-radius: 8px; padding: 16px 18px; font-size: 15px;
  color: var(--text); font-family: var(--body);
  transition: border-color .2s;
}
.wform__field input::placeholder { color: var(--text-faint); }
.wform__field input:focus { outline: 2px solid var(--purple); outline-offset: 2px; border-color: var(--purple); }
.wform__field input[aria-invalid="true"] { border-color: var(--coral); }
.wform__error { color: #ff9d8d; font-size: 13px; }
.wform__submit { width: 100%; margin-top: 4px; }
.wform__status { min-height: 1.5em; font-size: 14px; color: var(--orange); text-align: center; }

/* ============ closer ============ */
.closer {
  position: relative; overflow: clip;
  padding: clamp(120px, 20vh, 220px) var(--pad);
  display: flex; flex-direction: column; align-items: center; gap: clamp(36px, 5vh, 54px);
  text-align: center;
}
.closer__glow { position: absolute; pointer-events: none; filter: blur(80px); }
.closer__glow--l { width: 40vw; height: 70vh; left: -16vw; bottom: -20vh; background: radial-gradient(ellipse, rgba(59,130,246,.5), transparent 70%); }
.closer__glow--r { width: 40vw; height: 70vh; right: -16vw; top: -20vh; background: radial-gradient(ellipse, rgba(96,165,250,.4), transparent 70%); }
.closer__pix { position: absolute; top: 40px; right: 12vw; display: grid; grid-template-columns: repeat(3, 14px); gap: 5px; }
.closer__pix span { width: 14px; height: 14px; }
.closer__pix span:nth-child(1) { background: var(--purple); }
.closer__pix span:nth-child(3) { background: var(--magenta); }
.closer__pix span:nth-child(5) { background: var(--orange); }
.closer__title {
  font-family: var(--display); text-transform: uppercase;
  font-size: clamp(44px, 7.4vw, 112px); line-height: .9;
}
.closer__title .ln { transform-origin: 50% 50%; }
.closer__glowline {
  text-shadow:
    0 0 16px rgba(59, 130, 246, .7),
    0 0 46px rgba(37, 99, 235, .6),
    0 0 100px rgba(96, 165, 250, .45);
}

/* ============ FAQ ============ */
.faq { padding: clamp(80px, 12vh, 150px) var(--pad) clamp(90px, 14vh, 160px); max-width: 1400px; margin: 0 auto; }
.faq__title {
  font-family: var(--display); text-transform: uppercase;
  font-size: clamp(56px, 8vw, 120px); line-height: .9; margin-bottom: clamp(36px, 6vh, 64px);
}
.faq__tick { color: var(--magenta); }
.faq__list { border-top: 1px solid var(--line); }
.acc { border-bottom: 1px solid var(--line); }
.acc__h { font-size: inherit; }
.acc__toggle {
  width: 100%; display: flex; align-items: center; gap: clamp(18px, 3vw, 44px);
  background: none; border: 0; cursor: pointer; text-align: left;
  padding: clamp(22px, 3vh, 34px) 6px; color: var(--text);
}
.acc__num { font-family: var(--display); font-size: clamp(15px, 1.6vw, 20px); color: var(--orange); flex: none; }
.acc__q {
  font-family: var(--display); text-transform: uppercase;
  font-size: clamp(19px, 2.6vw, 34px); line-height: 1; letter-spacing: .01em;
}
.acc__icon { position: relative; width: 20px; height: 20px; flex: none; margin-left: auto; }
.acc__icon::before, .acc__icon::after {
  content: ""; position: absolute; background: var(--magenta);
  transition: transform .3s;
}
.acc__icon::before { left: 0; top: 9px; width: 20px; height: 2px; }
.acc__icon::after { left: 9px; top: 0; width: 2px; height: 20px; }
.acc__toggle[aria-expanded="true"] .acc__icon::after { transform: scaleY(0); }
.acc__panel { overflow: clip; }
.acc__panel p {
  padding: 4px 6px clamp(26px, 3.4vh, 38px);
  color: rgba(244, 240, 230, 0.8);
  max-width: 800px;
  font-size: 21px; line-height: 1.6;
}

/* ============ footer ============ */
.foot { border-top: 1px solid var(--line); }
.foot__cta {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 28px;
  padding: clamp(44px, 7vh, 80px) var(--pad);
  border-bottom: 1px solid var(--line);
  max-width: 1400px; margin: 0 auto;
}
.foot__big { font-family: var(--display); text-transform: uppercase; font-size: clamp(30px, 4.4vw, 64px); line-height: .9; }
.foot__grid {
  max-width: 1400px; margin: 0 auto;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr;
  padding: 0 var(--pad);
}
.foot__cell {
  display: flex; flex-direction: column; gap: 12px; align-items: flex-start;
  padding: clamp(30px, 4vh, 48px) clamp(18px, 2vw, 32px);
  border-left: 1px solid var(--line-dim);
}
.foot__cell:first-child { border-left: 0; padding-left: 0; }
.foot__cell a { color: var(--text-dim); text-decoration: none; font-size: 14.5px; }
.foot__cell a:hover { color: var(--text); }
.foot__label { font-family: var(--display); font-size: 12px; letter-spacing: .2em; color: var(--text-faint); margin-bottom: 6px; }
.foot__logo { font-family: var(--display); font-size: 24px; letter-spacing: .04em; color: #fff; text-shadow: 0 0 10px rgba(0, 0, 139, .9), 0 0 22px rgba(29, 78, 216, .5); }
.foot__logo em {
  font-style: normal;
  color: rgba(96, 165, 250, 0.85);
  text-shadow:
    0 0 10px rgba(96, 165, 250, 0.8),
    0 0 20px rgba(59, 130, 246, 0.6),
    0 0 40px rgba(37, 99, 235, 0.4);
  font-weight: 300;
  letter-spacing: 0.08em;
}
.foot__cell--brand p { color: var(--text-faint); font-size: 13.5px; max-width: 30ch; }
.foot__top {
  margin-top: auto; font-family: var(--display); letter-spacing: .1em;
  font-size: 13px !important; color: var(--text) !important;
  border: 1px solid var(--line); padding: 10px 16px; border-radius: 6px;
  transition: border-color .25s;
}
.foot__top:hover { border-color: var(--orange); }
.foot__top span { display: inline-block; transition: transform .3s; }
.foot__top:hover span { transform: translateY(-3px); }
.foot__legal {
  max-width: 1400px; margin: 0 auto;
  border-top: 1px solid var(--line-dim);
  padding: 22px var(--pad) 30px;
  font-size: 12px; color: var(--text-faint);
}

/* ============ responsive ============ */
@media (max-width: 1023px) {
  .problem { grid-template-columns: 1fr; }
  .problem__left { position: static; }
  .scard { grid-template-columns: 1fr; }
}
@media (max-width: 700px) {
  .hero__sub { position: static; transform: none; margin-top: 34px; }
  .hero__scroll { bottom: 20px; }
  .hero__pixdeco { display: none; }
  .pcard { flex-direction: column; align-items: flex-start; gap: 16px; }
  .wait__grid { grid-template-columns: 1fr; }
  .foot__grid { grid-template-columns: 1fr 1fr; }
  .foot__cell { border-left: 0; padding-left: 0; }
  .foot__cell--brand { grid-column: 1 / -1; }
  .band span { font-size: 24px; }
  .js-motion .pix { height: 300vh; }
  .acc__panel p { font-size: 17.5px; }
}

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