:root {
  --bg: #F7F6F1;
  --bg-alt: #FFFFFF;
  --fg: #1C2B1E;
  --fg-muted: #5E6B58;
  --accent: #2D5016;
  --accent-light: #C8D8B8;
  --warm: #D4820A;
  --warm-light: #F5E0B8;
  --border: #D4D0C8;
  --card-shadow: rgba(28, 43, 30, 0.06);
  --hero-bg: #1C2B1E;
  --hero-fg: #F0EFE8;
}

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

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

/* HERO */
.hero {
  background: var(--hero-bg);
  color: var(--hero-fg);
  padding: 100px 48px 96px;
}
.hero-inner { max-width: 960px; margin: 0 auto; }
.hero-kicker {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #8BAA7C;
  margin-bottom: 28px;
}
.hero-headline {
  font-family: 'Lora', serif;
  font-size: clamp(44px, 6vw, 80px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--hero-fg);
  margin-bottom: 28px;
}
.hero-headline em { font-style: italic; color: #A8C48A; }
.hero-lede {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.7;
  color: #B8C4AE;
  max-width: 540px;
  margin-bottom: 56px;
}
.hero-visual {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* CLAIM CARDS */
.claim-card {
  background: #263D2A;
  border: 1px solid #3D5E39;
  border-radius: 12px;
  padding: 20px 24px;
  min-width: 220px;
  flex: 1;
}
.claim-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.claim-date {
  font-size: 12px;
  color: #8BAA7C;
}
.claim-status {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 20px;
}
.claim-status--active { background: #3D6B35; color: #9DCA9E; }
.claim-status--pending { background: #5A4410; color: #C8974A; }
.claim-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.claim-code { font-size: 13px; color: #C4D0BE; }
.claim-amount { font-size: 15px; font-weight: 600; color: #E4ECD8; }

/* FEATURES */
.features { padding: 96px 48px; background: var(--bg); }
.features-inner { max-width: 960px; margin: 0 auto; }
.features-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--warm);
  margin-bottom: 48px;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 48px;
}
.feature-icon {
  width: 44px;
  height: 44px;
  background: var(--accent-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 16px;
}
.feature-title {
  font-family: 'Lora', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 10px;
}
.feature-desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--fg-muted);
}

/* OUTCOMES */
.outcomes { padding: 96px 48px; background: #1C2B1E; }
.outcomes-inner { max-width: 960px; margin: 0 auto; }
.outcomes-headline {
  font-family: 'Lora', serif;
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 600;
  line-height: 1.15;
  color: #F0EFE8;
  margin-bottom: 24px;
}
.outcomes-headline em { font-style: italic; color: #A8C48A; }
.outcomes-sub {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.7;
  color: #8BAA7C;
  max-width: 560px;
  margin-bottom: 56px;
}
.outcomes-stats {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}
.stat { display: flex; flex-direction: column; gap: 6px; }
.stat-value {
  font-family: 'Lora', serif;
  font-size: 40px;
  font-weight: 600;
  color: #D4820A;
  line-height: 1;
}
.stat-label {
  font-size: 13px;
  color: #7A9A6A;
  font-weight: 400;
}

/* PROCESS */
.process { padding: 96px 48px; background: var(--bg-alt); }
.process-inner { max-width: 960px; margin: 0 auto; }
.process-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 56px;
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.step { padding: 0 32px 0 0; }
.step-number {
  font-family: 'Lora', serif;
  font-size: 48px;
  font-weight: 600;
  color: var(--border);
  line-height: 1;
  margin-bottom: 20px;
  display: block;
}
.step-title {
  font-family: 'Lora', serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 10px;
}
.step-desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--fg-muted);
}

/* CLOSING */
.closing {
  padding: 96px 48px;
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.closing-inner { max-width: 960px; margin: 0 auto; }
.closing-headline {
  font-family: 'Lora', serif;
  font-size: clamp(24px, 3.5vw, 44px);
  font-weight: 600;
  line-height: 1.2;
  color: var(--fg);
  max-width: 720px;
  margin-bottom: 24px;
}
.closing-sub {
  font-size: 16px;
  font-weight: 300;
  color: var(--fg-muted);
  max-width: 560px;
  line-height: 1.7;
}

/* FOOTER */
.footer { padding: 40px 48px; background: var(--accent); }
.footer-inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-brand {
  font-family: 'Lora', serif;
  font-size: 18px;
  font-weight: 600;
  color: #F0EFE8;
}
.footer-tagline {
  font-size: 14px;
  color: #8BAA7C;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero { padding: 64px 24px 72px; }
  .hero-visual { flex-direction: column; }
  .features { padding: 64px 24px; }
  .features-grid { grid-template-columns: 1fr; gap: 32px; }
  .outcomes { padding: 64px 24px; }
  .process { padding: 64px 24px; }
  .process-steps { grid-template-columns: 1fr; gap: 40px; }
  .closing { padding: 64px 24px; }
  .footer { padding: 32px 24px; }
  .footer-inner { flex-direction: column; gap: 8px; text-align: center; }
}
@media (max-width: 480px) {
  .hero-headline { font-size: 36px; }
  .outcomes-headline { font-size: 28px; }
  .stat-value { font-size: 32px; }
  .step-number { font-size: 36px; }
}