:root {
  --bg: #0f0f14;
  --surface: #18181f;
  --surface2: #22222d;
  --amber: #f5a623;
  --amber-dim: rgba(245, 166, 35, 0.15);
  --green: #4ade80;
  --text: #e8e5df;
  --text-muted: #7a7872;
  --border: rgba(255,255,255,0.07);
  --font-display: 'Syne', sans-serif;
  --font-body: 'Figtree', sans-serif;
}

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

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

/* Navbar */
.navbar {
  padding: 20px 40px;
  border-bottom: 1px solid var(--border);
}
.navbar-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 1200px;
  margin: 0 auto;
}
.navbar-brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.3px;
}
.navbar-tag {
  font-size: 11px;
  font-family: var(--font-body);
  color: var(--text-muted);
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: 0.5px;
}

/* Hero */
.hero {
  padding: 80px 40px 100px;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-eyebrow {
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 24px;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 460px;
}

/* Viz card */
.viz-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  font-family: 'JetBrains Mono', 'Courier New', monospace;
  font-size: 12px;
}
.viz-header {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.viz-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--surface2); }
.viz-dot.amber { background: var(--amber); }
.viz-dot.green { background: var(--green); }
.viz-label { margin-left: auto; color: var(--text-muted); font-size: 11px; }

.viz-metrics { display: flex; flex-direction: column; gap: 12px; margin-bottom: 20px; }
.viz-row { display: flex; justify-content: space-between; align-items: center; }
.viz-key { color: var(--text-muted); font-size: 11px; }
.viz-val { font-weight: 700; font-size: 16px; }
.viz-val.amber-val { color: var(--amber); }

.viz-chart {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 60px;
  margin-bottom: 16px;
  padding: 12px 16px;
  background: var(--surface2);
  border-radius: 8px;
}
.chart-bar {
  flex: 1;
  background: #333340;
  border-radius: 2px;
  transition: background 0.2s;
}
.chart-bar.amber-bar { background: var(--amber); }

.viz-footer {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.viz-tag {
  font-size: 10px;
  padding: 3px 8px;
  background: var(--amber-dim);
  color: var(--amber);
  border-radius: 4px;
}

/* Manifesto */
.manifesto {
  padding: 60px 40px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}
.manifesto-inner { max-width: 1200px; margin: 0 auto; }
.manifesto-quote {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin-bottom: 24px;
}
.manifesto-body {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 620px;
  line-height: 1.7;
}

/* Features */
.features { padding: 80px 40px; }
.features-inner { max-width: 1200px; margin: 0 auto; }
.section-label {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 48px;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}
.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px;
  transition: border-color 0.2s;
}
.feature-card:hover { border-color: rgba(245, 166, 35, 0.3); }
.feature-icon {
  color: var(--amber);
  margin-bottom: 20px;
}
.feature-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}
.feature-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Outcomes */
.outcomes {
  padding: 60px 40px;
  border-top: 1px solid var(--border);
  background: var(--surface);
}
.outcomes-inner { max-width: 1200px; margin: 0 auto; }
.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.outcome-num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 800;
  letter-spacing: -2px;
  color: var(--amber);
  margin-bottom: 8px;
}
.outcome-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Closing */
.closing { padding: 100px 40px; }
.closing-inner { max-width: 1200px; margin: 0 auto; }
.closing-statement {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.5vw, 32px);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.5px;
  max-width: 680px;
  color: var(--text-muted);
}

/* Footer */
.footer {
  padding: 24px 40px;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
}
.footer-divider { color: var(--text-muted); }
.footer-meta { font-size: 13px; color: var(--text-muted); }

/* Navbar actions */
.navbar-inner { justify-content: flex-start; }
.navbar-actions { margin-left: auto; display: flex; align-items: center; gap: 16px; }
.navbar-brand { text-decoration: none; color: var(--text); }
.navbar-brand:hover { color: var(--amber); }
.navbar-link { font-size: 14px; color: var(--text-muted); text-decoration: none; }
.navbar-link:hover { color: var(--text); }
.navbar-cta {
  font-size: 13px; font-weight: 600;
  background: var(--amber); color: #0f0f14;
  padding: 7px 16px; border-radius: 6px;
  text-decoration: none; transition: opacity 0.15s;
}
.navbar-cta:hover { opacity: 0.85; }

/* Hero CTAs */
.hero-cta-row { display: flex; align-items: center; gap: 20px; margin-top: 32px; flex-wrap: wrap; }
.btn-primary {
  display: inline-block;
  background: var(--amber); color: #0f0f14;
  font-weight: 700; font-size: 15px;
  padding: 12px 24px; border-radius: 8px;
  text-decoration: none; transition: opacity 0.15s;
  border: none; cursor: pointer;
}
.btn-primary:hover { opacity: 0.85; }
.btn-ghost {
  display: inline-block;
  color: var(--text-muted); font-size: 15px;
  text-decoration: none; transition: color 0.15s;
  border: none; background: none; cursor: pointer;
}
.btn-ghost:hover { color: var(--text); }

/* Closing CTA */
.closing-cta-row { margin-top: 36px; }

/* Footer link */
.footer-link { text-decoration: none; }
.footer-link:hover { color: var(--amber); }

/* Pricing CTA section (homepage teaser) */
.pricing-cta {
  padding: 80px 40px;
  border-top: 1px solid var(--border);
}
.pricing-cta-inner { max-width: 1200px; margin: 0 auto; }
.pricing-cta-headline {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 48px;
}
.pricing-cta-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.pricing-cta-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 28px;
  position: relative;
  transition: border-color 0.2s;
}
.pricing-cta-card:hover { border-color: rgba(245,166,35,0.3); }
.pricing-cta-card.featured { border-color: var(--amber); }
.plan-badge {
  font-size: 11px; letter-spacing: 1px; text-transform: uppercase;
  color: var(--amber); margin-bottom: 12px; font-weight: 600;
}
.plan-name {
  font-family: var(--font-display);
  font-size: 18px; font-weight: 700;
  margin-bottom: 8px;
}
.plan-price {
  font-family: var(--font-display);
  font-size: 40px; font-weight: 800;
  letter-spacing: -1.5px;
  color: var(--amber); margin-bottom: 12px;
}
.plan-period { font-size: 16px; font-weight: 400; color: var(--text-muted); }
.plan-desc { font-size: 14px; color: var(--text-muted); line-height: 1.55; margin-bottom: 28px; }
.plan-btn { display: inline-block; }

/* Full pricing page */
.pricing-page {
  padding: 80px 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.pricing-page-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -1.5px;
  margin-bottom: 16px;
}
.pricing-page-sub {
  font-size: 17px; color: var(--text-muted);
  max-width: 520px; line-height: 1.65;
  margin-bottom: 64px;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 80px;
}
.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px 32px;
  position: relative;
}
.pricing-card.featured { border-color: var(--amber); }
.pricing-features-list {
  list-style: none;
  margin: 0 0 32px;
  display: flex; flex-direction: column; gap: 10px;
}
.pricing-features-list li {
  font-size: 14px; color: var(--text-muted);
  padding-left: 20px; position: relative;
}
.pricing-features-list li::before {
  content: "✓";
  position: absolute; left: 0;
  color: var(--amber); font-weight: 700;
}
/* Enterprise form */
.enterprise-form-section {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 48px;
  max-width: 640px;
  scroll-margin-top: 80px;
}
.enterprise-form-section h2 {
  font-family: var(--font-display);
  font-size: 28px; font-weight: 700;
  letter-spacing: -0.5px; margin-bottom: 8px;
}
.enterprise-form-section .form-sub {
  font-size: 15px; color: var(--text-muted); margin-bottom: 32px;
}
.form-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 20px; }
.form-field label { font-size: 13px; font-weight: 600; color: var(--text); }
.form-field input, .form-field textarea {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 14px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
  transition: border-color 0.15s;
}
.form-field input:focus, .form-field textarea:focus { border-color: var(--amber); }
.form-field textarea { resize: vertical; min-height: 100px; }
.form-success {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 48px;
  max-width: 640px;
}
.form-success h2 { font-family: var(--font-display); font-size: 26px; margin-bottom: 12px; }
.form-success p { color: var(--text-muted); font-size: 15px; }

/* Checkout success */
.checkout-success {
  padding: 100px 40px;
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}
.checkout-success h1 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800; letter-spacing: -1px;
  margin-bottom: 16px;
}
.checkout-success p { font-size: 16px; color: var(--text-muted); line-height: 1.65; margin-bottom: 12px; }
.checkout-success .back-link { display: inline-block; margin-top: 32px; }

/* Responsive */
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-viz { display: none; }
  .features-grid { grid-template-columns: 1fr; }
  .outcomes-grid { grid-template-columns: 1fr; gap: 32px; }
  .pricing-cta-cards, .pricing-grid { grid-template-columns: 1fr; }
  .navbar-actions .navbar-cta { display: none; }
  .navbar, .manifesto, .features, .outcomes, .closing, .footer, .pricing-cta { padding-left: 24px; padding-right: 24px; }
  .hero { padding: 60px 24px 80px; }
  .pricing-page { padding: 60px 24px; }
}