:root {
  --electric: var(--color-brand-electric, #00e5c7);
  --brand: var(--color-brand, #14b8a6);
  --ink: #f0fdfa;
  --ink-2: #c7e0dc;
  --ink-3: #94b8b2;
  --canvas: #030d0c;
  --canvas-deep: #020908;
  --panel: rgba(3, 15, 13, 0.92);
  --panel-solid: #061a17;
  --panel-soft: rgba(7, 33, 30, 0.88);
  --line: rgba(94, 234, 212, 0.22);
  --line-strong: rgba(0, 229, 199, 0.48);
  --font-display: 'Space Grotesk', var(--font-sans);
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;
  --section-pad: clamp(72px, 9vh, 112px);
  --content-w: 1160px;
  --reading-w: 60ch;
}

html { scroll-behavior: smooth; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
[hidden] { display: none !important; }

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

[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.08) 0%, transparent 65%),
    linear-gradient(180deg, #030d0c 0%, #041412 45%, var(--canvas-deep) 100%);
  background-attachment: fixed;
}

::selection { background: rgba(0, 229, 199, 0.3); color: #fff; }
.mono { font-family: var(--font-mono); }

.grad-text {
  color: #5eead4;
  font-style: normal;
  background: linear-gradient(100deg, #8ff5e5 0%, var(--electric) 45%, #2dd4bf 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gl-stage {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

#gl-canvas { width: 100%; height: 100%; display: block; }

.orb-fallback {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(68vmin, 620px);
  height: min(68vmin, 620px);
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background:
    radial-gradient(circle at 42% 38%, rgba(94, 234, 212, 0.16) 0%, transparent 30%),
    radial-gradient(circle at 50% 50%, rgba(0, 229, 199, 0.12) 0%, rgba(20, 184, 166, 0.05) 45%, transparent 68%);
  filter: blur(30px);
  opacity: 0.55;
}

html.webgl .orb-fallback { display: none; }

.cursor-glow {
  position: fixed;
  width: 460px;
  height: 460px;
  margin: -230px 0 0 -230px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 229, 199, 0.06) 0%, transparent 62%);
  pointer-events: none;
  z-index: 1;
  opacity: 0;
}

main, .site-footer { position: relative; z-index: 2; }
main > section {
  position: relative;
  padding: var(--section-pad) clamp(20px, 5vw, 64px);
}

.reading-surface {
  position: relative;
  isolation: isolate;
}

.reading-surface::before {
  content: '';
  position: absolute;
  z-index: -1;
  inset: -38px -56px;
  border-radius: 48px;
  background: radial-gradient(ellipse at center, rgba(2, 9, 8, 0.95) 0%, rgba(2, 9, 8, 0.78) 58%, transparent 78%);
  pointer-events: none;
}

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

.section-head { max-width: 800px; margin: 0 auto clamp(42px, 6vw, 72px); text-align: center; }
.section-title {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4.7vw, 3.7rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.07;
  text-wrap: balance;
  text-shadow: 0 2px 24px rgba(2, 9, 8, 0.95);
}

.section-lead {
  max-width: var(--reading-w);
  margin: 24px auto 0;
  color: var(--ink-2);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  line-height: 1.68;
  text-wrap: balance;
}

/* Navigation */
.site-nav {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  height: 84px;
  padding: 0 clamp(20px, 4vw, 56px);
  border-bottom: 1px solid transparent;
  transition: height 250ms ease, background 250ms ease, border-color 250ms ease;
}

.site-nav.scrolled {
  height: 70px;
  background: rgba(3, 13, 12, 0.94);
  border-color: var(--line);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
}

.nav-brand, .footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  text-decoration: none;
}

.nav-glyph { width: 30px; height: 30px; flex: 0 0 auto; }
.nav-wordmark { font-family: var(--font-display); font-size: 19px; font-weight: 700; letter-spacing: -0.02em; }
.nav-links { display: flex; align-items: center; gap: clamp(22px, 3vw, 38px); }
.nav-links a, .footer-links a {
  color: var(--ink-2);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: color 180ms ease;
}
.nav-links a:hover, .footer-links a:hover { color: var(--electric); }
.nav-cta { justify-self: end; }

.nav-burger {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.nav-burger span { display: block; width: 22px; height: 2px; margin: 5px auto; background: var(--ink); }

.mobile-menu {
  position: fixed;
  z-index: 49;
  top: 70px;
  left: 0;
  right: 0;
  padding: 22px;
  background: rgba(2, 9, 8, 0.98);
  border-bottom: 1px solid var(--line);
}
.mobile-menu a { display: block; padding: 14px; color: var(--ink); font-size: 17px; text-decoration: none; }
.mobile-menu .btn-electric { margin-top: 8px; text-align: center; }

.btn-electric, .btn-ghost-teal {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}
.btn-electric {
  color: #03231e;
  background: linear-gradient(120deg, var(--electric), #5eead4);
  box-shadow: 0 0 28px rgba(0, 229, 199, 0.18);
  border: 1px solid transparent;
}
.btn-electric:hover { box-shadow: 0 0 38px rgba(0, 229, 199, 0.32); }
.btn-ghost-teal { color: var(--ink); background: rgba(3, 15, 13, 0.88); border: 1px solid rgba(94, 234, 212, 0.36); }
.btn-ghost-teal:hover { border-color: var(--electric); background: rgba(7, 33, 30, 0.96); }
.btn-big { min-height: 54px; padding: 0 28px; font-size: 15px; }

/* Hero */
.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 132px;
  padding-bottom: 116px;
  text-align: center;
}

.hero-scrim {
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  width: min(1100px, 96vw);
  height: min(650px, 78vh);
  transform: translate(-50%, -52%);
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(2, 9, 8, 0.94) 0%, rgba(2, 9, 8, 0.68) 55%, transparent 77%);
}

.hero-inner { max-width: 1080px; }
.hero-title {
  margin: 0 0 28px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 7vw, 6rem);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1.01;
  text-wrap: balance;
  text-shadow: 0 3px 32px rgba(2, 9, 8, 1);
}
.line-mask { display: block; overflow: hidden; padding-bottom: 0.08em; margin-bottom: -0.08em; }
.line-mask .line { display: inline-block; }
.hero-sub { max-width: 680px; margin: 0 auto 36px; color: var(--ink-2); font-size: clamp(1.05rem, 1.55vw, 1.25rem); line-height: 1.68; text-wrap: balance; }
.hero-ctas { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }

.ticker {
  position: absolute;
  bottom: 48px;
  left: 0;
  right: 0;
  overflow: hidden;
  padding: 12px 0;
  border-top: 1px solid rgba(94, 234, 212, 0.12);
  border-bottom: 1px solid rgba(94, 234, 212, 0.12);
  background: rgba(2, 9, 8, 0.74);
}
.ticker-track { display: flex; width: max-content; animation: ticker-run 34s linear infinite; }
.ticker-track span { color: var(--ink-3); font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.04em; white-space: nowrap; }
.ticker-track span::before { content: '●'; margin: 0 16px; color: var(--electric); font-size: 7px; vertical-align: middle; }
@keyframes ticker-run { to { transform: translateX(-50%); } }

.scroll-hint { position: absolute; bottom: 12px; left: 50%; width: 18px; height: 26px; transform: translateX(-50%); }
.scroll-hint span { display: block; width: 2px; height: 8px; margin: 0 auto; border-radius: 2px; background: var(--electric); animation: scroll-pulse 1.8s ease-in-out infinite; }
@keyframes scroll-pulse { 0%, 100% { transform: translateY(0); opacity: 1; } 70% { transform: translateY(12px); opacity: 0; } }

/* System overview */
.how-section { overflow: hidden; }
.system-steps {
  max-width: var(--content-w);
  margin: 0 auto;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  list-style: none;
}
.system-step {
  min-height: 250px;
  padding: clamp(26px, 3.2vw, 38px);
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--panel);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}
.step-no, .offering-no, .detail-label { color: var(--electric); font-size: 11px; letter-spacing: 0.18em; }
.system-step h3 { margin: 28px 0 10px; color: var(--ink); font-family: var(--font-display); font-size: 1.65rem; }
.system-step p { max-width: 34ch; margin: 0; color: var(--ink-2); font-size: 16px; line-height: 1.65; }

/* Offerings */
.offerings-section { overflow: hidden; }
.offering-list { max-width: var(--content-w); margin: 0 auto; display: grid; gap: 22px; }
.offering-card {
  display: grid;
  grid-template-columns: minmax(280px, 5fr) minmax(320px, 6fr);
  gap: clamp(28px, 5vw, 72px);
  padding: clamp(30px, 4.5vw, 54px);
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--panel);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.28);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}
.offering-head h3 { margin: 14px 0 8px; color: var(--ink); font-family: var(--font-display); font-size: clamp(1.8rem, 3vw, 2.6rem); letter-spacing: -0.03em; line-height: 1.08; }
.offering-promise { margin: 0 0 18px !important; color: #7ff4e2 !important; font-family: var(--font-display); font-size: clamp(1.08rem, 1.5vw, 1.28rem) !important; font-weight: 600; line-height: 1.35 !important; }
.offering-head > p:not(.offering-promise) { max-width: var(--reading-w); margin: 0; color: var(--ink-2); font-size: 16px; line-height: 1.68; }
.offering-detail { align-self: center; }
.detail-label { display: block; margin: 0 0 16px; font-weight: 500; }
.integration-block { margin-top: 24px; }
.integration-block .detail-label { margin-bottom: 10px; }
.integration-strip { display: flex; flex-wrap: wrap; gap: 9px; }
.integration-tile { min-height: 48px; display: inline-flex; align-items: center; gap: 10px; padding: 9px 13px; border: 1px solid rgba(94, 234, 212, 0.18); border-radius: 12px; color: var(--ink); background: #061a17; font-size: 14px; font-weight: 600; line-height: 1.2; }
.integration-tile img { flex: 0 0 auto; display: block; width: 28px; height: 28px; object-fit: contain; }
.work-steps { margin: 0; padding: 0; display: grid; gap: 12px; list-style: none; }
.work-steps li { display: flex; align-items: flex-start; gap: 14px; padding: 14px 16px; border: 1px solid rgba(94, 234, 212, 0.16); border-radius: 14px; background: rgba(2, 9, 8, 0.72); }
.work-steps li > span { flex: 0 0 auto; display: grid; place-items: center; width: 28px; height: 28px; border: 1px solid var(--line-strong); border-radius: 50%; color: var(--electric); font-family: var(--font-mono); font-size: 12px; }
.work-steps p { margin: 2px 0 0; color: var(--ink-2); font-size: 16px; line-height: 1.55; }
.crm-detail { display: grid; gap: 22px; }
.crm-proof { margin: 0; color: var(--ink); font-family: var(--font-display); font-size: clamp(1.2rem, 2vw, 1.65rem); font-weight: 600; line-height: 1.4; }
.crm-detail .integration-block, .command-detail .integration-block { margin-top: 0; }

.chatbot-feature { align-self: center; padding: clamp(24px, 3vw, 34px); border: 1px solid rgba(0, 229, 199, 0.62); border-radius: 22px; background: linear-gradient(145deg, rgba(7, 40, 35, 0.98), rgba(3, 18, 16, 0.98)); box-shadow: 0 22px 70px rgba(0, 229, 199, 0.09); }
.featured-badge, .coming-soon-badge { display: inline-flex; padding: 6px 10px; border-radius: 999px; font-size: 10px; font-weight: 600; letter-spacing: 0.16em; }
.featured-badge { border: 1px solid var(--electric); color: var(--electric); background: rgba(0, 229, 199, 0.09); }
.chatbot-feature h4 { margin: 15px 0 8px; color: var(--ink); font-family: var(--font-display); font-size: clamp(1.45rem, 2.2vw, 1.9rem); }
.feature-promise { margin: 0 0 13px !important; color: #7ff4e2 !important; font-family: var(--font-display); font-size: 1.08rem !important; font-weight: 600; line-height: 1.45 !important; }
.chatbot-feature > p:not(.detail-label):not(.supporting-note) { margin: 0 0 20px; color: var(--ink-2); font-size: 16px; line-height: 1.62; }
.chatbot-feature .detail-label { margin-top: 22px; }
.supporting-note { margin: 18px 0 0 !important; padding-top: 16px; border-top: 1px solid rgba(94, 234, 212, 0.18); color: var(--ink-2); font-size: 15px; line-height: 1.55; }

.content-detail { align-self: center; }
.coming-soon-panel { display: flex; gap: 16px; margin-top: 18px; padding: 18px; border: 1px dashed rgba(148, 184, 178, 0.45); border-radius: 16px; background: rgba(4, 20, 18, 0.9); }
.coming-soon-badge { flex: 0 0 auto; align-self: flex-start; border: 1px solid var(--ink-3); color: var(--ink-2); background: rgba(148, 184, 178, 0.08); }
.roadmap-title { margin: 0 0 5px; color: var(--ink); font-family: var(--font-display); font-size: 1.08rem; font-weight: 600; }
.coming-soon-panel div > p:last-child { margin: 0; color: var(--ink-2); font-size: 15px; line-height: 1.55; }

.offering-card--meeting { display: block; padding: clamp(30px, 4.5vw, 54px); }
.offering-card--meeting .offering-head { max-width: 760px; margin-bottom: 32px; }
.meeting-phases { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-bottom: 22px; }
.meeting-phase { padding: 22px; border: 1px solid rgba(94, 234, 212, 0.16); border-radius: 18px; background: rgba(2, 9, 8, 0.74); }
.meeting-phase p { margin: 0; color: var(--ink-2); font-size: 16px; line-height: 1.62; }

.meeting-simulation { overflow: hidden; border: 1px solid var(--line); border-radius: 22px; background: #041411; }
.meeting-bar { display: flex; align-items: center; gap: 7px; min-height: 48px; padding: 0 18px; border-bottom: 1px solid var(--line); background: #061a17; }
.mdot { width: 10px; height: 10px; border-radius: 50%; background: rgba(148, 163, 184, 0.5); }
.meeting-bar .mdot:first-child { background: rgba(248, 113, 113, 0.8); }
.meeting-bar .mdot:nth-child(2) { background: rgba(251, 191, 36, 0.8); }
.meeting-bar .mdot:nth-child(3) { background: rgba(52, 211, 153, 0.8); }
.meeting-title { margin-left: 8px; color: var(--ink-3); font-size: 11px; }
.live-pill { margin-left: auto; display: inline-flex; align-items: center; gap: 7px; padding: 5px 9px; border-radius: 999px; color: var(--electric); background: rgba(0, 229, 199, 0.11); font-family: var(--font-mono); font-size: 10px; font-weight: 600; letter-spacing: 0.12em; }
.live-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--electric); box-shadow: 0 0 10px var(--electric); }
.simulation-body { display: grid; gap: 1px; background: rgba(94, 234, 212, 0.1); }
.sim-beat { display: grid; grid-template-columns: 5fr 6fr; gap: 22px; padding: 22px; background: #041411; }
.buyer-line, .cue-card { padding: 18px 20px; border-radius: 14px; }
.buyer-line { background: #0a211e; }
.buyer-line p { margin: 7px 0 0; color: var(--ink); font-size: 16px; line-height: 1.55; }
.t-speaker, .cue-label { color: var(--electric); font-size: 10px; letter-spacing: 0.18em; }
.cue-card { border: 1px solid rgba(0, 229, 199, 0.28); background: linear-gradient(135deg, rgba(0, 229, 199, 0.12), rgba(20, 184, 166, 0.07)); }
.cue-card p { margin: 7px 0 0; color: var(--ink-2); font-size: 16px; line-height: 1.55; }
.cue-card strong { color: var(--ink); }

.pilot-panel { align-self: center; display: flex; gap: 18px; padding: 22px; border: 1px solid rgba(0, 229, 199, 0.34); border-radius: 18px; background: rgba(0, 229, 199, 0.08); }
.pilot-badge { flex: 0 0 auto; align-self: flex-start; padding: 6px 10px; border: 1px solid var(--electric); border-radius: 999px; color: var(--electric); font-size: 10px; letter-spacing: 0.18em; }
.pilot-title { margin: 0 0 6px; color: var(--ink); font-family: var(--font-display); font-size: 1.12rem; font-weight: 600; }
.pilot-panel div > p:last-child { margin: 0; color: var(--ink-2); font-size: 16px; line-height: 1.58; }
.command-detail { align-self: center; display: grid; gap: 22px; }

/* Sales Brain */
.brain-section { padding-top: calc(var(--section-pad) * 1.05); }
.brain-panel { max-width: var(--content-w); margin: 0 auto; display: grid; grid-template-columns: 1fr 0.9fr; gap: clamp(32px, 5vw, 70px); padding: clamp(34px, 5vw, 64px); border: 1px solid rgba(0, 229, 199, 0.28); border-radius: 32px; background: rgba(2, 12, 11, 0.96); box-shadow: 0 42px 120px rgba(0, 0, 0, 0.48), 0 0 90px rgba(0, 229, 199, 0.08); }
.brain-copy .section-title { text-shadow: none; }
.brain-copy .section-lead { margin: 24px 0 34px; text-wrap: initial; }
.brain-integration { margin: -10px 0 28px; }
.query-prompts { display: grid; gap: 10px; }
.query-prompt { width: 100%; padding: 14px 16px; border: 1px solid rgba(94, 234, 212, 0.2); border-radius: 14px; color: var(--ink-2); background: rgba(7, 33, 30, 0.72); font-family: var(--font-sans); font-size: 14px; line-height: 1.5; text-align: left; cursor: pointer; transition: border-color 180ms ease, background 180ms ease, color 180ms ease; }
.query-prompt:hover, .query-prompt.active { border-color: var(--electric); color: var(--ink); background: rgba(7, 40, 35, 0.96); }
.brain-visual { position: relative; min-height: 440px; display: flex; flex-direction: column; justify-content: center; }
.constellation { position: absolute; inset: 0; overflow: hidden; border: 1px solid rgba(94, 234, 212, 0.12); border-radius: 24px; background: radial-gradient(circle at center, rgba(0, 229, 199, 0.1), transparent 62%); }
.constellation::before, .constellation::after { content: ''; position: absolute; inset: 18% 12%; border: 1px solid rgba(0, 229, 199, 0.14); transform: rotate(18deg); }
.constellation::after { inset: 28% 18%; transform: rotate(-26deg); }
.constellation span { position: absolute; z-index: 1; left: var(--x); top: var(--y); width: 8px; height: 8px; border-radius: 50%; background: var(--electric); box-shadow: 0 0 18px rgba(0, 229, 199, 0.9); animation: node-pulse 2.8s ease-in-out var(--d) infinite; }
@keyframes node-pulse { 50% { transform: scale(1.7); opacity: 0.58; } }
.insight-card { position: relative; z-index: 2; width: min(370px, calc(100% - 40px)); margin: 0 auto; padding: 26px; border: 1px solid rgba(0, 229, 199, 0.38); border-radius: 20px; background: #061a17; box-shadow: 0 26px 70px rgba(0, 0, 0, 0.55); }
.insight-kicker { margin: 0 0 12px; color: var(--electric); font-size: 10px; letter-spacing: 0.18em; }
.insight-q { margin: 0 0 14px; color: var(--ink); font-family: var(--font-display); font-size: 1.1rem; font-weight: 600; line-height: 1.4; }
.insight-a { margin: 0; color: var(--ink-2); font-size: 16px; line-height: 1.62; }
.mcp-note { position: relative; z-index: 2; margin: 18px auto 0; color: var(--ink-3); font-size: 10px; letter-spacing: 0.13em; }

/* Demo */
.waitlist-section { display: flex; flex-direction: column; align-items: center; gap: clamp(42px, 7vw, 78px); }
.closing-statement { max-width: 940px; margin: 0; color: var(--ink); font-family: var(--font-display); font-size: clamp(2rem, 5vw, 4.4rem); font-weight: 700; letter-spacing: -0.04em; line-height: 1.08; text-align: center; text-wrap: balance; }
.waitlist-panel { width: min(680px, 100%); padding: clamp(30px, 5vw, 58px); border: 1px solid rgba(0, 229, 199, 0.3); border-radius: 28px; background: rgba(3, 15, 13, 0.96); box-shadow: 0 40px 120px rgba(0, 0, 0, 0.55), 0 0 90px rgba(0, 229, 199, 0.08); }
.waitlist-panel .section-head { margin-bottom: 38px; }
.waitlist-panel .section-title { font-size: clamp(1.9rem, 3.8vw, 3rem); text-shadow: none; }
.waitlist-panel .section-lead { font-size: 16px; }
.waitlist-form { display: flex; flex-direction: column; gap: 20px; }
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field label { color: var(--ink-2); font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; }
.form-field input { height: 54px; padding: 0 17px; border: 1px solid rgba(94, 234, 212, 0.28); border-radius: 14px; outline: none; color: var(--ink); background: #020908; font-family: var(--font-sans); font-size: 16px; transition: border-color 180ms ease, box-shadow 180ms 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.13); }
.form-field input[aria-invalid="true"] { border-color: #f87171; }
.field-error { min-height: 16px; color: #fca5a5; font-size: 12px; }
.btn-submit { width: 100%; border: 0; cursor: pointer; }
.btn-submit:disabled { opacity: 0.58; cursor: wait; }
.form-status { min-height: 20px; margin: 0; color: var(--ink-2); font-size: 14px; text-align: center; }
.form-status.error { color: #fca5a5; }
.hp-field { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.waitlist-success { padding: 38px 0; text-align: center; }
.waitlist-success h3 { margin: 0 0 10px; font-family: var(--font-display); font-size: 2rem; }
.waitlist-success p { margin: 0; color: var(--ink-2); }
.success-pulse { width: 54px; height: 54px; margin: 0 auto 20px; border: 2px solid var(--electric); border-radius: 50%; box-shadow: 0 0 38px rgba(0, 229, 199, 0.34); }

/* Footer */
.site-footer { max-width: calc(var(--content-w) + 128px); margin: 0 auto; padding: 34px clamp(20px, 5vw, 64px) 44px; display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: center; border-top: 1px solid var(--line); }
.footer-tag { margin-left: 8px; color: var(--ink-3); font-size: 13px; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 22px; }
.footer-legal { grid-column: 1 / -1; margin: 0; color: var(--ink-3); font-size: 12px; }

@media (max-width: 980px) {
  .site-nav { grid-template-columns: 1fr auto; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-burger { display: block; justify-self: end; }
  .offering-card, .brain-panel { grid-template-columns: 1fr; }
  .offering-head > p:not(.offering-promise) { max-width: 65ch; }
  .brain-visual { min-height: 390px; }
}

@media (max-width: 800px) {
  :root { --section-pad: 72px; }
  main > section { padding-left: 20px; padding-right: 20px; }
  .system-steps, .meeting-phases { grid-template-columns: 1fr; }
  .system-step { min-height: auto; }
  .system-step p { max-width: 60ch; }
  .sim-beat { grid-template-columns: 1fr; gap: 10px; padding: 14px; }
  .meeting-title { overflow: hidden; max-width: 45vw; text-overflow: ellipsis; white-space: nowrap; }
  .site-footer { grid-template-columns: 1fr; text-align: center; }
  .footer-brand, .footer-links { justify-content: center; }
  .footer-legal { grid-column: 1; }
}

@media (max-width: 560px) {
  .site-nav { height: 70px; padding: 0 18px; }
  .hero { min-height: 780px; padding-top: 110px; padding-bottom: 110px; }
  .hero-title { font-size: clamp(2.45rem, 12vw, 4rem); }
  .hero-sub { font-size: 16px; }
  .hero-ctas { flex-direction: column; align-items: stretch; width: min(330px, 100%); margin: 0 auto; }
  .reading-surface::before { inset: -24px -12px; }
  .section-title br { display: none; }
  .section-head { margin-bottom: 38px; }
  .offering-card, .offering-card--meeting, .brain-panel, .waitlist-panel { padding: 26px 20px; border-radius: 22px; }
  .work-steps li, .meeting-phase, .buyer-line, .cue-card { padding: 15px; }
  .pilot-panel, .coming-soon-panel { flex-direction: column; gap: 12px; }
  .integration-tile { max-width: 100%; }
  .brain-visual { min-height: 420px; }
  .query-prompt { font-size: 13px; }
  .footer-tag { display: none; }
}

@media (hover: none) { .cursor-glow { display: none; } }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .gl-stage, .cursor-glow, .scroll-hint { display: none; }
}
