:root {
  --bg: #111318;
  --bg-2: #181B22;
  --fg: #F0EEE9;
  --fg-2: #A8A39C;
  --accent: #F5A623;
  --accent-dim: rgba(245, 166, 35, 0.12);
  --border: rgba(240, 238, 233, 0.07);
  --card-bg: #181B22;
}

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

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

/* HERO */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 96px 80px 80px;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-eyebrow {
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.hero-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(48px, 5.5vw, 80px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 28px;
}

.hero-sub {
  font-size: 18px;
  line-height: 1.65;
  color: var(--fg-2);
  max-width: 420px;
  margin-bottom: 36px;
}

.hero-badge {
  display: inline-block;
  background: var(--accent-dim);
  border: 1px solid rgba(245, 166, 35, 0.2);
  color: var(--accent);
  font-family: 'Syne', sans-serif;
  font-size: 12px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 4px;
  letter-spacing: 0.02em;
}

.hero-graphic {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.graphic-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
  width: 100%;
  max-width: 380px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.03);
}

.gc-header {
  display: flex;
  gap: 6px;
  margin-bottom: 16px;
}

.gc-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.gc-dot.red { background: #FF5F57; }
.gc-dot.yellow { background: #FFBD2E; }
.gc-dot.green { background: #28CA41; }

.gc-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.gc-line {
  height: 8px;
  background: rgba(240,238,233,0.08);
  border-radius: 4px;
}
.gc-line.long { width: 100%; }
.gc-line.medium { width: 70%; }
.gc-line.short { width: 45%; }

.gc-blocks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 4px 0;
}

.gc-block {
  height: 48px;
  background: rgba(240,238,233,0.06);
  border-radius: 6px;
}
.gc-block.accent { background: var(--accent-dim); border: 1px solid rgba(245,166,35,0.2); }

.gc-dots {
  display: flex;
  gap: 6px;
  margin-top: 4px;
}
.gc-dot-sm {
  width: 32px;
  height: 6px;
  background: rgba(240,238,233,0.08);
  border-radius: 3px;
}

.graphic-label {
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-2);
  opacity: 0.5;
}

/* HOW IT WORKS */
.how-it-works {
  padding: 80px 80px;
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid var(--border);
}

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

.section-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 64px;
}

.steps {
  display: grid;
  grid-template-columns: 1fr 40px 1fr 40px 1fr;
  align-items: start;
  gap: 0;
}

.step-connector {
  width: 40px;
  height: 2px;
  background: var(--border);
  margin-top: 28px;
}

.step { padding: 0; }

.step-num {
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}

.step h3 {
  font-family: 'Syne', sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.step p {
  font-size: 15px;
  color: var(--fg-2);
  line-height: 1.6;
}

/* FEATURES */
.features {
  padding: 80px 80px;
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid var(--border);
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px 80px;
}

.feature {}

.feature-icon {
  width: 44px;
  height: 44px;
  background: var(--accent-dim);
  border: 1px solid rgba(245, 166, 35, 0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--accent);
}

.feature h3 {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.feature p {
  font-size: 15px;
  color: var(--fg-2);
  line-height: 1.6;
}

/* MANIFESTO */
.manifesto {
  padding: 80px 80px;
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid var(--border);
}

.manifesto blockquote {
  font-family: 'Syne', sans-serif;
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.02em;
  max-width: 800px;
  margin-bottom: 24px;
  color: var(--fg);
}

.manifesto-sub {
  font-size: 16px;
  color: var(--fg-2);
  max-width: 520px;
  line-height: 1.6;
}

/* CLOSING */
.closing {
  padding: 96px 80px;
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid var(--border);
}

.closing h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.closing-sub {
  font-size: 20px;
  color: var(--fg-2);
  line-height: 1.5;
}

/* FOOTER */
footer {
  border-top: 1px solid var(--border);
  padding: 40px 80px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

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

.footer-tagline {
  font-size: 12px;
  color: var(--fg-2);
}

.footer-meta {
  font-size: 12px;
  color: var(--fg-2);
  opacity: 0.5;
}

/* MOBILE */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 64px 32px 48px;
  }
  .hero-graphic { display: none; }
  .how-it-works, .features, .manifesto, .closing { padding: 64px 32px; }
  .steps { grid-template-columns: 1fr; gap: 32px; }
  .step-connector { display: none; }
  .feature-grid { grid-template-columns: 1fr; gap: 32px; }
  footer { padding: 32px; }
  .footer-inner { flex-direction: column; gap: 12px; align-items: flex-start; }
}