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

:root {
  --navy:      #0F1F3D;
  --amber:     #F59E0B;
  --slate:     #1E293B;
  --ink:       #334155;
  --muted:     #64748B;
  --border:    #E2E8F0;
  --surface:   #FAFAF8;
  --white:     #FFFFFF;
}

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

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

/* Navigation */
.nav {
  background: var(--navy);
  padding: 0 40px;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
  height: 56px;
}
.nav-logo {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1.25rem;
  color: var(--white);
  letter-spacing: 0.01em;
}
.nav-tagline {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.45);
  font-weight: 300;
  letter-spacing: 0.04em;
}

/* Hero */
.hero {
  background: var(--navy);
  color: var(--white);
  padding: 80px 40px 96px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 480px; height: 480px;
  background: radial-gradient(circle at center, rgba(245,158,11,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner { max-width: 1100px; margin: 0 auto; }
.hero-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--amber);
  border: 1px solid rgba(245,158,11,0.35);
  padding: 4px 12px;
  border-radius: 2px;
  margin-bottom: 28px;
}
.hero-headline {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  line-height: 1.15;
  color: var(--white);
  max-width: 680px;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}
.hero-lede {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.65);
  max-width: 560px;
  margin-bottom: 36px;
  line-height: 1.7;
}
.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.pill {
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 6px 14px;
  border-radius: 100px;
}
.hero-accent-line {
  width: 100%;
  max-width: 1100px;
  margin: 48px auto 0;
  height: 1px;
  background: linear-gradient(90deg, var(--amber) 0%, rgba(245,158,11,0) 60%);
}

/* Sections shared */
.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 40px;
}

/* Features */
.features { padding: 80px 40px; background: var(--white); }
.features-inner { max-width: 1100px; margin: 0 auto; }

.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.feature-item {
  display: flex;
  gap: 24px;
  padding: 36px 40px;
  border-bottom: 1px solid var(--border);
  border-right: 1px solid var(--border);
}
.feature-item:nth-child(even) { border-right: none; }
.feature-item:nth-last-child(-n+2) { border-bottom: none; }
.feature-number {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 0.875rem;
  color: var(--amber);
  font-weight: 400;
  flex-shrink: 0;
  margin-top: 2px;
}
.feature-title {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1.125rem;
  color: var(--navy);
  margin-bottom: 8px;
}
.feature-desc {
  font-size: 0.9375rem;
  color: var(--muted);
  line-height: 1.65;
}

/* How it works */
.howitworks { padding: 80px 40px; background: var(--surface); }
.howitworks-inner { max-width: 1100px; margin: 0 auto; }
.steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}
.step {
  flex: 1;
  text-align: center;
  padding: 0 32px;
}
.step:first-child { text-align: left; padding-left: 0; }
.step:last-child { text-align: right; padding-right: 0; }
.step-icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--amber);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.step:first-child .step-icon { margin-left: 0; }
.step:last-child .step-icon { margin-right: 0; }
.step-title {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1.0625rem;
  color: var(--navy);
  margin-bottom: 10px;
}
.step-desc { font-size: 0.9375rem; color: var(--muted); line-height: 1.65; }
.step-connector {
  width: 80px;
  flex-shrink: 0;
  height: 1px;
  background: var(--border);
  margin-top: 26px;
}

/* Pricing */
.pricing { padding: 80px 40px; background: var(--white); }
.pricing-inner { max-width: 1100px; margin: 0 auto; }
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}
.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 36px 32px;
  border-radius: 4px;
}
.pricing-card--pro {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}
.pricing-card--pro .pricing-card-label { color: var(--amber); }
.pricing-card--pro .pricing-price { color: var(--white); }
.pricing-card--pro .pricing-features li { color: rgba(255,255,255,0.7); }
.pricing-card--pro .pricing-note { color: rgba(255,255,255,0.5); }
.pricing-card-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}
.pricing-price {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 2.25rem;
  color: var(--navy);
  margin-bottom: 24px;
}
.pricing-period { font-size: 1rem; font-family: 'DM Sans', sans-serif; font-weight: 400; }
.pricing-features {
  list-style: none;
  margin-bottom: 20px;
}
.pricing-features li {
  font-size: 0.9375rem;
  color: var(--ink);
  padding: 6px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-note { font-size: 0.8125rem; color: var(--muted); font-style: italic; }

/* Disclaimer */
.disclaimer-section { padding: 0 40px 80px; background: var(--white); }
.disclaimer-inner { max-width: 1100px; margin: 0 auto; }
.disclaimer-box {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: #FEF9EC;
  border: 1px solid rgba(245,158,11,0.25);
  border-radius: 4px;
  padding: 20px 24px;
  font-size: 0.875rem;
  color: #92400E;
  line-height: 1.6;
}
.disclaimer-icon { flex-shrink: 0; margin-top: 1px; color: var(--amber); }

/* Closing */
.closing { padding: 96px 40px; background: var(--navy); }
.closing-inner { max-width: 1100px; margin: 0 auto; text-align: center; }
.closing-headline {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  color: var(--white);
  line-height: 1.25;
  max-width: 680px;
  margin: 0 auto 20px;
  letter-spacing: -0.01em;
}
.closing-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  max-width: 540px;
  margin: 0 auto 16px;
}
.closing-vision {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.35);
  max-width: 480px;
  margin: 0 auto;
  font-style: italic;
}

/* Footer */
.footer { padding: 32px 40px; border-top: 1px solid var(--border); }
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-logo {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1rem;
  color: var(--navy);
}
.footer-tagline { font-size: 0.8125rem; color: var(--muted); margin-left: 12px; }
.footer-meta { font-size: 0.8125rem; color: var(--muted); }

/* Responsive */
@media (max-width: 768px) {
  .hero { padding: 56px 24px 64px; }
  .features, .howitworks, .pricing { padding: 56px 24px; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-item { border-right: none; }
  .feature-item:nth-last-child(-n+2) { border-bottom: 1px solid var(--border); }
  .feature-item:last-child { border-bottom: none; }
  .steps { flex-direction: column; gap: 32px; }
  .step { text-align: left; padding: 0; }
  .step:last-child { text-align: left; }
  .step-icon { margin-left: 0; }
  .step-connector { width: 40px; height: 1px; margin-top: 0; }
  .pricing-grid { grid-template-columns: 1fr; }
  .nav { padding: 0 24px; }
  .closing { padding: 64px 24px; }
  .footer-inner { flex-direction: column; gap: 8px; text-align: center; }
}