/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #0d0d0d;
  --bg-2: #141414;
  --bg-3: #1a1a1a;
  --fg: #f0ede8;
  --fg-muted: #8a8680;
  --accent: #FFB300;
  --accent-dim: rgba(255,179,0,0.12);
  --accent-glow: rgba(255,179,0,0.25);
  --red-dim: rgba(255,80,80,0.15);
  --green-dim: rgba(80,255,120,0.15);
  --good: #50ff78;
  --bad: #ff5050;
  --border: rgba(255,255,255,0.07);
  --radius: 6px;
  --font-head: 'Space Grotesk', system-ui, sans-serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

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

/* === NAV === */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border);
  background: rgba(13,13,13,0.85);
  backdrop-filter: blur(16px);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 8px;
}
.logo-mark {
  color: var(--accent);
  font-size: 14px;
}
.nav-tagline {
  font-size: 13px;
  color: var(--fg-muted);
  font-family: var(--font-head);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* === HERO === */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 32px 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-eyebrow { margin-bottom: 24px; }
.badge {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(255,179,0,0.3);
  padding: 6px 14px;
  border-radius: 20px;
  background: var(--accent-dim);
}
.hero-headline {
  font-family: var(--font-head);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 28px;
}
.accent { color: var(--accent); }
.hero-lede {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.65;
  max-width: 480px;
  margin-bottom: 48px;
}
.hero-stats {
  display: flex;
  gap: 0;
  align-items: stretch;
}
.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0 28px 0 0;
}
.stat:first-child { padding-left: 0; }
.stat-value {
  font-family: var(--font-head);
  font-size: 26px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.02em;
}
.stat-label {
  font-size: 12px;
  color: var(--fg-muted);
  line-height: 1.4;
}
.stat-divider {
  width: 1px;
  background: var(--border);
  align-self: stretch;
  margin: 0 28px 0 0;
}

/* === DASHBOARD MOCK === */
.hero-right { position: relative; }
.dashboard-mock {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 0 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,179,0,0.08);
  animation: dash-float 6s ease-in-out infinite;
}
@keyframes dash-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.dash-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.dash-title {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  color: var(--fg);
}
.dash-status {
  font-size: 11px;
  font-family: var(--font-head);
  font-weight: 500;
}
.dash-status.live { color: var(--good); }
.dash-metric {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  padding: 8px 12px;
  background: var(--bg-3);
  border-radius: 6px;
}
.dash-label { font-size: 12px; color: var(--fg-muted); }
.dash-value { font-family: var(--font-head); font-size: 15px; font-weight: 700; color: var(--fg); }
.accent-val { color: var(--accent); }

/* Funnel */
.dash-funnel {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 120px;
  margin: 16px 0;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.funnel-bar {
  flex: 1;
  height: var(--h);
  background: var(--bg-3);
  border-radius: 4px 4px 0 0;
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 6px;
  border: 1px solid var(--border);
}
.funnel-bar span {
  font-family: var(--font-head);
  font-size: 10px;
  color: var(--fg-muted);
  font-weight: 500;
}
.funnel-bar--buy {
  background: var(--green-dim);
  border-color: rgba(80,255,120,0.2);
  height: var(--h);
}
.buy-tag { color: var(--good) !important; font-weight: 700 !important; }

.dash-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}
.tag {
  font-size: 11px;
  font-family: var(--font-head);
  color: var(--good);
  background: var(--green-dim);
  border: 1px solid rgba(80,255,120,0.2);
  padding: 4px 10px;
  border-radius: 12px;
}
.dash-footer { margin-top: 12px; }
.dash-update {
  font-size: 11px;
  color: var(--fg-muted);
  font-family: var(--font-head);
}

/* === MANIFESTO === */
.manifesto {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 32px;
}
.manifesto-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.manifesto-text {
  font-size: 20px;
  line-height: 1.7;
  color: var(--fg-muted);
  font-style: italic;
}

/* === SECTIONS === */
.section-label {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--fg);
  margin-bottom: 64px;
}

/* === FUNNEL SECTION === */
.funnel-section { padding: 100px 32px; }
.funnel-inner { max-width: 1200px; margin: 0 auto; }
.funnel-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-bottom: 80px;
  position: relative;
}
.step { position: relative; }
.step-num {
  font-family: var(--font-head);
  font-size: 48px;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.25;
  line-height: 1;
  margin-bottom: 20px;
  letter-spacing: -0.04em;
}
.step-content h3 {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.step-content p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.65;
}
.step-connector {
  position: absolute;
  top: 24px;
  right: -24px;
  width: 48px;
  height: 1px;
  background: linear-gradient(90deg, var(--border), var(--accent));
  display: none;
}

/* Comparison table */
.comparison-table {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.comp-col { padding: 32px; }
.comp-col--bad { background: var(--bg-2); }
.comp-col--good { background: rgba(255,179,0,0.04); border-left: 1px solid var(--border); }
.comp-head {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.comp-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.comp-row:last-child { border-bottom: none; }
.comp-label { font-size: 14px; color: var(--fg-muted); }
.comp-val {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
}
.comp-val.bad { color: var(--bad); }
.comp-val.good { color: var(--good); }

/* === PROOF === */
.proof { padding: 100px 32px; background: var(--bg-2); }
.proof-inner { max-width: 1200px; margin: 0 auto; }
.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.proof-card {
  background: var(--bg-2);
  padding: 48px 40px;
  transition: background 0.2s;
}
.proof-card:hover { background: var(--bg-3); }
.proof-num {
  font-family: var(--font-head);
  font-size: 52px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 16px;
}
.proof-desc {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* === MECHANICS === */
.mechanics { padding: 100px 32px; }
.mechanics-inner { max-width: 1200px; margin: 0 auto; }
.mech-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.mech-item {
  background: var(--bg-2);
  padding: 40px;
  transition: background 0.2s;
  cursor: default;
}
.mech-item:hover { background: var(--bg-3); }
.mech-icon {
  font-size: 18px;
  color: var(--accent);
  margin-bottom: 20px;
  display: block;
}
.mech-item h3 {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 12px;
}
.mech-item p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* === CLOSING === */
.closing {
  padding: 120px 32px;
  position: relative;
  text-align: center;
  overflow: hidden;
}
.closing-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, var(--accent-glow) 0%, transparent 70%);
  pointer-events: none;
}
.closing-inner { max-width: 800px; margin: 0 auto; position: relative; z-index: 1; }
.closing-headline {
  font-family: var(--font-head);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--fg);
  margin-bottom: 32px;
}
.closing-sub {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.65;
  max-width: 600px;
  margin: 0 auto 64px;
}
.closing-vision {
  border-top: 1px solid var(--border);
  padding-top: 40px;
}
.closing-vision p {
  font-size: 14px;
  color: var(--fg-muted);
  font-style: italic;
  line-height: 1.7;
}

/* === FOOTER === */
.footer {
  border-top: 1px solid var(--border);
  padding: 48px 32px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.footer-logo {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  color: var(--fg);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}
.footer-desc { font-size: 13px; color: var(--fg-muted); }
.footer-meta { font-size: 12px; color: var(--fg-muted); font-family: var(--font-head); }

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-right { display: none; }
  .funnel-steps { grid-template-columns: 1fr; gap: 40px; }
  .step-connector { display: none; }
  .proof-grid { grid-template-columns: 1fr; }
  .mech-grid { grid-template-columns: 1fr; }
  .comparison-table { grid-template-columns: 1fr; }
  .comp-col--good { border-left: none; border-top: 1px solid var(--border); }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .stat-divider { display: none; }
}
@media (max-width: 600px) {
  .nav-tagline { display: none; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .manifesto-text { font-size: 17px; }
  .proof-card { padding: 32px 24px; }
  .mech-item { padding: 28px 20px; }
}

/* === CUSTOM SCROLLBAR === */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--bg-3); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--fg-muted); }
