/* ===== Hemut tokens (lifted from design system) ===== */
@font-face {
  font-family: "Clash Grotesk";
  src: url("fonts/ClashGrotesk-Variable.woff2") format("woff2-variations"),
       url("fonts/ClashGrotesk-Variable.woff") format("woff-variations");
  font-weight: 200 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Manrope";
  src: url("fonts/Manrope-Variable.ttf") format("truetype-variations");
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --yellow: #FFD33B;
  --yellow-deep: #D4A607;
  --yellow-tint: rgba(255, 211, 59, 0.10);

  --ink-1000: #030303;
  --ink-900: #121212;
  --ink-800: #1B1B1B;
  --ink-700: #383838;
  --ink-600: #555555;
  --ink-500: #727272;
  --ink-400: #ABABAB;
  --ink-300: #CCCCCC;
  --ink-200: #EAEAEA;
  --ink-100: #F6F6F6;

  --paper-50: #FEFEFE;
  --paper-100: #FAFAFA;
  --paper-200: #F0F0F0;

  --font-display: "Clash Grotesk", "Space Grotesk", system-ui, sans-serif;
  --font-body: "Manrope", system-ui, -apple-system, sans-serif;

  --ease-out: cubic-bezier(0.16, 1, 0.30, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--ink-900);
  background: var(--paper-50);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.page {
  max-width: 560px;
  margin: 0 auto;
  background: var(--paper-50);
  position: relative;
  overflow: hidden;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  background: var(--ink-1000);
  color: #fff;
  padding: 28px 28px 44px;
  overflow: hidden;
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("images/hero-truck-night.png");
  background-size: cover;
  background-position: center;
  opacity: 0.55;
  z-index: -2;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(3,3,3,0.55) 0%,
    rgba(3,3,3,0.65) 45%,
    rgba(3,3,3,0.95) 100%);
  z-index: -1;
}

.brand-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 17px;
  letter-spacing: -0.01em;
  margin-bottom: 64px;
}
.brand-mark {
  width: 22px;
  height: 24px;
  color: var(--yellow);
}
.brand-divider {
  width: 1px;
  height: 16px;
  background: rgba(255,255,255,0.25);
  margin: 0 4px;
}
.brand-product {
  color: rgba(255,255,255,0.7);
  font-weight: 400;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 20px;
}
.eyebrow::before {
  content: "";
  width: 18px;
  height: 1px;
  background: var(--yellow);
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(40px, 11vw, 60px);
  line-height: 0.95;
  letter-spacing: -0.035em;
  margin-bottom: 20px;
}
.hero h1 .accent { color: var(--yellow); }

.hero .deck {
  font-family: var(--font-display);
  font-size: 20px;
  line-height: 1.25;
  font-weight: 400;
  color: rgba(255,255,255,0.85);
  letter-spacing: -0.015em;
  margin-bottom: 32px;
  max-width: 32ch;
}

.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 5px;
  overflow: hidden;
  margin-top: 32px;
}
.hero-stat {
  background: rgba(15,15,15,0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 18px 12px;
  text-align: center;
}
.hero-stat .num {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 28px;
  letter-spacing: -0.025em;
  line-height: 1;
  color: var(--yellow);
  margin-bottom: 8px;
  white-space: nowrap;
}
.hero-stat .num .sup {
  font-size: 14px;
  vertical-align: baseline;
  letter-spacing: -0.01em;
  color: var(--yellow);
  opacity: 0.85;
}
.hero-stat .lbl {
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
}

/* ===== Section base ===== */
.section {
  padding: 56px 28px;
}
.section-eyebrow {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-500);
  margin-bottom: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.section-eyebrow::before {
  content: "";
  width: 18px;
  height: 1px;
  background: var(--ink-400);
}
.section-eyebrow.on-dark { color: rgba(255,255,255,0.65); }
.section-eyebrow.on-dark::before { background: rgba(255,255,255,0.4); }
.section-eyebrow.is-yellow { color: var(--yellow); }
.section-eyebrow.is-yellow::before { background: var(--yellow); }

.section h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(30px, 8vw, 40px);
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  text-wrap: balance;
}
.section h2 .accent { color: var(--yellow-deep); }

.section p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-700);
  margin-bottom: 16px;
  text-wrap: pretty;
}
.section p strong { color: var(--ink-1000); font-weight: 600; }

.section.dark {
  background: var(--ink-1000);
  color: #fff;
}
.section.dark p { color: rgba(255,255,255,0.78); }
.section.dark p strong { color: #fff; }
.section.dark h2 { color: #fff; }

.section.cream {
  background: #F4F1EA;
}

/* ===== Lead callout (under hero) ===== */
.lead {
  padding: 48px 28px 28px;
}
.lead .kicker {
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  font-weight: 500;
  color: var(--ink-1000);
  margin-bottom: 22px;
  text-wrap: balance;
}
.lead .kicker .hl {
  background: linear-gradient(180deg, transparent 60%, var(--yellow) 60%);
  padding: 0 2px;
}

/* ===== Big payout card ===== */
.payout {
  margin: 8px 28px 0;
  position: relative;
  background: var(--ink-1000);
  color: #fff;
  border-radius: 15px;
  padding: 36px 28px 32px;
  overflow: hidden;
  isolation: isolate;
}
.payout::before {
  content: "";
  position: absolute;
  right: -40px;
  top: -40px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(255,211,59,0.35), transparent 65%);
  z-index: -1;
}
.payout .tag {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 12px;
  font-weight: 500;
}
.payout .big {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 64px;
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--yellow);
  margin-bottom: 8px;
}
.payout .big .per {
  font-size: 22px;
  color: rgba(255,255,255,0.6);
  letter-spacing: -0.01em;
  font-weight: 400;
  margin-left: 4px;
  vertical-align: middle;
}
.payout .sub {
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
  color: #fff;
  font-weight: 500;
}
.payout p {
  color: rgba(255,255,255,0.75);
  font-size: 15px;
  line-height: 1.55;
  margin-bottom: 0;
}

.example-row-OLD-UNUSED {
  margin: 24px 28px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.example {
  border: 1px solid var(--ink-200);
  border-radius: 9px;
  padding: 16px 16px 18px;
  background: #fff;
}
.example .who {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-500);
  margin-bottom: 10px;
  font-weight: 600;
  font-family: var(--font-display);
}
.example .amount {
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 1;
  letter-spacing: -0.025em;
  font-weight: 500;
  color: var(--ink-1000);
  margin-bottom: 4px;
}
.example .desc {
  font-size: 13px;
  color: var(--ink-600);
  line-height: 1.4;
}

/* ===== Math panel ===== */
.math-panel {
  margin: 24px 28px 0;
  border: 1px solid var(--ink-200);
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
}
.math-head {
  padding: 14px 20px;
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-500);
  font-weight: 600;
  border-bottom: 1px solid var(--ink-200);
  background: var(--paper-100);
}
.math-rows { padding: 4px 0; }
.math-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: baseline;
  gap: 12px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--ink-200);
}
.math-row:last-child { border-bottom: none; }
.math-trucks {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--ink-1000);
}
.math-x {
  font-family: var(--font-display);
  font-size: 13px;
  color: var(--ink-500);
  letter-spacing: 0.02em;
}
.math-total {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 500;
  letter-spacing: -0.025em;
  color: var(--ink-1000);
  text-align: right;
  line-height: 1;
}
.math-row:nth-child(3) .math-total {
  background: var(--yellow);
  display: inline-block;
  padding: 4px 10px;
  border-radius: 5px;
  justify-self: end;
}
.math-note {
  padding: 14px 20px;
  border-top: 1px solid var(--ink-200);
  background: var(--paper-100);
  font-size: 13px;
  color: var(--ink-600);
  margin: 0;
  text-align: center;
  font-family: var(--font-display);
  letter-spacing: -0.005em;
}
.banner {
  background: var(--yellow);
  color: var(--ink-1000);
  padding: 28px;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  text-wrap: balance;
}
.banner .small {
  display: block;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--ink-700);
}

/* ===== Steps ===== */
.steps {
  display: grid;
  gap: 14px;
  margin-top: 32px;
}
.step {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  padding: 20px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.03);
  border-radius: 12px;
}
.step .num {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 28px;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--yellow);
}
.step h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 18px;
  letter-spacing: -0.015em;
  color: #fff;
  margin-bottom: 6px;
  line-height: 1.2;
}
.step p {
  font-size: 14.5px;
  line-height: 1.55;
  color: rgba(255,255,255,0.72);
  margin-bottom: 0;
}
.step p em {
  font-style: italic;
  color: rgba(255,255,255,0.92);
  border-left: 2px solid var(--yellow);
  padding-left: 10px;
  display: inline-block;
  margin-top: 8px;
  font-size: 14px;
}

/* ===== Details list ===== */
.details {
  margin-top: 28px;
  border-top: 1px solid var(--ink-200);
}
.details .row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--ink-200);
}
.details .key {
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-500);
  font-weight: 500;
  font-family: var(--font-display);
  flex-shrink: 0;
}
.details .val {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-1000);
  text-align: right;
  letter-spacing: -0.01em;
}
.details .val.yellow {
  color: var(--ink-1000);
  background: var(--yellow);
  padding: 3px 8px;
  border-radius: 5px;
}

/* ===== Audience grid ===== */
.audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 24px;
}
.audience-card {
  background: #fff;
  border: 1px solid var(--ink-200);
  border-radius: 9px;
  padding: 16px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-1000);
  letter-spacing: -0.005em;
  line-height: 1.2;
}
.audience-card .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--yellow);
  flex-shrink: 0;
}

/* ===== Benefits list (what referrals get) ===== */
.benefits {
  margin-top: 28px;
  display: grid;
  gap: 12px;
}
.benefit {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 14px;
  padding: 18px;
  border-radius: 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
}
.benefit .ic {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: var(--yellow);
  color: var(--ink-1000);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
}
.benefit h4 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 15px;
  color: #fff;
  margin-bottom: 4px;
  letter-spacing: -0.01em;
  line-height: 1.25;
}
.benefit p {
  font-size: 13.5px;
  line-height: 1.5;
  color: rgba(255,255,255,0.72);
  margin: 0;
}
.benefit .hl {
  color: var(--yellow);
  font-weight: 500;
}

/* ===== Why-easy quote / proof ===== */
.proof {
  background: #F4F1EA;
  padding: 56px 28px;
}
.proof .quote {
  font-family: var(--font-display);
  font-size: 26px;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--ink-1000);
  margin-bottom: 28px;
  font-weight: 500;
  text-wrap: balance;
}
.proof .quote .hl {
  background: linear-gradient(180deg, transparent 60%, var(--yellow) 60%);
  padding: 0 2px;
}
.proof-numbers {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--ink-300);
  border-bottom: 1px solid var(--ink-300);
  margin-top: 32px;
}
.proof-numbers > div {
  padding: 18px 4px;
  text-align: center;
  border-right: 1px solid var(--ink-300);
}
.proof-numbers > div:last-child { border-right: none; }
.proof-numbers .n {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 26px;
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--ink-1000);
  margin-bottom: 6px;
}
.proof-numbers .l {
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-600);
  line-height: 1.2;
  font-weight: 500;
}

/* ===== Final CTA ===== */
.cta {
  background: var(--ink-1000);
  color: #fff;
  padding: 56px 28px 40px;
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("images/cta-truck.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.18;
}
.cta > * { position: relative; z-index: 1; }

.cta h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(34px, 9vw, 44px);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
  color: #fff;
}
.cta h2 .accent { color: var(--yellow); }
.cta .sub {
  font-family: var(--font-display);
  font-size: 17px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 32px;
  font-weight: 400;
  letter-spacing: -0.005em;
}

.cta-actions {
  display: grid;
  gap: 10px;
  margin-bottom: 32px;
}
.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 22px;
  border-radius: 9px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: -0.005em;
  transition: transform 120ms var(--ease-out), box-shadow 120ms var(--ease-out), background 220ms;
  cursor: pointer;
  border: 1px solid transparent;
}
.btn-primary {
  background: var(--yellow);
  color: var(--ink-1000);
  box-shadow: 0 4px 4px rgba(0,0,0,0.25);
}
.btn-primary:active { transform: translateY(1px); box-shadow: 0 2px 2px rgba(0,0,0,0.25); }
.btn-secondary {
  background: rgba(255,255,255,0.08);
  color: #fff;
  border-color: rgba(255,255,255,0.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.btn-secondary:active { background: rgba(255,255,255,0.14); }
.btn .arrow { font-family: var(--font-display); font-weight: 400; }

.qr-wrap {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px;
  border-radius: 12px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  margin-bottom: 28px;
}
.qr-wrap .qr {
  width: 88px;
  height: 88px;
  border-radius: 8px;
  background: #fff;
  padding: 6px;
  flex-shrink: 0;
}
.qr-wrap .qr img, .qr-wrap .qr svg { width: 100%; height: 100%; }
.qr-wrap .qr-text {
  font-size: 13px;
  line-height: 1.45;
  color: rgba(255,255,255,0.78);
}
.qr-wrap .qr-text strong {
  display: block;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 15px;
  margin-bottom: 4px;
  letter-spacing: -0.005em;
}

.signoff {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 24px;
  display: grid;
  gap: 4px;
}
.signoff .name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 17px;
  color: #fff;
  letter-spacing: -0.01em;
}
.signoff .role {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 8px;
  letter-spacing: 0.01em;
}
.signoff a {
  display: block;
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  padding: 2px 0;
}
.signoff a .pre {
  color: var(--yellow);
  margin-right: 8px;
  font-weight: 600;
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ===== Footer ===== */
.foot {
  background: var(--ink-1000);
  padding: 24px 28px 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.foot .left {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}
.foot .left .mark { width: 14px; height: 16px; color: var(--yellow); }
.foot .right {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  font-family: var(--font-display);
  font-weight: 500;
}

/* ===== Reveal-on-scroll ===== */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 600ms var(--ease-out), transform 600ms var(--ease-out);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* Tablet+: still cap width but breathe a bit */
@media (min-width: 700px) {
  .page { max-width: 600px; box-shadow: 0 20px 80px rgba(0,0,0,0.12); margin-top: 24px; margin-bottom: 24px; border-radius: 8px; overflow: hidden; }
  body { background: #E8E5DD; }
}
