:root {
  --bg: #F6F2EA;
  --bg-dark: #0B2B1A;
  --fg: #0B2B1A;
  --fg-light: #3A5A40;
  --accent: #D4922A;
  --accent-dim: rgba(212, 146, 42, 0.15);
  --border: rgba(11, 43, 26, 0.12);
  --muted: #6B7B6A;
  --white: #FFFFFF;
}

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

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

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  line-height: 1.2;
}

/* ─── HERO ─────────────────────────────────────── */
.hero { padding: 80px 60px 60px; }
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.hero-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.hero-headline {
  font-size: clamp(42px, 5vw, 72px);
  color: var(--bg-dark);
  margin-bottom: 24px;
}
.hero-headline em {
  font-style: italic;
  color: var(--accent);
}
.hero-lede {
  font-size: 17px;
  color: var(--fg-light);
  max-width: 420px;
  line-height: 1.7;
}
.hero-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.marketplace-web {
  width: 100%;
  max-width: 380px;
}
.mw-svg { width: 100%; height: auto; }
.mw-labels {
  display: flex;
  gap: 32px;
  margin-top: 20px;
  justify-content: flex-end;
}
.mw-metric { text-align: right; }
.mw-value {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--bg-dark);
}
.mw-label {
  display: block;
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 1200px;
  margin: 60px auto 0;
  padding: 32px 40px;
  background: var(--bg-dark);
  border-radius: 4px;
}
.stat { text-align: center; }
.stat-value {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--accent);
}
.stat-desc {
  display: block;
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4px;
}
.stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.15);
}

/* ─── PROOF ────────────────────────────────────── */
.proof { background: var(--white); padding: 80px 60px; }
.proof-inner { max-width: 1200px; margin: 0 auto; }
.proof-headline h2 {
  font-size: 36px;
  color: var(--bg-dark);
  margin-bottom: 48px;
}
.proof-cases {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 48px;
}
.case {
  padding: 32px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 4px;
}
.case-brand {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}
.case-metric {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 12px;
}
.case-detail { font-size: 14px; color: var(--fg-light); line-height: 1.6; }
.proof-trust {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.trust-logo { height: 28px; width: auto; }
.trust-stars { display: flex; align-items: center; gap: 8px; }
.trust-stars span:first-child { color: var(--accent); font-size: 18px; letter-spacing: 2px; }
.trust-score { font-weight: 600; font-size: 16px; }
.trust-count { font-size: 13px; color: var(--muted); }

/* ─── CHANNELS ─────────────────────────────────── */
.channels { padding: 80px 60px; background: var(--bg); }
.channels-inner { max-width: 1200px; margin: 0 auto; }
.channels-title {
  font-size: 36px;
  color: var(--bg-dark);
  margin-bottom: 16px;
}
.channels-sub {
  font-size: 17px;
  color: var(--fg-light);
  margin-bottom: 48px;
}
.channel-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.channel-card {
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
}
.channel-icon { margin-bottom: 16px; }
.channel-card h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--bg-dark);
}
.channel-card p { font-size: 14px; color: var(--muted); line-height: 1.6; }
.channels-footnote {
  margin-top: 40px;
  text-align: center;
}
.channels-footnote p {
  font-size: 13px;
  color: var(--muted);
  font-style: italic;
}

/* ─── MARLEY ────────────────────────────────────── */
.marley { background: var(--bg-dark); padding: 80px 60px; }
.marley-inner { max-width: 1200px; margin: 0 auto; }
.marley-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.marley-headline {
  font-size: clamp(32px, 4vw, 52px);
  color: var(--white);
  margin-bottom: 48px;
}
.marley-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.marley-item { display: flex; gap: 20px; }
.marley-icon { flex-shrink: 0; margin-top: 4px; }
.marley-content h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}
.marley-content p { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.6; }

/* ─── CLOSING ───────────────────────────────────── */
.closing { padding: 100px 60px; background: var(--bg); }
.closing-inner { max-width: 1200px; margin: 0 auto; position: relative; }
.closing-headline {
  font-size: clamp(36px, 5vw, 64px);
  color: var(--bg-dark);
  max-width: 700px;
  margin-bottom: 24px;
}
.closing-body {
  font-size: 18px;
  color: var(--fg-light);
  max-width: 560px;
  line-height: 1.7;
}
.closing-gradient {
  position: absolute;
  right: -60px;
  top: -20px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--accent-dim) 0%, transparent 70%);
  pointer-events: none;
}

/* ─── FOOTER ────────────────────────────────────── */
footer {
  padding: 32px 60px;
  background: var(--bg-dark);
  text-align: center;
}
footer p { font-size: 12px; color: rgba(255,255,255,0.35); }

/* ─── RESPONSIVE ────────────────────────────────── */
@media (max-width: 768px) {
  .hero, .proof, .channels, .marley, .closing { padding: 48px 24px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-right { align-items: flex-start; }
  .hero-stats { flex-direction: column; gap: 24px; padding: 24px; }
  .stat-divider { width: 48px; height: 1px; }
  .proof-cases { grid-template-columns: 1fr; }
  .channel-grid { grid-template-columns: 1fr; }
  .marley-grid { grid-template-columns: 1fr; }
  .closing-gradient { display: none; }
}