:root {
  --bg: #0a0a0b;
  --bg-card: #141416;
  --bg-card-hover: #1c1c1f;
  --fg: #f4f4f2;
  --fg-muted: #8a8a8d;
  --accent: #f59e0b;
  --accent-dim: #78500a;
  --teal: #0d9488;
  --teal-dim: #0a6b63;
  --border: #27272a;
  --font-head: 'Syne', system-ui, sans-serif;
  --font-body: 'Figtree', system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── Navigation ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 2rem;
  border-bottom: 1px solid var(--border);
  background: rgba(10, 10, 11, 0.85);
  backdrop-filter: blur(16px);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.logo-accent { color: var(--accent); }
.nav-tagline { font-size: 0.8rem; color: var(--fg-muted); }

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 7rem 2rem 4rem;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.4;
}
.hero-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}
.hero-shape-1 {
  width: 600px; height: 600px;
  top: -100px; right: -100px;
  background: radial-gradient(circle, rgba(245,158,11,0.08) 0%, transparent 70%);
}
.hero-shape-2 {
  width: 400px; height: 400px;
  bottom: 0; left: 20%;
  background: radial-gradient(circle, rgba(13,148,136,0.06) 0%, transparent 70%);
}
.hero-content {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}
.eyebrow-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-block;
}
.hero-headline {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--fg-muted);
  max-width: 440px;
  line-height: 1.7;
}

/* ── Pipeline Feed ── */
.pipeline-feed {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem;
  font-size: 0.875rem;
}
.feed-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}
.feed-title { font-family: var(--font-head); font-weight: 700; font-size: 0.95rem; }
.feed-status { display: flex; align-items: center; gap: 0.4rem; color: var(--fg-muted); font-size: 0.8rem; }
.status-dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--teal);
}
.pulse { animation: pulse 2s infinite; }
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}
.feed-item {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  padding: 0.875rem 0;
  border-bottom: 1px solid var(--border);
}
.feed-item:last-of-type { border-bottom: none; }
.feed-item.hot { background: rgba(245, 158, 11, 0.06); margin: 0 -1rem; padding: 0.875rem 1rem; border-radius: 8px; }
.feed-icon {
  width: 36px; height: 36px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.feed-icon svg { width: 16px; height: 16px; }
.missed { background: rgba(245, 158, 11, 0.12); color: var(--accent); }
.booked { background: rgba(13, 148, 136, 0.12); color: var(--teal); }
.review { background: rgba(13, 148, 136, 0.12); color: var(--teal); }
.hot-icon { background: rgba(245, 158, 11, 0.18); color: var(--accent); }
.feed-label { font-weight: 600; margin-bottom: 0.2rem; }
.feed-detail { color: var(--fg-muted); font-size: 0.8rem; }
.text-amber { color: var(--accent); font-weight: 600; }
.text-teal { color: var(--teal); font-weight: 600; }
.feed-footer {
  display: flex;
  justify-content: space-between;
  padding-top: 1rem;
  margin-top: 0.5rem;
  font-size: 0.8rem;
  color: var(--fg-muted);
}

/* ── Proof Strip ── */
.proof {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 2rem;
}
.proof-inner { max-width: 1200px; margin: 0 auto; text-align: center; }
.proof-label { font-size: 0.85rem; color: var(--fg-muted); margin-bottom: 0.75rem; }
.proof-pills { display: flex; align-items: center; justify-content: center; gap: 0.75rem; flex-wrap: wrap; }
.pill { font-family: var(--font-head); font-size: 0.9rem; font-weight: 700; color: var(--fg); }
.pill-sep { color: var(--fg-muted); font-size: 0.85rem; }

/* ── Engines ── */
.engines { padding: 6rem 2rem; }
.engines-header { max-width: 1200px; margin: 0 auto 4rem; }
.engines-header h2 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}
.engines-header p { color: var(--fg-muted); max-width: 560px; line-height: 1.7; }
.engine-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.engine-card {
  background: var(--bg-card);
  padding: 2.5rem;
}
.engine-icon {
  width: 48px; height: 48px;
  background: rgba(245, 158, 11, 0.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--accent);
}
.engine-icon svg { width: 22px; height: 22px; }
.engine-card h3 {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}
.engine-count { font-size: 0.75rem; color: var(--accent); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 1.5rem; font-weight: 600; }
.engine-list { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.engine-list li { font-size: 0.9rem; color: var(--fg-muted); padding-left: 1.25rem; position: relative; }
.engine-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--teal);
}

/* ── Stats ── */
.stats {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 4rem 2rem;
}
.stats-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 0;
}
.stat-item { padding: 0 2rem; }
.stat-value {
  font-family: var(--font-head);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-label { font-size: 0.8rem; color: var(--fg-muted); max-width: 180px; line-height: 1.5; }
.stat-divider { width: 1px; height: 60px; background: var(--border); }

/* ── How It Works ── */
.hiw { padding: 6rem 2rem; }
.hiw-header { max-width: 1200px; margin: 0 auto 4rem; }
.hiw-header h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  max-width: 600px;
}
.hiw-steps {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.hiw-step { position: relative; }
.step-num {
  font-family: var(--font-head);
  font-size: 3.5rem;
  font-weight: 800;
  color: rgba(245,158,11,0.15);
  letter-spacing: -0.05em;
  line-height: 1;
  margin-bottom: 1rem;
}
.step-body h3 {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.step-body p { font-size: 0.9rem; color: var(--fg-muted); line-height: 1.7; }

/* ── Pricing ── */
.pricing { padding: 6rem 2rem; background: var(--bg-card); border-top: 1px solid var(--border); }
.pricing-header { max-width: 1200px; margin: 0 auto 4rem; }
.pricing-header h2 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}
.pricing-header p { color: var(--fg-muted); max-width: 500px; line-height: 1.7; }
.pricing-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.price-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem 2rem 2.5rem;
  position: relative;
}
.price-card.featured {
  border-color: var(--accent-dim);
  background: linear-gradient(180deg, rgba(245,158,11,0.05) 0%, var(--bg) 50%);
}
.price-badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #000;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 99px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.price-tier {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 0.25rem;
}
.price-target { font-size: 0.8rem; color: var(--fg-muted); margin-bottom: 1.5rem; }
.price-amount { margin-bottom: 1rem; }
.price-num { font-family: var(--font-head); font-size: 2.2rem; font-weight: 800; color: var(--accent); }
.price-period { font-size: 0.9rem; color: var(--fg-muted); }
.price-desc { font-size: 0.85rem; color: var(--fg-muted); margin-bottom: 1.5rem; line-height: 1.6; }
.price-features { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.price-features li { font-size: 0.875rem; padding-left: 1.25rem; position: relative; }
.price-features li::before { content: '\2713'; position: absolute; left: 0; color: var(--teal); font-weight: 700; }

/* ── Manifesto ── */
.manifesto {
  padding: 6rem 2rem;
  border-top: 1px solid var(--border);
}
.manifesto-inner { max-width: 1200px; margin: 0 auto; }
.manifesto-quote {
  text-align: center;
  margin-bottom: 3rem;
}
.manifesto-quote p {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  font-style: italic;
  color: var(--fg);
  margin-bottom: 0.75rem;
}
.manifesto-attribution { font-size: 0.85rem; color: var(--fg-muted); }
.manifesto-traits {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}
.trait {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 0.5rem 1.25rem;
  border-radius: 99px;
  font-size: 0.85rem;
  font-weight: 600;
}
.manifesto-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.pillar-icon {
  width: 44px; height: 44px;
  background: rgba(245, 158, 11, 0.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  margin-bottom: 1rem;
}
.pillar-icon svg { width: 20px; height: 20px; }
.pillar h4 { font-family: var(--font-head); font-weight: 700; margin-bottom: 0.75rem; }
.pillar p { font-size: 0.875rem; color: var(--fg-muted); line-height: 1.7; }

/* ── Footer ── */
.footer {
  border-top: 1px solid var(--border);
  padding: 3rem 2rem;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.footer-logo { font-family: var(--font-head); font-size: 1.1rem; font-weight: 800; display: block; margin-bottom: 0.5rem; }
.footer-brand p { font-size: 0.85rem; color: var(--fg-muted); max-width: 340px; line-height: 1.6; }
.footer-copy { font-size: 0.8rem; color: var(--fg-muted); }

/* ── Responsive ── */
@media (max-width: 900px) {
  .hero-content { grid-template-columns: 1fr; gap: 3rem; }
  .hero-right { display: none; }
  .engine-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-divider { display: none; }
  .hiw-steps { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .manifesto-pillars { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; gap: 2rem; align-items: flex-start; }
}
@media (max-width: 480px) {
  .hero { padding: 5rem 1.5rem 3rem; }
  .stats-grid { grid-template-columns: 1fr; }
  .nav-tagline { display: none; }
}

/* ── Hero CTAs ── */
.hero-ctas {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.4rem;
  background: var(--accent);
  color: #000;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  transition: opacity 0.15s;
  white-space: nowrap;
}
.btn-primary:hover { opacity: 0.88; }
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.4rem;
  background: transparent;
  color: var(--fg-muted);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  border: 1px solid var(--border);
  border-radius: 6px;
  text-decoration: none;
  transition: border-color 0.15s, color 0.15s;
}
.btn-ghost:hover {
  border-color: var(--fg-muted);
  color: var(--fg);
}

/* ── Hero Soft-Capture Form ── */
.hero-capture-wrap {
  margin-top: 2rem;
  padding: 1.5rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--bg-card);
}
.hero-capture-label {
  font-size: 0.9rem;
  color: var(--fg-muted);
  margin-bottom: 1rem;
}
.hero-capture-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.hero-capture-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}
.hero-capture-optional {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.hero-capture-form input,
.hero-capture-form select,
.hero-capture-form textarea {
  width: 100%;
  padding: 0.6rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.15s;
}
.hero-capture-form input:focus,
.hero-capture-form select:focus,
.hero-capture-form textarea:focus {
  border-color: var(--accent);
}
.hero-capture-form select {
  appearance: none;
  cursor: pointer;
}
.hero-capture-form textarea {
  resize: vertical;
  min-height: 60px;
}
.hero-capture-btn {
  padding: 0.7rem 1.2rem;
  background: var(--accent);
  color: #000;
  border: none;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.15s;
  width: 100%;
}
.hero-capture-btn:hover { opacity: 0.88; }
.hero-capture-btn:disabled { opacity: 0.5; cursor: not-allowed; }
.hc-success {
  color: var(--teal);
  font-weight: 600;
  font-size: 0.95rem;
  margin-top: 0.25rem;
}
.hc-error {
  color: #ef4444;
  font-size: 0.875rem;
  margin-top: 0.25rem;
}
.hero-capture-footnote {
  font-size: 0.8rem;
  color: var(--fg-muted);
  margin-top: 0.5rem;
}

@media (max-width: 480px) {
  .hero-capture-fields { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .btn-primary, .btn-ghost { justify-content: center; }
}

/* ── Waitlist Form ── */
.waitlist-form-wrapper {
  border-top: 1px solid var(--border);
  margin-top: 4rem;
  padding-top: 3rem;
}
.waitlist-form-inner {
  max-width: 480px;
  margin: 0 auto;
  text-align: center;
}
.waitlist-form-inner h3 {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.waitlist-form-inner p {
  color: var(--fg-muted);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}
.waitlist-form {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
}
.waitlist-form input[type="email"] {
  flex: 1;
  max-width: 280px;
  padding: 0.7rem 1rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--bg-card);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.15s;
}
.waitlist-form input[type="email"]:focus {
  border-color: var(--accent);
}
.waitlist-btn {
  padding: 0.7rem 1.2rem;
  background: var(--accent);
  color: #000;
  border: none;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.15s;
}
.waitlist-btn:hover { opacity: 0.88; }
.waitlist-btn:disabled { opacity: 0.5; cursor: not-allowed; }
.waitlist-success {
  margin-top: 1rem;
  color: var(--teal);
  font-weight: 600;
  font-size: 1rem;
}
.waitlist-error {
  margin-top: 0.75rem;
  color: #ef4444;
  font-size: 0.875rem;
}
@media (max-width: 480px) {
  .waitlist-form { flex-direction: column; align-items: stretch; }
  .waitlist-form input[type="email"] { max-width: 100%; }
}