:root {
  color-scheme: dark;
  --bg: #070c0a;
  --bg2: #0c1410;
  --panel: #0e1813;
  --ink: #f2faf4;
  --muted: #8fa898;
  --faint: #5f7a68;
  --line: #1e3a2a;
  --gold: #e8c15a;
  --yes: #6dff8a;
  --yes-bg: #123d24;
  --yes-border: #3d9a58;
  --radius: 20px;
  --max: 1120px;
  --font: "SF Pro Text", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
code {
  font-size: 0.9em;
  padding: 0.1em 0.4em;
  border-radius: 6px;
  background: #0a1410;
  border: 1px solid var(--line);
}

.bg-glow {
  position: fixed;
  inset: -20% -10% auto -10%;
  height: 70vh;
  background:
    radial-gradient(ellipse 50% 40% at 70% 20%, #3d9a5833, transparent 60%),
    radial-gradient(ellipse 40% 35% at 20% 30%, #e8c15a22, transparent 55%);
  pointer-events: none;
  z-index: 0;
}

.nav, main, .footer { position: relative; z-index: 1; }

.nav {
  position: sticky;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 22px;
  backdrop-filter: blur(16px);
  background: #070c0acc;
  border-bottom: 1px solid #1e3a2a88;
  z-index: 20;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand img {
  width: 40px; height: 40px;
  border-radius: 12px;
  border: 1px solid var(--line);
  box-shadow: 0 0 20px #3d9a5844;
}
.brand strong { display: block; font-size: 15px; }
.brand small { color: var(--muted); font-size: 12px; }
.nav nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
}
.nav nav a:hover { color: var(--ink); }
.nav-cta {
  padding: 8px 14px !important;
  border-radius: 999px;
  background: var(--yes-bg);
  border: 1px solid var(--yes-border);
  color: var(--yes) !important;
}

.hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: 56px 22px 72px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
}
.eyebrow {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 700;
  margin-bottom: 18px;
}
.hero h1 em {
  font-style: normal;
  color: var(--yes);
}
.lede {
  font-size: 1.1rem;
  color: #c8e6cc;
  max-width: 36rem;
  margin-bottom: 12px;
}
.lede.sub { color: var(--muted); font-size: 1rem; }
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 22px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: filter 0.15s, transform 0.15s;
}
.btn:hover { filter: brightness(1.08); transform: translateY(-1px); }
.btn.primary {
  background: linear-gradient(180deg, #1a4a2e, #123d24);
  border-color: var(--yes-border);
  color: var(--yes);
  box-shadow: 0 0 28px #3d9a5844;
}
.btn.ghost {
  border-color: var(--line);
  background: #0a1410;
  color: var(--ink);
}
.btn.wide { width: 100%; }
.hero-proof {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  color: var(--faint);
  font-size: 13px;
  font-weight: 600;
}
.hero-proof li::before {
  content: "✓ ";
  color: var(--yes);
}

.hero-visual {
  position: relative;
  min-height: 380px;
  display: grid;
  place-items: center;
}
.orb-ring {
  width: min(320px, 70vw);
  aspect-ratio: 1;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 40% 30%, #1a3a28, #070c0a 70%);
  border: 1px solid var(--line);
  box-shadow: 0 0 80px #3d9a5844, inset 0 0 60px #0008;
}
.mascot {
  width: 72%;
  height: auto;
  border-radius: 24px;
  filter: drop-shadow(0 12px 40px #000a);
}
.float-card {
  position: absolute;
  left: 0;
  bottom: 18%;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  max-width: 260px;
  padding: 14px 16px;
  border-radius: 16px;
  background: #0c1612ee;
  border: 1px solid var(--line);
  box-shadow: 0 16px 40px #0008;
  backdrop-filter: blur(10px);
}
.float-card.secondary {
  left: auto;
  right: 0;
  bottom: auto;
  top: 12%;
}
.float-card .dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  margin-top: 4px;
  background: var(--yes);
  box-shadow: 0 0 12px var(--yes);
  flex: 0 0 auto;
}
.float-card .dot.gold {
  background: var(--gold);
  box-shadow: 0 0 12px var(--gold);
}
.float-card b { display: block; font-size: 13px; margin-bottom: 4px; }
.float-card p { font-size: 12px; color: var(--muted); line-height: 1.4; }

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 72px 22px;
}
.section.alt {
  max-width: none;
  padding-left: max(22px, calc((100% - var(--max)) / 2));
  padding-right: max(22px, calc((100% - var(--max)) / 2));
  background: linear-gradient(180deg, #0a1210, #070c0a);
  border-top: 1px solid #1e3a2a55;
  border-bottom: 1px solid #1e3a2a55;
}
.section-head { margin-bottom: 36px; max-width: 40rem; }
.section-head h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 12px;
}
.section-lede { color: var(--muted); font-size: 1.05rem; }

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.card {
  padding: 22px;
  border-radius: var(--radius);
  background: var(--panel);
  border: 1px solid var(--line);
}
.card h3 {
  font-size: 1.05rem;
  margin-bottom: 10px;
  color: var(--yes);
}
.card p { color: var(--muted); font-size: 0.95rem; }

.steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 720px;
}
.steps li {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 18px 20px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: #0a1410;
}
.steps .n {
  font-weight: 800;
  font-size: 13px;
  color: var(--gold);
  letter-spacing: 0.08em;
  min-width: 2rem;
}
.steps h3 { font-size: 1.05rem; margin-bottom: 6px; }
.steps p { color: var(--muted); font-size: 0.95rem; }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.split h3 { margin-bottom: 14px; font-size: 1.15rem; }
.bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: #c8e6cc;
}
.bullets li::before { content: "→ "; color: var(--yes); font-weight: 700; }
.bullets.dim { color: var(--muted); }
.bullets.dim li::before { content: "× "; color: var(--danger, #ff9b8c); }

.story {
  max-width: 40rem;
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: #c8e6cc;
  font-size: 1.08rem;
}

.vision {
  background: radial-gradient(ellipse 60% 50% at 50% 0%, #123d2488, transparent 60%);
}
.vision-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 28px;
  align-items: start;
}
.vision blockquote {
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: var(--yes);
  border-left: 3px solid var(--gold);
  padding: 8px 0 8px 20px;
}
.vision-points {
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: var(--muted);
}
.vision-points strong { color: var(--ink); }

.waitlist {
  padding-bottom: 96px;
}
.waitlist-box {
  max-width: 520px;
  margin: 0 auto;
  padding: 36px 28px;
  border-radius: 24px;
  border: 1px solid var(--yes-border);
  background: linear-gradient(165deg, #12261b, #0a1410);
  box-shadow: 0 0 60px #3d9a5833;
  text-align: center;
}
.waitlist-box .section-lede { margin: 0 auto 24px; }
.waitlist-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
}
.waitlist-form input {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #070c0a;
  color: var(--ink);
  font: inherit;
}
.waitlist-form input:focus {
  outline: 2px solid var(--yes);
  outline-offset: 1px;
}
.form-status {
  min-height: 1.4em;
  margin-top: 14px;
  font-size: 14px;
  font-weight: 600;
  color: var(--yes);
}
.form-status.error { color: #ff9b8c; }
.fineprint {
  margin-top: 16px;
  font-size: 12px;
  color: var(--faint);
}

.footer {
  border-top: 1px solid var(--line);
  padding: 28px 22px 40px;
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  gap: 12px;
  color: var(--muted);
  font-size: 13px;
}
.footer > div:first-child {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 700;
}
.footer img { border-radius: 8px; }
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-links a:hover { color: var(--yes); }
.copy { color: var(--faint); font-size: 12px; }

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

.hero-honest {
  margin-top: 14px;
  max-width: 36rem;
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.45;
}
.hero-honest strong { color: var(--gold); }
.hero-honest em { color: var(--yes); font-style: normal; font-weight: 600; }

.nav-linkish {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
}
.nav-linkish:hover { color: var(--yes); }
.footer-links .nav-linkish { color: var(--muted); }

/* —— Corner orb: bottom-LEFT (not top-right SaaS junk) —— */
.wizard-orb {
  position: fixed;
  left: max(14px, env(safe-area-inset-left));
  bottom: max(14px, env(safe-area-inset-bottom));
  z-index: 900;
  width: 72px;
  height: 72px;
  min-width: 72px;
  min-height: 72px;
  border-radius: 50%;
  border: 1px solid var(--yes-border);
  background: radial-gradient(circle at 35% 30%, #1a4a2e, #070c0a 70%);
  box-shadow: 0 0 0 0 #3d9a5866, 0 12px 40px #000a;
  cursor: pointer;
  display: grid;
  place-items: center;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  animation: orb-pulse 2.8s ease-in-out infinite;
}
.wizard-orb-pulse-once {
  animation: orb-pulse 1s ease-in-out 3;
}
.wizard-orb img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  position: relative;
  z-index: 1;
}
.wizard-orb-ring {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid #3d9a5555;
  pointer-events: none;
}
.wizard-orb-label {
  position: absolute;
  left: calc(100% + 10px);
  top: 50%;
  transform: translateY(-50%);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--yes);
  background: #0c1612ee;
  border: 1px solid var(--line);
  padding: 6px 10px;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 8px 24px #0008;
}
.wizard-orb:hover {
  filter: brightness(1.1);
  box-shadow: 0 0 32px #3d9a5888, 0 12px 40px #000a;
}
.wizard-orb.is-hidden { display: none; }

@keyframes orb-pulse {
  0%, 100% { box-shadow: 0 0 0 0 #3d9a5844, 0 12px 40px #000a; }
  50% { box-shadow: 0 0 0 12px #3d9a5800, 0 12px 40px #000a; }
}

/* Body lock when demo open (mobile scroll fix) */
body.wizard-open {
  overflow: hidden;
  touch-action: none;
}

/* —— Experience sheet ——
   Class-based open (Safari-safe). Never rely on display:grid fighting [hidden]. */
.wizard-sheet {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  place-items: end start;
  padding: 16px;
  pointer-events: none;
}
.wizard-sheet.is-open {
  display: grid;
  pointer-events: auto;
}
.wizard-sheet[hidden]:not(.is-open) {
  display: none !important;
  pointer-events: none !important;
}
.wizard-sheet-backdrop {
  position: absolute;
  inset: 0;
  background: #02080688;
  backdrop-filter: blur(4px);
}
.wizard-sheet-panel {
  position: relative;
  z-index: 1;
  width: min(420px, calc(100vw - 32px));
  max-height: min(720px, calc(100vh - 32px));
  margin: 0 0 8px 8px;
  display: flex;
  flex-direction: column;
  border-radius: 22px;
  border: 1px solid var(--yes-border);
  background: linear-gradient(165deg, #0f1f18, #070c0a 50%);
  box-shadow: 0 24px 80px #000c, 0 0 40px #3d9a5533;
  overflow: hidden;
  animation: sheet-in 0.28s ease-out;
}
@keyframes sheet-in {
  from { opacity: 0; transform: translateY(16px) scale(0.98); }
  to { opacity: 1; transform: none; }
}
.wizard-sheet-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 16px 12px;
  border-bottom: 1px solid var(--line);
}
.wizard-sheet-brand {
  display: flex;
  gap: 12px;
  align-items: center;
}
.wizard-sheet-brand img {
  border-radius: 12px;
  border: 1px solid var(--line);
}
.wizard-sheet-brand h2 {
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}
.wizard-sheet-brand p {
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
}
.wizard-sheet-x {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: #0a1410;
  color: var(--ink);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}
.wizard-caps {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 10px 16px;
  border-bottom: 1px solid #1e3a2a55;
}
.cap {
  font-size: 11px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--faint);
}
.cap.on {
  color: var(--yes);
  border-color: var(--yes-border);
  background: var(--yes-bg);
}
.cap.off {
  text-decoration: line-through;
  opacity: 0.55;
}
.wizard-log {
  flex: 1;
  min-height: 200px;
  max-height: 360px;
  overflow-y: auto;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.wiz-msg {
  max-width: 92%;
  padding: 10px 12px;
  border-radius: 14px;
  font-size: 14px;
  line-height: 1.4;
}
.wiz-msg.bot {
  align-self: flex-start;
  background: #0c1612;
  border: 1px solid var(--line);
  color: #d8eedc;
}
.wiz-msg.user {
  align-self: flex-end;
  background: #123d24;
  border: 1px solid var(--yes-border);
  color: var(--yes);
}
.wiz-msg .meta {
  display: block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 4px;
}
.wizard-quick {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 0 16px 10px;
}
.wizard-quick button {
  font: inherit;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #0a1410;
  color: var(--muted);
  cursor: pointer;
}
.wizard-quick button:hover {
  color: var(--ink);
  border-color: var(--yes-border);
}
.wizard-talk-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  padding: 12px 16px 4px;
  border-top: 1px solid var(--line);
}
.wizard-talk-row .talk-btn {
  min-width: 108px;
  font-weight: 800;
  box-shadow: 0 0 20px #3d9a5844;
}
.wizard-talk-row .talk-btn.is-live {
  background: #2a1810;
  border-color: #a06040;
  color: #ffc8a0;
  animation: pulse 1.4s ease-in-out infinite;
}
.wizard-talk-row .talk-end {
  border-color: #5a3030;
  color: #ff9b8c;
}
.wizard-talk-row .talk-status {
  flex: 1 1 140px;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
}
.wizard-talk-row .talk-status.live {
  color: var(--yes);
}
.wizard-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  padding: 12px 16px;
  border-top: none;
}
.wizard-form input {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #070c0a;
  color: var(--ink);
  font: inherit;
  font-size: 14px;
}
.wizard-form input:focus {
  outline: 2px solid var(--yes);
  outline-offset: 1px;
}
.wizard-form .btn {
  padding: 12px 14px;
  font-size: 13px;
}
.wizard-form .btn.listening {
  border-color: #e85a5a;
  color: #ff9b8c;
  box-shadow: 0 0 16px #e85a5a44;
}
.wizard-fine {
  padding: 0 16px 14px;
  font-size: 11px;
  color: var(--faint);
  line-height: 1.4;
}

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; padding-top: 36px; }
  .hero-visual { min-height: 320px; order: -1; }
  .grid-3 { grid-template-columns: 1fr; }
  .split, .vision-grid { grid-template-columns: 1fr; }
  .nav nav a:not(.nav-cta) { display: none; }
  .nav nav .nav-linkish { display: none; }
  .float-card.secondary { display: none; }
  .wizard-orb-label { display: none; }
  .wizard-orb {
    left: max(12px, env(safe-area-inset-left));
    bottom: max(12px, env(safe-area-inset-bottom));
    width: 64px;
    height: 64px;
    min-width: 64px;
    min-height: 64px;
  }
  .wizard-sheet.is-open { place-items: end center; padding: 10px; }
  .wizard-sheet-panel {
    margin: 0;
    width: min(100%, calc(100vw - 20px));
    max-height: min(85vh, calc(100vh - 20px));
  }
  .wizard-form {
    grid-template-columns: 1fr;
  }
  .wizard-form .btn { width: 100%; }
  .wizard-form #wizard-send { order: -1; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn:hover { transform: none; }
  .wizard-orb { animation: none; }
  .wizard-sheet-panel { animation: none; }
}
