/* =========================================================
   TRAPEZIUM — SITE LAYER
   Builds on css/design-system.css (token source of truth).
   ========================================================= */

:root {
  --electric: var(--color-brand-electric, #00E5C7);
  --brand: var(--color-brand, #14B8A6);
  --ink: #F0FDFA;
  --ink-2: #8FBDB6;
  --ink-3: #56807A;
  --canvas-deep: #020908;
  --font-display: 'Space Grotesk', var(--font-sans);
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;
  --section-pad: clamp(96px, 14vh, 180px);
  --content-w: 1160px;
}

html { scroll-behavior: smooth; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  color: var(--ink);
  overflow-x: hidden;
}

/* Aurora canvas — overrides design-system dark body bg with a richer field */
[data-theme="dark"] body {
  background:
    radial-gradient(ellipse 90% 55% at 50% -10%, rgba(20, 184, 166, 0.16) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 85% 60%, rgba(13, 148, 136, 0.10) 0%, transparent 65%),
    radial-gradient(ellipse 70% 45% at 10% 95%, rgba(0, 229, 199, 0.07) 0%, transparent 60%),
    linear-gradient(180deg, #030D0C 0%, #041412 45%, var(--canvas-deep) 100%);
  background-attachment: fixed;
}

::selection { background: rgba(0, 229, 199, 0.28); color: #fff; }

.mono { font-family: var(--font-mono); }

/* Gradient text sweep */
.grad-text {
  font-style: normal;
  background: linear-gradient(100deg, #5EEAD4 0%, var(--electric) 45%, var(--brand) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------------------------------------------------------
   GL STAGE (persistent orb / constellation canvas)
   --------------------------------------------------------- */
.gl-stage {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
#gl-canvas { width: 100%; height: 100%; display: block; }

/* Static fallback orb — shown until/unless WebGL boots */
.orb-fallback {
  position: absolute;
  top: 50%; left: 50%;
  width: min(70vmin, 640px);
  height: min(70vmin, 640px);
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background:
    radial-gradient(circle at 42% 38%, rgba(94, 234, 212, 0.20) 0%, transparent 30%),
    radial-gradient(circle at 50% 50%, rgba(0, 229, 199, 0.14) 0%, rgba(20, 184, 166, 0.06) 45%, transparent 68%);
  filter: blur(28px);
  opacity: 0.8;
}
html.webgl .orb-fallback { display: none; }

/* Cursor glow trail (desktop, decorative) */
.cursor-glow {
  position: fixed;
  width: 520px; height: 520px;
  margin: -260px 0 0 -260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 229, 199, 0.07) 0%, transparent 60%);
  pointer-events: none;
  z-index: 1;
  opacity: 0;
}
@media (hover: none), (max-width: 767px) { .cursor-glow { display: none; } }

/* All page content above the canvas */
main, .site-nav, .site-footer, .mobile-menu { position: relative; z-index: 2; }

/* ---------------------------------------------------------
   NAV
   --------------------------------------------------------- */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: var(--z-nav);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-5);
  padding: 22px clamp(20px, 4vw, 48px);
  transition: padding 320ms ease, background-color 320ms ease, box-shadow 320ms ease;
  background: transparent;
}
.site-nav.scrolled {
  padding-top: 12px;
  padding-bottom: 12px;
  background: rgba(3, 13, 12, 0.72);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(94, 234, 212, 0.10), 0 12px 40px rgba(0, 0, 0, 0.35);
}

.nav-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav-glyph { width: 28px; height: 28px; filter: drop-shadow(0 0 8px rgba(0, 229, 199, 0.5)); }
.nav-wordmark {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.nav-links { display: flex; gap: clamp(18px, 3vw, 40px); }
.nav-links a {
  color: var(--ink-2);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: color 200ms ease;
}
.nav-links a:hover { color: var(--electric); }

.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px; height: 44px;
  background: none; border: 0; cursor: pointer;
}
.nav-burger span { display: block; height: 2px; width: 22px; margin: 0 auto; background: var(--ink); transition: transform 250ms ease, opacity 250ms ease; }
.nav-burger[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
.nav-burger[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }

.mobile-menu[hidden] { display: none; }
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: calc(var(--z-nav) - 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-6);
  padding: 110px 24px 48px;
  background: rgba(2, 9, 8, 0.96);
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
}
.mobile-menu a {
  color: var(--ink);
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
}

@media (max-width: 860px) {
  .site-nav .nav-links, .site-nav .nav-cta { display: none; }
  .site-nav .nav-burger { display: flex; }
}

/* ---------------------------------------------------------
   BUTTONS — electric + ghost + magnetic
   --------------------------------------------------------- */
.btn-electric, .btn-ghost-teal {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 46px;
  padding: 0 26px;
  border-radius: var(--radius-pill);
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  cursor: pointer;
  border: 0;
  white-space: nowrap;
}
.btn-electric > span, .btn-ghost-teal > span { position: relative; z-index: 1; display: inline-block; }

.btn-electric {
  color: #03231E;
  background: linear-gradient(120deg, var(--electric) 0%, #2DD4BF 100%);
  box-shadow:
    0 0 0 1px rgba(0, 229, 199, 0.4),
    0 6px 28px rgba(0, 229, 199, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
  overflow: hidden;
  transition: box-shadow 250ms ease, transform 250ms ease;
}
.btn-electric::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 35%, rgba(255, 255, 255, 0.5) 50%, transparent 65%);
  transform: translateX(-120%);
  transition: transform 600ms ease;
}
.btn-electric:hover { box-shadow: 0 0 0 1px rgba(0, 229, 199, 0.6), 0 10px 44px rgba(0, 229, 199, 0.55), inset 0 1px 0 rgba(255,255,255,0.35); }
.btn-electric:hover::after { transform: translateX(120%); }

.btn-ghost-teal {
  color: var(--ink);
  background: rgba(20, 184, 166, 0.06);
  box-shadow: inset 0 0 0 1px rgba(94, 234, 212, 0.35);
  transition: background-color 250ms ease, box-shadow 250ms ease;
}
.btn-ghost-teal:hover {
  background: rgba(20, 184, 166, 0.14);
  box-shadow: inset 0 0 0 1px rgba(0, 229, 199, 0.7), 0 6px 24px rgba(0, 229, 199, 0.15);
}

.btn-big { height: 56px; padding: 0 34px; font-size: 16px; }

/* ---------------------------------------------------------
   SECTION SCAFFOLD
   --------------------------------------------------------- */
section { padding: var(--section-pad) clamp(20px, 5vw, 64px); }
.section-head { max-width: var(--content-w); margin: 0 auto; }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.22em;
  color: var(--electric);
  margin: 0 0 18px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.6vw, 3.6rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.06;
  margin: 0;
  color: var(--ink);
}

.section-lead {
  max-width: 640px;
  margin: 24px 0 0;
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  line-height: 1.6;
  color: var(--ink-2);
}

/* ---------------------------------------------------------
   HERO
   --------------------------------------------------------- */
.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-top: 140px;
  padding-bottom: 120px;
  position: relative;
}
.hero-inner { max-width: 1080px; }

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 7.2vw, 6.2rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.02;
  margin: 0 0 30px;
  color: var(--ink);
  text-wrap: balance;
}
.line-mask { display: block; overflow: hidden; padding-bottom: 0.08em; margin-bottom: -0.08em; }
.line-mask .line { display: inline-block; will-change: transform; }

.hero-sub {
  max-width: 620px;
  margin: 0 auto 40px;
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  line-height: 1.6;
  color: var(--ink-2);
  text-wrap: balance;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Transcript ticker */
.ticker {
  position: absolute;
  bottom: 64px;
  left: 0; right: 0;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 15%, #000 85%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 15%, #000 85%, transparent);
}
.ticker-track {
  display: inline-flex;
  gap: 56px;
  white-space: nowrap;
  animation: ticker-scroll 46s linear infinite;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--ink-3);
}
.ticker-track span::before { content: '●'; color: var(--brand); font-size: 7px; vertical-align: middle; margin-right: 14px; opacity: 0.7; }
@keyframes ticker-scroll { to { transform: translateX(-50%); } }

.scroll-hint {
  position: absolute;
  bottom: 20px; left: 50%;
  width: 22px; height: 34px;
  margin-left: -11px;
  border: 1.5px solid rgba(94, 234, 212, 0.35);
  border-radius: 12px;
}
.scroll-hint span {
  position: absolute;
  top: 6px; left: 50%;
  width: 3px; height: 7px;
  margin-left: -1.5px;
  border-radius: 2px;
  background: var(--electric);
  animation: hint-drop 1.8s ease-in-out infinite;
}
@keyframes hint-drop {
  0% { transform: translateY(0); opacity: 1; }
  70% { transform: translateY(12px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

/* ---------------------------------------------------------
   LIVE MOMENT — meeting simulation
   --------------------------------------------------------- */
.sim-section { padding-bottom: 0; }
.sim-pin {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(28px, 4vh, 56px);
  max-width: var(--content-w);
  margin: 0 auto;
}
.sim-pin .section-head { text-align: center; }

.meeting-window {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  border: 1px solid rgba(94, 234, 212, 0.16);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5), 0 0 120px rgba(20, 184, 166, 0.08);
  background: rgba(4, 18, 16, 0.82);
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
}

.meeting-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  border-bottom: 1px solid rgba(94, 234, 212, 0.10);
}
.mdot { width: 11px; height: 11px; border-radius: 50%; background: rgba(148, 163, 184, 0.25); }
.meeting-bar .mdot:first-child { background: rgba(239, 68, 68, 0.55); }
.meeting-bar .mdot:nth-child(2) { background: rgba(245, 158, 11, 0.55); }
.meeting-bar .mdot:nth-child(3) { background: rgba(16, 185, 129, 0.55); }
.meeting-title { margin-left: 12px; font-size: 12px; color: var(--ink-3); }
.live-pill {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  background: rgba(0, 229, 199, 0.10);
  border: 1px solid rgba(0, 229, 199, 0.35);
  color: var(--electric);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
}
.live-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--electric);
  box-shadow: 0 0 8px var(--electric);
  animation: pulse-dot 1.6s ease-in-out infinite;
}

.meeting-body {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 28px;
  padding: clamp(20px, 3vw, 40px);
  min-height: 320px;
}

.transcript-col, .cue-col { display: flex; flex-direction: column; gap: 20px; }

.t-line {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.t-speaker { font-size: 10px; letter-spacing: 0.2em; color: var(--ink-3); }
.t-line p {
  margin: 0;
  padding: 14px 18px;
  border-radius: 4px 16px 16px 16px;
  background: rgba(148, 163, 184, 0.07);
  border: 1px solid rgba(148, 163, 184, 0.10);
  color: var(--ink);
  font-size: clamp(0.92rem, 1.2vw, 1.05rem);
  line-height: 1.5;
}

.cue-card {
  position: relative;
  padding: 16px 18px 16px 22px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(0, 229, 199, 0.10) 0%, rgba(20, 184, 166, 0.05) 100%);
  border: 1px solid rgba(0, 229, 199, 0.30);
  box-shadow: 0 0 30px rgba(0, 229, 199, 0.10), inset 0 1px 0 rgba(94, 234, 212, 0.15);
}
.cue-card::before {
  content: '';
  position: absolute;
  left: 0; top: 12px; bottom: 12px;
  width: 3px;
  border-radius: 2px;
  background: linear-gradient(180deg, var(--electric), var(--brand));
  box-shadow: 0 0 12px var(--electric);
}
.cue-label {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--electric);
  margin-bottom: 8px;
}
.cue-card p { margin: 0; font-size: clamp(0.88rem, 1.1vw, 1rem); line-height: 1.5; color: var(--ink-2); }
.cue-card strong { color: var(--ink); font-weight: 600; }

/* Ability cards */
.abilities {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: var(--content-w);
  margin: clamp(64px, 10vh, 120px) auto 0;
}
.ability-card {
  padding: clamp(24px, 3vw, 40px);
  border-radius: var(--radius-xl);
  background: rgba(7, 33, 30, 0.45);
  border: 1px solid rgba(94, 234, 212, 0.12);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}
.ability-card h3 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
}
.ability-card p { margin: 0; color: var(--ink-2); line-height: 1.6; font-size: 15px; }

/* ---------------------------------------------------------
   AROUND THE MEETING — loop
   --------------------------------------------------------- */
.loop-section .section-head { text-align: center; margin-bottom: clamp(48px, 8vh, 96px); }

.loop-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: var(--content-w);
  margin: 0 auto;
}
.loop-circuit {
  position: absolute;
  top: 50%; left: 2%;
  width: 96%; height: 40px;
  margin-top: -20px;
  z-index: -1;
  overflow: visible;
}
.circuit-base { stroke: rgba(94, 234, 212, 0.12); stroke-width: 1.5; fill: none; }
.circuit-pulse {
  stroke: var(--electric);
  stroke-width: 1.5;
  fill: none;
  filter: drop-shadow(0 0 6px var(--electric));
  stroke-dasharray: 90 1110;
  stroke-dashoffset: 1200;
  animation: circuit-run 5s linear infinite;
}
@keyframes circuit-run { to { stroke-dashoffset: -1200; } }

.loop-card {
  padding: clamp(22px, 2.4vw, 32px);
  border-radius: var(--radius-xl);
  background: rgba(4, 18, 16, 0.85);
  border: 1px solid rgba(94, 234, 212, 0.14);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  transition: border-color 250ms ease, box-shadow 250ms ease;
}
.loop-card:hover {
  border-color: rgba(0, 229, 199, 0.45);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.4), 0 0 40px rgba(0, 229, 199, 0.12);
}
.loop-stage { display: block; font-size: 10px; letter-spacing: 0.2em; color: var(--ink-3); margin-bottom: 20px; }
.loop-icon {
  width: 46px; height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 14px;
  color: var(--electric);
  background: rgba(0, 229, 199, 0.08);
  border: 1px solid rgba(0, 229, 199, 0.25);
  box-shadow: 0 0 24px rgba(0, 229, 199, 0.12);
}
.loop-icon svg { width: 22px; height: 22px; }
.loop-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0 0 10px;
  color: var(--ink);
}
.loop-card p { margin: 0; font-size: 14px; line-height: 1.6; color: var(--ink-2); }

/* ---------------------------------------------------------
   MEMORY
   --------------------------------------------------------- */
.memory-section {
  position: relative;
  padding-top: calc(var(--section-pad) * 1.2);
}
.memory-atmosphere {
  position: absolute;
  inset: -10% 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 80% 50% at 50% 40%, rgba(13, 148, 136, 0.10) 0%, transparent 65%),
    linear-gradient(180deg, transparent 0%, rgba(1, 6, 5, 0.75) 18%, rgba(1, 6, 5, 0.75) 82%, transparent 100%);
  pointer-events: none;
}
.memory-section .section-head { text-align: center; }
.memory-section .section-lead { margin-left: auto; margin-right: auto; }

.memory-stage {
  position: relative;
  height: clamp(380px, 62vh, 560px);
  max-width: var(--content-w);
  margin: clamp(32px, 6vh, 64px) auto;
}

.mem-node {
  position: absolute;
  left: var(--nx); top: var(--ny);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px 10px 12px;
  background: rgba(2, 9, 8, 0.55);
  border: 1px solid rgba(94, 234, 212, 0.25);
  border-radius: var(--radius-pill);
  color: var(--ink-2);
  cursor: pointer;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  transition: border-color 250ms ease, box-shadow 250ms ease, color 250ms ease;
}
.mem-node:hover, .mem-node.active {
  border-color: var(--electric);
  color: var(--ink);
  box-shadow: 0 0 32px rgba(0, 229, 199, 0.25);
}
.mem-node-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--electric);
  box-shadow: 0 0 10px var(--electric);
  animation: pulse-dot 2.2s ease-in-out infinite;
}
.mem-node-tag { font-size: 10px; letter-spacing: 0.18em; }

.insight-card {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: min(440px, 88%);
  padding: 26px 28px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(0, 229, 199, 0.35);
  background: rgba(2, 12, 11, 0.92);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.6), 0 0 60px rgba(0, 229, 199, 0.15);
  z-index: 3;
}
.insight-close {
  position: absolute;
  top: 10px; right: 14px;
  background: none; border: 0;
  color: var(--ink-3);
  font-size: 22px;
  cursor: pointer;
  line-height: 1;
}
.insight-close:hover { color: var(--ink); }
.insight-q { margin: 0 0 12px; font-size: 12px; line-height: 1.6; color: var(--electric); letter-spacing: 0.04em; }
.insight-a { margin: 0; font-size: 15px; line-height: 1.65; color: var(--ink); }

.memory-statements {
  display: grid;
  gap: clamp(40px, 7vh, 72px);
  max-width: 760px;
  margin: 0 auto;
}
.mem-statement { text-align: center; }
.mem-statement h3 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 12px;
  color: var(--ink);
}
.mem-statement p { margin: 0; color: var(--ink-2); font-size: clamp(0.95rem, 1.3vw, 1.1rem); line-height: 1.6; }

/* ---------------------------------------------------------
   MANIFESTO
   --------------------------------------------------------- */
.manifesto {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 0.4em;
}
.manifesto-line {
  margin: 0;
  overflow: hidden;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 6.4vw, 5.4rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.08;
  color: var(--ink);
}
.manifesto-line > span { display: inline-block; }
.manifesto-sub {
  margin-top: 48px;
  font-size: 12px;
  letter-spacing: 0.3em;
  color: var(--ink-3);
}

/* ---------------------------------------------------------
   WAITLIST
   --------------------------------------------------------- */
.waitlist-section { display: flex; justify-content: center; }
.waitlist-panel {
  position: relative;
  width: min(640px, 100%);
  padding: clamp(32px, 5vw, 64px);
  border-radius: 28px;
  border: 1px solid rgba(0, 229, 199, 0.22);
  background: rgba(3, 15, 13, 0.80);
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.55), 0 0 90px rgba(0, 229, 199, 0.10);
}
.waitlist-panel .section-head { text-align: center; margin-bottom: 40px; }
.waitlist-panel .section-lead { font-size: 1.02rem; }

.waitlist-form { display: flex; flex-direction: column; gap: 22px; }

.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-2);
}
.form-field input {
  height: 54px;
  padding: 0 18px;
  border-radius: 14px;
  border: 1px solid rgba(94, 234, 212, 0.18);
  background: rgba(2, 9, 8, 0.6);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  outline: none;
  transition: border-color 250ms ease, box-shadow 250ms ease;
}
.form-field input::placeholder { color: var(--ink-3); }
.form-field input:focus {
  border-color: var(--electric);
  box-shadow: 0 0 0 3px rgba(0, 229, 199, 0.15), 0 0 32px rgba(0, 229, 199, 0.18);
}
.form-field input[aria-invalid="true"] { border-color: rgba(239, 68, 68, 0.7); }
.field-error { min-height: 16px; font-size: 12px; color: #F87171; }

.hp-field { position: absolute; left: -9999px; top: -9999px; height: 0; overflow: hidden; }

.btn-submit { width: 100%; margin-top: 6px; }
.btn-submit[disabled] { opacity: 0.6; pointer-events: none; }
.form-status { min-height: 20px; margin: 0; text-align: center; font-size: 14px; color: var(--ink-2); }
.form-status.error { color: #F87171; }

.waitlist-success { text-align: center; padding: 40px 0 20px; position: relative; }
.waitlist-success h3 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 10px;
  color: var(--ink);
}
.waitlist-success p { margin: 0; color: var(--ink-2); font-size: 1.05rem; }
.success-pulse {
  position: absolute;
  left: 50%; top: 40%;
  width: 10px; height: 10px;
  margin: -5px;
  border-radius: 50%;
  background: var(--electric);
  box-shadow: 0 0 20px var(--electric);
  animation: success-ring 1.6s ease-out infinite;
}
@keyframes success-ring {
  0% { box-shadow: 0 0 0 0 rgba(0, 229, 199, 0.5), 0 0 20px var(--electric); }
  100% { box-shadow: 0 0 0 80px rgba(0, 229, 199, 0), 0 0 20px var(--electric); }
}

/* ---------------------------------------------------------
   FOOTER
   --------------------------------------------------------- */
.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px 40px;
  padding: 48px clamp(20px, 5vw, 64px);
  border-top: 1px solid rgba(94, 234, 212, 0.10);
  background: rgba(2, 9, 8, 0.6);
}
.footer-brand { display: flex; align-items: center; gap: 10px; }
.footer-tag { color: var(--ink-3); font-size: 14px; margin-left: 8px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 24px; margin-left: auto; }
.footer-links a { color: var(--ink-2); text-decoration: none; font-size: 14px; transition: color 200ms ease; }
.footer-links a:hover { color: var(--electric); }
.footer-legal { width: 100%; margin: 8px 0 0; color: var(--ink-3); font-size: 13px; }

/* ---------------------------------------------------------
   RESPONSIVE
   --------------------------------------------------------- */
@media (max-width: 1023px) {
  .loop-grid { grid-template-columns: repeat(2, 1fr); }
  .loop-circuit { display: none; }
}
@media (max-width: 860px) {
  .meeting-body { grid-template-columns: 1fr; }
  .abilities { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .loop-grid { grid-template-columns: 1fr; }
  .ticker { bottom: 84px; }
  .memory-stage { height: 420px; }
  .mem-node { padding: 8px 12px 8px 10px; }
  .footer-links { margin-left: 0; }
}

/* ---------------------------------------------------------
   REDUCED MOTION
   --------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  .ticker-track, .circuit-pulse, .scroll-hint span, .success-pulse,
  .live-dot, .mem-node-dot { animation: none !important; }
  html { scroll-behavior: auto; }
}
