:root {
  --bg: #080b14;
  --bg2: #0d1220;
  --fg: #f0ede8;
  --fg-muted: #8a8a9a;
  --accent: #ff8c00;
  --accent-dim: rgba(255, 140, 0, 0.12);
  --border: rgba(240, 237, 232, 0.08);
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Mono', monospace;
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── Hero ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 0 8vw;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -40%;
  left: -10%;
  width: 70%;
  height: 80%;
  background: radial-gradient(ellipse at center, rgba(255,140,0,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner { max-width: 820px; }

.hero-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-label::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--accent);
}

.hero-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(42px, 7vw, 80px);
  font-weight: 800;
  line-height: 1.04;
  color: var(--fg);
  margin-bottom: 32px;
  letter-spacing: -0.02em;
}

.hero-sub {
  font-size: 16px;
  color: var(--fg-muted);
  max-width: 580px;
  line-height: 1.7;
}

/* ── How ── */
.how {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 100px 8vw;
}

.section-label {
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 60px;
}

.steps { display: flex; flex-direction: column; gap: 0; }

.step {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 40px;
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}

.step:last-child { border-bottom: none; }

.step-number {
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.1em;
  padding-top: 4px;
}

.step h3 {
  font-family: 'Syne', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.step p {
  color: var(--fg-muted);
  font-size: 14px;
  line-height: 1.7;
  max-width: 520px;
}

/* ── Features ── */
.features {
  padding: 100px 8vw;
  background: var(--bg);
}

.features-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
}

.feature-block {
  background: var(--bg);
  padding: 48px 44px;
}

.feature-icon {
  margin-bottom: 20px;
}

.feature-block h3 {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.feature-block p {
  color: var(--fg-muted);
  font-size: 14px;
  line-height: 1.7;
}

/* ── Closing ── */
.closing {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 100px 8vw;
}

.closing-inner { max-width: 720px; }

.closing-quote {
  font-family: 'Syne', sans-serif;
  font-size: clamp(22px, 3.5vw, 32px);
  font-weight: 600;
  color: var(--fg);
  line-height: 1.3;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.closing-quote cite {
  display: block;
  font-family: 'DM Mono', monospace;
  font-size: 13px;
  font-weight: 400;
  color: var(--fg-muted);
  margin-top: 16px;
  font-style: normal;
  letter-spacing: 0.05em;
}

.closing-statement {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 540px;
}

/* ── Footer ── */
.site-footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 28px 8vw;
}

.footer-inner {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-brand {
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.01em;
}

.footer-sep {
  color: var(--border);
  font-size: 16px;
}

.footer-tagline {
  font-size: 12px;
  color: var(--fg-muted);
  letter-spacing: 0.03em;
}

/* ── Mobile ── */
@media (max-width: 768px) {
  .hero { padding: 80px 6vw; min-height: auto; padding-top: 120px; padding-bottom: 80px; }
  .hero-headline { font-size: 38px; }
  .hero-sub { font-size: 14px; }
  .step { grid-template-columns: 56px 1fr; gap: 20px; padding: 32px 0; }
  .how, .features, .closing { padding: 60px 6vw; }
  .features-inner { grid-template-columns: 1fr; }
  .feature-block { padding: 36px 28px; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 32px; }
  .step-number { font-size: 11px; }
  .step h3 { font-size: 18px; }
}