:root {
  --bg: #faf8f4;
  --fg: #111827;
  --accent: #1a3a2a;
  --accent-light: #2d5c43;
  --amber: #d97706;
  --amber-light: #fbbf24;
  --surface: #ffffff;
  --surface-alt: #f3f0e8;
  --muted: #6b7280;
  --border: #e5e1d8;
  --green-tag: #dcfce7;
  --green-tag-text: #166534;
  --amber-tag: #fef3c7;
  --amber-tag-text: #92400e;
  --blue-tag: #dbeafe;
  --blue-tag-text: #1e40af;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { font-family: 'DM Serif Display', serif; font-weight: 400; }

/* NAV */
.nav {
  background: var(--accent);
  color: #fff;
  padding: 16px 0;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'DM Serif Display', serif;
  font-size: 22px;
  letter-spacing: -0.3px;
}
.nav-tagline {
  font-size: 13px;
  opacity: 0.7;
  letter-spacing: 0.3px;
}

/* HERO */
.hero {
  background: var(--accent);
  color: #fff;
  position: relative;
  overflow: hidden;
  padding: 80px 0 96px;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(45,92,67,0.6) 0%, transparent 65%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
}
.hero-eyebrow {
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  opacity: 0.6;
  margin-bottom: 20px;
  font-weight: 600;
}
.hero-headline {
  font-size: clamp(36px, 4vw, 52px);
  line-height: 1.1;
  margin-bottom: 24px;
}
.hero-lede {
  font-size: 17px;
  opacity: 0.85;
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 440px;
}
.hero-proof {
  display: flex;
  align-items: center;
  gap: 24px;
}
.hero-proof-item { display: flex; flex-direction: column; }
.hero-proof-num {
  font-family: 'DM Serif Display', serif;
  font-size: 22px;
}
.hero-proof-label { font-size: 11px; opacity: 0.6; margin-top: 2px; text-transform: uppercase; letter-spacing: 0.5px; }
.hero-proof-divider { width: 1px; height: 36px; background: rgba(255,255,255,0.2); }

/* REPORT CARD */
.hero-report-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 32px 64px rgba(0,0,0,0.25);
  font-size: 13px;
}
.report-card-header {
  background: #f5f3ee;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--border);
}
.report-card-dots { display: flex; gap: 6px; }
.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot-red { background: #ef4444; }
.dot-amber { background: #f59e0b; }
.dot-green { background: #22c55e; }
.report-card-label { font-size: 12px; color: var(--muted); font-weight: 500; }
.report-card-body { padding: 20px; }
.report-card-meta { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 12px; }
.report-card-title {
  font-size: 18px;
  color: var(--fg);
  margin-bottom: 16px;
  line-height: 1.3;
}
.report-section { margin-bottom: 14px; }
.report-section-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.tag-green { background: var(--green-tag); color: var(--green-tag-text); }
.tag-amber { background: var(--amber-tag); color: var(--amber-tag-text); }
.tag-blue { background: var(--blue-tag); color: var(--blue-tag-text); }
.report-section-text { font-size: 12px; color: #4b5563; line-height: 1.5; }
.report-card-footer {
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
  font-size: 11px;
  color: var(--amber);
  font-weight: 600;
}

/* PREVIEW SECTION */
.preview { background: var(--bg); padding: 88px 0; }
.preview-inner { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.preview-eyebrow {
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--amber);
  font-weight: 600;
  margin-bottom: 16px;
}
.preview-heading {
  font-size: clamp(26px, 3vw, 36px);
  color: var(--fg);
  max-width: 600px;
  line-height: 1.2;
  margin-bottom: 56px;
}
.preview-columns {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 40px;
}
.preview-col {}
.preview-icon {
  width: 44px;
  height: 44px;
  background: var(--accent);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin-bottom: 16px;
}
.preview-col h3 {
  font-size: 17px;
  color: var(--fg);
  margin-bottom: 10px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
}
.preview-col p { font-size: 14px; color: var(--muted); line-height: 1.6; }
.preview-note {
  margin-top: 40px;
  font-size: 13px;
  color: var(--muted);
  max-width: 640px;
  font-style: italic;
}

/* FEATURES */
.features { background: var(--surface); padding: 88px 0; }
.features-inner { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.features-header { margin-bottom: 56px; }
.features-eyebrow {
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--amber);
  font-weight: 600;
  margin-bottom: 12px;
}
.features-heading {
  font-size: clamp(26px, 3vw, 36px);
  color: var(--fg);
  max-width: 560px;
}
.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 40px;
}
.feature-card {}
.feature-num {
  font-family: 'DM Serif Display', serif;
  font-size: 42px;
  color: var(--accent);
  opacity: 0.15;
  margin-bottom: 12px;
  line-height: 1;
}
.feature-card h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 10px;
}
.feature-card p { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* MARKET */
.market { background: var(--surface-alt); padding: 88px 0; }
.market-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.market-eyebrow {
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--amber);
  font-weight: 600;
  margin-bottom: 16px;
}
.market-heading {
  font-size: clamp(24px, 3vw, 34px);
  color: var(--fg);
  line-height: 1.2;
  margin-bottom: 28px;
}
.market-body {
  font-size: 15px;
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 16px;
}
.market-last { margin-bottom: 0; }
.market-right { padding-top: 8px; }
.market-stat {
  border-left: 3px solid var(--amber);
  padding-left: 20px;
  margin-bottom: 32px;
}
.stat-num {
  display: block;
  font-family: 'DM Serif Display', serif;
  font-size: 36px;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-desc { font-size: 14px; color: var(--muted); line-height: 1.5; }

/* PRICING */
.pricing { background: var(--bg); padding: 88px 0; }
.pricing-inner { max-width: 640px; margin: 0 auto; padding: 0 32px; text-align: center; }
.pricing-eyebrow {
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--amber);
  font-weight: 600;
  margin-bottom: 12px;
}
.pricing-heading {
  font-size: clamp(26px, 3vw, 36px);
  color: var(--fg);
  margin-bottom: 40px;
}
.pricing-card {
  background: var(--surface);
  border: 2px solid var(--accent);
  border-radius: 16px;
  padding: 40px 48px;
  text-align: left;
  margin-bottom: 28px;
}
.pricing-amount { display: flex; align-items: baseline; gap: 4px; margin-bottom: 8px; }
.pricing-price {
  font-family: 'DM Serif Display', serif;
  font-size: 56px;
  color: var(--accent);
  line-height: 1;
}
.pricing-period { font-size: 18px; color: var(--muted); }
.pricing-tagline { font-size: 14px; color: var(--muted); margin-bottom: 28px; }
.pricing-features { list-style: none; }
.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--fg);
  margin-bottom: 14px;
}
.pricing-features svg { color: var(--accent); flex-shrink: 0; margin-top: 1px; }
.pricing-sample {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 14px;
  color: var(--muted);
  padding: 16px;
  background: var(--surface-alt);
  border-radius: 8px;
}
.pricing-sample strong { color: var(--fg); }

/* CLOSING */
.closing { background: var(--accent); color: #fff; padding: 96px 0; }
.closing-inner { max-width: 800px; margin: 0 auto; padding: 0 32px; text-align: center; }
.closing-heading {
  font-size: clamp(28px, 3.5vw, 42px);
  line-height: 1.15;
  margin-bottom: 32px;
}
.closing-body {
  font-size: 16px;
  opacity: 0.82;
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.closing-last { margin-bottom: 48px; }
.closing-vision p {
  font-family: 'DM Serif Display', serif;
  font-size: 18px;
  font-style: italic;
  opacity: 0.8;
  line-height: 1.7;
  margin-bottom: 12px;
}
.closing-vision p:last-child { margin-bottom: 0; }

/* FOOTER */
.footer { background: #0a1f14; color: rgba(255,255,255,0.6); padding: 48px 0; }
.footer-inner { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.footer-brand { margin-bottom: 16px; }
.footer-name {
  font-family: 'DM Serif Display', serif;
  font-size: 20px;
  color: #fff;
  display: block;
  margin-bottom: 4px;
}
.footer-tagline { font-size: 13px; opacity: 0.5; }
.footer-meta {
  display: flex;
  gap: 24px;
  font-size: 13px;
  margin-bottom: 20px;
  opacity: 0.7;
}
.footer-legal { font-size: 12px; opacity: 0.4; line-height: 1.6; }

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-right { display: none; }
  .preview-columns { grid-template-columns: 1fr 1fr; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .market-inner { grid-template-columns: 1fr; gap: 48px; }
}
@media (max-width: 600px) {
  .preview-columns { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .hero-proof { flex-wrap: wrap; gap: 16px; }
  .pricing-card { padding: 28px 24px; }
}