:root {
  --navy: #1a2b4a;
  --amber: #f5a623;
  --amber-dark: #e8920d;
  --off-white: #f8f5f0;
  --cream: #f0ece4;
  --charcoal: #2c2c2c;
  --grey-mid: #6b7280;
  --grey-light: #d1cdc6;
  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

body {
  font-family: var(--font-body);
  background: var(--off-white);
  color: var(--navy);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* NAV */
.nav-bar {
  padding: 1.25rem 2rem;
  border-bottom: 1px solid var(--grey-light);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.nav-tagline {
  font-size: 0.8rem;
  color: var(--grey-mid);
  font-weight: 400;
  border-left: 1px solid var(--grey-light);
  padding-left: 1rem;
}

/* HERO */
.hero {
  background: var(--navy);
  color: #fff;
  padding: 5rem 2rem 0;
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  padding-bottom: 4rem;
}
.hero-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1.25rem;
  font-weight: 600;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.1;
  font-weight: 400;
  color: #fff;
  margin-bottom: 1.5rem;
}
.hero-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  max-width: 480px;
  line-height: 1.7;
}
.hero-stat-block {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 2.5rem;
}
.hero-stat {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.stat-number {
  font-family: var(--font-display);
  font-size: 4.5rem;
  color: var(--amber);
  line-height: 1;
  display: block;
}
.stat-range {
  font-size: 2.5rem;
}
.stat-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  display: block;
  margin-top: 0.5rem;
}
.hero-stat-secondary {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.stat-row {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
}
.stat-val {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: #fff;
}
.stat-desc {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
}
.hero-supplier-strip {
  background: rgba(0,0,0,0.25);
  padding: 1rem 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  max-width: 100%;
}
.strip-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.45);
  white-space: nowrap;
}
.strip-logos {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.strip-logo-item {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
}
.strip-dot {
  width: 3px;
  height: 3px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
}

/* SAVINGS PROOF */
.savings-proof {
  background: var(--off-white);
  padding: 6rem 2rem;
}
.proof-inner { max-width: 1100px; margin: 0 auto; }
.proof-headline {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: var(--navy);
  margin-bottom: 3rem;
  font-weight: 400;
}
.proof-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.proof-card {
  background: #fff;
  border: 1px solid var(--grey-light);
  border-radius: 10px;
  padding: 2rem;
  position: relative;
}
.proof-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--amber);
  border-radius: 10px 10px 0 0;
}
.proof-card-icon {
  width: 32px;
  height: 32px;
  background: var(--amber);
  border-radius: 8px;
  margin-bottom: 1.25rem;
  opacity: 0.9;
}
.proof-card-stat {
  font-family: var(--font-display);
  font-size: 2.25rem;
  color: var(--navy);
  margin-bottom: 0.25rem;
}
.proof-card-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--amber-dark);
  font-weight: 700;
  margin-bottom: 1rem;
}
.proof-card-body {
  font-size: 0.875rem;
  color: var(--grey-mid);
  line-height: 1.65;
}

/* HOW IT WORKS */
.how-it-works {
  background: var(--cream);
  padding: 6rem 2rem;
}
.hiw-inner { max-width: 1100px; margin: 0 auto; }
.section-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--amber-dark);
  font-weight: 700;
  margin-bottom: 1rem;
}
.hiw-headline {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  color: var(--navy);
  font-weight: 400;
  margin-bottom: 3.5rem;
  max-width: 600px;
}
.hiw-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
  border-top: 1px solid var(--grey-light);
  padding-top: 3rem;
}
.step-num {
  font-family: var(--font-display);
  font-size: 3rem;
  color: rgba(26,43,74,0.12);
  display: block;
  margin-bottom: 1rem;
}
.step-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.75rem;
  font-family: var(--font-body);
}
.step-body {
  font-size: 0.8rem;
  color: var(--grey-mid);
  line-height: 1.65;
}

/* CATEGORIES */
.categories {
  background: var(--navy);
  padding: 6rem 2rem;
  color: #fff;
}
.cat-inner { max-width: 1100px; margin: 0 auto; }
.categories .section-label { color: var(--amber); }
.cat-headline {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: #fff;
  margin-bottom: 3rem;
  font-weight: 400;
}
.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.cat-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 1.75rem;
  position: relative;
}
.cat-card--featured {
  background: rgba(245,166,35,0.12);
  border-color: rgba(245,166,35,0.25);
}
.cat-card--wide {
  grid-column: 1 / -1;
}
.cat-card-discount {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--amber);
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.cat-card-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.4rem;
  font-family: var(--font-body);
}
.cat-card-meta {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.75rem;
}
.cat-card-desc {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.55;
}

/* SUPPLIER WALL */
.supplier-wall {
  background: var(--off-white);
  padding: 6rem 2rem;
}
.sw-inner { max-width: 1100px; margin: 0 auto; }
.sw-headline {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  color: var(--navy);
  font-weight: 400;
  margin-bottom: 1.25rem;
}
.sw-body {
  font-size: 1rem;
  color: var(--grey-mid);
  max-width: 580px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}
.sw-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.sw-tag {
  background: #fff;
  border: 1px solid var(--grey-light);
  border-radius: 6px;
  padding: 0.5rem 1.25rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy);
}
.sw-tag--more {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  border-color: var(--navy);
}

/* MANIFESTO */
.manifesto {
  background: var(--cream);
  padding: 7rem 2rem;
}
.manifesto-inner { max-width: 1100px; margin: 0 auto; }
.manifesto-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--navy);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 2.5rem;
}
.manifesto-body {
  font-size: 1.05rem;
  color: var(--charcoal);
  max-width: 640px;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.manifesto-body--accent {
  color: var(--navy);
  font-weight: 600;
}
.manifesto-divider {
  width: 60px;
  height: 3px;
  background: var(--amber);
  margin: 3rem 0;
}
.manifesto-closing {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  color: var(--navy);
  font-style: italic;
  font-weight: 400;
}

/* FOOTER */
.footer {
  background: var(--navy);
  padding: 3rem 2rem;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: #fff;
  display: block;
  margin-bottom: 0.5rem;
}
.footer-desc {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  max-width: 280px;
}
.footer-copy {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .proof-cards { grid-template-columns: 1fr; }
  .hiw-steps { grid-template-columns: 1fr 1fr; }
  .cat-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .hiw-steps { grid-template-columns: 1fr; }
  .nav-tagline { display: none; }
  .hero { padding: 3rem 1.25rem 0; }
  .hero-supplier-strip { padding: 0.75rem 1.25rem; }
}