:root {
  --bg-dark: #0b1a2e;
  --bg-mid: #0f2340;
  --bg-card: #132847;
  --accent: #f97316;
  --accent-dim: rgba(249, 115, 22, 0.12);
  --text-light: #f1f5f9;
  --text-mid: #94a3b8;
  --text-dim: #64748b;
  --border: rgba(255,255,255,0.08);
  --green: #22c55e;
  --green-dim: rgba(34, 197, 94, 0.12);
  --font-display: 'Syne', sans-serif;
  --font-body: 'Figtree', sans-serif;
}

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

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

/* Navigation */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(11, 26, 46, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 32px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.5px;
}
.nav-tagline {
  font-size: 13px;
  color: var(--text-dim);
  font-weight: 500;
}

/* Hero */
.hero {
  position: relative;
  padding: 140px 0 80px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 70% 40%, rgba(249, 115, 22, 0.08) 0%, transparent 70%),
    radial-gradient(ellipse 80% 60% at 20% 80%, rgba(14, 40, 80, 0.5) 0%, transparent 70%);
}
.hero-inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid rgba(249, 115, 22, 0.25);
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -1.5px;
  color: var(--text-light);
  margin-bottom: 20px;
}
.hero-sub {
  font-size: 18px;
  color: var(--text-mid);
  line-height: 1.65;
  max-width: 420px;
  margin-bottom: 36px;
}
.hero-stat-row {
  display: flex;
  align-items: center;
  gap: 20px;
}
.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--text-light);
}
.hero-stat-label {
  font-size: 12px;
  color: var(--text-dim);
}
.hero-stat-div {
  width: 1px;
  height: 32px;
  background: var(--border);
}

/* Mockup */
.hero-mockup { display: flex; justify-content: center; }
.mockup-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  width: 100%;
  max-width: 400px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.5);
}
.mockup-topbar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: rgba(255,255,255,0.04);
  border-bottom: 1px solid var(--border);
}
.mockup-dot {
  width: 10px; height: 10px; border-radius: 50%;
}
.mockup-dot.red { background: #ff5f57; }
.mockup-dot.yellow { background: #febc2e; }
.mockup-dot.green { background: #28c840; }
.mockup-title {
  font-size: 12px;
  color: var(--text-dim);
  margin-left: 6px;
  font-weight: 500;
}
.mockup-question { padding: 20px; }
.mockup-q-label {
  font-size: 11px;
  color: var(--accent);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}
.mockup-q-text {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 16px;
  line-height: 1.4;
}
.mockup-options { display: flex; flex-direction: column; gap: 8px; }
.mockup-opt {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 13px;
  color: var(--text-mid);
  font-weight: 500;
}
.mockup-opt.selected {
  background: rgba(249, 115, 22, 0.1);
  border-color: rgba(249, 115, 22, 0.4);
  color: var(--text-light);
}
.mockup-analysis { padding: 0 20px 20px; }
.analysis-bar { margin-bottom: 12px; }
.analysis-label { font-size: 11px; color: var(--text-dim); margin-bottom: 6px; font-weight: 500; }
.analysis-track { height: 6px; background: rgba(255,255,255,0.08); border-radius: 99px; overflow: hidden; }
.analysis-fill { height: 100%; background: linear-gradient(90deg, var(--accent), #fb923c); border-radius: 99px; }
.analysis-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.tag {
  font-size: 11px;
  padding: 3px 9px;
  border-radius: 100px;
  font-weight: 500;
}
.tag.weak { background: rgba(239, 68, 68, 0.15); color: #fca5a5; border: 1px solid rgba(239,68,68,0.2); }
.tag.ok { background: rgba(234, 179, 8, 0.12); color: #fcd34d; border: 1px solid rgba(234,179,8,0.2); }
.tag.strong { background: var(--green-dim); color: #86efac; border: 1px solid rgba(34,197,94,0.2); }

/* Trust */
.trust {
  padding: 48px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.trust-inner { max-width: 1200px; margin: 0 auto; padding: 0 32px; text-align: center; }
.trust-label { font-size: 13px; color: var(--text-dim); margin-bottom: 20px; text-transform: uppercase; letter-spacing: 0.08em; font-weight: 500; }
.trust-logos { display: flex; align-items: center; justify-content: center; gap: 0; flex-wrap: wrap; }
.trust-logo { font-family: var(--font-display); font-size: 15px; font-weight: 600; color: var(--text-mid); padding: 8px 24px; }
.trust-logo-sep { width: 1px; height: 18px; background: var(--border); }

/* Section shared */
.section-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.section-eyebrow.light { color: rgba(249,115,22,0.7); }
.section-headline {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.8px;
  color: var(--text-light);
  margin-bottom: 48px;
}
.section-headline.light { color: var(--text-light); }

/* How it works */
.hiw { padding: 96px 0; }
.hiw-inner { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.hiw-steps { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.hiw-step { display: flex; gap: 20px; align-items: flex-start; }
.hiw-num {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid rgba(249,115,22,0.2);
  width: 36px; height: 36px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  letter-spacing: 0.02em;
}
.hiw-content h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 8px;
}
.hiw-content p { font-size: 15px; color: var(--text-mid); line-height: 1.6; }

/* Features */
.features {
  padding: 96px 0;
  background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-mid) 100%);
}
.features-inner { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
}
.feature-icon {
  font-size: 28px;
  color: var(--accent);
  margin-bottom: 16px;
  font-family: var(--font-display);
  font-weight: 700;
}
.feature-card h3 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 10px;
}
.feature-card p { font-size: 14px; color: var(--text-mid); line-height: 1.6; }

/* Outcomes */
.outcomes { padding: 96px 0; }
.outcomes-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.outcomes-body { font-size: 16px; color: var(--text-mid); line-height: 1.7; margin-top: 20px; }
.outcomes-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.outcome { display: flex; gap: 14px; align-items: flex-start; }
.outcome-check {
  width: 22px; height: 22px;
  background: var(--green-dim);
  border: 1px solid rgba(34,197,94,0.3);
  color: var(--green);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
  margin-top: 1px;
}
.outcome-text { font-size: 15px; color: var(--text-light); line-height: 1.5; }

/* Manifesto */
.manifesto {
  padding: 80px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.manifesto-inner { max-width: 800px; margin: 0 auto; padding: 0 32px; text-align: center; }
.manifesto-quote p { font-size: 20px; color: var(--text-mid); line-height: 1.7; font-style: italic; }
.manifesto-quote p:nth-child(1) { font-size: 22px; color: var(--text-light); font-style: normal; font-family: var(--font-display); font-weight: 600; }
.manifesto-quote p:nth-child(2) { margin-top: 12px; color: var(--text-light); font-style: normal; }
.manifesto-attribution { font-size: 13px; color: var(--text-dim); margin-top: 20px; font-style: normal !important; }

/* Closing */
.closing { padding: 100px 0; text-align: center; }
.closing-inner { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.closing-headline {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -1.5px;
  color: var(--text-light);
  margin-bottom: 16px;
}
.closing-sub { font-size: 20px; color: var(--text-mid); }

/* Footer */
.footer { padding: 48px 0; border-top: 1px solid var(--border); }
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}
.footer-logo { font-family: var(--font-display); font-size: 18px; font-weight: 800; color: var(--accent); }
.footer-brand p { font-size: 13px; color: var(--text-dim); margin-top: 4px; }
.footer-links { display: flex; gap: 24px; }
.footer-links a { font-size: 14px; color: var(--text-dim); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--text-light); }
.footer-copy { font-size: 12px; color: var(--text-dim); }

/* Responsive */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-mockup { order: -1; }
  .hero-headline { font-size: 42px; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .outcomes-inner { grid-template-columns: 1fr; }
  .hiw-steps { grid-template-columns: 1fr; }
  .closing-headline { font-size: 40px; }
}
@media (max-width: 600px) {
  .hero-headline { font-size: 34px; }
  .section-headline { font-size: 28px; }
  .features-grid { grid-template-columns: 1fr; }
  .hero-stat-row { flex-wrap: wrap; }
  .hero-stat-div { display: none; }
  .trust-logos { gap: 8px; }
  .trust-logo-sep { display: none; }
  .trust-logo { padding: 6px 12px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}