/* ============================================================
   LIMITLESS · V6 — STRUCTURED, GUN SIGHT ONLY (WordPress build)
   ============================================================ */
/* LIMITLESS HYBRID palette. These are fallbacks — the live values are
   printed by the Customizer (Appearance > Customize > Colors) as an
   inline style, so the palette is editable without touching this file. */
:root {
  --paper: #F4F1EA;        /* Paper White */
  --paper-2: #EAE8E3;      /* Alt band background */
  --paper-rgb: 244,241,234;
  --ink: #0D0A0D;          /* Midnight Black */
  --ink-2: #22232E;        /* Soft Charcoal */
  --violet-deep: #2B4AAB;  /* CRT Blue (deep accent) */
  --violet: #2B4AAB;       /* CRT Blue (primary accent) */
  --accent-rgb: 43,74,171;
  --lavender: #B6B6D5;     /* Dust Lavender (soft accent) */
  --soft-rgb: 182,182,213;
  --glow: #B4E8EA;         /* Frost Aqua (glow) */
  --glow-rgb: 180,232,234;
  --ember: #C96F55;        /* Soft Coral (highlight) */
  --success: #63B65D;      /* Moss Sage (success) */
  --success-rgb: 99,182,93;
  --td: #0D0A0D;
  --td-dim: rgba(13,10,13,0.62);
  --tl: #F4F1EA;
  --tl-dim: rgba(244,241,234,0.58);
  --line-d: rgba(13,10,13,0.14);
  --line-l: rgba(244,241,234,0.14);
  --display: 'Archivo Black', 'Arial Black', sans-serif;
  --body: 'Inter', -apple-system, sans-serif;
  --mono: 'JetBrains Mono', monospace;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  /* Anchor targets clear the fixed nav instead of hiding behind it. */
  scroll-padding-top: 5.5rem;
  /* Keeps iOS rubber-band overscroll at the top/bottom edges paper-colored
     instead of flashing the dark section behind it. */
  background: var(--paper);
}
body {
  background: var(--paper);
  color: var(--td);
  font-family: var(--body);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  position: relative;
}
::selection { background: var(--violet); color: #fff; }
body::after {
  content: ""; position: fixed; inset: 0; z-index: 900; pointer-events: none;
  opacity: 0.045; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='140' height='140'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

h1,h2,h3 { font-family: var(--display); text-transform: uppercase; letter-spacing: 0.005em; font-weight: 400; color: var(--td); }
.mono { font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.26em; text-transform: uppercase; color: var(--violet-deep); }
.mono .sep { color: var(--lavender); padding: 0 0.35em; }

.wrap { max-width: 1180px; margin: 0 auto; position: relative; z-index: 1; }

/* ---------- ROLLING HUD OVERLAY ---------- */
.roll-hud {
  position: fixed; top: 50%; left: 50%; width: 150vmax; height: 150vmax;
  transform: translate(-50%,-50%) rotate(0deg); transform-origin: center center;
  z-index: 700; pointer-events: none; opacity: 0.16; color: var(--violet);
  will-change: transform;
}

/* ---------- NAV ----------
   Fixed and static. Because the page does not opt into viewport-fit=cover,
   iOS keeps it inset below the status bar, so the bar's top edge is the top
   of the usable viewport and no content can pass above it. */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; margin: 0; z-index: 800;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 5vw;
  background: rgba(var(--paper-rgb),0.92);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-d);
  transition:
    background 0.35s ease,
    backdrop-filter 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}
/* Solid extension above the bar. Off-screen for normal visitors; it fills any
   strip that would otherwise expose page content above the nav (e.g. the WP
   admin bar offset, or a browser chrome / status-bar band on mobile). */
.site-nav::before {
  content: ""; position: absolute; left: 0; right: 0; bottom: 100%;
  height: 240px; background: var(--paper); pointer-events: none;
}
/* Icy frosted state once the page starts moving. */
.site-nav.scrolled {
  background: rgba(var(--paper-rgb),0.55);
  backdrop-filter: blur(26px) saturate(180%);
  -webkit-backdrop-filter: blur(26px) saturate(180%);
  border-bottom-color: rgba(var(--soft-rgb),0.45);
  box-shadow: 0 8px 34px rgba(13,10,13,0.07);
}
/* Keep the fixed nav below the WP admin bar when logged in — but ONLY at widths
   where WordPress actually keeps that bar fixed. At <=600px WP switches
   #wpadminbar to position:absolute so it scrolls away; offsetting the nav there
   strands it 46px down with page content showing through the gap. Below 601px
   the nav stays at top:0. */
@media screen and (min-width: 601px) {
  /* Admin bar is fixed here and already clears the status bar, so drop the inset. */
  .admin-bar .site-nav { top: 32px; padding-top: 0.75rem; }
}
@media screen and (min-width: 601px) and (max-width: 782px) {
  .admin-bar .site-nav { top: 46px; }
}
.nav-logo { display: flex; align-items: center; gap: 0.7rem; text-decoration: none; color: var(--td); }
.nav-logo img { display: block; height: 48px; width: auto; }
.site-footer .nav-logo img { height: 96px; }
.nav-logo span { font-family: var(--display); font-size: 1.5rem; letter-spacing: 0.04em; }
.nav-logo span b { color: var(--violet); font-weight: 400; }

/* ---------- WORDMARK "E" — three horizontal bars ----------
   Sized in em off the wordmark's own font-size and painted with
   currentColor, so it scales and recolors with the text around it. */
.logo-e {
  display: inline-block;
  width: 0.60em;
  height: 0.70em;      /* matches Archivo Black cap height */
  margin: 0 0.07em;
  vertical-align: baseline;
  background-image: linear-gradient(
    to bottom,
    currentColor 0 23%,
    transparent  23% 38.5%,
    currentColor 38.5% 61.5%,
    transparent  61.5% 77%,
    currentColor 77% 100%
  );
}
.nav-links { display: flex; gap: 2.2rem; align-items: center; }
.nav-links a { color: var(--td-dim); text-decoration: none; font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 600; transition: color 0.25s; }
.nav-links a:hover, .nav-links a:focus-visible { color: var(--violet); }
.nav-cta { background: var(--ink); color: var(--paper) !important; padding: 0.6rem 1.4rem; font-weight: 700 !important; }
.nav-cta:hover { background: var(--violet); color: #fff !important; }
/* ---------- MOBILE MENU ---------- */
.nav-toggle {
  display: none; background: none; border: 0; cursor: pointer;
  width: 44px; height: 44px; padding: 10px; /* 44px = comfortable tap target */
  flex-direction: column; justify-content: space-between;
}
.nav-toggle span {
  display: block; height: 2px; width: 100%; background: var(--td);
  transition: transform 0.3s ease, opacity 0.2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(10px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-10px) rotate(-45deg); }

@media (max-width: 860px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed; inset: 0 0 auto 0; top: var(--nav-h, 76px);
    flex-direction: column; align-items: stretch; gap: 0;
    background: rgba(var(--paper-rgb),0.98);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--line-d);
    padding: 0.5rem 5vw 1.4rem;
    transform: translateY(-12px); opacity: 0; visibility: hidden;
    transition: opacity 0.28s ease, transform 0.28s ease, visibility 0.28s;
  }
  .nav-links.open { transform: none; opacity: 1; visibility: visible; }
  .nav-links a {
    padding: 1rem 0; font-size: 0.9rem;
    border-bottom: 1px solid var(--line-d);
  }
  .nav-links a:last-child { border-bottom: 0; }
  .nav-cta { margin-top: 1rem; text-align: center; padding: 0.95rem 1.4rem; }
  .admin-bar .nav-links { top: calc(var(--nav-h, 76px) + 46px); }
}

.orb { display: inline-block; }

/* ---------- SECTION BACKGROUND IMAGES (Customizer) ---------- */
.has-bg { background-size: cover !important; background-position: center !important; }

/* ---------- HERO ---------- */
.hero {
  min-height: var(--hero-h, 82svh); position: relative; overflow: hidden;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 5.5rem 5vw 3.5rem;
  background: linear-gradient(180deg, #FCFBF7 0%, var(--paper) 32%, #E5E4EC 68%, #D8D8E4 100%);
}
.hero.has-bg .hero-scene { display: none; }
.hero-scene { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.ridge { position: absolute; left: 0; right: 0; bottom: 0; }
.ridge-1 { height: 34vh; background: #CDCCE0; clip-path: polygon(0 78%, 8% 62%, 17% 74%, 28% 55%, 39% 70%, 52% 58%, 63% 72%, 74% 52%, 86% 68%, 100% 60%, 100% 100%, 0 100%); filter: blur(3px); opacity: 0.65; }
.ridge-2 { height: 26vh; background: #B6B6D5; clip-path: polygon(0 66%, 10% 80%, 21% 58%, 33% 76%, 45% 60%, 58% 78%, 70% 56%, 81% 74%, 92% 62%, 100% 72%, 100% 100%, 0 100%); filter: blur(1px); opacity: 0.75; }
.ridge-3 { height: 18vh; background: #9E9EC4; clip-path: polygon(0 74%, 12% 58%, 24% 78%, 37% 62%, 50% 80%, 64% 60%, 77% 78%, 89% 64%, 100% 76%, 100% 100%, 0 100%); opacity: 0.9; }
.mist { position: absolute; left: -20%; width: 140%; height: 22vh; filter: blur(30px); opacity: 0.7; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.95), transparent); }
.mist-1 { bottom: 6vh; animation: drift 26s ease-in-out infinite alternate; }
.mist-2 { bottom: 18vh; opacity: 0.45; animation: drift 34s ease-in-out infinite alternate-reverse; }
@keyframes drift { from { transform: translateX(-4%);} to { transform: translateX(4%);} }
.figure { position: absolute; bottom: 9vh; left: 50%; transform: translateX(-50%); width: clamp(120px, 16vw, 210px); opacity: 0.9; }
.hud-left { position: absolute; left: 4vw; top: 38%; display: flex; flex-direction: column; gap: 1.3rem; text-align: left; }
.hud-left .hud-item { font-family: var(--mono); font-size: 0.62rem; letter-spacing: 0.3em; color: var(--violet-deep); }
.hud-left .hud-item::after { content: ""; display: block; margin-top: 0.4rem; width: 74px; border-top: 1px dashed rgba(var(--accent-rgb),0.5); }
.hud-right { position: absolute; right: 4vw; top: 30%; display: flex; flex-direction: column; gap: 3px; align-items: flex-end; }
.hud-right i { display: block; width: 14px; border-top: 1px solid rgba(var(--accent-rgb),0.45); }
.hud-right i:nth-child(5n) { width: 24px; border-color: rgba(var(--accent-rgb),0.8); }
@media (max-width: 860px) { .hud-left { display: none; } .hud-right { right: 3vw; } }
.hero-inner { position: relative; z-index: 5; }
/* With a light background overlay the artwork shows through, so the text
   carries its own soft scrim to stay readable over busy areas. */
.hero.has-bg .hero-inner::before {
  content: ""; position: absolute; z-index: -1;
  left: 50%; top: 50%; transform: translate(-50%,-50%);
  width: 132%; height: 190%;
  background: radial-gradient(ellipse at center, rgba(var(--paper-rgb),0.82) 0%, rgba(var(--paper-rgb),0.62) 42%, rgba(var(--paper-rgb),0) 72%);
  pointer-events: none;
}
.hero.has-bg .hero-sub { text-shadow: 0 1px 12px rgba(var(--paper-rgb),0.9); }
.hero-tag { display: block; margin-bottom: 1.2rem; color: var(--violet-deep); }
/* 13.5vw keeps the 9-character wordmark inside the 5vw side padding on a
   375px phone; it would overflow at a fixed rem minimum. */
.hero h1 { font-size: clamp(2.6rem, 13.5vw, 11.5rem); line-height: 0.94; color: var(--td); }
.hero h1 .less { color: transparent; -webkit-text-stroke: 3px var(--violet); }
@media (max-width: 640px) { .hero h1 .less { -webkit-text-stroke-width: 2px; } }
.hero-sub { margin: 1.6rem auto 0; max-width: 34rem; color: var(--td-dim); font-size: clamp(0.95rem, 1.6vw, 1.08rem); line-height: 1.65; }
.hero-sub strong { color: var(--violet-deep); font-weight: 600; }
.btn {
  display: inline-block; margin-top: 2.4rem;
  background: var(--ink); color: var(--paper); text-decoration: none;
  font-family: var(--display); font-size: 0.95rem; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 1.05rem 2.7rem; border: none; cursor: pointer;
  transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
}
.btn:hover { background: var(--violet); color: #fff; transform: translateY(-2px); box-shadow: 0 12px 34px rgba(var(--accent-rgb),0.35); }
.btn-outline { background: transparent; color: var(--td); border: 2px solid var(--td); }
.btn-outline:hover { background: transparent; color: var(--violet); border-color: var(--violet); box-shadow: none; }
.hero-scrollcue { position: absolute; bottom: 1.2rem; left: 50%; transform: translateX(-50%); z-index: 6; font-family: var(--mono); font-size: 0.62rem; letter-spacing: 0.32em; color: var(--violet-deep); text-transform: uppercase; animation: cueFloat 2.4s ease-in-out infinite; }
@keyframes cueFloat { 0%,100%{ transform: translate(-50%,0);} 50%{ transform: translate(-50%,8px);} }

/* ---------- SECTION SHELL ---------- */
section { padding: clamp(4rem, 8vw, 6.5rem) 5vw; position: relative; }

/* ---------- SCROLL REVEAL (blur-in: content "refocuses" as it enters) ---------- */
.reveal {
  opacity: 0; transform: translateY(46px); filter: blur(14px);
  transition:
    opacity 1s cubic-bezier(.2,.7,.2,1),
    transform 1s cubic-bezier(.2,.7,.2,1),
    filter 1.1s cubic-bezier(.2,.7,.2,1);
  will-change: opacity, transform, filter;
}
.reveal.in { opacity: 1; transform: none; filter: blur(0); }
.reveal-d1 { transition-delay: 0.12s; }
.reveal-d2 { transition-delay: 0.24s; }
.reveal-d3 { transition-delay: 0.36s; }

.corner-cloud { position: absolute; z-index: 0; border-radius: 50%; filter: blur(50px); pointer-events: none; background: radial-gradient(circle, rgba(var(--soft-rgb),0.4), transparent 70%); }
.corner-cloud--tr { top: -10%; right: -6%; width: 32%; aspect-ratio: 1; }
.corner-cloud--bl { bottom: -12%; left: -8%; width: 30%; aspect-ratio: 1; }

/* ---------- STATEMENT ---------- */
.statement {
  background: var(--paper); overflow: hidden;
  min-height: var(--statement-h, 58vh);
  display: flex; flex-direction: column; justify-content: center;
}
.statement h2 { font-size: clamp(2rem, 5vw, 4rem); line-height: 1.08; max-width: 21ch; }
.statement h2 em { font-style: normal; color: transparent; -webkit-text-stroke: 1.6px var(--violet); }
.statement p { margin-top: 1.8rem; max-width: 40rem; color: var(--td-dim); line-height: 1.75; font-size: 1.02rem; }

/* ---------- BECOME A ----------
   Full-bleed dark chapter. The photo cards are oversized, overlap
   each other, and fade at their edges (mask) so the row reads as one
   continuous piece of imagery panning by, not a gallery of tiles.
   The track gets a scroll-velocity motion blur from JS. */
/* Taller than the pan is wide, so the wider cards still glide past at a
   comfortable speed rather than whipping by. */
.become { height: 460vh; padding: 0; background: var(--ink); color: var(--tl); }
.become .mono { color: var(--lavender); }
.become-sticky {
  position: sticky; top: 0; height: 100svh; overflow: hidden;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  background: radial-gradient(ellipse 60% 45% at 50% 42%, rgba(var(--glow-rgb),0.13), transparent 68%), var(--ink);
}
.become-track {
  position: absolute; inset: 0; display: flex; align-items: center;
  gap: 0; padding: 0 8vw;
  will-change: transform, filter;
}
.become-card {
  flex: 0 0 auto; width: clamp(340px, 52vw, 900px); height: 74vh;
  border: 1px solid var(--line-l);
  background: radial-gradient(circle at 50% 30%, rgba(var(--glow-rgb),0.10), transparent 62%), linear-gradient(165deg, #1A1B24, #0D0A0D);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 1rem; opacity: 0.94; position: relative;
  margin-right: -5vw; /* overlap: masked edges cross-fade into the neighbor */
}
.become-card:nth-child(odd)  { transform: translateY(-3vh); }
.become-card:nth-child(even) { transform: translateY(3vh); z-index: 1; }
.become-card::before, .become-card::after { content: ""; position: absolute; width: 14px; height: 14px; border-color: rgba(var(--soft-rgb),0.5); border-style: solid; }
.become-card::before { top: 10px; left: 10px; border-width: 1px 0 0 1px; }
.become-card::after { bottom: 10px; right: 10px; border-width: 0 1px 1px 0; }
.become-card .mono { color: var(--tl-dim); }
.become-card small { color: var(--tl-dim); font-size: 0.8rem; }
.become-card.has-photo {
  background-size: cover; background-position: center;
  justify-content: flex-end; padding-bottom: 1.4rem; opacity: 1;
  border: none;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 9%, #000 91%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 9%, #000 91%, transparent 100%);
  filter: saturate(0.92) contrast(1.05);
}
.become-card.has-photo::before, .become-card.has-photo::after { display: none; }
.become-card.has-photo .mono, .become-card.has-photo small { color: var(--tl); text-shadow: 0 2px 10px rgba(0,0,0,0.85); }
.become-overlay { position: relative; z-index: 5; text-align: center; pointer-events: none; text-shadow: 0 4px 44px rgba(0,0,0,0.9); }
.become-overlay .mono { display: block; margin-bottom: 0.7rem; color: var(--lavender); }
.become-word {
  font-family: var(--display); text-transform: uppercase;
  font-size: clamp(3rem, 10vw, 8.5rem); line-height: 1; color: var(--tl);
  transition: filter 0.28s ease-out, opacity 0.28s ease-out;
  will-change: filter, opacity;
}
.become-word.ghost { color: transparent; -webkit-text-stroke: 2.5px var(--violet); text-shadow: none; }
.become-word.swap { filter: blur(18px); opacity: 0.15; }

/* ---------- MISSION ---------- */
.mission { position: relative; padding: 0; min-height: 72vh; overflow: hidden; }
.mission-bg { position: absolute; inset: 0; z-index: 0; background: linear-gradient(90deg, var(--paper) 0 50%, var(--paper-2) 50% 100%); }
.mission-bg .mb-ridge { position: absolute; left: 50%; right: -12%; bottom: -8%; height: 52%; background: #C6C5DC; opacity: 0.42; filter: blur(2px); clip-path: polygon(0 70%, 14% 50%, 26% 66%, 40% 44%, 54% 62%, 68% 42%, 82% 60%, 100% 46%, 100% 100%, 0 100%); }
.mission-bg .mb-cloud { position: absolute; top: -12%; right: -8%; width: 46%; height: 55%; background: radial-gradient(circle, rgba(255,255,255,0.95), transparent 70%); filter: blur(46px); }
.mission-inner { position: relative; z-index: 1; min-height: 72vh; display: grid; grid-template-columns: 1fr 1fr; align-items: center; }
.mission-half { padding: clamp(4rem, 8vw, 6.5rem) 5vw; display: flex; flex-direction: column; justify-content: center; position: relative; }
.mission-b { align-items: flex-end; text-align: right; }
.mission h2 { font-size: clamp(1.7rem, 3.4vw, 2.9rem); line-height: 1.12; max-width: 16ch; }
.mission h2 em { font-style: normal; color: transparent; -webkit-text-stroke: 1.5px var(--violet); }
.mission h2 .vio { color: var(--violet); }
.mission-b h2 .fire { color: var(--ember); }
.mission p { margin-top: 1.4rem; line-height: 1.75; max-width: 30rem; font-size: 0.98rem; color: var(--td-dim); }
.mission-orb {
  position: absolute; top: 47%; left: 50%; transform: translate(-50%,-50%); z-index: 5;
  width: clamp(190px, 24vw, 330px);
  filter: drop-shadow(0 14px 40px rgba(var(--accent-rgb),0.22));
  animation: orbFloat 6.5s ease-in-out infinite;
  will-change: transform;
}
@keyframes orbFloat {
  0%, 100% { transform: translate(-50%, -54%); }
  50%      { transform: translate(-50%, -46%); }
}
img.mission-orb { height: auto; }
/* Stacked wordmark centerpiece (replaces the old emblem). */
.mission-mark {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  font-family: var(--display); text-transform: uppercase;
  line-height: 0.92; letter-spacing: 0.02em;
  font-size: clamp(2.1rem, 3.6vw, 3.4rem);
  filter: none;
}
/* Each half stays on its own line and never breaks mid-word. */
.mission-mark span { display: block; white-space: nowrap; }
.mission-mark-1 { color: var(--td); }
.mission-mark-2 { color: var(--violet); }
/* Phones: shorter pan, taller-but-narrower cards, lighter decorative load. */
@media (max-width: 700px) {
  .become { height: 340vh; }
  .become-card { width: min(86vw, 420px); height: 62svh; margin-right: -7vw; }
  .become-card:nth-child(odd)  { transform: translateY(-1.5vh); }
  .become-card:nth-child(even) { transform: translateY(1.5vh); }
  .become-track { padding: 0 7vw; }
  .roll-hud { opacity: 0.10; }
  .statement { min-height: auto; }
  .site-footer { justify-content: center; text-align: center; }
}

@media (max-width: 860px) {
  .mission-inner { grid-template-columns: 1fr; }
  .mission-b { align-items: flex-start; text-align: left; }
  .mission-bg { background: linear-gradient(180deg, var(--paper) 0 50%, var(--paper-2) 50% 100%); }
  .mission-orb { position: static; transform: none; margin: 0 auto; padding: 2.5rem 0; width: clamp(170px, 42vw, 260px); animation: orbFloatStatic 6.5s ease-in-out infinite; }
  img.mission-orb { display: block; }
  /* Keep the wordmark a flex column here — a blanket display:block would
     make the two halves run inline and wrap mid-word. */
  .mission-mark { display: flex; width: auto; font-size: clamp(1.7rem, 8vw, 2.6rem); }
  .mission-orb svg { width: 100%; display: block; margin: 0 auto; }
  @keyframes orbFloatStatic {
    0%, 100% { transform: translateY(-6px); }
    50%      { transform: translateY(6px); }
  }
}

/* ---------- STATS ---------- */
.numbers-sec { background: var(--paper); overflow: hidden; }
.numbers-atmo { position: absolute; inset: 0; z-index: 0; }
.na-ridge { position: absolute; left: -8%; right: -8%; bottom: -10%; height: 40%; opacity: 0.3; filter: blur(2px); background: #C6C5DC; clip-path: polygon(0 60%, 10% 74%, 22% 52%, 34% 70%, 47% 54%, 60% 72%, 73% 50%, 85% 68%, 100% 56%, 100% 100%, 0 100%); }
.na-cloud { position: absolute; top: -8%; left: -6%; width: 44%; height: 46%; background: radial-gradient(circle, rgba(255,255,255,0.95), transparent 70%); filter: blur(44px); }
.stats-head { display:flex; align-items: baseline; justify-content: space-between; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.6rem; }
.stats-head h2 { font-size: clamp(1.9rem, 4.4vw, 3.2rem); }
.gauge-label { display:flex; justify-content: space-between; align-items: baseline; margin-bottom: 0.55rem; }
.gauge-label .mono { font-size: 0.6rem; color: var(--td-dim); }
.gauge-label .mono b { color: var(--violet-deep); font-weight: 500; }
.gauge { position: relative; height: 26px; margin-bottom: 3rem; background: repeating-linear-gradient(-60deg, rgba(12,10,18,0.14) 0 5px, transparent 5px 12px); }
.gauge-fill { position: absolute; inset: 0; width: 0%; background: repeating-linear-gradient(-60deg, var(--violet) 0 5px, transparent 5px 12px); transition: width 2.2s cubic-bezier(.25,.7,.2,1); }
.gauge-endcap { position: absolute; right: -5px; top: 50%; width: 10px; height: 10px; border-radius: 50%; background: var(--violet); transform: translateY(-50%); box-shadow: 0 0 14px rgba(var(--glow-rgb),0.75); }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1px; background: var(--line-d); border: 1px solid var(--line-d); }
.stat { background: var(--paper); padding: 2.4rem 1.8rem; }
.stat-num { font-family: var(--display); font-size: clamp(2.4rem, 5vw, 3.8rem); color: var(--td); line-height: 1; }
.stat-num .plus { color: var(--violet); }
.stat-label { margin-top: 0.7rem; font-size: 0.8rem; color: var(--td-dim); letter-spacing: 0.06em; text-transform: uppercase; }

/* ---------- MARQUEE ---------- */
.marquee-band { padding: 1.5rem 0; border-top: 1px solid var(--line-d); border-bottom: 1px solid var(--line-d); overflow: hidden; white-space: nowrap; background: var(--paper-2); }
.marquee-inner { display: inline-block; animation: marquee 26s linear infinite; }
.marquee-band:hover .marquee-inner { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }
.marquee-inner span { font-family: var(--display); font-size: clamp(1.2rem, 2.4vw, 1.85rem); text-transform: uppercase; letter-spacing: 0.05em; margin: 0 1.6rem; color: var(--td); }
.marquee-inner span:nth-child(4n+3) { color: transparent; -webkit-text-stroke: 1.4px var(--violet); }
.marquee-inner .dot { color: var(--violet); -webkit-text-stroke: 0; font-family: var(--body); }

/* ---------- HOW TO JOIN ---------- */
.steps { background: var(--paper-2); }
.steps h2 { font-size: clamp(2rem, 5vw, 3.8rem); text-align: center; }
.steps-sub { text-align:center; color: var(--td-dim); max-width: 36rem; margin: 1.2rem auto 2.6rem; line-height: 1.7; }
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1.2rem; }
.step { border: 1px solid var(--line-d); padding: 2rem 1.6rem; background: rgba(255,255,255,0.7); transition: border-color 0.3s, transform 0.3s; position: relative; }
.step::before { content: ""; position: absolute; top: 0; left: 0; width: 0; height: 3px; background: linear-gradient(90deg, var(--violet), var(--lavender)); transition: width 0.35s; }
.step:hover { border-color: var(--violet); transform: translateY(-4px); }
.step:hover::before { width: 100%; }
.step .mono { display:block; margin-bottom: 1rem; }
.step h3 { font-size: 1.15rem; margin-bottom: 0.6rem; color: var(--td); }
.step p { color: var(--td-dim); font-size: 0.9rem; line-height: 1.65; }

/* ---------- CONTACT ---------- */
.contact { position: relative; overflow: hidden; background: var(--paper); color: var(--td); }
.contact-atmo { position: absolute; inset: 0; z-index: 0; }
.ca-ridge { position: absolute; right: -10%; left: 40%; bottom: -12%; height: 46%; opacity: 0.32; filter: blur(2px); background: #C6C5DC; clip-path: polygon(10% 66%, 24% 48%, 38% 68%, 52% 50%, 66% 70%, 80% 46%, 100% 62%, 100% 100%, 10% 100%); }
.ca-cloud { position: absolute; top: -10%; right: -6%; width: 46%; height: 50%; background: radial-gradient(circle, rgba(255,255,255,0.95), transparent 70%); filter: blur(46px); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 4rem; }
@media (max-width: 860px){ .contact-grid { grid-template-columns: 1fr; } }
.contact h2 { font-size: clamp(2.2rem, 5.2vw, 4rem); line-height: 1.02; }
.contact h2 span { color: transparent; -webkit-text-stroke: 2px var(--violet); }
.contact .lede { margin-top: 1.4rem; color: var(--td-dim); line-height: 1.7; max-width: 30rem; }
.field { margin-bottom: 1.1rem; }
.field label { display:block; font-family: var(--mono); font-size: 0.62rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--td-dim); margin-bottom: 0.45rem; }
/* 16px minimum: anything smaller makes iOS Safari zoom in on focus. */
.field input, .field textarea, .field select { width: 100%; background: #fff; border: 1px solid var(--line-d); color: var(--td); padding: 0.85rem 1rem; font-family: var(--body); font-size: 16px; transition: border-color 0.25s, box-shadow 0.25s; }
@media (min-width: 861px) { .field input, .field textarea, .field select { font-size: 0.95rem; } }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--violet); box-shadow: 0 0 0 3px rgba(var(--accent-rgb),0.16); }
.field textarea { min-height: 120px; resize: vertical; }
.form-note { font-size: 0.75rem; color: var(--td-dim); margin-top: 0.9rem; }
.form-success { display: none; margin-top: 1rem; padding: 1rem 1.2rem; border: 1px solid var(--success); background: rgba(var(--success-rgb),0.10); color: var(--success); font-size: 0.9rem; }
.form-success.show { display: block; }
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

/* ---------- FOOTER ---------- */
.site-footer { padding: 3.5rem 5vw; border-top: 1px solid var(--line-d); background: var(--paper); color: var(--td); display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.5rem; }
.site-footer .nav-logo { color: var(--td); }
.site-footer .mono { color: var(--td-dim); }
.foot-links { display:flex; gap: 1.8rem; }
.foot-links a { color: var(--td-dim); text-decoration: none; font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; }
.foot-links a:hover { color: var(--violet); }

@media (prefers-reduced-motion: reduce) {
  .mist-1, .mist-2, .marquee-inner, .hero-scrollcue, .mission-orb { animation: none; }
  .reveal { opacity: 1; transform: none; filter: none; transition: none; }
  .gauge-fill { transition: none; }
  .become-word { transition: none; }
  .site-nav { transition: none; }
  .become-track { filter: none !important; }
  .roll-hud { display: none; }
  html { scroll-behavior: auto; }
}
