:root {
  --bg: #0f1623;
  --bg-card: #161d2e;
  --bg-card-alt: #1c2538;
  --fg: #e8eaf0;
  --fg-muted: #8b93a8;
  --accent: #00e5c8;
  --accent-dim: rgba(0, 229, 200, 0.12);
  --amber: #f59e0b;
  --amber-dim: rgba(245, 158, 11, 0.12);
  --border: rgba(255,255,255,0.07);
}

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

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

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

h1, h2, h3, h4, h5 {
  font-family: 'Sora', sans-serif;
  line-height: 1.2;
  font-weight: 700;
}

/* NAV */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border);
  background: rgba(15, 22, 35, 0.9);
  backdrop-filter: blur(12px);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--accent);
  letter-spacing: -0.02em;
}

.nav-tagline {
  font-size: 0.8rem;
  color: var(--fg-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* HERO */
.hero {
  padding: 5rem 2rem 4rem;
  border-bottom: 1px solid var(--border);
}

.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-left {
  border-right: 1px solid var(--border);
  padding-right: 4rem;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.hero-stat-number {
  font-family: 'Sora', sans-serif;
  font-size: 4rem;
  font-weight: 800;
  color: var(--amber);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.85rem;
  color: var(--fg-muted);
  line-height: 1.4;
}

.hero-right {}

.hero-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
  font-weight: 600;
}

.hero-headline {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: var(--fg);
  margin-bottom: 1.25rem;
  letter-spacing: -0.03em;
}

.hero-lede {
  font-size: 1.05rem;
  color: var(--fg-muted);
  max-width: 520px;
  margin-bottom: 1.75rem;
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  font-size: 0.8rem;
  color: var(--fg-muted);
}

.hero-proof span {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 0.35rem 0.75rem;
  border-radius: 100px;
}

.hero-divider { color: var(--fg-muted); opacity: 0.4; }

/* SHARED SECTION STYLES */
.section-label {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--fg);
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}

.section-body {
  font-size: 1rem;
  color: var(--fg-muted);
  max-width: 600px;
  margin-bottom: 3rem;
  line-height: 1.7;
}

.section-title-light {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--fg);
  letter-spacing: -0.02em;
  margin-bottom: 2.5rem;
}

/* HOW */
.how { padding: 5rem 2rem; border-bottom: 1px solid var(--border); }

.how-inner { max-width: 1100px; margin: 0 auto; }

.how-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.how-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
}

.how-card-icon {
  width: 44px;
  height: 44px;
  background: var(--accent-dim);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 1.25rem;
}

.how-card h3 {
  font-size: 1rem;
  color: var(--fg);
  margin-bottom: 0.6rem;
}

.how-card p {
  font-size: 0.875rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* CHANNELS */
.channels { padding: 5rem 2rem; border-bottom: 1px solid var(--border); }

.channels-inner { max-width: 1100px; margin: 0 auto; }

.channels-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.channel-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.75rem;
}

.channel-icon-wrap {
  width: 40px;
  height: 40px;
  background: var(--amber-dim);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber);
  margin-bottom: 1rem;
}

.channel-item h3 {
  font-size: 0.95rem;
  color: var(--fg);
  margin-bottom: 0.5rem;
}

.channel-item p {
  font-size: 0.8rem;
  color: var(--fg-muted);
  line-height: 1.55;
}

/* PROCESS */
.process { padding: 5rem 2rem; border-bottom: 1px solid var(--border); }

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

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

.process-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem;
  align-items: start;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--border);
}

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

.step-num {
  font-family: 'Sora', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent);
  padding-top: 0.15rem;
  letter-spacing: 0.05em;
}

.step-body h3 {
  font-size: 1rem;
  color: var(--fg);
  margin-bottom: 0.4rem;
}

.step-body p {
  font-size: 0.85rem;
  color: var(--fg-muted);
}

/* OUTCOMES */
.outcomes {
  padding: 5rem 2rem;
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
}

.outcomes-inner { max-width: 1100px; margin: 0 auto; }

.outcomes-header { margin-bottom: 3rem; }

.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.outcome-item {}

.outcome-stat {
  display: block;
  font-family: 'Sora', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.outcome-label {
  font-size: 0.8rem;
  color: var(--fg-muted);
  line-height: 1.4;
}

/* CLOSING */
.closing { padding: 5rem 2rem; border-bottom: 1px solid var(--border); }

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

.closing-headline {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--fg);
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
  line-height: 1.25;
}

.closing-sub {
  font-size: 1rem;
  color: var(--fg-muted);
  max-width: 520px;
}

/* FOOTER */
.footer { padding: 3rem 2rem; }

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.footer-brand {}

.footer-logo {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--accent);
  display: block;
  margin-bottom: 0.75rem;
}

.footer-desc {
  font-size: 0.8rem;
  color: var(--fg-muted);
  max-width: 420px;
  line-height: 1.6;
}

.footer-legal {
  font-size: 0.75rem;
  color: var(--fg-muted);
  opacity: 0.5;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 2rem; }
  .hero-left { border-right: none; padding-right: 0; border-bottom: 1px solid var(--border); padding-bottom: 2rem; }
  .how-cards { grid-template-columns: 1fr 1fr; }
  .channels-grid { grid-template-columns: 1fr 1fr; }
  .outcomes-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .hero { padding: 3rem 1.5rem 2.5rem; }
  .how { padding: 3rem 1.5rem; }
  .channels { padding: 3rem 1.5rem; }
  .process { padding: 3rem 1.5rem; }
  .outcomes { padding: 3rem 1.5rem; }
  .closing { padding: 3rem 1.5rem; }
  .how-cards { grid-template-columns: 1fr; }
  .channels-grid { grid-template-columns: 1fr; }
  .outcomes-grid { grid-template-columns: 1fr 1fr; }
  .hero-stat-number { font-size: 3rem; }
  .process-step { grid-template-columns: 50px 1fr; gap: 1rem; }
}