:root {
  --bg: #0B1120;
  --bg-alt: #0F1629;
  --bg-card: #111827;
  --fg: #F0EDE8;
  --fg-muted: #9CA3AF;
  --accent: #F5A623;
  --accent-dim: rgba(245, 166, 35, 0.12);
  --border: rgba(240, 237, 232, 0.08);
}

*, *::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: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo-mark {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent), 0 0 24px rgba(245, 166, 35, 0.4);
}
.nav-logo-text {
  font-family: 'Instrument Serif', serif;
  font-size: 1.1rem;
  letter-spacing: 0.01em;
}
.nav-cta {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--fg);
  text-decoration: none;
  border: 1px solid var(--border);
  padding: 8px 20px;
  border-radius: 6px;
  transition: border-color 0.2s, background 0.2s;
}
.nav-cta:hover {
  border-color: var(--accent);
  background: var(--accent-dim);
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 120px 24px 80px;
  position: relative;
  overflow: hidden;
}
.hero-glow {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(245,166,35,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}
.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
}
.hero-headline {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin-bottom: 32px;
}
.hero-headline em {
  font-style: italic;
  color: var(--accent);
}
.hero-sub {
  font-size: 1.15rem;
  color: var(--fg-muted);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.7;
}
.hero-divider {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--accent), transparent);
}

/* ── SHARED LABEL ── */
.section-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 32px;
}

/* ── PROBLEM ── */
.problem {
  padding: 100px 24px;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.problem-inner {
  max-width: 900px;
  margin: 0 auto;
}
.problem-headline {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 64px;
}
.problem-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
}
.problem-stat-num {
  display: block;
  font-family: 'Instrument Serif', serif;
  font-size: 3rem;
  color: var(--accent);
  margin-bottom: 8px;
}
.problem-stat-desc {
  font-size: 0.875rem;
  color: var(--fg-muted);
  line-height: 1.5;
}

/* ── SOLUTION ── */
.solution {
  padding: 100px 24px;
}
.solution-inner {
  max-width: 900px;
  margin: 0 auto;
}
.solution-headline {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 24px;
}
.solution-body {
  font-size: 1rem;
  color: var(--fg-muted);
  max-width: 540px;
  margin-bottom: 64px;
  line-height: 1.7;
}
.solution-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.solution-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
}
.solution-card-icon {
  color: var(--accent);
  margin-bottom: 20px;
}
.solution-card h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.solution-card p {
  font-size: 0.875rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* ── HOW IT WORKS ── */
.howitworks {
  padding: 100px 24px;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.howitworks-inner {
  max-width: 760px;
  margin: 0 auto;
}
.how-steps {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.how-step {
  display: flex;
  gap: 32px;
  align-items: flex-start;
}
.how-step-num {
  font-family: 'Instrument Serif', serif;
  font-size: 2.5rem;
  color: var(--accent);
  opacity: 0.5;
  flex-shrink: 0;
  line-height: 1;
  margin-top: 4px;
}
.how-step-content h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.how-step-content p {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* ── OUTCOMES ── */
.outcomes {
  padding: 100px 24px;
}
.outcomes-inner {
  max-width: 760px;
  margin: 0 auto;
}
.outcomes-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.outcome-item {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}
.outcome-from {
  font-size: 0.9rem;
  color: var(--fg-muted);
  flex: 1;
}
.outcome-arrow {
  color: var(--accent);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.outcome-to {
  font-size: 0.95rem;
  font-weight: 500;
  flex: 1;
  text-align: right;
}

/* ── PRICING ── */
.pricing {
  padding: 100px 24px;
  border-top: 1px solid var(--border);
}
.pricing-inner {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}
.pricing-headline {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 16px;
}
.pricing-sub {
  font-size: 1rem;
  color: var(--fg-muted);
  margin-bottom: 56px;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}
.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: border-color 0.2s;
}
.pricing-card:hover {
  border-color: rgba(240, 237, 232, 0.2);
}
.pricing-card--featured {
  border-color: var(--accent);
  background: linear-gradient(180deg, rgba(245,166,35,0.08) 0%, var(--bg-card) 60%);
  position: relative;
}
.pricing-card--featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--bg);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  padding: 4px 14px;
  border-radius: 20px;
}
.pricing-card-header { margin-bottom: 24px; }
.pricing-tier {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 6px;
}
.pricing-tier-desc {
  font-size: 0.8rem;
  color: var(--fg-muted);
}
.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 28px;
}
.pricing-amount {
  font-family: 'Instrument Serif', serif;
  font-size: 3rem;
  line-height: 1;
}
.pricing-period {
  font-size: 1rem;
  color: var(--fg-muted);
}
.pricing-features {
  list-style: none;
  text-align: left;
  width: 100%;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pricing-features li {
  font-size: 0.85rem;
  color: var(--fg-muted);
  padding-left: 20px;
  position: relative;
}
.pricing-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Ccircle cx='6' cy='6' r='5' stroke='%23F5A623' stroke-width='1.2' fill='none'/%3E%3Cpath d='M3.5 6l1.8 1.8L8.5 4' stroke='%23F5A623' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E") center/contain no-repeat;
}
.pricing-cta {
  display: inline-block;
  width: 100%;
  padding: 14px 24px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  background: var(--accent);
  color: var(--bg);
  transition: opacity 0.2s;
}
.pricing-cta:hover { opacity: 0.88; }
.pricing-cta--secondary {
  background: transparent;
  color: var(--fg);
  border: 1px solid var(--border);
}
.pricing-cta--secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.pricing-compare {
  font-size: 0.8rem;
  color: var(--fg-muted);
  opacity: 0.6;
}
.manifesto {
  padding: 120px 24px;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
}
.manifesto-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.manifesto-quote {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.5;
  margin-bottom: 24px;
  color: var(--fg);
}
.manifesto-attr {
  font-size: 0.8rem;
  color: var(--fg-muted);
  letter-spacing: 0.1em;
}

/* ── FOOTER ── */
.footer {
  padding: 64px 24px;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.footer-logo-mark {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent);
}
.footer-logo-text {
  font-family: 'Instrument Serif', serif;
  font-size: 1.1rem;
}
.footer-tagline {
  font-size: 0.9rem;
  color: var(--fg-muted);
  font-style: italic;
}
.footer-copy {
  font-size: 0.75rem;
  color: var(--fg-muted);
  opacity: 0.5;
  margin-top: 8px;
}

/* ── MOBILE ── */
@media (max-width: 640px) {
  .nav { padding: 16px 20px; }
  .hero { padding: 100px 20px 60px; }
  .problem { padding: 60px 20px; }
  .problem-stats { grid-template-columns: 1fr; gap: 32px; }
  .solution { padding: 60px 20px; }
  .howitworks { padding: 60px 20px; }
  .how-step { gap: 20px; }
  .how-step-num { font-size: 2rem; }
  .outcomes { padding: 60px 20px; }
  .manifesto { padding: 80px 20px; }
  .outcome-item { flex-direction: column; gap: 8px; }
  .outcome-to { text-align: left; }
}