:root {
  --bg: #0A0A12;
  --surface: #111118;
  --surface-2: #1A1A24;
  --accent: #F5A623;
  --accent-dim: rgba(245, 166, 35, 0.12);
  --text: #FAFAFA;
  --text-muted: #8A8A9A;
  --border: rgba(255,255,255,0.07);
}

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ---- HERO ---- */
.hero {
  position: relative;
  padding: 100px 0 80px;
  overflow: hidden;
}
.hero-glow {
  position: absolute;
  top: -120px;
  right: -80px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(245,166,35,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-badge {
  display: inline-block;
  background: var(--accent-dim);
  border: 1px solid rgba(245,166,35,0.25);
  color: var(--accent);
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 28px;
}
.hero-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 24px;
}
.hero-headline .highlight {
  color: var(--accent);
}
.hero-sub {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 440px;
  margin-bottom: 48px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
}
.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0 32px 0 0;
}
.stat:first-child { padding-left: 0; }
.stat-number {
  font-family: 'Syne', sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--text);
}
.stat-label {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
  margin-right: 32px;
}

/* ---- DASHBOARD MOCK ---- */
.dashboard-mock {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.4);
}
.mock-header {
  background: var(--surface-2);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--border);
}
.mock-dots {
  display: flex;
  gap: 6px;
}
.mock-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border);
}
.mock-dots span:first-child { background: #FF5F57; }
.mock-dots span:nth-child(2) { background: #FEBC2E; }
.mock-dots span:last-child { background: #28C840; }
.mock-title {
  font-family: 'Syne', sans-serif;
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}
.mock-body { padding: 20px; }
.mock-section { margin-bottom: 20px; }
.mock-section:last-child { margin-bottom: 0; }
.mock-label {
  font-size: 9px;
  letter-spacing: 0.14em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.mock-log { display: flex; flex-direction: column; gap: 8px; }
.log-entry {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 11.5px;
  color: var(--text-muted);
  padding: 8px 10px;
  border-radius: 6px;
  background: var(--surface-2);
}
.log-entry.done { border-left: 2px solid #28C840; }
.log-entry.active { border-left: 2px solid var(--accent); }
.log-time {
  font-size: 10px;
  color: var(--text-muted);
  min-width: 36px;
  opacity: 0.7;
  font-family: 'DM Mono', monospace;
}
.log-text { color: #C0C0CC; line-height: 1.4; }
.mock-metrics { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 8px; }
.metric-card {
  background: var(--surface-2);
  border-radius: 8px;
  padding: 10px 12px;
  border-left: 2px solid #28C840;
}
.metric-label {
  display: block;
  font-size: 9px;
  color: var(--text-muted);
  margin-bottom: 4px;
  letter-spacing: 0.05em;
}
.metric-val {
  font-family: 'Syne', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
}

/* ---- MANIFESTO ---- */
.manifesto {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 100px 0;
}
.manifesto-inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 48px;
  text-align: center;
}
.manifesto-tag {
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
}
.manifesto-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
}
.manifesto-headline em {
  font-style: normal;
  color: var(--accent);
}
.manifesto-body {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 20px;
}
.manifesto-body:last-child { margin-bottom: 0; }

/* ---- HOW IT WORKS ---- */
.how-it-works {
  padding: 100px 0;
}
.hiw-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 48px;
}
.hiw-tag {
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.hiw-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(24px, 3.5vw, 38px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 64px;
}
.hiw-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}
.hiw-step {
  flex: 1;
}
.step-number {
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 16px;
}
.step-content h3 {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.step-content p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}
.hiw-connector {
  display: flex;
  align-items: center;
  padding: 0 24px;
  flex-shrink: 0;
  padding-top: 20px;
}

/* ---- OUTCOMES ---- */
.outcomes {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 100px 0;
}
.outcomes-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}
.outcomes-tag {
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
  text-align: center;
}
.outcomes-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(24px, 3.5vw, 38px);
  font-weight: 700;
  letter-spacing: -0.02em;
  text-align: center;
  margin-bottom: 64px;
  line-height: 1.3;
}
.outcome-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.outcome-card {
  background: var(--bg);
  padding: 36px 32px;
  border: 1px solid var(--border);
  transition: border-color 0.2s;
}
.outcome-card:hover { border-color: rgba(245,166,35,0.2); }
.outcome-icon {
  margin-bottom: 20px;
}
.outcome-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
}
.outcome-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ---- CLOSING ---- */
.closing {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.closing-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(245,166,35,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.closing-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 48px;
  text-align: center;
  position: relative;
}
.closing-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.closing-sub {
  font-family: 'Syne', sans-serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--text-muted);
}

/* ---- FOOTER ---- */
.footer {
  border-top: 1px solid var(--border);
  padding: 40px 0;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Syne', sans-serif;
  font-size: 16px;
  font-weight: 700;
}
.footer-tagline {
  font-size: 13px;
  color: var(--text-muted);
}
.footer-note {
  font-size: 13px;
  color: var(--text-muted);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero-left { order: 2; }
  .hero-right { order: 1; }
  .hiw-steps { flex-direction: column; gap: 32px; }
  .hiw-connector { display: none; }
  .outcome-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; gap: 20px; text-align: center; }
}
@media (max-width: 600px) {
  .hero { padding: 64px 0 48px; }
  .hero-inner, .manifesto-inner, .hiw-inner, .outcomes-inner, .closing-inner, .footer-inner { padding: 0 24px; }
  .manifesto, .how-it-works, .outcomes, .closing { padding: 64px 0; }
  .hero-stats { flex-direction: column; gap: 16px; }
  .stat-divider { display: none; }
  .stat { padding: 0; }
  .mock-metrics { grid-template-columns: 1fr; }
}