/* ==========================================================================
   washee — landing page styles
   Design system: see DESIGN.md (washee brand) blended with BMW-M discipline.
   Brand: black canvas + single blue gradient (#9FE5F9 → #3C9FF6) + Be Vietnam Pro.
   Motorsport blend: UPPERCASE tight headlines, precision hairlines/brackets,
   tabular numerals, and a tri-blue "speed stripe" (no M red, no BMW font).
   ========================================================================== */

/* ----------------------------- Tokens ----------------------------------- */
:root {
  /* Brand voltage */
  --grad-from: #9FE5F9;
  --grad-mid:  #5FC0FF;
  --grad-to:   #3C9FF6;
  --accent:    #3C9FF6;
  --accent-bright: #5FC0FF;
  --on-accent: #06080B;

  /* Canvas & surfaces */
  --canvas: #06080B;
  --canvas-deep: #030405;
  --surface: #0E1218;
  --surface-raised: #161B23;
  --glass: rgba(255, 255, 255, 0.045);
  --glass-strong: rgba(255, 255, 255, 0.07);

  /* Hairlines */
  --hairline: rgba(255, 255, 255, 0.09);
  --hairline-strong: rgba(255, 255, 255, 0.16);

  /* Text */
  --text: #FFFFFF;
  --text-2: #AAB4C0;
  --text-3: #6A7480;

  /* Gradients */
  --brand: linear-gradient(135deg, var(--grad-from) 0%, var(--grad-to) 100%);
  --brand-tri: linear-gradient(120deg, var(--grad-from) 0%, var(--grad-mid) 48%, var(--grad-to) 100%);
  --aura: radial-gradient(60% 60% at 50% 0%, rgba(60, 159, 246, 0.28) 0%, rgba(60, 159, 246, 0) 70%);

  /* Type */
  --font: 'Be Vietnam Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

  /* Spacing */
  --section: clamp(72px, 11vw, 120px);
  --container: 1200px;

  /* Radii */
  --r-sm: 12px;
  --r-md: 16px;
  --r-lg: 22px;
  --r-xl: 28px;
  --r-2xl: 36px;
  --r-pill: 9999px;

  /* Elevation */
  --card-shadow: 0 24px 60px -20px rgba(0, 0, 0, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  --glow: 0 12px 44px -8px rgba(60, 159, 246, 0.5);
  --glow-strong: 0 0 90px rgba(60, 159, 246, 0.35);
  --focus-ring: 0 0 0 3px rgba(60, 159, 246, 0.5);

  /* Motion */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font);
  background: var(--canvas);
  color: var(--text);
  line-height: 1.6;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
img, svg { display: block; max-width: 100%; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
input { font: inherit; }
em { font-style: normal; }
:focus-visible { outline: none; box-shadow: var(--focus-ring); border-radius: 6px; }

/* ----------------------------- Layout ----------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 40px);
}

.section { position: relative; padding-block: var(--section); }

.section__head { max-width: 680px; margin-bottom: clamp(40px, 6vw, 64px); }

.section__title {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.02em;
  text-transform: uppercase;            /* BMW-M discipline */
  margin-bottom: 18px;
}

.section__lead {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: var(--text-2);
  max-width: 56ch;
}

/* ----------------------------- Utilities -------------------------------- */
.grad-text {
  background: var(--brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Section eyebrow — uppercase technical label */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--grad-from);
  padding: 7px 14px;
  border: 1px solid var(--hairline);
  border-radius: var(--r-pill);
  background: var(--glass);
  margin-bottom: 22px;
}
.eyebrow .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 10px rgba(95, 192, 255, 0.9);
}

/* Tri-blue speed stripe (M-stripe reinterpreted in washee blue) */
.speed-stripe {
  display: inline-flex;
  gap: 3px;
  transform: skewX(-18deg);
}
.speed-stripe i { width: 5px; height: 22px; border-radius: 1px; display: block; }
.speed-stripe i:nth-child(1) { background: var(--grad-from); }
.speed-stripe i:nth-child(2) { background: var(--grad-mid); }
.speed-stripe i:nth-child(3) { background: var(--grad-to); }

/* Scroll-reveal base */
.reveal, .reveal-line { opacity: 0; transform: translateY(18px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal-line { display: block; }
.is-visible.reveal, .is-visible .reveal-line, .reveal.is-visible { opacity: 1; transform: none; }
.is-visible .reveal-line:nth-child(2) { transition-delay: 0.08s; }

/* ------------------------------ Buttons --------------------------------- */
.btn {
  --h: 48px;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: var(--h);
  padding: 0 24px;
  border-radius: var(--r-pill);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  white-space: nowrap;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
  will-change: transform;
}
.btn--sm { --h: 42px; padding: 0 18px; font-size: 14px; }
.btn--lg { --h: 56px; padding: 0 30px; font-size: 16px; }

.btn--primary {
  background: var(--brand);
  color: var(--on-accent);
  box-shadow: var(--glow);
}
.btn--primary::after {
  /* moving sheen */
  content: "";
  position: absolute; inset: 0; border-radius: inherit;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.45) 50%, transparent 70%);
  background-size: 250% 100%;
  background-position: 150% 0;
  opacity: 0; transition: opacity 0.3s;
}
.btn--primary:hover { background: var(--brand-tri); box-shadow: var(--glow-strong); transform: translateY(-2px); }
.btn--primary:hover::after { opacity: 1; animation: sheen 0.9s var(--ease); }
@keyframes sheen { to { background-position: -120% 0; } }

.btn--secondary {
  background: var(--glass);
  color: var(--text);
  border: 1px solid var(--hairline-strong);
}
.btn--secondary:hover { border-color: var(--accent); background: var(--glass-strong); transform: translateY(-2px); }

.btn--ghost { color: var(--text-2); padding: 0 12px; }
.btn--ghost:hover { color: var(--text); }

/* -------------------------------- Nav ----------------------------------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: 72px;
  display: flex; align-items: center;
  transition: background 0.4s var(--ease), backdrop-filter 0.4s var(--ease), border-color 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(6, 8, 11, 0.72);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom-color: var(--hairline);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.nav__brand { display: inline-flex; align-items: center; gap: 10px; }
.nav__mark { width: 34px; height: 34px; }
.nav__wordmark { font-size: 22px; font-weight: 700; letter-spacing: -0.02em; }

.nav__links { display: flex; gap: 32px; }
.nav__links a {
  font-size: 15px; font-weight: 500; color: var(--text-2);
  position: relative; transition: color 0.2s;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -6px; height: 2px;
  background: var(--brand); transition: right 0.3s var(--ease);
}
.nav__links a:hover { color: var(--text); }
.nav__links a:hover::after { right: 0; }

.nav__actions { display: flex; align-items: center; gap: 14px; }

.nav__burger { display: none; flex-direction: column; gap: 5px; width: 40px; height: 40px; align-items: center; justify-content: center; }
.nav__burger span { width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: transform 0.3s var(--ease), opacity 0.3s; }
.nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(3.5px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { transform: translateY(-3.5px) rotate(-45deg); }

.mobile-menu {
  position: fixed; top: 72px; left: 0; right: 0; z-index: 99;
  display: flex; flex-direction: column; gap: 4px;
  padding: 20px clamp(20px, 5vw, 40px) 28px;
  background: rgba(6, 8, 11, 0.95);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--hairline);
}
.mobile-menu[hidden] { display: none; }
.mobile-menu a { padding: 14px 4px; font-size: 18px; font-weight: 500; color: var(--text-2); border-bottom: 1px solid var(--hairline); }
.mobile-menu a:last-child { border: none; margin-top: 10px; }
.mobile-menu .btn { color: var(--on-accent); }

/* -------------------------------- Hero ---------------------------------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: center;
  padding-top: 72px;
  overflow: hidden;
}
.hero__aura { position: absolute; inset: 0; background: var(--aura); pointer-events: none; }
.hero__canvas { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 1; pointer-events: none; }

.hero__inner { position: relative; z-index: 2; padding-block: clamp(40px, 10vh, 96px); }

/* Hero technical speed-stripe marker (BMW-M detail) */
.hero__inner::before {
  content: "";
  position: absolute; top: -6px; left: clamp(20px, 5vw, 40px);
  width: 64px; height: 4px;
  background: linear-gradient(90deg, var(--grad-from), var(--grad-to));
  clip-path: polygon(0 0, 100% 0, 92% 100%, 0 100%);
}

.hero__title {
  font-size: clamp(2.75rem, 8vw, 5.75rem);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.03em;
  text-transform: uppercase;            /* BMW-M discipline */
  margin: 4px 0 24px;
  max-width: 16ch;
}
.hero__subhead { font-size: clamp(1.05rem, 2vw, 1.25rem); color: var(--text-2); max-width: 50ch; margin-bottom: 36px; }

.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 32px; }

.hero__ticker {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 14px; color: var(--text-2);
  padding: 9px 16px; border-radius: var(--r-pill);
  border: 1px solid var(--hairline); background: var(--glass);
}
.hero__ticker strong { color: var(--text); font-weight: 600; }
.pulse { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 0 rgba(60, 159, 246, 0.7); animation: pulse 2s infinite; }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(60, 159, 246, 0.6); }
  70% { box-shadow: 0 0 0 10px rgba(60, 159, 246, 0); }
  100% { box-shadow: 0 0 0 0 rgba(60, 159, 246, 0); }
}

.hero__scroll {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-3);
}
.hero__scroll i { width: 1px; height: 34px; background: linear-gradient(var(--accent), transparent); }

/* ------------------------------ Marquee --------------------------------- */
.marquee { border-block: 1px solid var(--hairline); padding: 18px 0; overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee__track { display: flex; align-items: center; gap: 28px; width: max-content; animation: marquee 32s linear infinite; }
.marquee__track span { font-size: 18px; font-weight: 600; color: var(--text-2); white-space: nowrap; }
.marquee__track i { color: var(--accent); font-style: normal; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* --------------------------- How it works ------------------------------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(24px, 4vw, 48px); }
.step { position: relative; padding-top: 24px; border-top: 1px solid var(--hairline); }
.step::before { content: ""; position: absolute; top: -1px; left: 0; width: 56px; height: 2px; background: var(--brand); }
.step__num { font-size: clamp(2.5rem, 5vw, 3.5rem); font-weight: 800; letter-spacing: -0.03em; background: var(--brand); -webkit-background-clip: text; background-clip: text; color: transparent; font-variant-numeric: tabular-nums; }
.step__title { font-size: 1.35rem; font-weight: 700; text-transform: uppercase; letter-spacing: -0.01em; margin: 8px 0 12px; }
.step__body { color: var(--text-2); font-size: 1rem; }

/* ---------------------------- Live tracking ----------------------------- */
.tracking__grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(32px, 6vw, 72px); align-items: center; }
.tracking__copy .section__title { margin-bottom: 16px; }
.tracking__list { display: flex; flex-direction: column; gap: 12px; margin: 24px 0 32px; }
.tracking__list li { display: flex; align-items: center; gap: 12px; color: var(--text-2); }
.tracking__list i { width: 18px; height: 18px; border-radius: 50%; background: var(--glass); border: 1px solid var(--accent); position: relative; flex: none; }
.tracking__list i::after { content: ""; position: absolute; inset: 4px; border-radius: 50%; background: var(--brand); }

/* Tracking panel — engineered HUD with corner brackets */
.tracking__panel {
  position: relative;
  background: var(--glass-strong);
  border: 1px solid var(--hairline-strong);
  border-radius: var(--r-2xl);
  padding: 16px;
  box-shadow: var(--card-shadow);
}
.tracking__panel::before, .tracking__panel::after {
  content: ""; position: absolute; width: 18px; height: 18px; pointer-events: none;
  border: 2px solid var(--accent); opacity: 0.8;
}
.tracking__panel::before { top: 10px; left: 10px; border-right: none; border-bottom: none; border-radius: 4px 0 0 0; }
.tracking__panel::after { bottom: 10px; right: 10px; border-left: none; border-top: none; border-radius: 0 0 4px 0; }

.map { position: relative; aspect-ratio: 21 / 16; border-radius: var(--r-xl); overflow: hidden; background: radial-gradient(120% 120% at 80% 10%, #10161f 0%, #070a0e 70%); }
.map__grid { position: absolute; inset: 0; background-image: linear-gradient(var(--hairline) 1px, transparent 1px), linear-gradient(90deg, var(--hairline) 1px, transparent 1px); background-size: 34px 34px; -webkit-mask-image: radial-gradient(120% 100% at 60% 30%, #000 40%, transparent 90%); mask-image: radial-gradient(120% 100% at 60% 30%, #000 40%, transparent 90%); }
.map__svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.map__route { stroke-dasharray: 1; stroke-dashoffset: 1; filter: drop-shadow(0 0 6px rgba(60, 159, 246, 0.6)); }
.is-visible .map__route { animation: draw 2.4s var(--ease) forwards; }
@keyframes draw { to { stroke-dashoffset: 0; } }
.map__home { fill: var(--grad-from); filter: drop-shadow(0 0 8px rgba(159, 229, 249, 0.9)); }
.map__washer circle:first-child { fill: #fff; }
.map__washer-ping { fill: none; stroke: var(--accent); stroke-width: 2; transform-origin: center; animation: ping 1.6s ease-out infinite; }
@keyframes ping { 0% { r: 9; opacity: 0.9; } 100% { r: 22; opacity: 0; } }

.track-card { margin-top: 14px; padding: 16px; border-radius: var(--r-lg); background: var(--surface); border: 1px solid var(--hairline); }
.track-card__row { display: flex; align-items: center; gap: 12px; }
.track-card__avatar { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; font-weight: 700; color: var(--on-accent); background: var(--brand); flex: none; }
.track-card__row > div:nth-child(2) { display: flex; flex-direction: column; }
.track-card__row strong { font-weight: 600; }
.track-card__meta { font-size: 13px; color: var(--text-3); }
.track-card__eta { margin-left: auto; text-align: right; line-height: 1.1; }
.track-card__eta em { font-size: 26px; font-weight: 800; color: var(--text); font-variant-numeric: tabular-nums; }
.track-card__eta span { display: block; font-size: 11px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--text-3); }
.track-card__feed { margin-top: 14px; display: flex; flex-direction: column; gap: 8px; }
.track-card__feed p { font-size: 13px; color: var(--text-3); padding-left: 18px; position: relative; opacity: 0.4; transition: opacity 0.4s, color 0.4s; }
.track-card__feed p::before { content: ""; position: absolute; left: 0; top: 6px; width: 8px; height: 8px; border-radius: 50%; border: 1px solid var(--text-3); }
.track-card__feed p.is-done { opacity: 1; color: var(--text-2); }
.track-card__feed p.is-done::before { background: var(--brand); border-color: transparent; box-shadow: 0 0 8px rgba(60, 159, 246, 0.7); }

/* ------------------------------ Wash tiers ------------------------------ */
.tiers .section__head { max-width: none; display: flex; flex-direction: column; align-items: flex-start; }

.toggle { position: relative; display: inline-flex; padding: 5px; border-radius: var(--r-pill); background: var(--glass); border: 1px solid var(--hairline); margin-top: 26px; }
.toggle__opt { position: relative; z-index: 2; padding: 9px 20px; border-radius: var(--r-pill); font-size: 14px; font-weight: 600; color: var(--text-2); transition: color 0.3s; }
.toggle__opt.is-active { color: var(--on-accent); }
.toggle__pill { position: absolute; z-index: 1; top: 5px; bottom: 5px; left: 5px; width: calc(50% - 5px); border-radius: var(--r-pill); background: var(--brand); transition: transform 0.35s var(--ease); }
.toggle[data-plan="month"] .toggle__pill { transform: translateX(100%); }

.tier-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.tier {
  position: relative;
  padding: 30px;
  border-radius: var(--r-xl);
  background: var(--surface);
  border: 1px solid var(--hairline);
  display: flex; flex-direction: column;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease);
}
.tier:hover { transform: translateY(-4px); border-color: var(--hairline-strong); }
.tier--featured {
  background: linear-gradient(180deg, rgba(60, 159, 246, 0.10), rgba(60, 159, 246, 0.02)), var(--surface);
  border-color: transparent;
  box-shadow: var(--glow);
}
.tier--featured::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1px;
  background: var(--brand-tri);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  pointer-events: none;
}
.tier__badge { position: absolute; top: -12px; left: 30px; font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--on-accent); background: var(--brand); padding: 5px 12px; border-radius: var(--r-pill); }
.tier__name { font-size: 1.5rem; font-weight: 700; text-transform: uppercase; letter-spacing: -0.01em; }
.tier__desc { color: var(--text-3); font-size: 0.95rem; margin: 6px 0 18px; min-height: 2.6em; }
.tier__price { display: flex; align-items: baseline; gap: 8px; margin-bottom: 22px; }
.tier__price .grad-text { font-size: 2.75rem; font-weight: 800; letter-spacing: -0.03em; font-variant-numeric: tabular-nums; }
.tier__price small { color: var(--text-3); font-size: 0.9rem; }
.tier__feat { display: flex; flex-direction: column; gap: 12px; margin-bottom: 26px; flex: 1; }
.tier__feat li { position: relative; padding-left: 26px; color: var(--text-2); font-size: 0.95rem; }
.tier__feat li::before { content: ""; position: absolute; left: 0; top: 7px; width: 14px; height: 8px; border-left: 2px solid var(--accent); border-bottom: 2px solid var(--accent); transform: rotate(-45deg); }
.tier__cta { width: 100%; }

/* -------------------------------- Stats --------------------------------- */
.stats { border-top: 1px solid var(--hairline); }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat { text-align: center; }
.stat__value { display: block; font-size: clamp(2.5rem, 5vw, 3.5rem); font-weight: 800; letter-spacing: -0.03em; line-height: 1; font-variant-numeric: tabular-nums; }
.stat__label { display: block; margin-top: 10px; font-size: 12px; text-transform: uppercase; letter-spacing: 0.16em; color: var(--text-3); }

/* ------------------------------ App download ---------------------------- */
.app__grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(32px, 6vw, 80px); align-items: center; }
.app__phone { display: flex; justify-content: center; }

.phone {
  position: relative; width: 270px; height: 540px;
  border-radius: 44px; padding: 12px;
  background: linear-gradient(160deg, #20262f, #0b0e13);
  border: 1px solid var(--hairline-strong);
  box-shadow: var(--card-shadow), var(--glow);
}
.phone__notch { position: absolute; top: 20px; left: 50%; transform: translateX(-50%); width: 110px; height: 26px; border-radius: var(--r-pill); background: #05070a; z-index: 3; }
.phone__screen { position: relative; height: 100%; border-radius: 34px; overflow: hidden; background: var(--canvas); }
.phone__map { position: absolute; inset: 0; background: radial-gradient(120% 90% at 70% 20%, #111825 0%, #06080b 70%), linear-gradient(var(--hairline) 1px, transparent 1px) 0 0 / 30px 30px, linear-gradient(90deg, var(--hairline) 1px, transparent 1px) 0 0 / 30px 30px; }
.phone__map::after { content: ""; position: absolute; left: 18%; top: 24%; width: 64%; height: 52%; border: 3px solid transparent; border-radius: 40% 60% 55% 45%; border-top-color: var(--grad-from); border-right-color: var(--grad-to); filter: drop-shadow(0 0 8px rgba(60, 159, 246, 0.6)); transform: rotate(-12deg); }
.phone__card { position: absolute; left: 14px; right: 14px; bottom: 16px; padding: 16px; border-radius: var(--r-lg); background: rgba(14, 18, 24, 0.82); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border: 1px solid var(--hairline); }
.phone__eta { font-size: 13px; color: var(--text-3); }
.phone__eta em { font-size: 22px; font-weight: 800; color: var(--text); font-variant-numeric: tabular-nums; }
.phone__card p { font-size: 14px; margin: 4px 0 12px; }
.phone__bar { display: block; height: 6px; border-radius: var(--r-pill); background: var(--surface-raised); overflow: hidden; position: relative; }
.phone__bar::after { content: ""; position: absolute; inset: 0; width: 62%; background: var(--brand); border-radius: inherit; }

.app__badges { display: flex; flex-wrap: wrap; gap: 14px; margin: 28px 0 22px; }
.store-badge {
  display: inline-flex; align-items: center; gap: 12px;
  height: 56px; padding: 0 20px;
  border-radius: var(--r-md);
  border: 1px solid var(--hairline-strong);
  background: var(--surface);
  transition: border-color 0.25s, transform 0.25s var(--ease), box-shadow 0.25s;
}
.store-badge svg { width: 24px; height: 24px; fill: var(--text); transition: fill 0.25s; }
.store-badge span { display: flex; flex-direction: column; font-weight: 600; font-size: 15px; line-height: 1.15; }
.store-badge small { font-size: 10px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-3); }
.store-badge:hover { border-color: var(--accent); transform: translateY(-2px); box-shadow: var(--glow); }
.store-badge:hover svg { fill: var(--grad-from); }
.store-badge--min { height: 46px; font-weight: 600; font-size: 14px; }

.app__sms { display: flex; gap: 10px; max-width: 460px; flex-wrap: wrap; }
.app__sms input { flex: 1; min-width: 200px; height: 54px; padding: 0 18px; border-radius: var(--r-md); background: var(--surface); border: 1px solid var(--hairline); color: var(--text); transition: border-color 0.25s, box-shadow 0.25s; }
.app__sms input::placeholder { color: var(--text-3); }
.app__sms input:focus { outline: none; border-color: var(--accent); box-shadow: var(--focus-ring); }

/* --------------------------- Become a washer ---------------------------- */
.washers { border-top: 1px solid var(--hairline); }
.washers__inner { display: grid; grid-template-columns: 1.4fr 1fr; gap: 48px; align-items: center; }
.washers__aside { display: flex; flex-direction: column; align-items: flex-start; gap: 20px; }
.washers__stat { line-height: 1; }
.washers__stat .grad-text { font-size: clamp(3rem, 7vw, 4.5rem); font-weight: 800; letter-spacing: -0.03em; font-variant-numeric: tabular-nums; }
.washers__stat small { display: block; margin-top: 8px; font-size: 13px; text-transform: uppercase; letter-spacing: 0.14em; color: var(--text-3); }

/* ------------------------------ Final CTA ------------------------------- */
.final { position: relative; text-align: center; overflow: hidden; }
.final__aura { position: absolute; inset: 0; background: radial-gradient(60% 80% at 50% 100%, rgba(60, 159, 246, 0.22), transparent 70%); pointer-events: none; }
.final__inner { position: relative; display: flex; flex-direction: column; align-items: center; gap: 28px; }
.final__title { font-size: clamp(2.25rem, 6vw, 4rem); font-weight: 800; letter-spacing: -0.03em; text-transform: uppercase; line-height: 1.02; max-width: 16ch; }
.final__badges { display: flex; gap: 14px; }

/* -------------------------------- Footer -------------------------------- */
.footer { position: relative; background: var(--canvas-deep); padding-top: 96px; overflow: hidden; border-top: 1px solid var(--hairline); }
.footer__watermark { position: absolute; right: -40px; top: 0; opacity: 0.05; pointer-events: none; }
.footer__watermark img { width: 360px; }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; position: relative; z-index: 1; }
.footer__brand p { color: var(--text-3); margin-top: 16px; max-width: 28ch; }
.footer__col h4 { font-size: 13px; text-transform: uppercase; letter-spacing: 0.14em; color: var(--text); margin-bottom: 16px; }
.footer__col a { display: block; padding: 7px 0; color: var(--text-3); font-size: 15px; transition: color 0.2s; }
.footer__col a:hover { color: var(--text); }
.footer__legal { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 64px; padding: 28px 0 40px; border-top: 1px solid var(--hairline); color: var(--text-3); font-size: 13px; position: relative; z-index: 1; }
.footer__social { display: flex; gap: 8px; }
.footer__social a { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 50%; border: 1px solid var(--hairline); color: var(--text-2); transition: border-color 0.2s, color 0.2s; }
.footer__social a:hover { border-color: var(--accent); color: var(--text); }

/* ----------------------------- Cursor glow ------------------------------ */
.cursor-glow {
  position: fixed; top: 0; left: 0; z-index: 90; width: 340px; height: 340px;
  margin: -170px 0 0 -170px; border-radius: 50%;
  background: radial-gradient(circle, rgba(60, 159, 246, 0.16), transparent 60%);
  pointer-events: none; opacity: 0; transition: opacity 0.4s;
  will-change: transform;
}
.cursor-glow.is-on { opacity: 1; }

/* ----------------------------- Responsive ------------------------------- */
@media (max-width: 960px) {
  .nav__links, .nav__signin { display: none; }
  .nav__burger { display: flex; }
  .tracking__grid, .app__grid, .washers__inner { grid-template-columns: 1fr; }
  .app__phone { order: 2; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 40px 24px; }
}

@media (max-width: 720px) {
  .steps, .tier-grid { grid-template-columns: 1fr; }
  .tier--featured { order: -1; }
  .hero { min-height: auto; padding-block: 120px 64px; }
  .hero__cta .btn { flex: 1; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
  .footer__legal { flex-direction: column; align-items: flex-start; }
  .hero__scroll { display: none; }
}

@media (max-width: 420px) {
  .stats__grid, .footer__grid { grid-template-columns: 1fr; }
}

/* --------------------------- Reduced motion ----------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  .reveal, .reveal-line { opacity: 1; transform: none; }
  .map__route { stroke-dashoffset: 0; }
  .marquee__track { animation: none; }
  .cursor-glow { display: none; }
}
