/* ─── Tokens ───────────────────────────────────────────────────── */
:root {
  --green: #8cc63f;
  --green-deep: #5f9f20;
  --blue: #27a9df;
  --blue-deep: #1d7eaa;
  --ink: #0f1410;
  --ink-soft: #1a221d;
  --muted: #5b6661;
  --muted-soft: #8c948f;
  --line: #e6ece4;
  --line-soft: #f0f4ee;
  --surface: #f7faf4;
  --surface-2: #eef6e2;
  --white: #ffffff;
  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --shadow-sm: 0 4px 14px rgba(15, 20, 16, 0.04);
  --shadow: 0 14px 40px rgba(15, 20, 16, 0.08);
  --shadow-lg: 0 30px 80px rgba(15, 20, 16, 0.16);
  --header-h: 84px;
}

/* ─── Reset / base ────────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family:
    "Inter",
    Archivo,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 160ms ease;
}

img {
  display: block;
  max-width: 100%;
}

h1,
h2,
h3,
h4,
p,
ol,
ul {
  margin: 0;
}

ol,
ul {
  padding: 0;
  list-style: none;
}

::selection {
  background: var(--green);
  color: var(--white);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Anchor jumps clear the sticky header */
section[id] {
  scroll-margin-top: calc(var(--header-h) + 16px);
}

/* ─── Header ──────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: var(--header-h);
  padding: 0 clamp(20px, 5vw, 64px);
  background: rgba(255, 255, 255, 0.85);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition:
    background 200ms ease,
    border-color 200ms ease,
    box-shadow 200ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.95);
  border-bottom-color: rgba(15, 20, 16, 0.08);
  box-shadow: 0 4px 18px rgba(15, 20, 16, 0.06);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand-mark {
  width: auto;
  max-width: min(230px, 58vw);
  height: 52px;
  object-fit: contain;
  filter: drop-shadow(0 4px 6px rgba(15, 20, 16, 0.08));
}

.brand-wordmark {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.022em;
  color: var(--ink);
  line-height: 1;
}

.brand-dot {
  color: var(--green);
  font-weight: 900;
}

.brand-wordmark-light {
  color: var(--white);
}

.brand-wordmark-light .brand-dot {
  color: var(--green);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 15px;
  font-weight: 600;
}

.nav-link {
  color: var(--muted);
}

.nav-link:hover {
  color: var(--ink);
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 10px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 4px 0;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 200ms ease, opacity 200ms ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-nav[hidden] {
  display: none;
}

.mobile-nav {
  position: fixed;
  inset: var(--header-h) 0 0 0;
  z-index: 25;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 28px clamp(20px, 5vw, 64px);
  background: var(--white);
  animation: slideDown 240ms ease both;
}

.mobile-nav .button {
  margin-top: 12px;
  align-self: stretch;
}

.mobile-nav-link {
  padding: 14px 0;
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  border-bottom: 1px solid var(--line-soft);
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ─── Buttons ─────────────────────────────────────────────────── */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  padding: 0 26px;
  color: var(--white);
  background: var(--green);
  border: 1px solid var(--green);
  border-radius: 999px;
  box-shadow: 0 12px 24px rgba(140, 198, 63, 0.22);
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.005em;
  white-space: nowrap;
  cursor: pointer;
  transition:
    background 160ms ease,
    border-color 160ms ease,
    transform 160ms ease,
    box-shadow 160ms ease;
}

.button:hover {
  background: var(--green-deep);
  border-color: var(--green-deep);
  transform: translateY(-1px);
  box-shadow: 0 18px 32px rgba(95, 159, 32, 0.3);
}

.button:active {
  transform: translateY(0);
  box-shadow: 0 6px 14px rgba(140, 198, 63, 0.2);
}

.button-small {
  min-height: 42px;
  padding: 0 20px;
  font-size: 14px;
}

.button-secondary {
  color: var(--ink);
  background: var(--white);
  border-color: var(--line);
  box-shadow: var(--shadow-sm);
}

.button-secondary:hover {
  color: var(--ink);
  background: var(--line-soft);
  border-color: var(--line);
  box-shadow: var(--shadow);
}

.button-light {
  color: var(--ink);
  background: var(--white);
  border-color: var(--white);
  box-shadow: var(--shadow);
}

.button-light:hover {
  background: var(--surface);
  border-color: var(--surface);
}

.btn-arrow {
  transition: transform 200ms ease;
}

.button:hover .btn-arrow {
  transform: translateX(2px);
}

/* ─── Eyebrow ─────────────────────────────────────────────────── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  margin-bottom: 18px;
  color: var(--green-deep);
  background: var(--surface-2);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.eyebrow-static {
  background: transparent;
  padding: 0;
  margin-bottom: 12px;
  letter-spacing: 0.04em;
}

.eyebrow-light {
  color: rgba(255, 255, 255, 0.85);
}

.eyebrow-blue {
  color: var(--blue-deep);
}

.eyebrow-coral {
  color: #b8702a;
}

.eyebrow-dot {
  width: 7px;
  height: 7px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(140, 198, 63, 0.22);
}

/* ─── Headings ────────────────────────────────────────────────── */
h1 {
  margin-bottom: 22px;
  font-size: clamp(44px, 7vw, 80px);
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.025em;
}

h1 .hl {
  background: linear-gradient(120deg, var(--green-deep) 0%, var(--blue-deep) 50%, var(--green-deep) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: text-shine 4s linear infinite;
  filter: drop-shadow(0 1px 1px rgba(15, 20, 16, 0.06));
}

@keyframes text-shine {
  to { background-position: 200% center; }
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(32px, 4.6vw, 52px);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.022em;
}

h3 {
  margin-bottom: 10px;
  font-size: 19px;
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: -0.012em;
}

h4 {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ─── Hero ────────────────────────────────────────────────────── */
.hero {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.75fr);
  gap: clamp(36px, 6vw, 80px);
  align-items: center;
  padding: clamp(44px, 6vw, 78px) clamp(20px, 5vw, 64px);
  background:
    radial-gradient(ellipse at 88% 14%, rgba(39, 169, 223, 0.18), transparent 38%),
    radial-gradient(ellipse at 8% 100%, rgba(140, 198, 63, 0.18), transparent 42%),
    linear-gradient(180deg, #fbfdf8 0%, rgba(255, 255, 255, 0.6) 60%);
}

.hero-bg-orbs {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: -1;
  pointer-events: none;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.6;
  animation: orb-float 10s infinite ease-in-out alternate;
}

.hero-orb-1 {
  width: 400px;
  height: 400px;
  background: var(--green);
  top: -10%;
  left: -10%;
  animation-delay: 0s;
}

.hero-orb-2 {
  width: 500px;
  height: 500px;
  background: var(--blue);
  bottom: -20%;
  right: -10%;
  animation-delay: -3s;
}

.hero-orb-3 {
  width: 300px;
  height: 300px;
  background: #a4d962;
  top: 40%;
  left: 50%;
  animation-delay: -6s;
}

@keyframes orb-float {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(30px, -40px) scale(1.1); }
}

.hero-copy {
  max-width: 720px;
}

.hero-text {
  margin: 14px 0 24px;
  max-width: 580px;
  color: var(--muted);
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
  margin-top: 36px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
}

.hero-trust li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-trust svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: var(--green-deep);
}

/* ─── Hero visual card ───────────────────────────────────────── */
.hero-visual {
  position: relative;
  justify-self: center;
  width: min(100%, 460px);
}

/* ─── Phone-frame hero mockup ──────────────────────────────── */
.phone {
  position: relative;
  width: min(100%, 320px);
  margin: 0 auto;
  padding: 8px;
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  border-radius: 44px;
  box-shadow:
    0 30px 80px rgba(15, 20, 16, 0.18),
    0 4px 12px rgba(15, 20, 16, 0.08);
}

.phone::after {
  /* subtle highlight on phone bezel */
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 43px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  pointer-events: none;
}

.phone-notch {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 26px;
  background: #000;
  border-radius: 999px;
  z-index: 2;
}

.phone-screen {
  background: var(--white);
  border-radius: 36px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.phone-statusbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 28px 6px;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
}

.phone-statusbar-icons {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.phone-statusbar svg {
  height: 12px;
  color: var(--ink);
}

.phone-statusbar svg:last-child {
  height: 14px;
}

.phone-appbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 18px 14px;
  border-bottom: 1px solid var(--line-soft);
}

.phone-appbar strong {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
}

.phone-back,
.phone-help {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  color: var(--green-deep);
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
}

.phone-help {
  font-size: 14px;
}

.phone-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.phone-hero {
  padding: 18px;
  background:
    radial-gradient(circle at 100% 0%, rgba(39, 169, 223, 0.12), transparent 60%),
    linear-gradient(135deg, var(--surface-2), var(--surface));
  border: 1px solid var(--line);
  border-radius: 14px;
}

.phone-eta strong {
  display: block;
  font-size: 17px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.phone-eta span {
  display: block;
  margin-top: 2px;
  font-size: 12px;
  color: var(--muted);
}

.phone-progress {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 16px;
  position: relative;
}

.phone-progress::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 12px;
  right: 12px;
  height: 2px;
  background: var(--line);
  z-index: 0;
}

.phone-progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  position: relative;
  z-index: 1;
}

.phone-progress-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--line);
}

.phone-progress-step.done .phone-progress-dot {
  background: var(--green);
  border-color: var(--green);
}

.phone-progress-step.active .phone-progress-dot {
  width: 18px;
  height: 18px;
  margin-top: -2px;
  background: var(--green);
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(140, 198, 63, 0.22);
  animation: pulseDot 2000ms ease-in-out infinite;
}

@keyframes pulseDot {
  0%, 100% { box-shadow: 0 0 0 4px rgba(140, 198, 63, 0.22); }
  50%      { box-shadow: 0 0 0 7px rgba(140, 198, 63, 0.06); }
}

.phone-progress-label {
  margin-top: 6px;
  font-size: 9px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.02em;
  text-align: center;
  line-height: 1.2;
  max-width: 60px;
}

.phone-progress-step.done .phone-progress-label,
.phone-progress-step.active .phone-progress-label {
  color: var(--ink);
}

.phone-sockster {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
}

.phone-avatar {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--green), var(--blue));
  color: var(--white);
  border-radius: 50%;
  font-size: 14px;
  font-weight: 800;
  flex-shrink: 0;
}

.phone-sockster-info {
  flex: 1;
  min-width: 0;
}

.phone-sockster-info strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
}

.phone-sockster-info span {
  display: block;
  font-size: 11px;
  color: var(--muted);
}

.phone-sockster-eta {
  display: inline-block;
  padding: 4px 10px;
  background: var(--surface-2);
  color: var(--green-deep);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
}

.phone-summary {
  padding: 14px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.phone-summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--muted);
}

.phone-summary-row span:last-child {
  color: var(--ink);
  font-weight: 600;
}

.phone-summary-total {
  margin-top: 4px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.phone-summary-total span:last-child {
  font-size: 15px;
  font-weight: 800;
}

/* ─── Section base ───────────────────────────────────────────── */
.section {
  padding: clamp(48px, 6vw, 76px) clamp(20px, 5vw, 64px);
}

.section-light {
  background: var(--surface);
}

.section-heading {
  max-width: 780px;
  margin: 0 auto clamp(28px, 3.5vw, 40px);
  text-align: center;
}

.section-sub {
  margin-top: 10px;
  color: var(--muted);
  font-size: clamp(16px, 1.6vw, 18px);
  line-height: 1.55;
}

/* ─── Social proof strip ─────────────────────────────────────── */
.proof-wrapper {
  margin: -40px clamp(20px, 5vw, 64px) 0;
  position: relative;
  z-index: 2;
}

/* ─── Pricing teaser actions ─────────────────────────────────── */
.pricing-teaser-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 24px;
}

/* ─── Wordmark strip (between hero and journey) ──────────────── */
.wordmark-strip {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: clamp(36px, 6vw, 80px) clamp(20px, 5vw, 64px);
  background: linear-gradient(180deg, #ffffff 0%, var(--surface) 100%);
}

.wordmark-strip img {
  width: 100%;
  max-width: 760px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 12px 24px rgba(15, 20, 16, 0.08));
}

.proof.glassmorphism {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.proof-item {
  padding: 22px 20px;
  background: rgba(255, 255, 255, 0.4);
  text-align: center;
}

.proof-item strong {
  display: block;
  margin-bottom: 4px;
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 800;
  letter-spacing: -0.015em;
  color: var(--ink);
}

.proof-item span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
}

/* Tone variants — each stat gets a colored top accent bar + colored value */
.proof-item {
  position: relative;
  overflow: hidden;
}

.proof-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--green);
}

.proof-item.tone-1 strong { color: var(--green-deep); }
.proof-item.tone-1::before { background: linear-gradient(90deg, var(--green), #a4d962); }

.proof-item.tone-2 strong { color: var(--blue-deep); }
.proof-item.tone-2::before { background: linear-gradient(90deg, var(--blue), #5cc1e8); }

.proof-item.tone-3 strong { color: #b8702a; }
.proof-item.tone-3::before { background: linear-gradient(90deg, #e69847, #f5b97a); }

/* ─── Journey panel ──────────────────────────────────────────── */
.journey-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  padding: clamp(28px, 5vw, 54px);
  background:
    radial-gradient(circle at 100% 0%, rgba(39, 169, 223, 0.16), transparent 42%),
    radial-gradient(circle at 0% 100%, rgba(140, 198, 63, 0.16), transparent 46%),
    var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.journey-copy {
  max-width: 560px;
}

.journey-copy p {
  margin: 12px 0 22px;
  color: var(--muted);
  font-size: clamp(16px, 1.55vw, 18px);
  line-height: 1.6;
}

.journey-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  align-items: stretch;
}

.journey-step {
  min-height: 220px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.journey-step-featured {
  color: var(--white);
  background:
    linear-gradient(150deg, rgba(140, 198, 63, 0.95), rgba(39, 169, 223, 0.92)),
    var(--green);
  border-color: transparent;
  transform: translateY(-14px);
  box-shadow: 0 24px 48px rgba(39, 169, 223, 0.22);
}

.journey-step-number,
.journey-step strong,
.journey-step p {
  display: block;
}

.journey-step-number {
  margin-bottom: 54px;
  color: var(--muted-soft);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.journey-step-featured .journey-step-number {
  color: rgba(255, 255, 255, 0.72);
}

.journey-step strong {
  margin-bottom: 8px;
  font-size: 21px;
  font-weight: 900;
  letter-spacing: -0.018em;
}

.journey-step p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.journey-step-featured p {
  color: rgba(255, 255, 255, 0.84);
}

/* ─── How it works ───────────────────────────────────────────── */
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.how-card {
  position: relative;
  padding: 30px 26px 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition:
    transform 200ms ease,
    box-shadow 200ms ease,
    border-color 200ms ease;
}

.how-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(140, 198, 63, 0.6);
  box-shadow: 0 20px 40px rgba(140, 198, 63, 0.15);
}

.how-step {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-bottom: 22px;
  border-radius: 50%;
  font-family: "Inter", monospace;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--white);
  background: var(--green);
  box-shadow: 0 6px 16px rgba(140, 198, 63, 0.32);
}

.how-icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin-bottom: 22px;
  border-radius: 14px;
  background: var(--surface-2);
  color: var(--green-deep);
}

.how-icon svg {
  width: 28px;
  height: 28px;
}

.how-card p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

/* ─── How-step tone variants ─────────────────────────────────── */
.how-card.tone-1 .how-step {
  background: var(--green);
  box-shadow: 0 6px 16px rgba(140, 198, 63, 0.32);
}

.how-card.tone-1 .how-icon {
  background: var(--surface-2);
  color: var(--green-deep);
}

.how-card.tone-2 .how-step {
  background: var(--blue);
  box-shadow: 0 6px 16px rgba(39, 169, 223, 0.32);
}

.how-card.tone-2 .how-icon {
  background: rgba(39, 169, 223, 0.14);
  color: var(--blue-deep);
}

.how-card.tone-3 .how-step {
  background: #e69847;
  box-shadow: 0 6px 16px rgba(230, 152, 71, 0.32);
}

.how-card.tone-3 .how-icon {
  background: #fdf1e3;
  color: #b8702a;
}

/* ─── Feature grid ───────────────────────────────────────────── */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.feature-card {
  padding: 28px 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition:
    transform 200ms ease,
    box-shadow 200ms ease,
    border-color 200ms ease;
}

.feature-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(140, 198, 63, 0.6);
  box-shadow: 0 20px 40px rgba(140, 198, 63, 0.15);
}

.feature-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  border-radius: 12px;
}

.feature-icon svg {
  width: 26px;
  height: 26px;
}

.feature-icon-green {
  background: var(--surface-2);
  color: var(--green-deep);
}

.feature-icon-blue {
  background: rgba(39, 169, 223, 0.14);
  color: var(--blue-deep);
}

.feature-card p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

/* ─── Pricing ────────────────────────────────────────────────── */
.pricing-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.55fr);
  gap: 0;
  max-width: 880px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.pricing-card-main {
  padding: 36px 36px 32px;
}

.pricing-tag {
  display: inline-block;
  padding: 4px 10px;
  margin-bottom: 18px;
  background: var(--surface-2);
  border-radius: 999px;
  color: var(--green-deep);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 10px;
}

.pricing-amount {
  font-size: clamp(48px, 6vw, 64px);
  font-weight: 900;
  letter-spacing: -0.03em;
  background: linear-gradient(120deg, var(--green) 0%, var(--blue) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
}

.pricing-unit {
  color: var(--muted);
  font-size: 16px;
  font-weight: 600;
}

.pricing-card-main p {
  margin-bottom: 22px;
  max-width: 460px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.pricing-includes {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pricing-includes li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--ink);
}

.pricing-includes svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: var(--green-deep);
}

.pricing-card-aside {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  gap: 14px;
  padding: 36px;
  background: linear-gradient(160deg, rgba(140, 198, 63, 0.18), rgba(39, 169, 223, 0.14) 55%, rgba(255, 255, 255, 0.6));
  border-left: 1px solid var(--line);
  overflow: hidden;
}

.pricing-card-aside::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -20%;
  width: 220px;
  height: 220px;
  background: radial-gradient(closest-side, rgba(140, 198, 63, 0.35), transparent 70%);
  pointer-events: none;
}

.pricing-card-aside::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 200px;
  height: 200px;
  background: radial-gradient(closest-side, rgba(39, 169, 223, 0.3), transparent 70%);
  pointer-events: none;
}

.pricing-card-aside > * {
  position: relative;
  z-index: 1;
}

.pricing-card-aside .button {
  width: 100%;
}

.pricing-note {
  margin: 0;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  text-align: center;
}

.pricing-tiny {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
  text-align: center;
}

.pricing-tiny sup,
.pricing-fees sup {
  color: var(--green-deep);
  font-weight: 800;
}

.pricing-fees {
  margin: 18px 0 0;
  padding: 14px 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--ink);
  font-size: 13px;
  line-height: 1.55;
}

.pricing-fees strong {
  color: var(--ink);
  font-weight: 800;
}

/* ─── Care Guarantee ─────────────────────────────────────────── */
.guarantee-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(160px, auto) 1fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
  max-width: 1080px;
  margin: 0 auto;
  padding: clamp(28px, 4vw, 44px);
  background:
    radial-gradient(circle at 0% 0%, rgba(140, 198, 63, 0.18), transparent 55%),
    radial-gradient(circle at 100% 100%, rgba(39, 169, 223, 0.18), transparent 55%),
    var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.guarantee-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.5px;
  background: linear-gradient(135deg, var(--green), var(--blue));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
          mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}

.guarantee-card > * {
  position: relative;
  z-index: 1;
}

.guarantee-shield {
  position: relative;
  display: grid;
  place-items: center;
  width: 140px;
  height: 140px;
  filter: drop-shadow(0 14px 24px rgba(95, 159, 32, 0.28));
}

.guarantee-shield::before {
  content: "";
  position: absolute;
  inset: -16px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(140, 198, 63, 0.22), rgba(39, 169, 223, 0.12) 60%, transparent 75%);
  z-index: -1;
}

.guarantee-shield svg {
  width: 100%;
  height: 100%;
}

.guarantee-copy h2 {
  margin-bottom: 12px;
}

.guarantee-copy > p {
  margin-bottom: 20px;
  color: var(--muted);
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: 1.6;
  max-width: 600px;
}

.guarantee-copy strong {
  color: var(--ink);
  font-weight: 800;
}

.guarantee-points {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 22px;
}

.guarantee-points li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 14px;
}

.guarantee-points svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: var(--green-deep);
}

.guarantee-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--green-deep);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.01em;
  transition: color 160ms ease;
}

.guarantee-link:hover {
  color: var(--green);
}

.guarantee-link svg {
  transition: transform 200ms ease;
}

.guarantee-link:hover svg {
  transform: translateX(2px);
}

@media (max-width: 720px) {
  .guarantee-card {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .guarantee-shield {
    width: 96px;
    height: 96px;
  }
}

/* ─── Driver band ────────────────────────────────────────────── */
.driver-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin: 0 clamp(20px, 5vw, 64px);
  padding: clamp(32px, 4vw, 52px) clamp(28px, 4vw, 56px);
  color: var(--white);
  background:
    radial-gradient(ellipse at 110% 0%, rgba(255, 255, 255, 0.08), transparent 50%),
    linear-gradient(135deg, #131915 0%, #1c2620 100%);
  border-radius: var(--radius-lg);
}

.driver-band-copy {
  max-width: 760px;
}

.driver-band h2 {
  color: var(--white);
}

.driver-band p {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  line-height: 1.55;
  max-width: 600px;
}

/* ─── Cities ────────────────────────────────────────────────── */
.cities-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: 800px;
  margin: 0 auto;
}

.city-pill {
  display: inline-flex;
  align-items: center;
  padding: 10px 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.city-pill-active {
  background: var(--surface-2);
  border-color: rgba(140, 198, 63, 0.4);
  color: var(--green-deep);
}

.city-pill-active::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 8px;
  background: var(--green);
  border-radius: 50%;
}

/* ─── App / Get started ──────────────────────────────────────── */
.app-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: clamp(36px, 6vw, 80px);
  align-items: center;
  padding: clamp(48px, 6vw, 76px) clamp(20px, 5vw, 64px);
}

.app-copy {
  max-width: 580px;
}

.app-copy p {
  margin: 12px 0 18px;
  color: var(--muted);
  font-size: clamp(16px, 1.6vw, 18px);
  line-height: 1.55;
}

.zip-form {
  display: flex;
  gap: 10px;
  max-width: 460px;
  padding: 8px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: var(--shadow);
}

.zip-form input {
  flex: 1;
  min-width: 0;
  padding: 0 18px;
  border: 0;
  background: transparent;
  font: inherit;
  font-weight: 600;
  color: var(--ink);
  outline: none;
}

.zip-form input::placeholder {
  color: var(--muted-soft);
  font-weight: 500;
}

.zip-form .button {
  min-height: 44px;
  padding: 0 22px;
  font-size: 15px;
}

.zip-form-tiny {
  margin-top: 14px;
  color: var(--muted);
  font-size: 13px;
}

.zip-form-tiny a {
  color: var(--green-deep);
  font-weight: 700;
}

.zip-result {
  margin-top: 14px;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  line-height: 1.5;
  animation: fadeInUp 240ms ease-out;
}

.zip-result a {
  font-weight: 700;
  text-decoration: underline;
}

.zip-result[data-state="active"] {
  color: var(--green-deep);
  background: var(--surface-2);
  border: 1px solid rgba(140, 198, 63, 0.4);
}

.zip-result[data-state="active"] a {
  color: var(--green-deep);
}

.zip-result[data-state="soon"] {
  color: #1d7eaa;
  background: rgba(39, 169, 223, 0.1);
  border: 1px solid rgba(39, 169, 223, 0.3);
}

.zip-result[data-state="soon"] a {
  color: #1d7eaa;
}

.zip-result[data-state="waitlist"] {
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--line);
}

.zip-result[data-state="waitlist"] a {
  color: var(--green-deep);
}

.zip-result[data-state="error"] {
  color: #b71c1c;
  background: #ffebee;
  border: 1px solid rgba(176, 0, 32, 0.2);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Lead-card visual: 3-step preview, replaces broken grabit/packit/haveit */
.lead-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: min(100%, 440px);
  justify-self: center;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.lead-card-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.lead-card-row strong,
.lead-card-row span {
  display: block;
}

.lead-card-row strong {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 2px;
}

.lead-card-row span {
  color: var(--muted);
  font-size: 13px;
}

.lead-icon {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--surface-2);
  color: var(--green-deep);
  border-radius: 12px;
}

.lead-icon svg {
  width: 22px;
  height: 22px;
}

.lead-icon-blue {
  background: rgba(39, 169, 223, 0.14);
  color: var(--blue-deep);
}

/* ─── Footer ─────────────────────────────────────────────────── */
.footer {
  padding: clamp(40px, 5vw, 60px) clamp(20px, 5vw, 64px) 24px;
  color: var(--white);
  background: linear-gradient(180deg, #0a0e0c 0%, #000000 100%);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto;
  gap: 48px;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand-link {
  display: inline-block;
  line-height: 0;
}

.footer-brand-mark {
  height: 56px;
  width: auto;
  display: block;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.35));
}

.footer-brand p {
  margin-top: 14px;
  max-width: 300px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  line-height: 1.6;
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(4, minmax(120px, auto));
  gap: 40px;
}

.footer-cols h4 {
  margin-bottom: 16px;
  color: var(--white);
}

.footer-cols a {
  display: block;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
}

.footer-cols a:hover {
  color: var(--white);
}

.socials {
  display: flex;
  gap: 10px;
}

.socials a {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-bottom: 0;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  transition:
    background 160ms ease,
    transform 160ms ease;
}

.socials a:hover {
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-2px);
}

.socials svg {
  width: 18px;
  height: 18px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
}

.footer-bottom p {
  margin: 0;
}

/* ─── Reveal-on-scroll ───────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 600ms ease-out,
    transform 600ms ease-out;
}

.reveal.is-visible,
.hero.reveal {
  opacity: 1;
  transform: translateY(0);
}

/* Hero shouldn't wait for the observer — show it immediately */
.hero.reveal {
  opacity: 1;
  transform: none;
}

/* ─── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero,
  .app-section,
  .journey-panel {
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .app-copy {
    max-width: none;
  }

  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .driver-band {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .pricing-card {
    grid-template-columns: 1fr;
  }

  .pricing-card-aside {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .proof {
    grid-template-columns: repeat(2, 1fr);
  }

  .journey-steps {
    grid-template-columns: 1fr;
  }

  .journey-step,
  .journey-step-featured {
    min-height: 0;
    transform: none;
  }

  .journey-step-number {
    margin-bottom: 24px;
  }

  .proof-item:nth-child(2) {
    border-left: 1px solid var(--line);
  }
}

@media (max-width: 720px) {
  .nav-actions {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .how-grid,
  .footer-cols {
    grid-template-columns: 1fr;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-cols {
    gap: 28px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .proof {
    grid-template-columns: 1fr;
  }

  .pricing-card-main {
    padding: 28px 24px;
  }

  .pricing-card-aside {
    padding: 24px;
  }
}

@media (max-width: 480px) {
  .site-header {
    padding-inline: 16px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-trust {
    gap: 10px 18px;
  }

  .phone {
    width: min(100%, 280px);
  }

  .zip-form {
    flex-direction: column;
    border-radius: var(--radius);
    padding: 12px;
  }

  .zip-form input {
    padding: 12px 16px;
  }

  .zip-form .button {
    width: 100%;
  }
}

/* ─── Reduced motion ─────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  html {
    scroll-behavior: auto;
  }
}

/* ═══════════════════════════════════════════════════════════════
   APPLY PAGE — driver-facing recruiting at /apply/
   ═══════════════════════════════════════════════════════════════ */

/* Hero overrides — apply hero stat row and meta line */
.apply-hero .hero-meta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-left: 4px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.apply-hero .hero-meta svg {
  width: 16px;
  height: 16px;
  color: var(--green-deep);
}

.apply-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.apply-stats li {
  display: flex;
  flex-direction: column;
  padding: 12px 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
}

.apply-stats strong {
  color: var(--ink);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.012em;
}

.apply-stats span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  margin-top: 2px;
}

/* Hero card — apply variant with job-flow mockup */
.apply-hero-card {
  gap: 14px;
}

.apply-job-card {
  padding: 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.apply-job-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.apply-job-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  background: var(--surface-2);
  color: var(--green-deep);
  border-radius: 12px;
}

.apply-job-icon svg {
  width: 22px;
  height: 22px;
}

.apply-job-head strong,
.apply-job-head span {
  display: block;
}

.apply-job-head strong {
  color: var(--ink);
  font-size: 15px;
  font-weight: 700;
}

.apply-job-head span {
  color: var(--muted);
  font-size: 13px;
}

.apply-route-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 4px 0;
}

.apply-route-row svg {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  color: var(--green-deep);
}

.apply-route-row strong,
.apply-route-row span {
  display: block;
}

.apply-route-row strong {
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}

.apply-route-row span {
  color: var(--muted);
  font-size: 12px;
}

.apply-route-line {
  width: 2px;
  height: 14px;
  margin-left: 11px;
  background: var(--surface-2);
}

.apply-tile-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.apply-tile {
  padding: 14px 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

.apply-tile strong {
  display: block;
  color: var(--ink);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.012em;
}

.apply-tile span {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
}

/* Earnings calculator */
.calc-card {
  max-width: 920px;
  margin: 0 auto;
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.calc-controls {
  display: grid;
  gap: 22px;
}

.calc-row label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 700;
}

.calc-row label em {
  font-style: normal;
  font-weight: 500;
  font-size: 13px;
  color: var(--muted);
  margin-left: 4px;
}

.calc-row output {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.014em;
  color: var(--green-deep);
}

.calc-row input[type="range"] {
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  height: 6px;
  background: var(--line);
  border-radius: 999px;
  outline: none;
  cursor: pointer;
}

.calc-row input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  background: var(--green);
  border: 3px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(140, 198, 63, 0.4);
  cursor: grab;
  transition: transform 120ms ease;
}

.calc-row input[type="range"]::-webkit-slider-thumb:active {
  transform: scale(1.1);
  cursor: grabbing;
}

.calc-row input[type="range"]::-moz-range-thumb {
  width: 22px;
  height: 22px;
  background: var(--green);
  border: 3px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(140, 198, 63, 0.4);
  cursor: grab;
  border-style: solid;
}

.calc-results {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 28px 0 16px;
}

.calc-result {
  padding: 18px 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-align: center;
}

.calc-result span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.calc-result strong {
  display: block;
  color: var(--ink);
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.022em;
}

.calc-result-accent {
  background: linear-gradient(135deg, var(--surface-2), var(--surface));
  border-color: rgba(140, 198, 63, 0.4);
}

.calc-result-accent strong {
  background: linear-gradient(120deg, var(--green) 0%, var(--blue) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.calc-bonus {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
  padding: 14px 18px;
  background: linear-gradient(135deg, var(--surface-2), var(--surface));
  border: 1px solid rgba(140, 198, 63, 0.32);
  border-radius: var(--radius);
}

.calc-bonus svg {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  padding: 4px;
  background: var(--green);
  color: var(--white);
  border-radius: 50%;
}

.calc-bonus strong,
.calc-bonus span {
  display: block;
}

.calc-bonus strong {
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 2px;
}

.calc-bonus span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.calc-disclaimer {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
  text-align: center;
}

/* Driver examples */
.example-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1080px;
  margin: 0 auto;
}

.example-card {
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.example-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.example-badge {
  display: inline-block;
  padding: 4px 10px;
  margin-bottom: 16px;
  background: var(--surface-2);
  border-radius: 999px;
  color: var(--green-deep);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.example-card h3 {
  font-size: 19px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.012em;
  margin-bottom: 8px;
}

.example-body {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.example-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.example-stats div {
  display: flex;
  flex-direction: column;
}

.example-stats strong {
  color: var(--ink);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.012em;
}

.example-stats span {
  margin-top: 2px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
}

.example-disclaimer {
  margin: 24px auto 0;
  max-width: 640px;
  color: var(--muted);
  font-size: 12px;
  text-align: center;
}

/* Progress timeline */
.timeline {
  max-width: 720px;
  margin: 0 auto;
  padding-left: 28px;
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 8px;
  bottom: 8px;
  left: 7px;
  width: 2px;
  background: var(--line);
}

.timeline li {
  position: relative;
  padding: 12px 0 12px 24px;
}

.timeline-dot {
  position: absolute;
  left: -28px;
  top: 16px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px var(--white), 0 0 0 5px var(--line);
}

.timeline h4 {
  font-size: 15px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 4px;
  letter-spacing: -0.005em;
}

.timeline p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

/* Requirements card */
.req-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  max-width: 920px;
  margin: 0 auto;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.req-list {
  display: grid;
  gap: 12px;
}

.req-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 600;
}

.req-list svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--green-deep);
}

.button-dark {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
}

.button-dark:hover {
  background: var(--ink-soft);
  border-color: var(--ink-soft);
}

/* FAQ (native <details>) */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: grid;
  gap: 10px;
}

.faq-item {
  padding: 16px 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.faq-item[open] {
  border-color: rgba(140, 198, 63, 0.4);
  box-shadow: var(--shadow-sm);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  list-style: none;
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-size: 22px;
  font-weight: 700;
  color: var(--muted);
  margin-left: 12px;
  transition: transform 200ms ease;
}

.faq-item[open] summary::after {
  content: "−";
  color: var(--green-deep);
}

.faq-item p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.faq-item p a {
  color: var(--green-deep);
  font-weight: 700;
}

/* Final CTA band */
.apply-final-cta {
  margin: 0 clamp(20px, 5vw, 64px) clamp(40px, 5vw, 64px);
  padding: clamp(40px, 5vw, 60px) clamp(28px, 4vw, 56px);
  text-align: center;
  color: var(--white);
  background:
    radial-gradient(ellipse at 100% 0%, rgba(255, 255, 255, 0.08), transparent 50%),
    linear-gradient(135deg, #131915 0%, #1c2620 100%);
  border-radius: var(--radius-lg);
}

.apply-final-cta h2 {
  color: var(--white);
  margin-bottom: 12px;
}

.apply-final-cta p {
  margin: 0 auto 24px;
  max-width: 540px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  line-height: 1.5;
}

.apply-final-mini {
  margin-top: 14px !important;
  color: rgba(255, 255, 255, 0.5) !important;
  font-size: 13px !important;
}

/* Apply page responsive */
@media (max-width: 1024px) {
  .calc-results {
    grid-template-columns: 1fr;
  }

  .example-grid {
    grid-template-columns: 1fr;
  }

  .req-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .apply-stats {
    width: 100%;
  }

  .apply-stats li {
    flex: 1;
    min-width: 0;
  }

  .calc-card {
    padding: 24px 18px;
  }

  .timeline {
    padding-left: 24px;
  }
}

/* ─── Enhancements ────────────────────────────────────────────── */
.button-glow {
  position: relative;
  overflow: hidden;
}

.button-glow::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: skewX(-20deg);
  animation: btn-shine 3s infinite;
}

@keyframes btn-shine {
  0% { left: -100%; }
  20% { left: 200%; }
  100% { left: 200%; }
}

.mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
  z-index: 40;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.05);
}

.mobile-sticky-cta .button {
  width: 100%;
}

@media (max-width: 768px) {
  .mobile-sticky-cta {
    display: block;
  }
  body {
    padding-bottom: 80px; /* space for sticky cta */
  }
}
