:root {
  --bg: #0D0D1A;
  --surface: #14142A;
  --surface-2: #1E1E38;
  --accent: #FFB800;
  --accent-dim: #C88F00;
  --fg: #F5F0E8;
  --fg-muted: #A0A0B8;
  --fg-subtle: #6B6B80;
  --border: #2A2A45;
  --tag-bg: #1E1E38;
  --tag-accent: rgba(255,184,0,0.12);
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --radius: 8px;
}

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

html { scroll-behavior: smooth; }

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

/* HERO */
.hero {
  padding: 80px 48px 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  border-bottom: 1px solid var(--border);
}

.eyebrow {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 20px;
}

.hero-text h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.hero-text h1 em {
  font-style: normal;
  color: var(--accent);
}

.lede {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.65;
  max-width: 480px;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.stat { display: flex; flex-direction: column; gap: 4px; }

.stat-num {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.stat-label {
  font-size: 14px;
  color: var(--fg-muted);
}

/* DASHBOARD MOCK */
.hero-visual { display: flex; align-items: center; justify-content: center; }

.dashboard-mock {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  width: 100%;
  max-width: 420px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,184,0,0.08);
}

.mock-bar {
  background: var(--surface-2);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--border);
}

.dot { width: 10px; height: 10px; border-radius: 50%; display: inline-block; }
.dot-r { background: #FF5F57; }
.dot-y { background: #FFBD2E; }
.dot-g { background: #28CA41; }

.mock-title {
  font-size: 11px;
  color: var(--fg-subtle);
  margin-left: 8px;
  font-family: var(--font-body);
}

.mock-body { padding: 16px; display: flex; flex-direction: column; gap: 10px; }

.mock-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }

.mock-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px;
}

.card-active { border-color: var(--accent); }

.card-label { font-size: 10px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--fg-subtle); margin-bottom: 4px; }
.card-val { font-size: 13px; font-weight: 500; margin-bottom: 6px; color: var(--fg); }
.card-status { font-size: 11px; color: var(--fg-muted); }
.card-status.ok { color: #28CA41; }

.progress-bar { height: 4px; background: var(--surface-2); border-radius: 2px; overflow: hidden; }
.progress-fill { height: 100%; width: 40%; background: var(--accent); border-radius: 2px; }

.mock-actions { display: flex; gap: 8px; }
.mock-btn { background: var(--accent); color: var(--bg); font-size: 12px; font-weight: 600; padding: 8px 14px; border-radius: 6px; text-align: center; flex: 1; }
.mock-btn-muted { background: var(--surface-2); border: 1px solid var(--border); color: var(--fg-muted); font-size: 12px; padding: 8px 14px; border-radius: 6px; text-align: center; flex: 1; }

/* MANIFESTO */
.manifesto { padding: 96px 48px; background: var(--surface); }
.manifesto-inner { max-width: 800px; margin: 0 auto; }
.section-tag { font-family: var(--font-display); font-size: 11px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--accent); display: block; margin-bottom: 20px; }

.manifesto h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}

.manifesto p { font-size: 17px; color: var(--fg-muted); margin-bottom: 16px; line-height: 1.7; }
.manifesto p strong { color: var(--fg); }

.split-bar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
  margin-top: 40px;
  padding: 28px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
}

.split-label { font-family: var(--font-display); font-size: 15px; font-weight: 700; display: block; margin-bottom: 6px; }
.split-label.accent { color: var(--accent); }
.split-desc { font-size: 13px; color: var(--fg-muted); line-height: 1.5; }
.split-arrow { font-size: 24px; color: var(--fg-subtle); }
.split-right .split-label { color: var(--accent); }

/* PROOF */
.proof { padding: 80px 48px; border-top: 1px solid var(--border); }
.proof-inner { max-width: 1100px; margin: 0 auto; }
.proof-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; margin-bottom: 20px; }
.proof-stat { background: var(--bg); padding: 32px 28px; }
.proof-num { font-family: var(--font-display); font-size: clamp(32px, 3.5vw, 44px); font-weight: 800; color: var(--accent); line-height: 1; margin-bottom: 12px; }
.proof-label { font-size: 13px; color: var(--fg-muted); line-height: 1.55; }
.proof-source { font-size: 12px; color: var(--fg-subtle); text-align: center; }

/* PROCESS */
.process { padding: 96px 48px; background: var(--surface); }
.process-inner { max-width: 900px; margin: 0 auto; }
.process h2 { font-family: var(--font-display); font-size: clamp(28px, 3.5vw, 44px); font-weight: 800; line-height: 1.12; letter-spacing: -0.02em; margin-bottom: 56px; }
.process-steps { display: flex; flex-direction: column; gap: 0; }
.step { display: grid; grid-template-columns: 80px 1fr; gap: 32px; padding: 40px 0; border-top: 1px solid var(--border); }
.step:first-child { border-top: none; padding-top: 0; }
.step-num { font-family: var(--font-display); font-size: 48px; font-weight: 800; color: var(--fg-subtle); line-height: 1; }
.step-content h3 { font-family: var(--font-display); font-size: 20px; font-weight: 700; margin-bottom: 12px; }
.step-content p { font-size: 15px; color: var(--fg-muted); line-height: 1.65; }

/* VERTICALS */
.verticals { padding: 96px 48px; border-top: 1px solid var(--border); }
.verticals-inner { max-width: 1100px; margin: 0 auto; }
.verticals h2 { font-family: var(--font-display); font-size: clamp(28px, 3.5vw, 44px); font-weight: 800; line-height: 1.12; letter-spacing: -0.02em; margin-bottom: 56px; }
.verticals-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.vertical { background: var(--surface); border: 1px solid var(--border); border-radius: 12px; padding: 32px; }
.v-icon { font-size: 28px; color: var(--accent); margin-bottom: 16px; }
.vertical h3 { font-family: var(--font-display); font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.vertical > p { font-size: 14px; color: var(--fg-muted); line-height: 1.6; margin-bottom: 20px; }
.v-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.v-list li { font-size: 13px; color: var(--fg-muted); padding-left: 16px; position: relative; }
.v-list li::before { content: '→'; position: absolute; left: 0; color: var(--accent); font-size: 11px; top: 2px; }

/* CLOSE */
.close { padding: 96px 48px; background: var(--surface); border-top: 1px solid var(--border); }
.close-inner { max-width: 700px; margin: 0 auto; text-align: center; }
.close h2 { font-family: var(--font-display); font-size: clamp(28px, 3.5vw, 44px); font-weight: 800; line-height: 1.12; letter-spacing: -0.02em; margin-bottom: 24px; }
.close p { font-size: 17px; color: var(--fg-muted); line-height: 1.7; margin-bottom: 16px; }
.close p:last-child { margin-bottom: 0; }

/* FOOTER */
footer { padding: 40px 48px; border-top: 1px solid var(--border); }
.footer-inner { max-width: 1100px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; }
.footer-name { font-family: var(--font-display); font-size: 18px; font-weight: 700; display: block; }
.footer-tagline { font-size: 13px; color: var(--fg-subtle); }
.footer-meta { font-size: 13px; color: var(--fg-subtle); }
.footer-meta strong { color: var(--fg-muted); }

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; padding: 48px 24px 40px; }
  .hero-visual { display: none; }
  .proof-grid { grid-template-columns: repeat(2, 1fr); }
  .verticals-grid { grid-template-columns: 1fr; }
  .manifesto, .process, .verticals, .close { padding: 64px 24px; }
  .proof { padding: 64px 24px; }
  footer { padding: 32px 24px; }
  .footer-inner { flex-direction: column; gap: 12px; text-align: center; }
}

@media (max-width: 600px) {
  .proof-grid { grid-template-columns: 1fr; }
  .step { grid-template-columns: 1fr; gap: 12px; }
  .step-num { font-size: 32px; }
  .split-bar { grid-template-columns: 1fr; }
  .split-arrow { display: none; }
}