:root {
  --bg: #faf7f2;
  --bg-alt: #f0ebe2;
  --fg: #1c1917;
  --fg-muted: #78716c;
  --accent: #c2410c;
  --accent-light: #fed7aa;
  --surface: #ffffff;
  --border: #e7e5e0;
  --nav-bg: #1c1917;
  --nav-fg: #faf7f2;
  --card-shadow: 0 1px 3px rgba(0,0,0,0.08), 0 4px 16px rgba(0,0,0,0.05);
  --card-radius: 12px;
}

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

html { scroll-behavior: smooth; }

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

/* ── NAV ── */
.nav {
  background: var(--nav-bg);
  padding: 16px 40px;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.nav-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 0.08em;
  color: var(--nav-fg);
}
.nav-tag {
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--accent);
  background: rgba(194,65,12,0.15);
  padding: 2px 8px;
  border-radius: 4px;
}

/* ── HERO ── */
.hero {
  background: var(--nav-bg);
  color: var(--nav-fg);
  padding: 80px 40px 64px;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 80px;
  align-items: center;
}
.hero-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.hero-headline {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--nav-fg);
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 18px;
  color: #a8a29e;
  max-width: 480px;
  line-height: 1.7;
}
.hero-card {
  background: #292524;
  border: 1px solid #44403c;
  border-radius: 16px;
  padding: 32px;
}
.card-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #78716c;
  margin-bottom: 12px;
}
.card-stat {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 56px;
  color: var(--nav-fg);
  line-height: 1;
}
.card-desc {
  font-size: 13px;
  color: #78716c;
  margin-top: 4px;
  margin-bottom: 20px;
}
.card-divider {
  height: 1px;
  background: #44403c;
  margin-bottom: 20px;
}
.card-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 12px;
}
.card-stat-sm {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 28px;
  color: var(--nav-fg);
}
.card-desc-sm {
  font-size: 13px;
  color: #78716c;
}
.hero-bottom-rule {
  max-width: 1200px;
  margin: 56px auto 0;
  height: 1px;
  background: #292524;
}

/* ── SECTION SHARED ── */
.section-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-title {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--fg);
}

/* ── HOW IT WORKS ── */
.hiw {
  padding: 100px 40px;
  background: var(--bg);
}
.hiw-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.hiw .section-title {
  margin-bottom: 64px;
}
.hiw-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}
.hiw-step {
  flex: 1;
}
.step-num {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 40px;
  color: var(--border);
  line-height: 1;
  margin-bottom: 16px;
}
.step-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--fg);
  margin-bottom: 12px;
}
.step-body {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.65;
  max-width: 220px;
}
.hiw-arrow {
  color: var(--accent);
  padding-top: 28px;
  flex-shrink: 0;
  padding-left: 20px;
  padding-right: 20px;
}

/* ── DIFFERENTIATORS ── */
.diff {
  padding: 80px 40px;
  background: var(--bg-alt);
}
.diff-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.diff-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--border);
  border-radius: 20px;
  overflow: hidden;
}
.diff-card {
  background: var(--surface);
  padding: 48px;
}
.diff-card--large {
  grid-column: span 1;
}
.diff-icon {
  width: 48px;
  height: 48px;
  background: var(--accent-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 24px;
}
.diff-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--fg);
  margin-bottom: 12px;
}
.diff-body {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* ── STATS ── */
.stats {
  padding: 60px 40px;
  background: var(--accent);
}
.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.stats-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.stat-item {
  text-align: center;
  flex: 1;
}
.stat-num {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 36px;
  color: #fff;
  line-height: 1;
}
.stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 500;
}
.stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.25);
}

/* ── SELLERS ── */
.sellers {
  padding: 100px 40px;
  background: var(--bg);
}
.sellers-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.sellers-body {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}
.sellers-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 32px;
}
.sellers-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 500;
  color: var(--fg);
}
.sellers-list li svg {
  color: var(--accent);
  flex-shrink: 0;
}
.seller-quote {
  background: var(--bg-alt);
  border-radius: 16px;
  padding: 40px;
  border-left: 4px solid var(--accent);
}
.quote-text {
  font-size: 18px;
  color: var(--fg);
  line-height: 1.7;
  font-style: italic;
}
.quote-attr {
  font-size: 13px;
  color: var(--fg-muted);
  margin-top: 16px;
  font-weight: 500;
}

/* ── CLOSING ── */
.closing {
  background: var(--nav-bg);
  padding: 100px 40px;
  text-align: center;
}
.closing-inner {
  max-width: 720px;
  margin: 0 auto;
}
.closing-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}
.closing-headline {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--nav-fg);
  margin-bottom: 24px;
}
.closing-sub {
  font-size: 18px;
  color: #78716c;
}

/* ── FOOTER ── */
.footer {
  background: var(--bg-alt);
  padding: 48px 40px;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.footer-brand {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 12px;
}
.footer-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.08em;
  color: var(--fg);
}
.footer-tag {
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 11px;
  color: var(--accent);
}
.footer-note {
  font-size: 14px;
  color: var(--fg-muted);
  margin-bottom: 8px;
}
.footer-legal {
  font-size: 12px;
  color: #a8a29e;
}

/* ── MOBILE ── */
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-card { display: none; }
  .hiw-steps { flex-direction: column; gap: 40px; }
  .hiw-arrow { display: none; }
  .diff-grid { grid-template-columns: 1fr; }
  .diff-card { padding: 32px; }
  .sellers-inner { grid-template-columns: 1fr; gap: 40px; }
  .stats-row { flex-wrap: wrap; gap: 32px; }
  .stat-divider { display: none; }
  .stat-item { flex: 0 0 calc(50% - 16px); }
}