/* ─── Reset & Base ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #0f0f0f;
  --fg: #ffffff;
  --accent: #C8F135;
  --muted: #666666;
  --surface: #1a1a1a;
  --surface2: #222222;
  --border: #2a2a2a;
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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;
}

/* ─── Typography ─────────────────────────────────── */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.1; }

/* ─── Nav ─────────────────────────────────────────── */
nav {
  padding: 24px 40px;
  border-bottom: 1px solid var(--border);
}
.nav-inner { max-width: 1200px; margin: 0 auto; }
.nav-logo {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: var(--accent);
}

/* ─── 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: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.hero-headline {
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 800;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.hero-sub {
  font-size: 18px;
  color: #999999;
  max-width: 420px;
  line-height: 1.6;
}

/* Hero Visual */
.hero-visual { position: relative; }

.visual-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 6px 14px 6px 10px;
  margin-bottom: 28px;
  font-size: 13px;
  font-family: var(--font-display);
  font-weight: 600;
}

.badge-status {
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 8px var(--accent);
}

.badge-label { color: var(--muted); }

.deal-flow {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
}

.deal-step { display: flex; align-items: center; gap: 16px; padding: 14px 0; }
.deal-step.done { opacity: 0.5; }

.step-num {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  min-width: 28px;
}

.step-label {
  font-size: 14px;
  font-weight: 500;
  flex: 1;
}

.step-status {
  font-size: 11px;
  color: var(--muted);
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 2px 10px;
}

.deal-connector {
  width: 1px;
  height: 12px;
  background: var(--border);
  margin-left: 14px;
}

/* ─── How ─────────────────────────────────────────── */
.how { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 80px 40px; }
.how-inner { max-width: 1200px; margin: 0 auto; }
.section-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 40px;
}
.how-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.how-icon {
  width: 48px; height: 48px;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  margin-bottom: 16px;
}
.how-step h3 { font-size: 18px; margin-bottom: 8px; }
.how-step p { font-size: 14px; color: #777; line-height: 1.6; }

/* ─── Features ────────────────────────────────────── */
.features { padding: 100px 40px; }
.features-inner { max-width: 1200px; margin: 0 auto; }
.feature-row { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; margin-bottom: 60px; }
.feature-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent);
  border-radius: 4px;
  padding: 3px 8px;
  margin-bottom: 16px;
}
.feature h2 { font-size: clamp(28px, 3vw, 40px); margin-bottom: 12px; }
.feature p { font-size: 15px; color: #888; line-height: 1.7; max-width: 400px; }

/* ─── Manifesto ───────────────────────────────────── */
.manifesto { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 100px 40px; }
.manifesto-inner { max-width: 800px; margin: 0 auto; text-align: center; }
.manifesto blockquote {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.5vw, 40px);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 32px;
  letter-spacing: -0.01em;
}
.manifesto-sub { font-size: 16px; color: #777; max-width: 560px; margin: 0 auto; }

/* ─── Closing ─────────────────────────────────────── */
.closing { padding: 100px 40px; text-align: center; }
.closing-inner { max-width: 700px; margin: 0 auto; }
.closing h2 { font-size: clamp(36px, 5vw, 64px); font-weight: 800; margin-bottom: 24px; letter-spacing: -0.02em; }
.closing p { font-size: 18px; color: #888; max-width: 540px; margin: 0 auto; line-height: 1.7; }

/* ─── Footer ───────────────────────────────────────── */
footer { border-top: 1px solid var(--border); padding: 40px; }
.footer-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; }
.footer-logo { font-family: var(--font-display); font-size: 14px; font-weight: 800; letter-spacing: 0.15em; color: var(--accent); }
.footer-note { font-size: 13px; color: var(--muted); }

/* ─── Mobile ───────────────────────────────────────── */
@media (max-width: 768px) {
  nav, .hero, .how, .features, .manifesto, .closing, footer { padding-left: 24px; padding-right: 24px; }
  .hero { padding-top: 60px; padding-bottom: 60px; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { order: -1; }
  .how-steps { grid-template-columns: 1fr; gap: 32px; }
  .feature-row { grid-template-columns: 1fr; gap: 40px; }
  .footer-inner { flex-direction: column; gap: 12px; text-align: center; }
  .deal-flow { padding: 20px; }
}