:root {
  --bg: #0B1120;
  --bg-2: #111827;
  --bg-3: #0F1623;
  --fg: #F0EDE6;
  --fg-muted: #8B92A5;
  --accent: #FFB224;
  --accent-dim: #cc8f1c;
  --border: rgba(255, 178, 36, 0.15);
  --border-subtle: rgba(240, 237, 230, 0.08);
  --nav-h: 64px;
}

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

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

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

/* NAV */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-h);
  background: rgba(11, 17, 32, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-subtle);
  z-index: 100;
}
.nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--fg);
}
.logo-mark {
  color: var(--accent);
  font-size: 1.1rem;
}
.logo-text {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
}
.nav-badge {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--accent);
  background: rgba(255, 178, 36, 0.1);
  border: 1px solid var(--border);
  padding: 0.25rem 0.65rem;
  border-radius: 2rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* HERO */
.hero {
  padding: calc(var(--nav-h) + 5rem) 2rem 6rem;
  max-width: 1120px;
  margin: 0 auto;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.8rem;
}
.eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}
.hero-headline {
  font-family: 'Sora', sans-serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--fg);
  margin-bottom: 1.5rem;
  max-width: 680px;
}
.headline-accent {
  color: var(--accent);
}
.hero-sub {
  font-size: 1.15rem;
  color: var(--fg-muted);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 3.5rem;
  font-weight: 300;
}
.hero-stats {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 0;
  max-width: 680px;
  background: var(--bg-2);
  border: 1px solid var(--border-subtle);
  border-radius: 1rem;
  padding: 1.5rem 2rem;
}
.stat {
  padding: 0 1rem;
}
.stat:first-child { padding-left: 0; }
.stat:last-child { padding-right: 0; }
.stat-value {
  display: block;
  font-family: 'Sora', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 0.3rem;
  letter-spacing: -0.01em;
}
.stat-desc {
  display: block;
  font-size: 0.72rem;
  color: var(--fg-muted);
  line-height: 1.4;
}
.stat-divider {
  width: 1px;
  background: var(--border-subtle);
  height: 48px;
  align-self: center;
}

/* WHAT */
.what-section {
  background: var(--bg-2);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: 6rem 2rem;
}
.what-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 4rem;
  align-items: start;
}
.what-label {
  font-family: 'Sora', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  padding-top: 0.4rem;
}
.what-headline {
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}
.what-body {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.75;
  max-width: 620px;
  margin-bottom: 1rem;
  font-weight: 300;
}
.what-body:last-child { margin-bottom: 0; }

/* HOW */
.how-section {
  padding: 7rem 2rem;
  background: var(--bg);
}
.how-inner {
  max-width: 1120px;
  margin: 0 auto;
}
.how-label {
  font-family: 'Sora', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 3rem;
}
.how-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.step { padding-top: 0; }
.step-num {
  display: block;
  font-family: 'Sora', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--border-subtle);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 1.2rem;
}
.step-title {
  font-family: 'Sora', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 0.6rem;
  letter-spacing: -0.02em;
}
.step-desc {
  font-size: 0.82rem;
  color: var(--fg-muted);
  line-height: 1.65;
  font-weight: 300;
}

/* MANIFESTO */
.manifesto {
  padding: 7rem 2rem;
  background: var(--bg-3);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}
.manifesto-inner { max-width: 800px; margin: 0 auto; text-align: center; }
.manifesto-quote {
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 2.5rem;
  font-style: normal;
}
.manifesto-bottom { display: flex; justify-content: center; }
.manifesto-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}
.tag {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--accent);
  background: rgba(255, 178, 36, 0.08);
  border: 1px solid var(--border);
  padding: 0.3rem 0.85rem;
  border-radius: 2rem;
}

/* CLOSING */
.closing { padding: 8rem 2rem; background: var(--bg); }
.closing-inner { max-width: 800px; margin: 0 auto; text-align: center; }
.closing-headline {
  font-family: 'Sora', sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}
.closing-sub {
  font-size: 1rem;
  color: var(--fg-muted);
  font-weight: 300;
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.7;
}

/* FOOTER */
.site-footer {
  padding: 3rem 2rem;
  border-top: 1px solid var(--border-subtle);
  background: var(--bg-2);
}
.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  text-align: center;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.3rem;
}
.footer-brand .logo-text { color: var(--fg); }
.footer-tagline {
  font-size: 0.85rem;
  color: var(--fg-muted);
}
.footer-copy {
  font-size: 0.72rem;
  color: var(--fg-muted);
  opacity: 0.5;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .what-inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .how-steps { grid-template-columns: 1fr 1fr; }
  .hero-stats { grid-template-columns: 1fr; gap: 1rem; }
  .stat-divider { display: none; }
  .hero { padding-top: calc(var(--nav-h) + 3rem); }
  .hero-stats { padding: 1.2rem; }
}
@media (max-width: 480px) {
  .how-steps { grid-template-columns: 1fr; }
  .hero-headline { font-size: 2.5rem; }
}