:root {
  --navy: #0f1c2e;
  --navy-light: #1a2f47;
  --amber: #d97706;
  --amber-light: #fbbf24;
  --parchment: #faf8f5;
  --parchment-dark: #f0ece4;
  --text: #1a1a2e;
  --text-light: #4a5568;
  --white: #ffffff;
  --green: #059669;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--parchment);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .section-headline {
  font-family: 'Fraunces', serif;
}

/* NAV */
.nav {
  padding: 20px 0;
  border-bottom: 1px solid var(--parchment-dark);
  background: var(--parchment);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.5px;
}
.nav-tagline {
  font-size: 13px;
  color: var(--text-light);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* HERO */
.hero {
  padding: 80px 0 100px;
  background: var(--parchment);
  overflow: hidden;
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 20px;
}
.hero-headline {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -1px;
}
.hero-lede {
  font-size: 17px;
  line-height: 1.65;
  color: var(--text-light);
  max-width: 460px;
  margin-bottom: 40px;
}
.hero-stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hero-stat-num {
  font-family: 'Fraunces', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--navy);
}
.hero-stat-label {
  font-size: 12px;
  color: var(--text-light);
  max-width: 280px;
}

/* Hero Visual */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-illustration {
  position: relative;
  width: 320px;
  height: 300px;
}
.hero-card {
  position: absolute;
  background: var(--white);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 4px 20px rgba(15,28,46,0.08), 0 1px 3px rgba(15,28,46,0.06);
  display: flex;
  flex-direction: column;
  gap: 10px;
  border: 1px solid rgba(15,28,46,0.06);
}
.hero-card-1 {
  top: 0; left: 0;
  width: 200px;
}
.hero-card-2 {
  top: 30px; right: 0;
  width: 180px;
}
.hero-card-3 {
  bottom: 0; left: 30px;
  width: 190px;
}
.card-icon {
  color: var(--amber);
  margin-bottom: 4px;
}
.card-lines {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.card-line {
  height: 8px;
  border-radius: 4px;
  background: var(--parchment-dark);
}
.card-line-short { width: 60%; }
.card-line-med { width: 80%; }
.card-line-long { width: 100%; }
.card-badge {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 4px 8px;
  border-radius: 20px;
  width: fit-content;
}
.card-badge-amber { background: rgba(217,119,6,0.12); color: var(--amber); }
.card-badge-green { background: rgba(5,150,105,0.1); color: var(--green); }
.card-badge-navy { background: rgba(15,28,46,0.08); color: var(--navy); }

/* PROOF */
.proof {
  background: var(--navy);
  padding: 72px 0;
}
.proof-inner {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 32px;
  text-align: center;
}
.proof-quote {
  font-family: 'Fraunces', serif;
  font-size: clamp(22px, 3vw, 30px);
  font-style: italic;
  color: var(--white);
  line-height: 1.4;
  margin-bottom: 20px;
}
.proof-context {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
}
.proof-context em { color: var(--amber-light); font-style: normal; }

/* SECTION SHARED */
.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 12px;
}
.section-headline {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 56px;
}

/* PROCESS */
.process {
  padding: 100px 0;
  background: var(--white);
}
.process-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.process-step {
  position: relative;
}
.process-step::before {
  content: '';
  position: absolute;
  top: 32px;
  right: -24px;
  width: 48px;
  height: 1px;
  background: var(--parchment-dark);
}
.process-step:last-child::before { display: none; }
.step-num {
  font-family: 'Fraunces', serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--parchment-dark);
  line-height: 1;
  margin-bottom: 16px;
}
.step-title {
  font-size: 17px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.4;
}
.step-desc {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
}

/* FEATURES */
.features {
  padding: 100px 0;
  background: var(--parchment);
}
.features-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}
.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 80px;
}
.feature {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.feature-icon {
  width: 44px;
  height: 44px;
  background: var(--navy);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber-light);
  margin-bottom: 4px;
}
.feature-title {
  font-size: 17px;
  font-weight: 600;
  color: var(--navy);
}
.feature-desc {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.65;
}

/* PRICING */
.pricing {
  padding: 100px 0;
  background: var(--white);
}
.pricing-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.pricing-card {
  background: var(--parchment);
  border: 1px solid var(--parchment-dark);
  border-radius: 20px;
  padding: 36px 28px;
  position: relative;
  transition: transform 0.2s;
}
.pricing-card:hover { transform: translateY(-2px); }
.pricing-card-featured {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}
.pricing-card-featured .pricing-tier,
.pricing-card-featured .pricing-price,
.pricing-card-featured .pricing-tagline,
.pricing-card-featured .pricing-features li {
  color: var(--white);
}
.pricing-card-featured .pricing-features li { color: rgba(255,255,255,0.8); }
.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--amber);
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 20px;
}
.pricing-tier {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 10px;
}
.pricing-price {
  font-family: 'Fraunces', serif;
  font-size: 44px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.pricing-per {
  font-size: 20px;
  font-weight: 400;
}
.pricing-tagline {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 24px;
  line-height: 1.4;
}
.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pricing-features li {
  font-size: 14px;
  color: var(--text);
  display: flex;
  gap: 10px;
  line-height: 1.4;
}
.pricing-features li::before {
  content: '';
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M3 8l3 3 7-7' stroke='%23d97706' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  margin-top: 1px;
}
.pricing-note {
  font-size: 14px;
  color: var(--text-light);
  text-align: center;
  line-height: 1.5;
}

/* MANIFESTO */
.manifesto {
  padding: 100px 0;
  background: var(--parchment);
}
.manifesto-inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 32px;
  text-align: center;
}
.manifesto-headline {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 28px;
}
.manifesto-body {
  font-size: 17px;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 20px;
}
.manifesto-rule {
  margin-top: 40px;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 20px;
  color: var(--navy);
  padding-top: 40px;
  border-top: 2px solid var(--parchment-dark);
}

/* FOOTER */
.footer {
  background: var(--navy);
  padding: 60px 0;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  text-align: center;
}
.footer-brand {
  font-family: 'Fraunces', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.footer-tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 24px;
}
.footer-links {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
  margin-bottom: 16px;
}
.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.25);
}

/* MOBILE */
@media (max-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero-visual { display: none; }
  .process-steps {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .process-step::before { display: none; }
  .feature-grid {
    grid-template-columns: 1fr;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .section-headline { margin-bottom: 40px; }
  .manifesto-rule { font-size: 17px; }
}
