:root {
  --bg: #0b0e14;
  --fg: #e8e4dc;
  --accent: #d4a853;
  --accent-dim: #9a7535;
  --muted: #7a7268;
  --surface: #141820;
  --border: #1e2530;
}

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

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

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

/* ── HERO ── */
.hero {
  padding: 80px 48px 60px;
  border-bottom: 1px solid var(--border);
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 64px;
  align-items: center;
}
.hero-eyebrow {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 20px;
  font-weight: 500;
}
.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  color: #f5f0e8;
  margin-bottom: 24px;
}
.hero-lede {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 500px;
  line-height: 1.7;
}
.hero-visual {
  display: flex;
  justify-content: center;
}
.specimen-frame {
  background: linear-gradient(145deg, #111827, #0a0f18);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(212,168,83,0.1) inset;
}
.specimen-inner { width: 160px; }
.specimen-inner svg { width: 100%; height: auto; }

/* ── STATS BAR ── */
.stats-bar {
  padding: 32px 48px;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}
.stats-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.stat-item { text-align: center; }
.stat-number {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent);
}
.stat-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-top: 2px;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* ── CATEGORIES ── */
.categories { padding: 80px 48px; border-bottom: 1px solid var(--border); }
.categories-inner { max-width: 1100px; margin: 0 auto; }
.section-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent-dim);
  margin-bottom: 12px;
}
.section-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 600;
  color: #f5f0e8;
  margin-bottom: 48px;
  line-height: 1.2;
}
.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.category-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 24px;
  transition: border-color 0.2s;
}
.category-card:hover { border-color: var(--accent-dim); }
.category-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 16px;
}
.category-icon svg { width: 100%; height: 100%; }
.category-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #f0ebe0;
  margin-bottom: 8px;
}
.category-card p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.5;
}

/* ── PROVE ── */
.prove { padding: 80px 48px; border-bottom: 1px solid var(--border); }
.prove-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 64px;
  align-items: center;
}
.prove-body {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 32px;
}
.prove-points { display: flex; flex-direction: column; gap: 16px; }
.prove-point {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.9rem;
  color: #ccc8be;
}
.prove-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

/* Dashboard mock */
.dashboard-mock {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
}
.mock-header {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,0.03);
}
.mock-dots { display: flex; gap: 6px; }
.mock-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #333;
}
.mock-body { padding: 20px; }
.mock-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.mock-metric {}
.mock-label {
  display: block;
  font-size: 0.65rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}
.mock-value {
  display: block;
  font-size: 1.4rem;
  font-weight: 600;
  color: #f0ebe0;
  font-family: 'DM Sans', sans-serif;
}
.mock-change {
  display: block;
  font-size: 0.7rem;
  margin-top: 2px;
}
.mock-change.up { color: #5ab87a; }
.mock-change.neutral { color: var(--muted); }
.mock-bar { margin-top: 8px; }
.mock-bar-label {
  font-size: 0.65rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}
.mock-bar-track {
  height: 6px;
  background: var(--border);
  border-radius: 3px;
  overflow: hidden;
}
.mock-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent-dim), var(--accent));
  border-radius: 3px;
}

/* ── SOURCING ── */
.sourcing { padding: 80px 48px; border-bottom: 1px solid var(--border); }
.sourcing-inner { max-width: 1100px; margin: 0 auto; }
.sourcing-body {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.8;
  max-width: 680px;
  margin-bottom: 48px;
}
.sourcing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  border-top: 1px solid var(--border);
  padding-top: 48px;
}
.sourcing-stat {}
.sourcing-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 8px;
}
.sourcing-desc {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.5;
}

/* ── CLOSING ── */
.closing {
  padding: 100px 48px;
  text-align: center;
  background: linear-gradient(180deg, var(--bg) 0%, #0e1520 100%);
}
.closing-inner { max-width: 720px; margin: 0 auto; }
.closing-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  color: #f5f0e8;
  margin-bottom: 20px;
}
.closing-body {
  font-size: 1.1rem;
  color: var(--accent-dim);
  font-style: italic;
}

/* ── FOOTER ── */
.footer { padding: 48px; border-top: 1px solid var(--border); }
.footer-inner { max-width: 1100px; margin: 0 auto; text-align: center; }
.footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 8px;
}
.footer-sub {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 4px;
}
.footer-note {
  font-size: 0.75rem;
  color: #555;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .hero { padding: 60px 24px 48px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: none; }
  .stats-inner { flex-wrap: wrap; justify-content: center; }
  .stat-divider { display: none; }
  .category-grid { grid-template-columns: 1fr 1fr; }
  .prove-inner { grid-template-columns: 1fr; }
  .prove-visual { order: -1; }
  .sourcing-grid { grid-template-columns: 1fr; }
  .closing { padding: 72px 24px; }
  .categories, .prove, .sourcing { padding: 60px 24px; }
}
@media (max-width: 480px) {
  .category-grid { grid-template-columns: 1fr; }
  .hero-headline { font-size: 2.2rem; }
}