@import url('https://fonts.googleapis.com/css2?family=Syne:wght@700;800&family=DM+Sans:wght@400;500&display=swap');

:root {
  --bg: #0c0c10;
  --surface: #141418;
  --surface2: #1c1c22;
  --accent: #f0a500;
  --accent-dim: rgba(240, 165, 0, 0.12);
  --text: #f4f3ee;
  --text-muted: #6b6b70;
  --text-dim: #3a3a40;
  --border: rgba(244, 243, 238, 0.08);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

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

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 80px 0 100px;
  overflow: hidden;
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, var(--text-dim) 1px, transparent 1px),
    linear-gradient(to bottom, var(--text-dim) 1px, transparent 1px);
  background-size: 64px 64px;
  opacity: 0.35;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 48px;
  width: 100%;
}

.hero-label {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
}

.hero-headline {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(56px, 8vw, 96px);
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 36px;
}

.hero-accent {
  color: var(--accent);
}

.hero-sub {
  font-size: 18px;
  line-height: 1.65;
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: 56px;
}

.hero-stats-row {
  display: flex;
  align-items: center;
  gap: 0;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0 40px 0 0;
}

.hero-stat:first-child { padding-left: 0; }

.stat-number {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 28px;
  color: var(--text);
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-stat-sep {
  width: 1px;
  height: 40px;
  background: var(--border);
  margin-right: 40px;
  flex-shrink: 0;
}

/* ── STATS BAR ── */
.statsbar {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 48px 0;
}

.statsbar-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  align-items: center;
  gap: 0;
}

.statsbar-item {
  flex: 1;
  padding: 0 40px;
}

.statsbar-item:first-child { padding-left: 0; }

.statsbar-number {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 36px;
  color: var(--accent);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.statsbar-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}

.statsbar-divider {
  width: 1px;
  height: 64px;
  background: var(--border);
  flex-shrink: 0;
}

/* ── PROCESS ── */
.process {
  padding: 120px 0;
}

.process-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 48px;
}

.section-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  font-weight: 500;
}

.section-headline {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 72px;
}

.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.process-step {
  flex: 1;
  padding: 0 40px 0 0;
}

.process-step:first-child { padding-left: 0; }

.step-number {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 48px;
  color: var(--text-dim);
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.step-content h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--text);
  margin-bottom: 12px;
}

.step-content p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.65;
}

.process-arrow {
  display: flex;
  align-items: center;
  padding-top: 24px;
  flex-shrink: 0;
  padding-right: 40px;
}

.process-arrow:last-child { display: none; }

/* ── TRADES ── */
.trades {
  background: var(--surface);
  padding: 120px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.trades-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 48px;
}

.trades-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.trades-left .section-headline {
  margin-bottom: 20px;
}

.trades-desc {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-top: 20px;
}

.trades-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.trade-item {
  font-size: 14px;
  color: var(--text);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  position: relative;
  padding-left: 16px;
}

.trade-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
}

/* ── MANIFESTO ── */
.manifesto {
  padding: 120px 0;
}

.manifesto-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 48px;
}

.manifesto-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 32px;
  font-weight: 500;
}

.manifesto-quote {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 40px;
  font-style: normal;
  border-left: 3px solid var(--accent);
  padding-left: 28px;
}

.manifesto-body {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 20px;
}

/* ── CLOSING ── */
.closing {
  background: var(--surface);
  padding: 120px 0;
  border-top: 1px solid var(--border);
}

.closing-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 48px;
}

.closing-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  font-weight: 500;
}

.closing-headline {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 3.5vw, 42px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 48px;
  max-width: 640px;
}

.closing-body-row {
  display: flex;
  align-items: flex-start;
  gap: 80px;
}

.closing-body {
  flex: 1;
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.75;
}

.closing-callout {
  flex-shrink: 0;
  width: 260px;
  background: var(--accent-dim);
  border: 1px solid rgba(240, 165, 0, 0.2);
  padding: 32px;
  border-radius: 4px;
}

.callout-stat {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 36px;
  color: var(--accent);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.callout-label {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ── FOOTER ── */
.footer {
  border-top: 1px solid var(--border);
  padding: 48px 0;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: var(--text);
  letter-spacing: -0.02em;
}

.footer-tagline {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
}

.footer-meta {
  font-size: 13px;
  color: var(--text-muted);
  text-align: right;
  line-height: 1.6;
}

.footer-email {
  color: var(--text);
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .hero-inner,
  .statsbar-inner,
  .process-inner,
  .trades-inner,
  .manifesto-inner,
  .closing-inner,
  .footer-inner {
    padding: 0 24px;
  }

  .hero { padding: 80px 0 72px; }
  .hero-headline { font-size: 44px; }
  .hero-stats-row { flex-wrap: wrap; gap: 24px; }
  .hero-stat-sep { display: none; }
  .hero-stat { padding: 0; }

  .statsbar-inner { flex-direction: column; gap: 32px; }
  .statsbar-item { padding: 0; }
  .statsbar-divider { display: none; }

  .process-steps { flex-direction: column; gap: 40px; }
  .process-arrow { display: none; }
  .process-step { padding: 0; }

  .trades-grid { grid-template-columns: 1fr; gap: 48px; }
  .trades-list { grid-template-columns: 1fr; }

  .closing-body-row { flex-direction: column; gap: 40px; }
  .closing-callout { width: 100%; }

  .footer-inner { flex-direction: column; gap: 24px; }
  .footer-meta { text-align: left; }
}