:root {
  --bg: #0d1b2a;
  --bg-light: #132337;
  --bg-card: #162840;
  --accent: #f59e0b;
  --accent-dim: rgba(245,158,11,0.12);
  --cream: #faf8f2;
  --text-primary: #faf8f2;
  --text-secondary: rgba(250,248,242,0.55);
  --border: rgba(245,158,11,0.15);
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 40px;
  height: 64px;
  display: flex;
  align-items: center;
  background: rgba(13,27,42,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: -0.01em;
}
.nav-tagline {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.nav-cta {
  padding: 8px 18px;
  background: var(--accent);
  color: var(--bg);
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: opacity 0.2s;
}
.nav-cta:hover { opacity: 0.85; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  padding: 100px 40px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--bg);
  background-image:
    radial-gradient(ellipse 60% 50% at 85% 50%, rgba(245,158,11,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 15% 80%, rgba(245,158,11,0.04) 0%, transparent 60%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(245,158,11,0.04) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}
.hero-content {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.hero-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--cream);
}
.hero-headline br { display: block; }
.hero-sub {
  font-size: 17px;
  line-height: 1.65;
  color: var(--text-secondary);
  max-width: 460px;
}
.hero-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-secondary);
  background: var(--accent-dim);
}
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 380px;
}
.hero-owl {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.owl-svg {
  width: 260px;
  height: 320px;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 0 40px rgba(245,158,11,0.15));
}
.owl-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(245,158,11,0.12);
  z-index: 1;
}
.ring-1 {
  width: 300px;
  height: 300px;
  animation: pulse 4s ease-in-out infinite;
}
.ring-2 {
  width: 420px;
  height: 420px;
  animation: pulse 4s ease-in-out infinite 1.5s;
}
@keyframes pulse {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 0.08; transform: scale(1.04); }
}
.hero-scroll-hint {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 60px;
  justify-content: center;
  color: var(--text-secondary);
  font-size: 12px;
  letter-spacing: 0.05em;
}

/* ── HOW IT WORKS ── */
.howitworks {
  padding: 120px 40px;
  background: var(--bg-light);
  border-top: 1px solid var(--border);
}
.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--cream);
  margin-bottom: 64px;
  max-width: 500px;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  max-width: 1200px;
  margin: 0 auto;
}
.step-card {
  padding: 48px 40px;
  background: var(--bg);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.step-card--accent {
  background: var(--accent-dim);
  border-color: rgba(245,158,11,0.3);
}
.step-number {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  color: rgba(245,158,11,0.15);
  line-height: 1;
}
.step-card--accent .step-number {
  color: rgba(245,158,11,0.25);
}
.step-icon {
  color: var(--accent);
}
.step-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--cream);
}
.step-card p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ── FEATURES ── */
.features {
  padding: 120px 40px;
  background: var(--bg);
}
.features-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}
.features-left {
  position: sticky;
  top: 100px;
}
.features-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--cream);
  margin-bottom: 24px;
  line-height: 1.1;
}
.features-desc {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
}
.features-right {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.feature-item {
  display: flex;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}
.feature-item:first-child { border-top: 1px solid var(--border); }
.feature-item-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-dim);
}
.feature-item h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 6px;
}
.feature-item p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ── OUTCOMES ── */
.outcomes {
  padding: 120px 40px;
  background: var(--bg-light);
  border-top: 1px solid var(--border);
}
.outcomes-content {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.outcomes-quote {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 500;
  font-style: italic;
  color: var(--cream);
  line-height: 1.4;
  margin-bottom: 32px;
}
.outcomes-body {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* ── NUMBERS ── */
.numbers {
  padding: 100px 40px;
  background: var(--bg);
}
.numbers-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  text-align: center;
  margin-bottom: 48px;
}
.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  max-width: 1200px;
  margin: 0 auto;
  border: 1px solid var(--border);
}
.number-item {
  padding: 40px 32px;
  background: var(--bg-light);
  border: 1px solid var(--border);
  text-align: center;
}
.number-value {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.number-desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ── MANIFESTO ── */
.manifesto {
  padding: 120px 40px;
  background: var(--bg-light);
  border-top: 1px solid var(--border);
}
.manifesto-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.manifesto-deco {
  margin-bottom: 32px;
  display: flex;
  justify-content: center;
}
.manifesto-headline {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.25;
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}
.manifesto-body {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 28px;
}
.manifesto-signature {
  font-family: var(--font-display);
  font-size: 15px;
  font-style: italic;
  color: var(--accent);
  opacity: 0.7;
}

/* ── CLOSING ── */
.closing {
  padding: 120px 40px;
  background: var(--bg);
  border-top: 1px solid var(--border);
  text-align: center;
}
.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 800;
  color: var(--cream);
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.closing-sub {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.75;
  max-width: 600px;
  margin: 0 auto 64px;
}
.closing-vision {
  display: inline-block;
  padding: 32px 48px;
  border: 1px solid var(--border);
  background: var(--accent-dim);
  text-align: left;
}
.closing-vision span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 12px;
}
.closing-vision p {
  font-family: var(--font-display);
  font-size: 18px;
  font-style: italic;
  color: var(--cream);
  line-height: 1.5;
}

/* ── FOOTER ── */
.footer {
  padding: 48px 40px;
  border-top: 1px solid var(--border);
  background: var(--bg-light);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--cream);
}
.footer-copy {
  font-size: 13px;
  color: var(--text-secondary);
}
.footer-made {
  font-size: 11px;
  color: rgba(250,248,242,0.2);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { height: 280px; }
  .owl-svg { width: 180px; height: 220px; }
  .ring-1 { width: 220px; height: 220px; }
  .ring-2 { width: 300px; height: 300px; }
  .steps-grid { grid-template-columns: 1fr; gap: 2px; }
  .features-layout { grid-template-columns: 1fr; gap: 48px; }
  .features-left { position: static; }
  .numbers-grid { grid-template-columns: repeat(2, 1fr); }
  .nav { padding: 0 24px; }
  .hero { padding: 100px 24px 60px; }
  .howitworks, .features, .outcomes, .numbers, .manifesto, .closing { padding: 80px 24px; }
}
@media (max-width: 480px) {
  .numbers-grid { grid-template-columns: 1fr 1fr; }
  .step-card { padding: 32px 24px; }
  .closing-vision { padding: 24px; }
  .closing-vision p { font-size: 16px; }
}