/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #0D1B2A;
  --coral: #FF6B35;
  --sand: #F5F0EB;
  --cream: #FAF7F2;
  --slate: #3D5A73;
  --muted: #8A9BB0;
  --white: #FFFFFF;
  --border: rgba(13, 27, 42, 0.1);
}

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

body {
  background: var(--cream);
  color: var(--navy);
  font-family: 'DM Sans', sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-logo {
  font-family: 'Fraunces', serif;
  font-weight: 900;
  font-size: 1.4rem;
  color: var(--navy);
  letter-spacing: -0.02em;
}

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

/* ===== HERO ===== */
.hero {
  position: relative;
  padding-top: 120px;
  padding-bottom: 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--sand) 0%, var(--cream) 60%, #e8ddd4 100%);
  z-index: 0;
}

.hero-bg::before {
  content: '';
  position: absolute;
  right: -20%;
  top: -10%;
  width: 55%;
  height: 120%;
  background: radial-gradient(ellipse at center, rgba(255, 107, 53, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-content {}

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

.hero-headline {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--navy);
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.hero-lede {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--slate);
  max-width: 480px;
}

.hero-cta {
  display: inline-block;
  margin-top: 1.75rem;
  padding: 0.85rem 1.75rem;
  background: var(--coral);
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 12px;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 16px rgba(255, 107, 53, 0.3);
}

.hero-cta:hover {
  background: #e85a27;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.35);
}

.hero-cta:active { transform: translateY(0); }

.hero-stats {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding-left: 2rem;
  border-left: 2px solid var(--coral);
}

.stat {}

.stat-number {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.stat-label {
  display: block;
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ===== PROOF ===== */
.proof {
  background: var(--navy);
  padding: 2.5rem 0;
}

.proof-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.proof-label {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.proof-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.5rem 1rem;
}

.proof-logo-item {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--sand);
}

.proof-sep {
  color: var(--slate);
  font-size: 0.8rem;
}

/* ===== SECTION COMMON ===== */
.section-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin-bottom: 3rem;
  line-height: 1.1;
}

/* ===== FEATURES ===== */
.features {
  padding: 6rem 0;
  background: var(--cream);
}

.features-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

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

.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.feature-card:hover {
  box-shadow: 0 8px 32px rgba(13, 27, 42, 0.1);
  transform: translateY(-2px);
}

.feature-icon {
  width: 52px;
  height: 52px;
  background: var(--sand);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--coral);
  margin-bottom: 1.25rem;
}

.feature-title {
  font-family: 'Fraunces', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.6rem;
  letter-spacing: -0.01em;
}

.feature-desc {
  font-size: 0.88rem;
  color: var(--slate);
  line-height: 1.65;
}

/* ===== PROCESS ===== */
.process {
  padding: 6rem 0;
  background: var(--sand);
}

.process-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

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

.step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid rgba(13, 27, 42, 0.1);
  align-items: start;
}

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

.step-num {
  font-family: 'Fraunces', serif;
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--coral);
  opacity: 0.25;
  letter-spacing: -0.04em;
  line-height: 1;
}

.step-body {}

.step-title {
  font-family: 'Fraunces', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}

.step-desc {
  font-size: 0.92rem;
  color: var(--slate);
  line-height: 1.7;
  max-width: 560px;
}

/* ===== PRICING ===== */
.pricing {
  padding: 6rem 0;
  background: var(--cream);
}

.pricing-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.pricing-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2.5rem;
  position: relative;
}

.pricing-card--featured {
  background: var(--navy);
  border-color: var(--navy);
  transform: scale(1.03);
}

.pricing-card--featured .pricing-tier,
.pricing-card--featured .price-amount {
  color: var(--sand);
}

.pricing-card--featured .pricing-tagline,
.pricing-card--featured .pricing-features li {
  color: rgba(245, 240, 235, 0.7);
}

.pricing-card--featured .pricing-features li {
  color: rgba(245, 240, 235, 0.65);
}

.pricing-badge {
  display: inline-block;
  background: var(--coral);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.pricing-tier {
  font-family: 'Fraunces', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  margin-bottom: 0.5rem;
}

.price-amount {
  font-family: 'Fraunces', serif;
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -0.04em;
  line-height: 1;
}

.price-period {
  font-size: 0.85rem;
  color: var(--muted);
}

.pricing-tagline {
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.pricing-features li {
  font-size: 0.88rem;
  color: var(--slate);
  padding-left: 1.5rem;
  position: relative;
}

.pricing-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  background: var(--coral);
  border-radius: 50%;
}

.pricing-card--featured .pricing-features li::before {
  background: rgba(255, 107, 53, 0.7);
}

/* ===== MANIFESTO ===== */
.manifesto {
  padding: 8rem 0;
  background: var(--navy);
}

.manifesto-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}

.manifesto-quote {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 700;
  color: var(--sand);
  line-height: 1.5;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.manifesto-sub {
  font-size: 0.95rem;
  color: rgba(245, 240, 235, 0.5);
  line-height: 1.7;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--navy);
  border-top: 1px solid rgba(245, 240, 235, 0.08);
  padding: 3rem 0;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}

.footer-brand {
  font-family: 'Fraunces', serif;
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--sand);
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.footer-desc {
  font-size: 0.82rem;
  color: rgba(245, 240, 235, 0.4);
  margin-bottom: 1.5rem;
}

.footer-copy {
  font-size: 0.75rem;
  color: rgba(245, 240, 235, 0.2);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-stats {
    flex-direction: row;
    border-left: none;
    border-top: 2px solid var(--coral);
    padding-left: 0;
    padding-top: 2rem;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card--featured {
    transform: none;
  }

  .step {
    grid-template-columns: 50px 1fr;
    gap: 1rem;
  }

  .step-num {
    font-size: 2.5rem;
  }
}

@media (max-width: 600px) {
  .hero-headline {
    font-size: 2.2rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    flex-direction: column;
    gap: 1.5rem;
  }

  .proof-logos {
    flex-direction: column;
    gap: 0.4rem;
  }

  .proof-sep {
    display: none;
  }
}