/* ─── Variables ─── */
:root {
  --bg: #FAF8F5;
  --bg-alt: #F0EDE7;
  --fg: #1A1A18;
  --fg-muted: #6B6A66;
  --accent: #1B4332;
  --accent-light: #2D6A4F;
  --accent-gold: #D97706;
  --accent-gold-light: #F59E0B;
  --white: #FFFFFF;
  --border: #E2DED5;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;
}

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

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

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--fg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ─── Nav ─── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 248, 245, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--accent);
}
.nav-tag {
  font-size: 0.8rem;
  color: var(--fg-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 500;
}

/* ─── Section label ─── */
.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 2rem;
}

/* ─── Hero ─── */
.hero {
  position: relative;
  padding: 80px 24px 100px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0D2B1A 0%, #1B4332 40%, #2D6A4F 70%, #1B4332 100%);
  z-index: 0;
}
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
}
.hero-content {
  max-width: 720px;
}
.hero-kicker {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(245, 158, 11, 0.9);
  margin-bottom: 1.25rem;
}
.hero-headline {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(3rem, 8vw, 5.5rem);
  line-height: 1.0;
  color: var(--white);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}
.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.75);
  max-width: 560px;
  line-height: 1.65;
  margin-bottom: 2.5rem;
  font-weight: 400;
}
.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}
.hero-proof strong {
  color: var(--white);
  font-weight: 600;
}
.hero-proof span {
  color: rgba(255,255,255,0.55);
  font-size: 0.875rem;
}
.proof-sep {
  color: rgba(255,255,255,0.25) !important;
  font-size: 1rem;
}

/* ─── Stats ─── */
.stats {
  background: var(--accent);
  padding: 48px 24px;
}
.stats-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: center;
}
.stat-block {
  text-align: center;
  padding: 0 2rem;
}
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 2.75rem;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-label {
  display: block;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  font-weight: 400;
}
.stat-divider {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,0.15);
}

/* ─── Features ─── */
.features {
  padding: 96px 24px;
  background: var(--bg);
}
.features-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
}
.feature-card {
  background: var(--bg);
  padding: 2.5rem 2rem;
  transition: background 0.2s;
}
.feature-card:hover {
  background: var(--white);
}
.feature-icon {
  width: 44px;
  height: 44px;
  background: var(--accent);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold-light);
  margin-bottom: 1.25rem;
}
.feature-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  color: var(--fg);
}
.feature-card p {
  font-size: 0.925rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* ─── How ─── */
.how {
  padding: 96px 24px;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.how-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.step-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem;
  align-items: start;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border);
}
.step:last-child { border-bottom: none; }
.step-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 2.5rem;
  color: var(--border);
  line-height: 1;
  padding-top: 0.25rem;
}
.step-content h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
}
.step-content p {
  color: var(--fg-muted);
  font-size: 0.975rem;
  line-height: 1.65;
  max-width: 580px;
}

/* ─── Pricing ─── */
.pricing {
  padding: 96px 24px;
  background: var(--bg);
}
.pricing-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.pricing-card {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  background: var(--bg);
  position: relative;
}
.pricing-card.featured {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}
.pricing-card.featured .price-desc,
.pricing-card.featured .price-features li {
  color: rgba(255,255,255,0.75);
}
.pricing-card.featured .price-features li::before {
  background: rgba(255,255,255,0.2);
}
.pricing-card.featured .price-label,
.pricing-card.featured .price-num,
.pricing-card.featured .price-period {
  color: var(--white);
}
.price-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-gold);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 99px;
}
.pricing-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
}
.price {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  margin-bottom: 0.75rem;
}
.price-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 2.5rem;
  color: var(--accent);
  line-height: 1;
}
.price-period {
  font-size: 1rem;
  color: var(--fg-muted);
}
.pricing-card.featured .price-num,
.pricing-card.featured .price-period {
  color: var(--white);
}
.price-desc {
  font-size: 0.85rem;
  color: var(--fg-muted);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}
.price-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.price-features li {
  font-size: 0.875rem;
  color: var(--fg);
  padding-left: 1.25rem;
  position: relative;
}
.price-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-gold);
}
.pricing-note {
  text-align: center;
  font-size: 0.925rem;
  color: var(--fg-muted);
  font-style: italic;
}

/* ─── Manifesto ─── */
.manifesto {
  padding: 96px 24px;
  background: var(--accent);
}
.manifesto-inner {
  max-width: 720px;
  margin: 0 auto;
}
.manifesto-quote {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--white);
  line-height: 1.4;
  margin-bottom: 2rem;
  font-style: italic;
}
.manifesto-body {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

/* ─── Closing ─── */
.closing {
  padding: 96px 24px;
  text-align: center;
  background: var(--bg);
}
.closing-inner {
  max-width: 680px;
  margin: 0 auto;
}
.closing h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--fg);
  line-height: 1.1;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}
.closing p {
  font-size: 1.1rem;
  color: var(--fg-muted);
  line-height: 1.65;
  max-width: 520px;
  margin: 0 auto;
}

/* ─── Footer ─── */
.footer {
  background: var(--fg);
  padding: 64px 24px 0;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--white);
  display: block;
  margin-bottom: 0.75rem;
}
.footer-tagline {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.4);
  max-width: 280px;
  line-height: 1.5;
}
.footer-links {
  display: flex;
  gap: 3rem;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer-col-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 0.25rem;
}
.footer-col a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.5rem 0;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.25);
}

/* ─── Responsive ─── */
@media (max-width: 900px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: 1fr; gap: 2rem; }
  .stat-divider { display: none; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
}
@media (max-width: 600px) {
  .feature-grid { grid-template-columns: 1fr; }
  .hero { padding: 56px 20px 72px; }
  .hero-headline { font-size: 2.75rem; }
  .step { grid-template-columns: 50px 1fr; gap: 1rem; }
  .step-num { font-size: 1.75rem; }
  .footer-links { flex-direction: column; gap: 1.5rem; }
}
