/* ─────────────────────────────────────────────────────────────
   UNLOCKMY JOB — SOFT LAUNCH  |  styles.css
   Fixed: nav cleanup, footer visibility, responsive layout,
          slide padding, mobile overflow, content clipping
───────────────────────────────────────────────────────────── */

/* ── ROC GROTESK WIDE — drop roc-grotesk-wide.woff2 into assets/fonts/ ── */
@font-face {
  font-family: 'Roc Grotesk Wide';
  src: url('../fonts/roc-grotesk-wide.woff2') format('woff2'),
       url('../fonts/roc-grotesk-wide.woff') format('woff');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

/* ── CSS VARIABLES ── */
:root {
  /* ── Surface ── */
  --N: #000000;
  --C: #0d0d0f;
  --G: #1a1a1d;

  /* ── Brand Primary ── */
  --Y:  #D2F019;
  --YD: rgba(210,240,25,.13);
  --YG: rgba(210,240,25,.38);

  /* ── Brand Secondary ── */
  --R:  rgba(255,255,255,.85);
  --O:  #D2F019;
  --SG: #D2F019;

  /* ── Utility ── */
  --B:  #D2F019;
  --W:  #f0f0f0;
  --M:  #666676;

  /* ── Typography ── */
  --FD: 'Syne', sans-serif;
  --FM: 'Space Mono', monospace;
  --FB: 'DM Sans', sans-serif;

  /* ── Motion ── */
  --DUR:  1040ms;
  --EASE: cubic-bezier(.22, 1, .28, 1);

  /* ── Layout ── */
  --NAV-H: 62px;
  --FTR-H: 60px;
}

/* ── SCREEN READER ONLY — visible to crawlers & assistive tech, hidden visually ── */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ── RESET ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html, body {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: var(--N);
  color: var(--W);
  font-family: var(--FB);
  cursor: none;
}

/* ── CUSTOM CURSOR ── */
#CUR {
  position: fixed;
  width: 9px;
  height: 9px;
  background: var(--Y);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  mix-blend-mode: exclusion;
  transition: width .2s, height .2s;
}

#CUR-R {
  position: fixed;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(210,240,25,.35);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width .28s, height .28s;
}

/* ── GLOBAL GRID ── */
#GGRID {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(210,240,25,.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(210,240,25,.02) 1px, transparent 1px);
  background-size: 56px 56px;
  animation: gscroll 24s linear infinite;
  mix-blend-mode: screen;
}

#GGRID::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(210,240,25,.055) 1px, transparent 1px);
  background-size: 56px 56px;
  animation: gdot 4s ease-in-out infinite;
}

@keyframes gdot { 0%, 100% { opacity: .3 } 50% { opacity: .9 } }
@keyframes gscroll { to { background-position: 0 56px; } }

#SCAN {
  position: fixed;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: repeating-linear-gradient(
    0deg,
    transparent, transparent 2px,
    rgba(0, 0, 0, .055) 2px, rgba(0, 0, 0, .055) 4px
  );
  opacity: .5;
}

/* ── STAGE ── */
#stage {
  position: fixed;
  inset: 0;
  overflow: hidden;
  z-index: 3;
}

.slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--DUR) var(--EASE), opacity var(--DUR) var(--EASE);
  will-change: transform, opacity;
  overflow: hidden;
}

.slide[data-state="current"]  { transform: translateY(0);     opacity: 1; pointer-events: all; z-index: 10; }
.slide[data-state="above"]    { transform: translateY(-100%); opacity: 0; pointer-events: none; z-index: 5; }
.slide[data-state="below"]    { transform: translateY(100%);  opacity: 0; pointer-events: none; z-index: 5; }

.sgrid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(210,240,25,.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(210,240,25,.022) 1px, transparent 1px);
  background-size: 56px 56px;
  animation: gscroll 24s linear infinite;
  pointer-events: none;
  z-index: 0;
}

/* ── NAVBAR — transparent overlay, logo only ── */
#NAV {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  height: var(--NAV-H);
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background: linear-gradient(to bottom, rgba(0, 0, 0, .72) 40%, transparent);
  pointer-events: none;
  backdrop-filter: blur(10px) saturate(1.2);
  -webkit-backdrop-filter: blur(10px) saturate(1.2);
  transition: background .4s;
}

#NAV * { pointer-events: all; }

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--FD);
  font-weight: 800;
  font-size: 17px;
  letter-spacing: -.3px;
}

.lb {
  width: 32px;
  height: 32px;
  background: var(--Y);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-weight: 900;
  font-size: 13px;
  font-family: var(--FM);
}

.logo em { color: var(--Y); font-style: normal; }

/* brand triangle accent — top-right header texture */
.nav-tri {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 56px;
  height: 76px;
  pointer-events: none;
  filter: drop-shadow(0 0 6px rgba(210, 240, 25, .25));
}
#NAV .nav-tri, #NAV .nav-tri * { pointer-events: none; }
.tri-p {
  position: absolute;
  width: 32.14%;
  height: 23.68%;
  background: var(--Y);
  clip-path: polygon(0 0, 100% 0, 100% 100%);   /* ◥ */
  opacity: 1;
  animation: triFly 1.5s cubic-bezier(.16, 1, .3, 1) both;
}
.tri-p.g { opacity: 0; animation-name: triFlyGhost; }
@keyframes triFly {
  0%   { transform: translate(var(--sx), var(--sy)) scale(.35) rotate(-60deg); opacity: 0; }
  65%  { opacity: 1; }
  100% { transform: translate(0, 0) scale(1) rotate(0); opacity: 1; }
}
@keyframes triFlyGhost {
  0%   { transform: translate(var(--sx), var(--sy)) scale(.35) rotate(-60deg); opacity: 0; }
  35%  { opacity: .7; }
  70%  { opacity: .4; }
  100% { transform: translate(0, 0) scale(.9); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .tri-p   { animation: none; }
  .tri-p.k { opacity: 1; transform: none; }
  .tri-p.g { display: none; }
}
@media (max-width: 768px) {
  .nav-tri { top: 12px; right: 8px; width: 42px; height: 57px; }
}
@media (max-width: 380px) {
  .nav-tri { display: none; }
}

/* ── SLIDE NAVIGATION DOTS ── */
#DOTS {
  position: fixed;
  right: 26px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 500;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--M);
  cursor: none;
  transition: background .3s, height .35s, border-radius .35s;
}

.dot.on { background: var(--Y); height: 22px; border-radius: 3px; }

/* ── COUNTER + ARROWS ── */
#CNT {
  position: fixed;
  left: 48px;
  bottom: 34px;
  z-index: 500;
  font-family: var(--FM);
  font-size: 11px;
  letter-spacing: .12em;
  color: var(--M);
}

#CNT span { color: var(--Y); }

#ARROWS {
  position: fixed;
  right: 48px;
  bottom: 34px;
  z-index: 500;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.abtn {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 50%;
  background: rgba(255, 255, 255, .04);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  cursor: none;
  transition: background .2s, border-color .2s, transform .2s;
  color: var(--W);
}

.abtn:hover { background: rgba(210,240,25,.12); border-color: rgba(210,240,25,.3); transform: scale(1.1); }
.abtn.dis   { opacity: .2; pointer-events: none; }

/* ── FLASH OVERLAY ── */
#OVL {
  position: fixed;
  inset: 0;
  z-index: 200;
  pointer-events: none;
  background: var(--Y);
  clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
  transition: clip-path .32s cubic-bezier(.76, 0, .24, 1);
  opacity: .07;
}

#OVL.flash { clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); }
#OVL.hide  { clip-path: polygon(0 0, 100% 0, 100% 0%, 0 0%); }

/* ── NEX MASCOT ── */
#NEX {
  position: fixed;
  left: 40px;
  bottom: 28px;
  width: 196px;
  z-index: 650;
  pointer-events: none;
  transition: bottom .8s var(--EASE), transform .6s var(--EASE);
  filter: drop-shadow(0 0 18px rgba(210,240,25,.22));
}

#BUBBLE {
  position: fixed;
  left: 34px;
  bottom: 244px;
  background: rgba(8, 8, 8, .97);
  border: 1px solid rgba(210,240,25,.3);
  border-radius: 14px 14px 3px 14px;
  padding: 10px 14px;
  max-width: 182px;
  font-family: var(--FM);
  font-size: 9.5px;
  letter-spacing: .03em;
  line-height: 1.6;
  color: var(--Y);
  z-index: 610;
  pointer-events: none;
  opacity: 0;
  transform: translateY(6px) scale(.94);
  transition: opacity .35s, transform .35s;
  white-space: pre-line;
}

#BUBBLE.on { opacity: 1; transform: translateY(0) scale(1); }

#BUBBLE::after {
  content: '';
  position: absolute;
  bottom: -7px;
  left: 16px;
  width: 0;
  height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 7px solid rgba(210,240,25,.3);
}

.nex-label {
  position: absolute;
  left: 40px;
  bottom: 196px;
  font-family: var(--FM);
  font-size: 7.5px;
  letter-spacing: .28em;
  color: rgba(210,240,25,.28);
  text-transform: uppercase;
  pointer-events: none;
  z-index: 600;
  white-space: nowrap;
}

/* ── SHARED ATOMS ── */
.eye {
  font-family: var(--FM);
  font-size: 9px;
  letter-spacing: .36em;
  color: var(--Y);
  text-transform: uppercase;
}

.pill {
  display: inline-block;
  font-family: var(--FM);
  font-size: 10px;
  letter-spacing: .2em;
  color: var(--Y);
  border: 1px solid rgba(210,240,25,.35);
  padding: 6px 18px;
  border-radius: 100px;
  background: rgba(210,240,25,.07);
  text-transform: uppercase;
}

.scroll-lbl {
  font-family: var(--FM);
  font-size: 8px;
  letter-spacing: .44em;
  color: rgba(210,240,25,.28);
  text-transform: uppercase;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.scroll-lbl::before, .scroll-lbl::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, .05);
}

/* ── CONTENT ANIMATION ── */
.c-item {
  opacity: 0;
  transform: translateY(38px);
  filter: blur(7px);
  transition: opacity .85s var(--EASE), transform 1s var(--EASE), filter .85s var(--EASE);
}

.slide[data-state="current"] .c-item                 { opacity: 1; transform: translateY(0); filter: blur(0); }
.slide[data-state="current"] .c-item:nth-child(1)    { transition-delay: .08s; }
.slide[data-state="current"] .c-item:nth-child(2)    { transition-delay: .19s; }
.slide[data-state="current"] .c-item:nth-child(3)    { transition-delay: .30s; }
.slide[data-state="current"] .c-item:nth-child(4)    { transition-delay: .41s; }
.slide[data-state="current"] .c-item:nth-child(5)    { transition-delay: .52s; }
.slide[data-state="current"] .c-item:nth-child(6)    { transition-delay: .63s; }
.slide[data-state="current"] .c-item:nth-child(7)    { transition-delay: .74s; }

/* ── CTA BUTTON ── */
.p-cta {
  font-family: var(--FM);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  border: 1px solid var(--Y);
  color: #0a0b09;
  background: var(--Y);
  padding: 13px 30px;
  cursor: none;
  border-radius: 3px;
  transition: background .22s, border-color .22s, box-shadow .22s, color .22s, transform .22s;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
}

.p-cta::before {
  content: '';
  position: absolute;
  left: -100%;
  top: 0;
  bottom: 0;
  width: 100%;
  background: linear-gradient(90deg, transparent, rgba(210,240,25,.08), transparent);
  transition: left .48s;
}

.p-cta:hover::before { left: 100%; }

.p-cta:hover {
  background: #b8d414;
  color: #000;
  border-color: #b8d414;
  box-shadow: 0 6px 28px rgba(210,240,25,.32), 0 2px 8px rgba(210,240,25,.15);
  transform: translateY(-1px);
}

.p-cta:hover .cta-arrow { transform: translateX(5px); }
.cta-arrow { display: inline-block; transition: transform .25s; }

/* ══════════════════════════════════════════
   SPLIT LAYOUT — 3 COLUMN (15% / 50% / 35%)
══════════════════════════════════════════ */
.split {
  display: grid;
  grid-template-columns: 7% 47% 46%;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 3;
  align-items: stretch;
}

.split-left {
  grid-column: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(76px, 8vh, 96px) 30px clamp(60px, 6vh, 80px) 24px;
  position: relative;
  z-index: 2;
}

.split-left-inner {
  max-width: 520px;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.split-right {
  grid-column: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
  position: relative;
  overflow: hidden;
}

.split-right::before {
  content: '';
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(210,240,25,.05), transparent 70%);
  pointer-events: none;
}

.illu {
  width: 100%;
  max-width: 480px;
  height: auto;
  max-height: calc(100vh - 130px);
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 4px 40px rgba(210,240,25,.10));
}

/* ── LIST COMPONENTS ── */
.p-badge {
  font-family: var(--FM);
  font-size: 8.5px;
  letter-spacing: .2em;
  background: rgba(210,240,25,.07);
  color: var(--Y);
  border: 1px solid rgba(210,240,25,.2);
  padding: 4px 12px;
  border-radius: 100px;
  display: inline-block;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.p-title {
  font-family: var(--FD);
  font-weight: 800;
  font-size: clamp(32px, 4.2vw, 40px);
  line-height: .9;
  letter-spacing: -2.5px;
  margin-bottom: 20px;
}

.p-title .tm {
  font-size: .36em;
  font-family: var(--FM);
  vertical-align: super;
  color: rgba(210,240,25,.4);
}

.p-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin-bottom: 8px;
}

.p-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, .025);
  border-left: 2px solid rgba(210,240,25,.15);
  font-family: var(--FM);
  font-size: 11px;
  color: rgba(255, 255, 255, .7);
  transition: border-color .25s, background .25s, color .25s;
  cursor: none;
}

.p-list li:hover { border-left-color: var(--Y); background: rgba(210,240,25,.022); color: var(--W); }

.p-text { display: flex; flex-direction: column; gap: 3px; margin-bottom: 8px; }

.p-line {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, .04);
  position: relative;
  overflow: hidden;
  cursor: none;
  transition: border-color .25s;
}

.p-line::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(255, 255, 255, .06);
  transition: background .3s;
}

.p-line:hover::before { background: var(--Y); }

.p-corp {
  font-family: var(--FM);
  font-size: 10.5px;
  font-style: italic;
  color: rgba(255, 255, 255, .45);
  flex: 1;
}

.p-real {
  font-family: var(--FM);
  font-size: 10px;
  color: var(--R);
  letter-spacing: .04em;
  flex-shrink: 0;
}

.p-steps {
  list-style: none;
  counter-reset: st;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.p-steps li {
  counter-increment: st;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 16px;
  background: rgba(255, 255, 255, .025);
  border: 1px solid rgba(255, 255, 255, .04);
  font-family: var(--FM);
  font-size: 11px;
  color: rgba(255, 255, 255, .7);
  transition: all .25s;
  cursor: none;
}

.p-steps li::before {
  content: counter(st, decimal-leading-zero);
  font-size: 8px;
  color: rgba(210,240,25,.38);
  width: 22px;
  flex-shrink: 0;
}

.p-steps li:hover { border-color: rgba(210,240,25,.15); background: rgba(210,240,25,.025); color: var(--W); }
.p-steps .sk { text-decoration: line-through; opacity: .35; }
.p-steps .hl { color: var(--Y); border-color: rgba(210,240,25,.2) !important; }

/* ── SVG KEYFRAME ANIMATIONS ── */
@keyframes coffeeSteam  { 0%, 100% { opacity: .6 } 50% { opacity: 1 } }
@keyframes chartBar     { 0%, 100% { transform: scaleY(1) } 50% { transform: scaleY(1.15) } }
@keyframes floatDoc     { 0%, 100% { transform: translateY(0) rotate(-2deg) } 50% { transform: translateY(-10px) rotate(2deg) } }
@keyframes floatCup     { 0%, 100% { transform: translateY(0) rotate(3deg) } 50% { transform: translateY(-8px) rotate(-1deg) } }
@keyframes floatChart   { 0%, 100% { transform: translateY(0) rotate(1deg) } 50% { transform: translateY(-12px) rotate(-2deg) } }
@keyframes steamRise    { 0% { transform: translateY(0); opacity: .8 } 100% { transform: translateY(-22px); opacity: 0 } }
@keyframes photoPop     { 0%, 100% { transform: scale(1) } 50% { transform: scale(1.03) } }
@keyframes likeFloat    { 0% { transform: translateY(0) scale(0); opacity: 0 } 20% { transform: translateY(-10px) scale(1); opacity: 1 } 100% { transform: translateY(-60px) scale(.7); opacity: 0 } }
@keyframes bossShake    { 0%, 100% { transform: rotate(0) } 20% { transform: rotate(-3deg) } 40% { transform: rotate(3deg) } 60% { transform: rotate(-2deg) } 80% { transform: rotate(2deg) } }
@keyframes sadFace      { 0%, 100% { transform: translateY(0) } 50% { transform: translateY(3px) } }
@keyframes calSweat     { 0%, 100% { opacity: .6; transform: translateY(0) } 50% { opacity: 1; transform: translateY(4px) } }
@keyframes emailBounce  { 0%, 100% { transform: translateY(0) } 50% { transform: translateY(-8px) } }
@keyframes ghostFloat   { 0%, 100% { transform: translateY(0) scaleX(1) } 25% { transform: translateY(-16px) scaleX(.96) } 75% { transform: translateY(-8px) scaleX(1.04) } }
@keyframes ghostFade    { 0%, 100% { opacity: .9 } 50% { opacity: .3 } }
@keyframes msgRead      { 0%, 100% { opacity: 1 } 50% { opacity: .3 } }
@keyframes profileGone  { 0%, 50% { opacity: 1; transform: scale(1) } 51%, 100% { opacity: 0; transform: scale(0) } }
@keyframes resumeFall   { 0% { transform: translateY(-200px) rotate(0deg); opacity: 1 } 70% { opacity: 1 } 100% { transform: translateY(300px) rotate(720deg); opacity: 0 } }
@keyframes binShake     { 0%, 100% { transform: rotate(0) } 20% { transform: rotate(-5deg) } 40% { transform: rotate(5deg) } }
@keyframes uploadSpin   { 0% { transform: rotate(0) } 100% { transform: rotate(360deg) } }
@keyframes dustPuff     { 0% { transform: scale(0); opacity: .8 } 100% { transform: scale(2.5); opacity: 0 } }
@keyframes rejectedStamp { 0% { transform: scale(0) rotate(-20deg); opacity: 0 } 60% { transform: scale(1.1) rotate(-10deg); opacity: 1 } 100% { transform: scale(1) rotate(-8deg); opacity: 1 } }
@keyframes emailPileUp  { 0% { transform: translateY(-40px); opacity: 0 } 100% { transform: translateY(0); opacity: 1 } }
@keyframes cityFade     { 0%, 100% { opacity: .4 } 50% { opacity: .7 } }
@keyframes aiSpin       { 0% { transform: rotate(0) } 100% { transform: rotate(360deg) } }
@keyframes profileGlow  { 0%, 100% { filter: drop-shadow(0 0 6px rgba(210,240,25,.2)) } 50% { filter: drop-shadow(0 0 18px rgba(210,240,25,.6)) } }
@keyframes tc           { 0%, 100% { opacity: 1 } 50% { opacity: 0 } }

/* ── HERO SLIDE (s1) ── */
#s1 {
  background: radial-gradient(ellipse 70% 80% at 18% 50%, #0d110a, var(--N) 65%),
              radial-gradient(ellipse 40% 40% at 80% 30%, #0a0d08, transparent);
  flex-direction: column;
  text-align: center;
}

/* editorial section — EVERYONE centered, support block left-aligned */
.hero-ed, .he-word { text-align: center; }
.he-support, .he-lines, .he-line { text-align: left; }

#s1 canvas { position: absolute; inset: 0; pointer-events: none; z-index: 1; }

/* Hero slide stacks from top so the absolute-positioned pill is never covered */
#s1 { justify-content: flex-start; }

.hero-inner {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 110vh;
  padding: 0 clamp(20px, 5vw, 80px);
}

.hero-h1 {
  font-family: var(--FD);
  font-weight: 800;
  font-size: clamp(64px, 11vw, 100px);
  line-height: .84;
  letter-spacing: -5px;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.hero-h1 .y  { color: var(--Y); }
.hero-h1 .o  { -webkit-text-stroke: 1.5px rgba(210,240,25,.22); color: transparent; }

.hero-body {
  font-size: clamp(13px, 1.6vw, 17px);
  color: var(--M);
  line-height: 1.9;
  max-width: 490px;
  margin: 0 auto 24px;
}

.hero-body em { color: rgba(210,240,25,.75); font-style: normal; }

/* ── HERO EDITORIAL ── */
.hero-ed {
  width: 100%;
  max-width: 1080px;
  text-align: center;
  margin-bottom: 36px;
}

.he-word {
  font-family: var(--FD);
  font-weight: 900;
  font-size: clamp(64px, 7.2vw, 152px);
  line-height: 0.83;
  letter-spacing: -0.04em;
  color: #fff;
  display: block;
  margin-bottom: 10px;
  margin-left: 15%;
  user-select: none;
}

.he-y { color: var(--Y); }

.he-support {
  width: 46%;
  margin-left: auto;
  padding-left: clamp(16px, 2.5vw, 32px);
  border-left: 1px solid rgba(255,255,255,.1);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.he-lines {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.he-line {
  font-family: var(--FB);
  font-size: clamp(22px, 2.5vw, 42px);
  font-weight: 300;
  color: rgba(255,255,255,.55);
  letter-spacing: -0.01em;
  line-height: 1.35;
  white-space: nowrap;
}

.he-line em {
  color: rgba(210,240,25,.72);
  font-style: italic;
}

.he-sub {
  font-family: var(--FM);
  font-size: clamp(9px, .85vw, 12px);
  color: rgb(255 255 255 / 80%);
  letter-spacing: 0.1em;
  line-height: 1.9;
  text-transform: uppercase;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,.07);
}

/* cinematic stagger overrides for s1 */
#s1[data-state="current"] .he-word       { transition-delay: .06s; }
#s1[data-state="current"] .he-line:nth-child(1) { transition-delay: .22s; }
#s1[data-state="current"] .he-line:nth-child(2) { transition-delay: .34s; }
#s1[data-state="current"] .he-line:nth-child(3) { transition-delay: .46s; }
#s1[data-state="current"] .he-sub        { transition-delay: .58s; }
#s1[data-state="current"] .hero-enter    { transition-delay: .72s; }

/* ── HERO TRIO ── */
.hero-trio {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 28px;
  text-align: center;
}

.trio-line {
  font-family: var(--FD);
  font-weight: 800;
  font-size: clamp(40px, 6.5vw, 82px);
  line-height: .9;
  letter-spacing: clamp(-2px, -.35vw, -4px);
  padding: 10px 0;
  white-space: nowrap;
}

.trio-sep {
  width: clamp(60px, 12vw, 120px);
  height: 1px;
  background: rgba(255,255,255,.1);
  margin: 0 auto;
}

.trio-line .hy { color: var(--Y); }
.trio-line .ho { -webkit-text-stroke: 1.5px rgba(210,240,25,.35); color: transparent; }
.trio-line .hr { color: var(--R); }
.hy-soft { color: rgba(210,240,25,.72); font-style: normal; }

.hero-enter {
  font-family: var(--FM);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  border: 1px solid var(--Y);
  background: var(--Y);
  color: #0a0b09;
  padding: 13px 34px;
  border-radius: 4px;
  cursor: none;
  transition: all .25s;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 480px;
  text-align: center;
  margin: 0 auto;
}

.hero-enter::before {
  content: '';
  position: absolute;
  left: -100%;
  top: 0;
  bottom: 0;
  width: 100%;
  background: linear-gradient(90deg, transparent, rgba(210,240,25,.1), transparent);
  transition: left .5s;
}

.hero-enter:hover::before { left: 100%; }
.hero-enter:hover {
  background: #b8d414;
  border-color: #b8d414;
  box-shadow: 0 0 0 1px var(--Y), 0 8px 36px rgba(210,240,25,.32), 0 2px 10px rgba(210,240,25,.18);
  letter-spacing: .13em;
  transform: translateY(-2px);
}


.sc-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, var(--Y), transparent);
  animation: scpls 2.2s ease-in-out infinite;
  margin: 0 auto;
}

@keyframes scpls { 0%, 100% { opacity: .28 } 50% { opacity: 1 } }

.sc-hint {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  font-family: var(--FM);
  font-size: 8.5px;
  letter-spacing: .22em;
  color: var(--M);
}

/* ── GLITCH SLIDE (s8) ── */
.s8-inner {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: clamp(var(--NAV-H), 8vh, 100px) clamp(20px, 5vw, 60px) clamp(20px, 4vh, 60px);
  max-height: 100vh;
  overflow-y: auto;
  width: 100%;
  -webkit-overflow-scrolling: touch;
}

.g-truth {
  font-family: var(--FD);
  font-weight: 800;
  font-size: clamp(44px, 8vw, 65px);
  line-height: .88;
  letter-spacing: -2px;
  margin-bottom: 18px;
  text-align: center;
}

.g-truth .y { color: var(--Y); }
.g-broken {
  -webkit-text-stroke: 1.5px rgba(255,255,255,.35);
  color: transparent;
  animation: gtxt 4s ease-in-out infinite;
}

@keyframes gtxt {
  0%, 88%, 100% { -webkit-text-stroke-color: rgba(255,255,255,.35); transform: none; filter: none; }
  89% { transform: translateX(-4px); -webkit-text-stroke-color: rgba(210,240,25,.5); filter: none; }
  91% { transform: translateX(5px); filter: none; }
  93% { transform: none; filter: none; }
  96% { transform: translateX(-2px); -webkit-text-stroke-color: rgba(210,240,25,.6); }
  98% { transform: none; }
}

.terminal {
  background: #000;
  border: 1px solid rgba(210,240,25,.26);
  border-radius: 6px;
  padding: 24px 24px 20px;
  max-width: 480px;
  width: 100%;
  text-align: left;
  box-shadow: 0 0 60px rgba(210,240,25,.08), inset 0 1px 0 rgba(210,240,25,.06);
}

.t-bar {
  display: flex;
  gap: 7px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, .05);
}

.t-dot { width: 11px; height: 11px; border-radius: 50%; }
.t-dot:nth-child(1) { background: rgba(255,255,255,.15); }
.t-dot:nth-child(2) { background: rgba(210,240,25,.3); }
.t-dot:nth-child(3) { background: rgba(210,240,25,.65); }

.t-line { font-family: var(--FM); font-size: 11px; line-height: 2; display: block; color: rgba(210,240,25,.65); letter-spacing: .06em; }
.t-line.d { color: var(--M); font-size: 10px; }
.t-line.e { color: var(--R); }

.t-cur {
  display: inline-block;
  width: 7px;
  height: 12px;
  background: var(--Y);
  vertical-align: middle;
  animation: tc .85s step-end infinite;
}

/* ── NEX REVEAL (s9) ── */
#s9 { background: #050507; overflow: hidden; }

.nex-reveal-content {
  position: relative;
  z-index: 4;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: clamp(var(--NAV-H), 8vh, 100px) clamp(20px, 5vw, 60px) 40px;
  max-height: 100vh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.nex-nm {
  font-family: var(--FD);
  font-weight: 800;
  font-size: clamp(72px, 13vw, 168px);
  line-height: .82;
  letter-spacing: -3px;
  color: var(--Y);
  text-shadow: 0 0 80px rgba(210,240,25,.3);
  margin-bottom: 10px;
}

.nex-tag {
  font-family: var(--FM);
  font-size: 12px;
  color: var(--M);
  letter-spacing: .1em;
  margin-bottom: 32px;
}

.nex-bullets {
  display: flex;
  flex-direction: column;
  gap: 3px;
  max-width: 420px;
  width: 100%;
  margin: 0 auto 32px;
  text-align: left;
}

.nbul {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 20px;
  background: rgba(13, 13, 15, .95);
  border: 1px solid rgba(255, 255, 255, .07);
  border-left: 2px solid rgba(210,240,25,.18);
  font-family: var(--FM);
  font-size: 11px;
  color: rgba(255, 255, 255, .6);
  transition: border-left-color .25s, background .25s, color .25s;
  cursor: none;
}

.nbul:hover {
  border-left-color: var(--Y);
  background: rgba(210,240,25,.03);
  color: var(--W);
}
.nbi { font-size: 15px; flex-shrink: 0; }

/* ── FINAL SLIDE (s10) — FIXED LAYOUT ── */
#s10 {
  background: var(--C);
  flex-direction: column !important;
  align-items: stretch !important;
  justify-content: flex-start !important;
  text-align: center;
  position: relative;
  overflow: hidden;
}

#s10::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--Y), transparent);
  z-index: 4;
}

/* FIX: scrollable content area that takes remaining height minus footer */
.s10-content {
  /* Bind the form's scroll context to the VISIBLE viewport (not the large fixed
     #stage height) so the form actually scrolls on mobile and the submit button
     is always reachable. */
  flex: 0 0 auto;
  height: 100vh;                  /* fallback for old browsers */
  height: 100dvh;                 /* actual visible viewport on mobile */
  max-height: 100dvh;
  overflow-y: auto;
  overscroll-behavior: contain;   /* keep scroll inside the form, don't chain to the deck */
  touch-action: pan-y;            /* smooth native vertical scrolling on touch */
  -webkit-overflow-scrolling: touch;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: calc(var(--NAV-H) + 12px) clamp(20px, 5vw, 60px) clamp(96px, 16vh, 140px);
  position: relative;
  z-index: 3;
  width: 100%;
  scrollbar-width: none;
}

.s10-content::-webkit-scrollbar { display: none; }

/* FIX: footer is now a proper flex child, not absolute */
.ftr {
  position: relative;
  flex-shrink: 0;
  height: var(--FTR-H);
  padding: 0 clamp(20px, 3vw, 48px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, .04);
  z-index: 3;
}

.ftr-logo {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--FD);
  font-size: 14px;
}

.ftr-logo em { color: var(--Y); font-style: normal; }
.ftr-copy { font-family: var(--FM); font-size: 9px; color: var(--M); letter-spacing: .08em; }

.ftr-links { display: flex; gap: 16px; }
.ftr-links a {
  font-family: var(--FM);
  font-size: 9px;
  color: var(--M);
  text-decoration: none;
  cursor: none;
  transition: color .2s;
}
.ftr-links a:hover { color: var(--Y); }

.final-h {
  font-family: var(--FD);
  font-weight: 800;
  font-size: clamp(40px, 6.5vw, 56px);
  line-height: .86;
  letter-spacing: -2.5px;
  margin-bottom: 10px;
}

.final-h .y { color: var(--Y); }
.final-h .o { -webkit-text-stroke: 1.5px rgba(210,240,25,.2); color: transparent; }

.final-sub {
  font-size: 14px;
  color: var(--M);
  max-width: 390px;
  margin: 0 auto 28px;
  line-height: 1.85;
}

.wl-form {
  display: flex;
  flex-direction: column;
  gap: 9px;
  max-width: 340px;
  width: 100%;
  margin: 0 auto 10px;
}

.wl-inp {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 6px;
  padding: 12px 16px;
  color: var(--W);
  font-family: var(--FB);
  font-size: 14px;
  outline: none;
  cursor: none;
  transition: border-color .3s, background .3s;
  width: 100%;
}

.wl-inp::placeholder { color: var(--M); }
.wl-inp:focus { border-color: rgba(210,240,25,.4); background: rgba(210,240,25,.02); }
select.wl-inp option { background: var(--C); }

.wl-btn {
  background: var(--Y);
  color: #000;
  font-family: var(--FM);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .1em;
  padding: 15px;
  border: none;
  border-radius: 4px;
  cursor: none;
  transition: transform .22s, box-shadow .28s, opacity .2s;
  position: relative;
  overflow: hidden;
  width: 100%;
}

.wl-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, .18) 0%, transparent 60%);
}

.wl-btn::after {
  content: '';
  position: absolute;
  left: -100%;
  top: 0;
  bottom: 0;
  width: 60%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.15), transparent);
  transition: left .5s;
}

.wl-btn:hover::after { left: 160%; }
.wl-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 40px rgba(210,240,25,.42), 0 4px 12px rgba(210,240,25,.22); }
.wl-btn:disabled { opacity: .6; transform: none; }

.wl-note {
  font-family: var(--FM);
  font-size: 9.5px;
  color: rgba(255, 255, 255, .18);
  letter-spacing: .1em;
  margin-top: 10px;
}

/* ── FORM LOADING / ERROR STATES ── */
.wl-error {
  font-family: var(--FM);
  font-size: 10px;
  color: var(--R);
  text-align: center;
  padding: 6px 0;
  display: none;
}

.wl-error.on { display: block; }

/* ── SUCCESS STATE ── */
.wl-succ {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.wl-succ.on { display: flex; }
.wl-ico { font-size: 48px; animation: pop .5s cubic-bezier(.175, .885, .32, 1.275); }

@keyframes pop { from { transform: scale(0); } }

.wl-stitle { font-family: var(--FD); font-size: 34px; color: var(--Y); }
.wl-smsg  { font-family: var(--FM); font-size: 10px; color: var(--M); letter-spacing: .08em; }

/* ── LINKEDIN GENERATOR ── */
.gen-before {
  font-family: var(--FM);
  font-size: 12px;
  color: var(--M);
  padding: 13px 17px;
  border: 1px solid rgba(255, 255, 255, .06);
  margin-bottom: 8px;
  font-style: italic;
}

.gen-after-wrap {
  position: relative;
}

.gen-after {
  font-family: var(--FM);
  font-size: 11px;
  color: var(--Y);
  background: rgba(210,240,25,.04);
  border: 1px solid rgba(210,240,25,.18);
  padding: 13px 48px 13px 17px;
  margin-bottom: 4px;
  line-height: 1.7;
  transition: opacity .3s;
}

.gen-refresh-btn {
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(210,240,25,.28);
  background: rgba(210,240,25,.06);
  color: var(--Y);
  font-size: 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, border-color .2s;
  line-height: 1;
  padding: 0;
}

.gen-refresh-btn:hover {
  background: rgba(210,240,25,.16);
  border-color: rgba(210,240,25,.6);
}

.gen-refresh-btn:active {
  transform: translateY(-50%) rotate(180deg);
}

/* ── STATS (slide 6) ── */
.p-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  margin-bottom: 8px;
}

.p-stat {
  background: rgba(255, 255, 255, .02);
  border: 1px solid rgba(255, 255, 255, .05);
  border-bottom: 1px solid rgba(255, 255, 255, .05);
  padding: 16px 10px;
  text-align: center;
  transition: border-color .28s, background .28s, box-shadow .28s;
  cursor: none;
}

.p-stat:hover {
  border-color: rgba(210,240,25,.18);
  background: rgba(210,240,25,.022);
  box-shadow: 0 4px 20px rgba(210,240,25,.06);
}

.p-stat-n {
  font-family: var(--FD);
  font-size: clamp(28px, 3.5vw, 52px);
  line-height: 1;
  margin-bottom: 4px;
}

.p-stat-n.r { color: var(--R); }
.p-stat-n.y { color: var(--Y); }
.p-stat-n.w { color: var(--M); }

.p-stat-d { font-family: var(--FM); font-size: 8.5px; color: var(--M); letter-spacing: .06em; line-height: 1.5; }

.p-caption {
  font-family: var(--FM);
  font-size: 10.5px;
  font-style: italic;
  color: rgba(210,240,25,.60);
  border: 1px solid rgba(210,240,25,.12);
  background: rgba(210,240,25,.04);
  padding: 12px 16px;
  margin-bottom: 4px;
  border-left: 3px solid var(--Y);
  box-shadow: inset 3px 0 12px rgba(210,240,25,.04);
}

/* ── NEX ANIMATIONS ── */
@keyframes nfloat  { 0%, 100% { transform: translateY(0) rotate(-1.5deg) } 50% { transform: translateY(-14px) rotate(1.5deg) } }
@keyframes nshiver { 0%, 100% { transform: rotate(0) } 20% { transform: rotate(-4deg) } 40% { transform: rotate(4deg) } 60% { transform: rotate(-3deg) } 80% { transform: rotate(3deg) } }
@keyframes nwalk   { 0%, 100% { transform: rotate(-3deg) } 25% { transform: rotate(3deg) translateX(2px) } 75% { transform: rotate(3deg) translateX(-2px) } }
@keyframes njump   { 0%, 100% { transform: translateY(0) scaleX(1) scaleY(1) } 40% { transform: translateY(-26px) scaleX(.9) scaleY(1.1) } 82% { transform: translateY(3px) scaleX(1.06) scaleY(.94) } }
@keyframes ndance  { 0%, 100% { transform: rotate(-5deg) scaleX(1) } 25% { transform: rotate(5deg) scaleX(1.03) } 75% { transform: rotate(5deg) scaleX(1.03) } }
@keyframes nthink  { 0%, 100% { transform: rotate(0) } 50% { transform: rotate(-8deg) translateX(-3px) } }
@keyframes npanic  { 0% { transform: rotate(0) } 10% { transform: rotate(-8deg) } 20% { transform: rotate(8deg) } 30% { transform: rotate(-6deg) } 40% { transform: rotate(6deg) } 50% { transform: rotate(0) } }

/* ══════════════════════════════════════════
   RESPONSIVE BREAKPOINTS
══════════════════════════════════════════ */

/* ── TABLET + SMALL LAPTOP (640px – 980px) ── */
@media (max-width: 980px) {
  :root { --NAV-H: 56px; --FTR-H: 52px; }

  .split {
    grid-template-columns: 1fr;
    height: 100%;
    align-content: start;
    row-gap: 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .split::after, .split-left::after { display: none; }

  .split-left {
    grid-column: auto;
    padding: calc(var(--NAV-H) + 16px) 24px 16px 24px;
    justify-content: flex-start;
  }

  .split-left-inner { max-width: 100%; }

  .split-right {
    display: flex;
    grid-column: auto;
    padding: 0 24px 28px;
    max-height: 240px;
  }

  .illu { max-width: 260px; max-height: 220px; }

  #DOTS { display: none; }

  #NEX { width: 154px; left: 10px; bottom: 10px; }
  #BUBBLE { left: 8px; bottom: 180px; font-size: 8.5px; max-width: 156px; }
  .nex-label { display: none; }

  #CNT  { left: 14px; bottom: 18px; }
  #ARROWS { right: 14px; bottom: 18px; }

  .p-stats { grid-template-columns: 1fr 1fr; }

  .ftr {
    flex-direction: column;
    gap: 6px;
    text-align: center;
    height: auto;
    padding: 12px 16px;
  }

  #NAV { padding: 0 18px; }

  .hero-h1 { font-size: clamp(52px, 13vw, 100px); letter-spacing: -3px; }
  .trio-line { font-size: clamp(36px, 6vw, 72px); padding: 8px 0; }
  .he-word { font-size: clamp(58px, 6.4vw, 112px); }
  .he-support { width: 52%; }
  .he-line { font-size: clamp(20px, 3vw, 34px); white-space: normal; }
  .he-lines { margin-left: 0; }
  .hero-inner { padding-left: 18px; padding-right: 18px; }
  .g-truth { font-size: clamp(38px, 9vw, 65px); }
}

/* ── MOBILE (< 640px) ── */
@media (max-width: 640px) {
  :root { --NAV-H: 52px; --FTR-H: auto; }

  #NAV { padding: 0 14px; }
  .logo { font-size: 15px; }
  .lb { width: 28px; height: 28px; font-size: 12px; }

  /* Pill stays just below navbar regardless of viewport height */
  #hpill { top: calc(var(--NAV-H) + 14px) !important; }

  /* Hero — true vertical center between pill and scroll hint */
  .hero-inner {
    margin-top: calc(var(--NAV-H) + 46px);
    height: calc(100vh - var(--NAV-H) - 46px - 64px); /* 46px pill, 64px scroll hint zone */
    min-height: 0;
    padding: 0 20px;
    justify-content: center;
  }
  .hero-h1 { font-size: clamp(42px, 10.5vw, 68px); letter-spacing: -2.5px; margin-bottom: 16px; }
  .hero-body { font-size: 14px; line-height: 1.75; margin-bottom: 20px; }
  .trio-line { font-size: clamp(26px, 7vw, 48px); letter-spacing: -1.5px; padding: 7px 0; white-space: normal; }
  .hero-trio { margin-bottom: 20px; }
  /* editorial mobile */
  .he-word { font-size: clamp(31px, 8vw, 88px); margin-bottom: 8px; }
  .he-support { width: 100%; margin-left: 0; border-left: none; border-top: 1px solid rgba(255,255,255,.1); padding-left: 0; padding-top: 14px; gap: 12px; }
  .he-line { font-size: clamp(18px, 5.5vw, 32px); }
  .he-sub { font-size: 10px; }
  .hero-ed { margin-bottom: 22px; }
  .sc-hint { bottom: 20px; }

  /* Split slide adjustments */
  .split-left { grid-column: auto; padding: calc(var(--NAV-H) + 14px) 20px 14px 20px; }
  .split-right { padding: 4px 20px 28px; max-height: 260px; }
  .illu { max-width: 260px; max-height: 240px; }

  .p-title {
    font-size: clamp(28px, 8vw, 34px);
    letter-spacing: -2px;
    margin-bottom: 14px;
  }

  .p-list li, .p-steps li { font-size: 10px; padding: 8px 12px; }
  .p-corp { font-size: 9.5px; }
  .p-real { font-size: 9px; }
  .p-stats { grid-template-columns: 1fr 1fr; }
  .p-stat { padding: 12px 8px; }
  .p-stat-n { font-size: clamp(24px, 6vw, 38px); }
  .p-stat-d { font-size: 7.5px; }

  .gen-before { font-size: 10px; padding: 10px 14px; }
  .gen-after { font-size: 10px; padding: 10px 44px 10px 14px; }

  /* Glitch slide */
  .s8-inner { padding: calc(var(--NAV-H) + 12px) 16px clamp(80px, 14vh, 120px); }
  .g-truth { font-size: clamp(36px, 11vw, 55px); letter-spacing: -1.5px; }
  .terminal { padding: 16px 16px 14px; }
  .t-line { font-size: 9.5px; line-height: 1.9; }

  /* Nex reveal */
  .nex-reveal-content {
    padding: calc(var(--NAV-H) + 8px) 16px clamp(80px, 14vh, 120px);
  }
  .nex-nm { font-size: clamp(60px, 16vw, 100px); }
  .nex-tag { font-size: 10px; margin-bottom: 20px; }
  .nbul { padding: 10px 14px; font-size: 10px; gap: 12px; }

  /* Final slide */
  .s10-content {
    padding: calc(var(--NAV-H) + 8px) 16px clamp(96px, 18vh, 150px);
    justify-content: flex-start;
  }
  .final-h { font-size: clamp(42px, 12vw, 72px); letter-spacing: -2px; margin-bottom: 12px; }
  .final-sub { font-size: 12px; margin-bottom: 20px; }
  .wl-form { max-width: 100%; }
  .wl-inp { font-size: 13px; padding: 11px 14px; }
  .wl-btn { font-size: 10px; padding: 13px; }

  .ftr {
    flex-direction: column;
    gap: 4px;
    text-align: center;
    padding: 10px 14px;
    font-size: 8px;
  }

  .ftr-logo { font-size: 12px; }
  .ftr-copy { font-size: 8px; }
  .ftr-links { gap: 10px; }
  .ftr-links a { font-size: 8px; }

  /* Nex + controls */
  #NEX { width: 136px; left: 8px; bottom: 8px; }
  #BUBBLE { left: 6px; bottom: 158px; font-size: 8px; max-width: 140px; }
  #CNT { left: 10px; bottom: 14px; font-size: 10px; }
  #ARROWS { right: 10px; bottom: 14px; }
  .abtn { width: 30px; height: 30px; font-size: 11px; }

  .p-cta { font-size: 9px; padding: 11px 22px; margin-top: 14px; }

  /* Corporate translator lines wrap on narrow screens */
  .p-line { flex-wrap: wrap; gap: 4px 14px; }
  .p-corp { flex: 1 1 100%; margin-bottom: -2px; }
  .p-real { flex: 0 0 auto; }

  /* Prevent long text from breaking layout */
  .p-list li, .p-steps li, .gen-before, .gen-after { overflow-wrap: break-word; word-break: break-word; }
}

/* ── VERY SMALL MOBILE (< 390px) ── */
@media (max-width: 390px) {
  .hero-h1 { font-size: clamp(36px, 13vw, 52px); }
  .trio-line { font-size: clamp(22px, 7.5vw, 40px); padding: 6px 0; }
  .hero-inner { padding: 0 16px; }
  .p-title { font-size: clamp(24px, 8vw, 30px); }
  .split-right { max-height: 220px; }
  .illu { max-width: 220px; max-height: 200px; }
  .nex-nm { font-size: clamp(52px, 16vw, 80px); }
  .final-h { font-size: clamp(36px, 12vw, 56px); }
  .g-truth { font-size: clamp(30px, 10vw, 46px); }
}

/* ── LANDSCAPE MOBILE (short viewport) ── */
@media (max-height: 600px) and (orientation: landscape) {
  :root { --NAV-H: 48px; }

  .split-left { padding-top: calc(var(--NAV-H) + 8px); padding-bottom: 8px; }
  .split-right { display: none; }
  .p-title { font-size: clamp(24px, 5vw, 30px); margin-bottom: 10px; }
  .p-list li, .p-steps li { padding: 6px 12px; }

  .hero-inner { padding-left: 14px; padding-right: 14px; min-height: auto; padding-top: calc(var(--NAV-H) + 44px); padding-bottom: 60px; justify-content: flex-start; }
  .hero-h1 { font-size: clamp(36px, 9vw, 60px); margin-bottom: 8px; }
  .hero-body { margin-bottom: 12px; }
  .sc-hint { display: none; }

  .s8-inner, .nex-reveal-content { padding-top: calc(var(--NAV-H) + 4px); padding-bottom: 60px; }
  .nex-nm { font-size: clamp(52px, 12vw, 90px); }
  .nex-tag { margin-bottom: 14px; }
  .nex-bullets { gap: 2px; margin-bottom: 16px; }
  .nbul { padding: 8px 14px; }

  .s10-content { padding-top: calc(var(--NAV-H) + 4px); }
  .final-h { font-size: clamp(36px, 8vw, 60px); }
  .final-sub { margin-bottom: 14px; }
  .wl-form { gap: 6px; }
}

/* ── HIDE CURSOR ON TOUCH DEVICES ── */
@media (hover: none) and (pointer: coarse) {
  #CUR, #CUR-R { display: none; }
  html, body { cursor: auto; }
  button, a, .p-list li, .p-line, .nbul, .p-stat, .dot {
    cursor: pointer;
  }
  .wl-inp, select.wl-inp { cursor: text; }
}
/* ── BRAND LOGO ── */
.brand-logo {
  height: 40px;
  width: auto;
  display: block;
  object-fit: contain;
}

.brand-logo-container {
  margin-top: 0;
  padding: 0;
}

/* ══════════════════════════════════════════
   EXTENDED RESPONSIVE BREAKPOINTS
══════════════════════════════════════════ */

/* ── 320px — extremely compact ── */
@media (max-width: 360px) {
  .he-word        { font-size: clamp(24px, 7.2vw, 60px); }
  .he-line        { font-size: clamp(15px, 4.8vw, 26px); }
  .p-title        { font-size: clamp(22px, 7vw, 30px); letter-spacing: -1px; }
  .p-stats        { grid-template-columns: 1fr; max-width: 210px; margin-left: auto; margin-right: auto; }
  .p-stat-n       { font-size: clamp(20px, 6.5vw, 32px); }
  .split-right    { max-height: 180px; }
  .illu           { max-width: 180px; max-height: 160px; }
  .nex-nm         { font-size: clamp(46px, 14vw, 68px); }
  .final-h        { font-size: clamp(32px, 10.5vw, 50px); letter-spacing: -1.5px; }
  .g-truth        { font-size: clamp(27px, 9vw, 42px); }
  .terminal       { padding: 12px 12px 10px; }
  .t-line         { font-size: 8.5px; line-height: 1.8; }
  .nbul           { padding: 9px 12px; font-size: 9.5px; gap: 10px; }
  #CNT            { font-size: 9px; left: 8px; bottom: 12px; }
  #ARROWS         { right: 8px; bottom: 12px; }
  .abtn           { width: 28px; height: 28px; font-size: 10px; }
}

/* ── TABLET PORTRAIT (641px – 980px) — better illustration sizing ── */
@media (min-width: 641px) and (max-width: 980px) {
  .split-right { max-height: 340px; }
  .illu        { max-width: 300px; max-height: 310px; }
}

/* ── WIDE DESKTOP (1280px+) — scale illustration with viewport ── */
@media (min-width: 1280px) {
  .illu { max-width: clamp(340px, 26vw, 480px); max-height: calc(100vh - 100px); }
}

/* ── ULTRAWIDE (1920px+) ── */
@media (min-width: 1920px) {
  .split           { grid-template-columns: 18% 44% 38%; }
  .split-left-inner { max-width: 640px; }
  .illu            { max-width: 520px; }
  .nex-nm          { font-size: clamp(72px, 11vw, 180px); }
}

/* ── LANDSCAPE PHONE — compact form on final slide ── */
@media (max-height: 600px) and (orientation: landscape) {
  .wl-inp    { padding: 8px 14px; font-size: 12px; }
  .wl-btn    { padding: 10px; font-size: 10px; }
  .wl-note   { margin-top: 4px; font-size: 8px; }
  .final-sub { margin-bottom: 10px; font-size: 11px; }
  .wl-form   { gap: 5px; }
}

/* ── BROWSER ZOOM SAFETY — relative units ensure scaling ── */
@media (min-resolution: 1.25dppx) {
  #NAV { backdrop-filter: blur(8px) saturate(1.1); -webkit-backdrop-filter: blur(8px) saturate(1.1); }
}

/* ══════════════════════════════════════════
   RESPONSIVE POLISH
   Scrollbar hiding · hero centering · bottom clearance
══════════════════════════════════════════ */

/* ── Hide scrollbars on overflow containers (matching s10-content behavior) ── */
.s8-inner,
.nex-reveal-content {
  scrollbar-width: none;
}
.s8-inner::-webkit-scrollbar,
.nex-reveal-content::-webkit-scrollbar {
  display: none;
}

/* ── TABLET (641px – 980px): hero centering + bottom clearance for fixed UI ──
   NEX mascot at this range: width 76px, bottom 10px → occupies 86px from bottom
   Arrow controls: bottom 18px, two × 30px + 6px gap → 84px from bottom         */
@media (max-width: 980px) {
  /* Remove forced 110vh so content centers at true 50vh instead of 55vh */
  .hero-inner {
    min-height: 100vh;
    max-height: 100vh;
  }

  /* Glitch + Nex reveal: push content up so NEX mascot + arrows don't overlap */
  .s8-inner {
    padding-bottom: clamp(90px, 13vh, 120px);
  }
  .nex-reveal-content {
    padding-bottom: clamp(90px, 13vh, 120px);
  }

  /* Hide split scrollbar to match clean scroll UX of other panels  */
  .split {
    scrollbar-width: none;
  }
  .split::-webkit-scrollbar {
    display: none;
  }

  /* Wrap long hero lines on tablet — prevents text from overflowing he-support */
  .trio-line {
    white-space: normal;
  }
}

/* ── MOBILE (≤ 640px): lift the tablet max-height cap so explicit sizing wins ── */
@media (max-width: 640px) {
  /* The existing 640px block already sets height + min-height: 0;
     removing max-height ensures those values are not capped. */
  .hero-inner {
    max-height: none;
  }
}
/* ═══════════════════════════════════════════════════════════════
   CHANGE BRIEF — UMJ LANDING REVISIONS (overrides + new sections)
   1. Global: remove background grid pattern
   2. Page 1: reduce hero phrase font size
   3. Pages 4–8: new "what do we actually do?" product sequence
   4. Last page: Early Access form support
═══════════════════════════════════════════════════════════════ */

/* ── 1. GLOBAL: remove background grid pattern (every page) ── */
#GGRID,
.sgrid { display: none !important; }

/* ── 2. PAGE 1: reduce the three hero phrases ── */
.he-line { font-size: clamp(15px, 1.7vw, 26px); }

/* ── 3. PAGES 4–8: product sequence ("what do we actually do?") ── */
.prod {
  width: min(620px, 100%);
  margin: auto;
  max-height: 100%;
  overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: calc(var(--NAV-H) + 8px) 28px 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}
.prod::-webkit-scrollbar { display: none; }
.prod-eye {
  font-family: var(--FM);
  font-size: 9px;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--M);
  margin-bottom: 18px;
}
.prod-ico {
  width: 64px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(210,240,25,.05);
  border: 1px solid rgba(210,240,25,.22);
  border-radius: 8px;
  margin-bottom: 18px;
}
.prod-ico svg { width: 30px; height: 30px; display: block; }
.prod-name {
  font-family: var(--FD);
  font-weight: 800;
  font-size: clamp(30px, 4.4vw, 52px);
  line-height: .95;
  letter-spacing: -2px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.prod-name .tm {
  font-size: .32em; font-family: var(--FM);
  vertical-align: super; color: rgba(210,240,25,.45);
}
.prod-tag {
  font-family: var(--FB);
  font-style: italic;
  font-size: 14px;
  color: rgba(255,255,255,.5);
  line-height: 1.5;
  margin-bottom: 22px;
  max-width: 480px;
}
.prod-list {
  list-style: none;
  display: flex; flex-direction: column; gap: 12px;
  border-left: 2px solid rgba(210,240,25,.18);
  padding-left: 18px;
  margin-bottom: 8px;
  max-width: 520px;
}
.prod-list li {
  font-family: var(--FB);
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255,255,255,.62);
}
.prod-list li b { color: rgba(210,240,25,.85); font-weight: 600; }

/* Reveal panel (was "you clicked through …") */
.reveal-count {
  font-family: var(--FD);
  font-weight: 800;
  font-size: clamp(30px, 4.6vw, 54px);
  line-height: 1.02;
  letter-spacing: -2px;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.reveal-count .y { color: var(--Y); }
.reveal-accent {
  font-family: var(--FD);
  font-weight: 800;
  font-size: clamp(24px, 3.6vw, 44px);
  line-height: 1.05;
  letter-spacing: -1.5px;
  text-transform: uppercase;
  color: var(--Y);
  margin-bottom: 24px;
}
.reveal-body {
  font-family: var(--FB);
  font-size: 15px; line-height: 1.8;
  color: rgba(255,255,255,.7);
  max-width: 500px; margin-bottom: 10px;
}
.reveal-sub {
  font-family: var(--FB);
  font-size: 12.5px; line-height: 1.75;
  color: var(--M);
  max-width: 470px; margin-bottom: 28px;
}

/* ── 4. LAST PAGE: Early Access form extras ── */
.wl-ico svg { width: 46px; height: 46px; display: block; margin: 0 auto; }
#WLWO { display: none; }
#WLWO.show { display: block; }

/* ── Responsive tuning for the new sections ── */
@media (max-width: 640px) {
  .he-line { font-size: clamp(13px, 4.4vw, 22px); }
  .prod { padding: calc(var(--NAV-H) + 6px) 20px 24px; }
  .prod-name { font-size: clamp(26px, 9vw, 44px); }
  .prod-tag { font-size: 13px; }
  .prod-list li { font-size: 12px; }
  .reveal-count { font-size: clamp(26px, 9vw, 44px); }
  .reveal-accent { font-size: clamp(22px, 7vw, 38px); }
  .reveal-body { font-size: 13.5px; }
}

/* ═══════════════════════════════════════════════════════════════
   MOBILE HERO — true vertical/horizontal centering  (Doc 2)
   Overrides the earlier tablet min-height:100vh + margin-top push
   that was bottom-weighting the hero on phones.
═══════════════════════════════════════════════════════════════ */
@media (max-width: 640px) {
  #hpill { top: calc(var(--NAV-H) + 10px) !important; z-index: 6; }

  /* Pin the hero slide content to the top of the *visible* viewport, then let
     hero-inner fill the visible height (dvh) and center its own content.
     This is independent of the fixed #stage height, which on mobile tracks
     the LARGE viewport and was throwing the centering off. */
  #s1 { justify-content: flex-start !important; }

  .hero-inner {
    margin: 0 !important;
    height: auto !important;
    max-height: none !important;
    min-height: 100vh !important;        /* fallback for old browsers */
    min-height: 100dvh !important;       /* actual visible viewport on mobile */
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    /* top pad clears the nav + loading pill; bottom pad clears mascot + hint */
    padding: calc(var(--NAV-H) + 58px) 22px 92px !important;
  }
  .hero-ed   { margin-bottom: 18px !important; }
  .he-word   { margin-bottom: 10px !important; }

  /* premium: soft glow on the loading pill + CTA */
  .pill { box-shadow: 0 0 24px rgba(210,240,25,.18); }
  .hero-enter {
    box-shadow: 0 0 0 rgba(210,240,25,.0);
    animation: ctaPulse 3.2s ease-in-out infinite;
  }
}

@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(210,240,25,0); }
  50%      { box-shadow: 0 0 26px 0 rgba(210,240,25,.16); }
}

/* ═══════════════════════════════════════════════════════════════
   PREMIUM ILLUSTRATION SYSTEM — shared motion (Doc 1)
═══════════════════════════════════════════════════════════════ */
@keyframes radarSweep { to { transform: rotate(360deg); } }
@keyframes typingDot  { 0%,80%,100% { opacity:.25; } 40% { opacity:1; } }
@keyframes meterFill  { 0%,100% { width: 38%; } 50% { width: 86%; } }
@keyframes glowPulse  { 0%,100% { opacity:.25; } 50% { opacity:.6; } }
@keyframes blip       { 0% { r:2; opacity:.9; } 100% { r:16; opacity:0; } }

/* ═══════════════════════════════════════════════════════════════
   CONTENT REVISION (ROUND 2) — opener, labelled form, thank-you
═══════════════════════════════════════════════════════════════ */
/* Page 1 opener headline */
.he-q {
  font-family: var(--FD);
  font-weight: 900;
  font-size: clamp(34px, 5.6vw, 92px);
  line-height: .9;
  letter-spacing: -.04em;
  color: #fff;
  text-align: center;
}
.he-q .he-y { color: var(--Y); }

/* lime emphasis for bold terms inside product bullets (pages 2–7) */
.p-list li b { color: var(--Y); font-weight: 600; }

/* Early Access form — labelled fields with hints */
.wl-form { gap: 13px; }
.q-field { display: flex; flex-direction: column; align-items: stretch; gap: 3px; text-align: left; }
.q-label {
  font-family: var(--FM);
  font-size: 11px; font-weight: 500;
  color: var(--Y);;
  letter-spacing: .01em; line-height: 1.3;
}
.q-hint {
  font-family: var(--FB);
  font-size: 10.5px; font-style: italic;
  color: var(--M); line-height: 1.3; margin-bottom: 2px;
}

/* Thank You page accents */
.wl-stitle .y { color: var(--Y); }
.wl-saccent {
  font-family: var(--FD); font-weight: 800;
  font-size: clamp(20px, 2.4vw, 30px);
  color: var(--Y); line-height: 1.1;
  margin: 4px 0 12px;
}
.wl-sfoot {
  font-family: var(--FM); font-size: 10px;
  color: var(--M); letter-spacing: .04em; margin-top: 16px;
}

@media (max-width: 640px) {
  .he-q { font-size: clamp(28px, 9vw, 62px) !important; }
}

/* ═══════════════════════════════════════════════════════════════
   EARLY ACCESS FORM — match the v3 HTML form styling
   (numbered blocks · underline text inputs · boxed selects ·
    solid-green submit · launch tag with green dot)
═══════════════════════════════════════════════════════════════ */
.wl-form { gap: 20px; }
.q-field { gap: 0; }
.q-num {
  font-family: var(--FM);
  font-size: 10px; color: #54584c;
  letter-spacing: .14em; text-transform: uppercase;
  margin: 0 0 3px;
}
.q-label {
  font-family: var(--FB);
  font-size: 14px; font-weight: 500;
  color: var(--Y); letter-spacing: 0; line-height: 1.3;
  margin: 0 0 2px; display: block;
}
.q-hint {
  font-family: var(--FB);
  font-size: 11px; color: #56594d; font-style: italic;
  line-height: 1.35; margin: 0 0 7px; display: block;
}

/* Text / email / tel — single-line underline inputs */
input.wl-inp {
  width: 100%;
  background: transparent !important;
  border: none !important;
  border-bottom: 1px solid rgba(255, 255, 255, .18) !important;
  border-radius: 0 !important;
  padding: 9px 0 !important;
  color: #fff !important;
  font-family: var(--FB) !important;
  font-size: 13px !important;
  transition: border-color .2s ease;
}
input.wl-inp::placeholder { color: rgba(255, 255, 255, .3) !important; }
input.wl-inp:focus { border-bottom-color: var(--Y) !important; box-shadow: none !important; }

/* Selects — single-line underline control */
select.wl-inp {
  width: 100%;
  background: transparent !important;
  border: none !important;
  border-bottom: 1px solid rgba(255, 255, 255, .18) !important;
  border-radius: 0 !important;
  padding: 9px 0 !important;
  color: #cfd3c6 !important;
  font-family: var(--FB) !important;
  font-size: 13px !important;
  transition: border-color .2s ease;
}
select.wl-inp:focus { border-bottom-color: var(--Y) !important; box-shadow: none !important; }
select.wl-inp option { background: #111; color: #fff; }

/* Submit — solid green */
.wl-btn {
  background: var(--Y) !important;
  color: #000 !important;
  border: none !important;
  border-radius: 2px !important;
  font-family: var(--FB) !important;
  font-size: 12px !important; font-weight: 700 !important;
  letter-spacing: .12em !important; text-transform: uppercase !important;
  padding: 15px 38px !important;
  margin-top: 4px;
  transition: background .2s ease;
}
.wl-btn:hover:not(:disabled) { background: #b8d414 !important; }
.wl-btn:disabled { opacity: .6; }

/* Launch tag footer with green dot */
.wl-note {
  font-family: var(--FM);
  font-size: 10px; color: #4a4d42;
  letter-spacing: .1em; text-transform: uppercase;
}
.wl-dot {
  display: inline-block; width: 6px; height: 6px;
  background: var(--Y); border-radius: 50%;
  margin-right: 8px; vertical-align: middle;
}

/* ── Product bullets: flowing, readable text (fixes mobile word-break) ── */
.p-tx { flex: 1; min-width: 0; line-height: 1.55; }
.p-list li > span[aria-hidden="true"] { margin-top: 5px; }
.p-list li, .p-tx { word-break: normal !important; overflow-wrap: break-word; hyphens: none; }
@media (max-width: 640px) {
  .p-list li { font-size: 11.5px; align-items: flex-start; }
  .p-tx { line-height: 1.6; }
}

/* ═══════════════════════════════════════════════════════════════
   NEX MASCOT — Three.js 3D (SVG kept as offline / no-WebGL fallback)
═══════════════════════════════════════════════════════════════ */
#nex3d { display: none; width: 100%; aspect-ratio: 1 / 1; pointer-events: none; }
#nex3d canvas { display: block; width: 100% !important; height: 100% !important; }
#NSVG { display: none; }                 /* old 2D mascot hidden — no pre-load flash */
#NEX.two-d #NSVG { display: block; }      /* shown only if WebGL/3D unavailable */
#NEX.three-on #NSVG { display: none; }
#NEX.three-on #nex3d { display: block; }
/* the 3D model floats on its own; a faint breathing glow on the wrapper adds life */
#NEX.three-on { animation: nexGlow 3.6s ease-in-out infinite; }
@keyframes nexGlow {
  0%, 100% { filter: drop-shadow(0 0 14px rgba(210,240,25,.20)); }
  50%      { filter: drop-shadow(0 0 24px rgba(210,240,25,.34)); }
}
@media (prefers-reduced-motion: reduce) { #NEX.three-on { animation: none; } }

/* ═══════════════════════════════════════════════════════════════
   REVIEW ROUND 2 — form column order, one-line title, slide 2–8
   spacing + left-aligned illustration, mascot/counter separation
═══════════════════════════════════════════════════════════════ */

/* ── Early-access form: single column, one field per row ──
   Improves readability, mobile usability, spacing + visual hierarchy.    */
.wl-form {
  display: flex !important;
  flex-direction: column !important;
  gap: clamp(14px, 2.2vh, 22px) !important;
  grid-template-columns: none !important;
  max-width: 560px !important;
  margin: 0 auto !important;
  align-items: stretch;
  /* transparent dark glass box */
  background: rgba(10, 11, 9, .32) !important;
  backdrop-filter: blur(16px) saturate(120%);
  -webkit-backdrop-filter: blur(16px) saturate(120%);
  border: 1px solid rgba(255, 255, 255, .08) !important;
  border-radius: 18px;
  padding: clamp(20px, 3vw, 34px) !important;
  box-shadow: 0 8px 40px rgba(0, 0, 0, .45), inset 0 1px 0 rgba(255, 255, 255, .05);
}
.wl-form > .q-field { width: auto !important; min-width: 0; }
.q-num { display: none !important; }
/* fields now flow in natural DOM order, one per row (grid placement neutralised) */
.wl-form > .q-field,
.wl-form > .wl-error,
.wl-form > .wl-btn { grid-column: auto; grid-row: auto; }
.wl-form > .wl-btn { margin-top: 4px; }

/* Title — one line, reduced (desktop) */
@media (min-width: 769px) {
  .final-h   { font-size: clamp(30px, 4.4vw, 32px) !important; line-height: .92 !important; letter-spacing: -1.5px; margin-bottom: 10px !important; white-space: nowrap; }
  .final-sub { max-width: 640px !important; margin: 0 auto 16px !important; line-height: 1.5 !important; font-size: 12px !important; }
  .s10-content { justify-content: flex-start !important; padding-top: calc(var(--NAV-H) + 8px) !important; padding-bottom: 8px !important; }
  .q-num  { margin-bottom: 1px !important; }
  .q-hint { margin-bottom: 4px !important; }
  input.wl-inp  { padding: 4px 0 !important; }
  select.wl-inp { padding: 5px 0 !important; }
}

/* Title + compact fields — one line, reduced (mobile / tablet) */
@media (max-width: 768px) {
  .final-h   { font-size: clamp(20px, 6.4vw, 30px) !important; line-height: .96 !important; letter-spacing: -1px; white-space: nowrap; margin-bottom: 8px !important; }
  .final-sub { font-size: 11.5px !important; margin-bottom: 12px !important; max-width: 92% !important; }
  .wl-form   { column-gap: 11px !important; row-gap: 9px !important; }
  .q-num   { font-size: 9px !important; margin-bottom: 1px !important; }
  .q-label { font-size: 12.5px !important; line-height: 1.2 !important; }
  .q-hint  { font-size: 9.5px !important; margin-bottom: 3px !important; line-height: 1.25 !important; }
  input.wl-inp  { padding: 6px 0 !important; font-size: 13px !important; }
  select.wl-inp { padding: 7px 0 !important; font-size: 12.5px !important; }
  .wl-btn  { padding: 12px !important; }
}

/* ── Slides 2–8 (desktop): pull illustration LEFT to kill the dead gap,
      and give the mascot/counter their own corner away from the copy ── */
@media (min-width: 981px) {
  .split        { grid-template-columns: 9% 45% 46%; }
  .split-right  { justify-content: flex-start; padding-left: 40px; padding-right: 28px; }
  .illu         { margin: 0; }                 /* left-aligned in its column */
  /* editorial divider between the headline column and the visual */
  .split-left   { border-right: 1px solid rgba(255, 255, 255, .07); padding-right: 44px; }

  /* mascot tucked into the far-left gutter, clear of the copy column */
  #NEX  { left: 12px; bottom: 16px; width: 172px; }
  #BUBBLE { left: 24px; bottom: 204px; }
  /* slide counter sits just above the mascot, still in the gutter */
   /* #CNT  { left: 16px; bottom: 132px; }  */
   #CNT  { left: 70px;bottom: 12px; } 
}


/* ── Honeypot (bot trap) — hidden from humans, off-flow ── */
.hp-wrap {
  position: absolute !important;
  left: -9999px !important;
  top: auto;
  width: 1px; height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

/* ── Frustration suggestion dropdown (premium glassmorphism) ── */
.pain-select-wrap { position: relative; margin-bottom: 12px; }
.pain-select-wrap::after {
  content: "";
  position: absolute; right: 16px; top: 50%;
  width: 8px; height: 8px;
  border-right: 2px solid rgba(210, 240, 25, .7);
  border-bottom: 2px solid rgba(210, 240, 25, .7);
  transform: translateY(-65%) rotate(45deg);
  pointer-events: none;
  transition: transform .25s ease;
}
select.wl-inp.pain-select {
  -webkit-appearance: none; -moz-appearance: none; appearance: none;
  cursor: pointer;
  width: 100%;
  padding: 12px 44px 12px 16px !important;
  font-size: 13px;
  color: rgba(255, 255, 255, .82);
  background: rgba(255, 255, 255, .045) !important;
  -webkit-backdrop-filter: blur(14px) saturate(130%);
  backdrop-filter: blur(14px) saturate(130%);
  border: 1px solid rgba(255, 255, 255, .12) !important;
  border-radius: 12px !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .06), 0 6px 22px rgba(0, 0, 0, .28);
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
select.wl-inp.pain-select:hover { border-color: rgba(210, 240, 25, .28) !important; }
select.wl-inp.pain-select:focus {
  outline: none;
  border-color: rgba(210, 240, 25, .5) !important;
  box-shadow: 0 0 0 3px rgba(210, 240, 25, .12), inset 0 1px 0 rgba(255, 255, 255, .08) !important;
}
select.wl-inp.pain-select.selected {
  border-color: rgba(210, 240, 25, .45) !important;
  background: rgba(210, 240, 25, .07) !important;
  color: #fff;
}
.pain-select option { background: #14160f; color: #fff; }

/* ── Auto-expanding frustration textarea ── */
.wl-text { resize: none; min-height: 52px; overflow-y: hidden; line-height: 1.45; }

/* ── Live character counter ── */
.word-count {
  margin-top: 8px;
  font-size: 12px;
  letter-spacing: .2px;
  color: rgba(255, 255, 255, .5);
  text-align: right;
  transition: color .2s ease;
}
.word-count.warn { color: #ffcf4d; }                 /* < 30 remaining */
.word-count.full { color: #ff8a8a; }                 /* limit reached  */

/* ── Inline field validation feedback (no browser-default popups) ── */
.field-msg {
  display: block;
  min-height: 0;
  max-height: 0;
  overflow: hidden;
  font-size: 11.5px;
  letter-spacing: .2px;
  margin-top: 4px;
  opacity: 0;
  transition: opacity .2s ease, max-height .2s ease, margin .2s ease;
}
.field-msg.show { max-height: 40px; opacity: 1; }
.field-msg.err  { color: #ff8a8a; }
.field-msg.ok   { color: rgba(210, 240, 25, .9); }
.wl-inp.invalid {
  border-color: rgba(255, 110, 110, .65) !important;
  border-bottom-color: rgba(255, 110, 110, .8) !important;
  box-shadow: 0 2px 14px rgba(255, 90, 90, .22) !important;
}
.wl-inp.valid {
  border-bottom-color: rgba(210, 240, 25, .7) !important;
}
/* ── THANK YOU PANEL ── */
.thank-you-panel {
    position: fixed;
    inset: 0;
    z-index: 60;                 /* above slides + mascot; out of slide nav flow */
    min-height: 100vh;
    min-height: 100dvh;
    /* opaque cinematic backdrop so the form behind is fully hidden */
    background: radial-gradient(ellipse 80% 60% at 50% 38%, #13130a, var(--N) 72%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 80px 24px var(--FTR-H);
    text-align: center;
    overflow: hidden;
    opacity: 1;
    transform: translateY(0);
    transition: opacity .7s var(--EASE), transform .7s var(--EASE);
}
/* Hidden until a successful submission reveals it */
.thank-you-panel.hidden-thankyou {
    opacity: 0;
    transform: translateY(40px);
    pointer-events: none;
    visibility: hidden;
}

/* Glow orbs */
.ty-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(120px);
    opacity: 0;
    transition: opacity 1.4s ease;
}
.thank-you-panel:not(.hidden-thankyou) .ty-orb { opacity: 1; }
.ty-orb-1 {
    width: 560px; height: 560px;
    background: radial-gradient(circle, rgba(210,240,25,.22) 0%, transparent 70%);
    top: -120px; left: 50%;
    transform: translateX(-50%);
    animation: ty-float1 8s ease-in-out infinite;
}
.ty-orb-2 {
    width: 360px; height: 360px;
    background: radial-gradient(circle, rgba(210,240,25,.10) 0%, transparent 70%);
    bottom: 80px; right: -80px;
    animation: ty-float2 11s ease-in-out infinite;
}
@keyframes ty-float1 {
    0%,100% { transform: translateX(-50%) translateY(0); }
    50%      { transform: translateX(-50%) translateY(-30px); }
}
@keyframes ty-float2 {
    0%,100% { transform: translateY(0); }
    50%      { transform: translateY(20px); }
}

/* Subtle dot grid */
.ty-grid {
    position: absolute; inset: 0;
    background-image: radial-gradient(rgba(255,255,255,.04) 1px, transparent 1px);
    background-size: 36px 36px;
    pointer-events: none;
}

/* Subtle redirect countdown on the Thank You page */
.ty-redirect {
    margin-top: 22px;
    font-family: var(--FB);
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(210, 240, 25, .55);
    min-height: 16px;
}
.thank-you-panel:not(.hidden-thankyou) .ty-redirect { animation: ty-rise .65s .62s var(--EASE) both; }

/* Home button on the Thank You page */
.ty-home-btn {
    margin-top: 18px;
    padding: 13px 30px;
    font-family: var(--FB);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #0a0b07;
    background: var(--Y);
    border: none;
    border-radius: 999px;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
    box-shadow: 0 8px 30px rgba(210, 240, 25, .28);
}
.ty-home-btn:hover {
    transform: translateY(-2px);
    background: #b8d414;
    box-shadow: 0 12px 40px rgba(210, 240, 25, .42);
}
.ty-home-btn:active { transform: translateY(0); }
.thank-you-panel:not(.hidden-thankyou) .ty-home-btn { animation: ty-rise .65s .72s var(--EASE) both; }

/* Content wrapper */
.thank-you-content {
    width: 100%;
    max-width: 720px;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

/* Entrance animations */
.thank-you-panel:not(.hidden-thankyou) .ty-badge    { animation: ty-rise .55s var(--EASE) both; }
.thank-you-panel:not(.hidden-thankyou) .thank-you-title { animation: ty-rise .65s .08s var(--EASE) both; }
.thank-you-panel:not(.hidden-thankyou) .thank-you-accent { animation: ty-rise .65s .18s var(--EASE) both; }
.thank-you-panel:not(.hidden-thankyou) .thank-you-copy  { animation: ty-rise .65s .28s var(--EASE) both; }
.thank-you-panel:not(.hidden-thankyou) .ty-stats        { animation: ty-rise .65s .38s var(--EASE) both; }
.thank-you-panel:not(.hidden-thankyou) .ty-share        { animation: ty-rise .65s .50s var(--EASE) both; }
@keyframes ty-rise {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Badge */
.ty-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(210,240,25,.10);
    border: 1px solid rgba(210,240,25,.30);
    border-radius: 999px;
    padding: 6px 16px;
    margin-bottom: 28px;
    font-family: var(--FM);
    font-size: 11px;
    letter-spacing: .10em;
    text-transform: uppercase;
    color: var(--Y);
}
.ty-badge-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--Y);
    box-shadow: 0 0 8px var(--Y);
    animation: ty-pulse 2s ease-in-out infinite;
}
@keyframes ty-pulse {
    0%,100% { opacity: 1; transform: scale(1); }
    50%      { opacity: .5; transform: scale(.75); }
}

/* Title */
.thank-you-title {
    font-family: var(--FD);
    font-size: clamp(56px, 9vw, 60px);
    font-weight: 800;
    line-height: .90;
    letter-spacing: -3px;
    margin-bottom: 22px;
    text-align: center;
}
.ty-title-highlight {
    color: var(--Y);
    position: relative;
    display: inline-block;
}

/* Accent */
.thank-you-accent {
    font-family: var(--FM);
    font-size: 13px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgba(255,255,255,.55);
    margin-bottom: 20px;
}

/* Copy */
.thank-you-copy {
    max-width: 580px;
    font-size: 17px;
    line-height: 1.75;
    color: rgba(255,255,255,.62);
    text-align: center;
    margin-bottom: 48px;
}
.ty-br { display: none; }
@media (min-width: 640px) { .ty-br { display: inline; } }

/* Stats strip */
.ty-stats {
    display: flex;
    align-items: center;
    gap: 0;
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 18px;
    padding: 20px 32px;
    margin-bottom: 36px;
    width: 100%;
    max-width: 540px;
    justify-content: center;
}
.ty-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    flex: 1;
}
.ty-stat-num {
    font-family: var(--FD);
    font-size: clamp(15px, 2.5vw, 20px);
    font-weight: 700;
    color: var(--Y);
    letter-spacing: -.5px;
    white-space: nowrap;
}
.ty-stat-label {
    font-family: var(--FM);
    font-size: 10px;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: rgba(255,255,255,.38);
}
.ty-stat-divider {
    width: 1px;
    height: 36px;
    background: rgba(255,255,255,.08);
    flex-shrink: 0;
    margin: 0 8px;
}

/* Share block */
.ty-share {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}
.ty-share-label {
    font-family: var(--FM);
    font-size: 11px;
    letter-spacing: .08em;
    color: rgba(255,255,255,.40);
    text-transform: uppercase;
}
.ty-share-btns {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}
.ty-share-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 10px 20px;
    border-radius: 999px;
    font-family: var(--FM);
    font-size: 12px;
    letter-spacing: .06em;
    text-decoration: none;
    cursor: pointer;
    border: 1px solid rgba(255,255,255,.14);
    background: rgba(255,255,255,.05);
    color: rgba(255,255,255,.75);
    transition: border-color .2s, background .2s, color .2s;
}
.ty-share-btn:hover {
    border-color: var(--Y);
    background: rgba(210,240,25,.08);
    color: var(--Y);
}
.ty-copy-btn { cursor: pointer; }
.ty-copy-btn.copied {
    border-color: var(--Y);
    background: rgba(210,240,25,.12);
    color: var(--Y);
}
.footer-brand-logo {
  height: 25px;
  width: auto;
  display: block;
  object-fit: contain;
  margin-right: 40px;
}