/* ============================================================================
   RevNet — marketing mockup (standalone, static) · PREMIUM PASS
   Colours mirror the live app's design tokens (src/index.css).
   Feature accent hues are the exact HSL tokens each feature owns in the app.
   ========================================================================== */

:root {
  /* brand + surfaces */
  --brand:        hsl(0 72% 50%);
  --brand-2:      hsl(6 78% 44%);
  --brand-grad:   linear-gradient(135deg, hsl(2 82% 56%), hsl(6 80% 42%));
  --ink:          #0c0d0f;
  --ink-2:        #17181c;
  --muted:        #5c5f66;
  --faint:        #6b6e76;   /* darkened from #8b8e96 to clear WCAG AA (4.5:1) — it carries real copy (trust line, dates, footer, pricing small-print) */
  --hairline:     #ededee;
  --border:       #e4e4e6;
  --bg:           #ffffff;
  --cream:        #faf9f8;
  --surface:      #f4f4f5;
  --card:         #ffffff;

  /* per-feature accents — same tokens as the app */
  --events:   hsl(1 76% 55%);
  --routes:   hsl(220 100% 62%);
  --convoys:  hsl(178 60% 40%);
  --clubs:    hsl(158 100% 22%);
  --services: hsl(38 92% 48%);
  --sos:      hsl(0 72% 50%);

  --r-lg: 26px;
  --r-md: 18px;
  --r-sm: 12px;

  --sh-sm: 0 1px 2px rgba(12,13,15,.05);
  --sh-md: 0 8px 24px -10px rgba(12,13,15,.16);
  --sh-lg: 0 30px 70px -24px rgba(12,13,15,.30);
  --sh-glow: 0 40px 120px -30px hsl(2 82% 56% / .45);

  --maxw: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
  letter-spacing: -0.011em;
}

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

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }

h1, h2, h3, h4 {
  margin: 0; font-family: 'Inter Tight', 'Inter', sans-serif;
  font-weight: 700; letter-spacing: -0.03em; line-height: 1.04;
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 700; letter-spacing: .01em;
  color: var(--brand-2); margin: 0 0 16px;
  padding: 6px 13px 6px 11px; border-radius: 999px;
  background: hsl(2 82% 56% / .08); border: 1px solid hsl(2 82% 56% / .18);
}
.eyebrow .spark { width: 6px; height: 6px; border-radius: 999px; background: var(--brand); box-shadow: 0 0 0 4px hsl(2 82% 56% / .18); }
.lead { color: var(--muted); font-size: 18px; max-width: 56ch; line-height: 1.6; }
/* small reassurance line under a hero heading (business.html) — was undefined, so it
   rendered as full-size black body text. */
.hero-note { color: var(--muted); font-size: 13.5px; margin-top: 14px; }

/* ============================ NAV ============================ */
.nav {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255,255,255,.72);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid rgba(12,13,15,.06);
}
.nav-inner { display: flex; align-items: center; gap: 20px; height: 70px; }
.brand img { height: 27px; width: auto; }
.nav-links { display: flex; gap: 30px; margin-left: auto; align-items: center; }
.nav-links a {
  font-size: 14.5px; font-weight: 550; color: var(--muted);
  transition: color .15s; position: relative;
}
.nav-links a:hover, .nav-links a.active { color: var(--ink); }
.nav-links a.active::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -25px; height: 2px;
  background: var(--brand); border-radius: 2px;
}
.nav-cta {
  display: inline-flex; align-items: center; height: 42px; padding: 0 20px;
  background: var(--ink); color: #fff !important; border-radius: 12px;
  font-size: 14px; font-weight: 650; box-shadow: var(--sh-sm);
  transition: transform .14s cubic-bezier(.32,.72,0,1), box-shadow .2s;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: var(--sh-md); }
.nav-cta::after { display: none; }
.nav-toggle {
  display: none; margin-left: auto; background: none; border: 0;
  width: 42px; height: 42px; cursor: pointer; color: var(--ink);
}
.nav-toggle svg { width: 24px; height: 24px; }
.mobile-menu { display: none; border-bottom: 1px solid var(--hairline); background: #fff; }
.mobile-menu a { display: block; padding: 13px 22px; font-weight: 600; border-top: 1px solid var(--hairline); }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-toggle { display: inline-flex; }
  .mobile-menu.open { display: block; }
}

/* ============================ BUTTONS ============================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  height: 52px; padding: 0 26px; border-radius: 14px; border: 0; cursor: pointer;
  font-size: 15.5px; font-weight: 650; font-family: inherit; letter-spacing: -0.01em;
  transition: transform .14s cubic-bezier(.32,.72,0,1), box-shadow .22s, background .2s;
}
.btn:active { transform: scale(.975); }
.btn-primary { background: var(--brand-grad); color: #fff; box-shadow: 0 10px 26px -10px hsl(4 80% 46% / .6); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 40px -12px hsl(4 80% 46% / .7); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { transform: translateY(-2px); box-shadow: var(--sh-md); }
.btn-ghost {
  background: #fff; color: var(--ink); border: 1px solid var(--border);
  box-shadow: var(--sh-sm);
}
.btn-ghost:hover { transform: translateY(-2px); box-shadow: var(--sh-md); border-color: #d6d6d9; }
.btn-sm { height: 44px; padding: 0 18px; font-size: 14px; border-radius: 11px; }

/* ============================ HERO ============================ */
.hero { position: relative; overflow: hidden; padding: 72px 0 64px; }
.hero-bg {
  position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(48% 46% at 82% 6%, hsl(2 82% 56% / .16), transparent 62%),
    radial-gradient(42% 40% at 8% 4%, hsl(220 100% 62% / .10), transparent 60%),
    radial-gradient(38% 44% at 60% 88%, hsl(178 60% 40% / .07), transparent 62%);
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(12,13,15,.05) 1px, transparent 1px);
  background-size: 26px 26px;
  -webkit-mask-image: radial-gradient(70% 60% at 50% 30%, #000, transparent 75%);
  mask-image: radial-gradient(70% 60% at 50% 30%, #000, transparent 75%);
}

.hero-home { display: grid; grid-template-columns: 1.08fr .92fr; gap: 48px; align-items: center; }
@media (max-width: 940px) { .hero-home { grid-template-columns: 1fr; gap: 40px; } }
.hero h1 {
  font-size: clamp(42px, 6.6vw, 74px); line-height: 0.98; letter-spacing: -0.045em;
  max-width: 14ch; font-weight: 800;
}
.hero h1 .grad { background: var(--brand-grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero .lead { margin-top: 22px; font-size: clamp(16.5px, 2vw, 20px); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 32px; }
.hero-trust { margin-top: 22px; display: flex; align-items: center; gap: 12px; color: var(--faint); font-size: 13.5px; }
.avatars { display: flex; }
.avatars span {
  width: 30px; height: 30px; border-radius: 999px; margin-left: -9px;
  border: 2px solid #fff; background: var(--surface);
  display: grid; place-items: center; font-size: 11px; font-weight: 700; color: var(--muted);
}
.avatars span:first-child { margin-left: 0; }

/* pill row */
.pill-row { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 36px; }
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 15px; border: 1px solid var(--border); border-radius: 999px;
  font-size: 13.5px; font-weight: 600; background: rgba(255,255,255,.7); box-shadow: var(--sh-sm);
}
.dot { width: 9px; height: 9px; border-radius: 999px; }

/* ---- hero device ---- */
.hero-device { justify-self: center; position: relative; }
.hero-device .glow {
  position: absolute; inset: -8% -6% -10% -6%; z-index: 0;
  background: radial-gradient(50% 50% at 50% 45%, hsl(2 82% 56% / .5), transparent 70%);
  filter: blur(20px);
}
.chip {
  position: absolute; z-index: 3; display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 13px; border-radius: 14px; background: rgba(255,255,255,.92);
  backdrop-filter: blur(6px); box-shadow: var(--sh-md); font-size: 12.5px; font-weight: 650;
  border: 1px solid rgba(255,255,255,.7);
}
.chip .dot { width: 8px; height: 8px; }
.chip.c1 { top: 4%; left: -6%; }
.chip.c2 { bottom: 12%; right: -8%; }
.chip.c3 { bottom: 12%; left: -4%; }
@media (max-width: 520px) { .chip.c1, .chip.c2, .chip.c3 { display: none; } }

/* Hero: staggered three-phone cluster showing real app screens.
   The phones bleed off the bottom edge (clip-path clips only the bottom, so the
   side/top drop-shadows still show). The clip line sits just below the middle
   phone's Start-route button, so no empty white shows under it. */
.hero-phones { position: relative; width: 372px; height: 436px; margin: 0 auto;
  clip-path: inset(-80px -80px 0 -80px); }
.hero-phones .hp {
  position: absolute; top: 0; border-radius: 30px 30px 0 0; overflow: hidden; background: #060607;
  border: 7px solid #0a0a0b; border-bottom: 0;
  box-shadow: 0 36px 66px -22px rgba(16,24,40,.52), 0 8px 18px rgba(16,24,40,.16), inset 0 0 0 2px rgba(255,255,255,.05);
}
.hero-phones .hp img { width: 100%; height: 100%; object-fit: cover; object-position: top; display: block; }
.hero-phones .hp-c { width: 212px; aspect-ratio: 9 / 19.3; left: 50%; margin-left: -106px; top: 26px; z-index: 3; }
.hero-phones .hp-l { width: 170px; aspect-ratio: 9 / 19.3; left: 0;  top: 96px; transform: rotate(-8deg); transform-origin: bottom right; z-index: 2; }
.hero-phones .hp-r { width: 170px; aspect-ratio: 9 / 19.3; right: 0; top: 96px; transform: rotate(8deg);  transform-origin: bottom left;  z-index: 2; }
@media (max-width: 940px) { .hero-phones { transform: scale(.94); } }
@media (max-width: 420px) { .hero-phones { width: 330px; transform: scale(.84); } }

/* ============================ PHONE MOCK ============================ */
.phone {
  position: relative; z-index: 2; width: 288px; aspect-ratio: 9 / 19.2;
  border-radius: 46px; background: linear-gradient(160deg, #202226, #050506);
  border: 9px solid #070708; box-shadow: var(--sh-lg), inset 0 0 0 2px rgba(255,255,255,.04);
}
.phone.tilt { transform: perspective(1400px) rotateY(-14deg) rotateX(3deg) rotate(1deg); }
.phone .notch { position: absolute; top: 14px; left: 50%; transform: translateX(-50%); width: 104px; height: 26px; background: #000; border-radius: 999px; z-index: 4; }
.phone-screen { position: absolute; inset: 0; border-radius: 38px; overflow: hidden; background: #0d0f12; display: flex; flex-direction: column; }
.ps-topbar { height: 52px; display: flex; align-items: center; gap: 8px; padding: 0 16px; padding-top: 14px; color: #fff; }
.ps-search { flex: 1; height: 30px; border-radius: 999px; background: #1c1f24; display: flex; align-items: center; padding: 0 12px; color: #7c828c; font-size: 11px; }
.ps-map {
  flex: 1; position: relative;
  background:
    radial-gradient(120% 80% at 25% 18%, hsl(220 100% 62% / .30), transparent 58%),
    radial-gradient(120% 80% at 82% 84%, hsl(2 82% 56% / .30), transparent 58%),
    repeating-linear-gradient(0deg, rgba(255,255,255,.03) 0 1px, transparent 1px 34px),
    repeating-linear-gradient(90deg, rgba(255,255,255,.03) 0 1px, transparent 1px 34px),
    #0f1216;
}
.ps-route { position: absolute; inset: 0; }
.ps-pin { position: absolute; width: 15px; height: 15px; border-radius: 999px 999px 999px 2px; border: 2.5px solid #fff; transform: rotate(45deg); box-shadow: 0 3px 8px rgba(0,0,0,.4); }
.ps-cardwrap { position: absolute; left: 12px; right: 12px; bottom: 12px; }
.ps-card { padding: 12px 13px; border-radius: 16px; background: rgba(24,26,30,.92); backdrop-filter: blur(8px); color: #fff; border: 1px solid rgba(255,255,255,.08); }
.ps-card .row1 { display: flex; align-items: center; gap: 8px; }
.ps-tag { font-size: 9px; font-weight: 800; letter-spacing: .06em; padding: 3px 7px; border-radius: 6px; color: #fff; }
.ps-card .t { font-size: 12.5px; font-weight: 700; margin-top: 8px; }
.ps-card .s { font-size: 10.5px; color: #9aa0a8; margin-top: 3px; }
.ps-tabbar { height: 56px; background: #121418; border-top: 1px solid rgba(255,255,255,.06); display: flex; align-items: center; justify-content: space-around; padding: 0 8px; }
.ps-tab { width: 22px; height: 22px; border-radius: 7px; background: #22252b; }
.ps-tab.on { background: var(--brand); }

/* ============================ SECTION ============================ */
.section { padding: 88px 0; }
.section-head { max-width: 680px; margin-bottom: 40px; }
.section-head h2 { font-size: clamp(30px, 4.2vw, 46px); line-height: 1.03; letter-spacing: -0.04em; font-weight: 800; }
.section-head p { color: var(--muted); font-size: 18px; margin-top: 15px; line-height: 1.6; }
.alt { background: var(--cream); border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); }

/* ============================ CAROUSEL ============================ */
.carousel { position: relative; }
.carousel-track {
  display: flex; gap: 24px; overflow-x: auto; scroll-snap-type: x mandatory;
  padding: 8px 2px 22px; scrollbar-width: none;
}
.carousel-track::-webkit-scrollbar { display: none; }
.feature-card {
  scroll-snap-align: center; flex: 0 0 min(760px, 92%);
  border: 1px solid var(--border); border-radius: var(--r-lg);
  background: var(--card); box-shadow: var(--sh-md);
  overflow: hidden; display: grid; grid-template-columns: 1.05fr .95fr;
  transition: box-shadow .3s, transform .3s;
}
.feature-card:hover { box-shadow: var(--sh-lg); }
@media (max-width: 760px) { .feature-card { grid-template-columns: 1fr; } }
.feature-card .fc-body { padding: 40px; }
.fc-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 16px;
}
.feature-card h3 { font-size: 29px; line-height: 1.06; letter-spacing: -0.035em; font-weight: 800; }
.feature-card .fc-desc { color: var(--muted); margin-top: 14px; font-size: 16px; line-height: 1.6; }
.fc-bullets { list-style: none; margin: 24px 0 0; padding: 0; display: grid; gap: 13px; }
.fc-bullets li { display: flex; gap: 11px; font-size: 15px; }
.fc-bullets b { color: var(--ink); font-weight: 700; }
.fc-check {
  flex: 0 0 auto; width: 21px; height: 21px; border-radius: 999px;
  background: var(--accent); color: #fff; display: grid; place-items: center; margin-top: 1px;
}
.fc-check svg { width: 12px; height: 12px; }

/* feature visual = a mini product screen */
.fc-visual {
  position: relative; min-height: 300px; padding: 26px;
  background: linear-gradient(155deg, color-mix(in srgb, var(--accent) 92%, #fff 8%), color-mix(in srgb, var(--accent) 55%, #000 45%));
  display: grid; place-items: center; overflow: hidden;
}
.fc-visual .watermark { position: absolute; right: -18px; bottom: -18px; width: 150px; height: 150px; color: #fff; opacity: .14; }
.fc-visual .mini-card {
  position: relative; z-index: 2; width: 100%; max-width: 260px;
  border-radius: 18px; background: rgba(12,13,15,.42); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.22); padding: 15px; color: #fff; box-shadow: var(--sh-md);
}
.mini-card .mc-top { display: flex; align-items: center; justify-content: space-between; }
.mini-card .mc-badge { font-size: 9.5px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; padding: 4px 8px; border-radius: 7px; background: rgba(255,255,255,.2); }
.mini-card .mc-dist { font-size: 11px; opacity: .85; }
.mini-card .mc-title { font-size: 15px; font-weight: 750; margin-top: 12px; letter-spacing: -0.02em; }
.mini-card .mc-sub { font-size: 12px; opacity: .82; margin-top: 4px; }
.mini-card .mc-row { display: flex; align-items: center; gap: 7px; margin-top: 14px; padding-top: 12px; border-top: 1px solid rgba(255,255,255,.16); font-size: 11.5px; opacity: .9; }
.mini-card .mc-face { width: 20px; height: 20px; border-radius: 999px; background: rgba(255,255,255,.28); display: inline-block; margin-left: -6px; border: 1.5px solid rgba(255,255,255,.5); }
.mini-card .mc-face:first-child { margin-left: 0; }

/* Optional per-feature app screenshot in a phone frame.
   Drop a file at assets/feature-<id>.png (portrait, ~9:19.5, e.g. 1170x2532)
   and it appears automatically; until then the glass mini-card above shows. */
.fc-phone { display: none; }
.fc-visual.has-shot { padding: 0; }
.fc-visual.has-shot .mini-card,
.fc-visual.has-shot .watermark { display: none; }
.fc-visual.has-shot .fc-phone { display: block; }
.fc-phone {
  position: relative; z-index: 2; height: 328px; aspect-ratio: 9 / 19.3;
  margin: 22px 0; border-radius: 34px; overflow: hidden;
  background: #070708; border: 7px solid #0a0a0b;
  box-shadow: var(--sh-lg), inset 0 0 0 2px rgba(255,255,255,.04);
}
.fc-shot { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Lifestyle photo panel — full-bleed real-world photo instead of an app phone.
   The card's text column already explains the feature; the photo sells the feeling. */
.fc-visual.has-photo { padding: 0; }
.fc-visual.has-photo .mini-card,
.fc-visual.has-photo .watermark,
.fc-visual.has-photo .fc-phone { display: none; }
.fc-photo { position: absolute; inset: 0; z-index: 1; }
.fc-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
/* subtle accent-tinted gradient at the foot for feature identity + legibility */
.fc-photo::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg,
    rgba(4,6,10,.06) 0%, rgba(4,6,10,0) 42%,
    color-mix(in srgb, var(--accent) 22%, rgba(4,6,10,.66)) 100%);
}

.carousel-controls { display: flex; align-items: center; gap: 16px; margin-top: 10px; }
.carousel-btns { display: flex; gap: 9px; }
.cbtn {
  width: 48px; height: 48px; border-radius: 999px; border: 1px solid var(--border);
  background: #fff; cursor: pointer; display: grid; place-items: center; color: var(--ink);
  transition: background .16s, transform .13s, box-shadow .2s; box-shadow: var(--sh-sm);
}
.cbtn:hover { background: var(--ink); color: #fff; box-shadow: var(--sh-md); }
.cbtn:active { transform: scale(.93); }
.cbtn svg { width: 20px; height: 20px; }
.dots { display: flex; gap: 2px; margin-left: auto; }
/* Visual dot stays 8px, but content-box + padding + background-clip give each dot a
   ~32px-tall / 20px-wide touch target without changing how it looks. */
.dots button {
  width: 8px; height: 8px; border-radius: 999px; border: 0;
  box-sizing: content-box; padding: 12px 6px; background-clip: content-box;
  background-color: var(--border); background-image: none;
  cursor: pointer; transition: width .25s, background-color .25s;
}
.dots button.active { width: 30px; background-color: transparent; background-image: var(--brand-grad); background-clip: content-box; }

/* ============================ STATS BAND ============================ */
.stats-band { background: var(--ink); color: #fff; }
.stats-band .wrap { padding-top: 74px; padding-bottom: 74px; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 820px) { .stats-grid { grid-template-columns: 1fr 1fr; gap: 34px 20px; } }
.stat-b { text-align: center; }
.stat-b .n { font-family: 'Inter Tight'; font-size: clamp(38px, 5vw, 56px); font-weight: 800; letter-spacing: -0.045em; line-height: 1; background: linear-gradient(180deg,#fff,#c9cbd0); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat-b .l { color: #9a9da4; font-size: 14.5px; margin: 12px auto 0; max-width: 22ch; }
.stats-head { text-align: center; margin-bottom: 46px; }
.stats-head h2 { color: #fff; font-size: clamp(28px,4vw,42px); font-weight: 800; letter-spacing: -0.04em; }
.stats-head p { color: #9a9da4; font-size: 17px; margin-top: 12px; }

/* ============================ GRID CARDS ============================ */
.grid { display: grid; gap: 22px; grid-template-columns: repeat(3, 1fr); }
@media (max-width: 900px) { .grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .grid { grid-template-columns: 1fr; } }
.card {
  border: 1px solid var(--border); border-radius: var(--r-lg);
  background: var(--card); padding: 30px; box-shadow: var(--sh-sm);
  transition: box-shadow .3s, transform .3s;
}
.card:hover { box-shadow: var(--sh-md); transform: translateY(-3px); }
.card .swatch { width: 50px; height: 50px; border-radius: 15px; margin-bottom: 20px; box-shadow: var(--sh-sm); }
.card h3 { font-size: 20px; letter-spacing: -0.025em; }
.card p { color: var(--muted); font-size: 15px; margin: 10px 0 0; line-height: 1.6; }

/* ============================ UPCOMING ============================ */
.up-list { display: grid; gap: 18px; margin-top: 10px; }
.up-item {
  display: flex; gap: 22px; align-items: flex-start;
  border: 1px solid var(--border); border-radius: var(--r-lg); background: #fff; padding: 28px;
  box-shadow: var(--sh-sm); transition: box-shadow .3s, transform .3s;
}
.up-item:hover { box-shadow: var(--sh-md); transform: translateY(-2px); }
@media (max-width: 640px) { .up-item { flex-direction: column; } }
.up-swatch { width: 54px; height: 54px; border-radius: 15px; flex: 0 0 auto; box-shadow: var(--sh-sm); }
.up-main { flex: 1; min-width: 0; }
.up-title { display: flex; flex-wrap: wrap; align-items: center; gap: 11px; }
.up-title h3 { font-size: 22px; letter-spacing: -0.03em; }
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 800; letter-spacing: .05em;
  padding: 5px 11px; border-radius: 8px;
}
.badge .b-dot { width: 6px; height: 6px; border-radius: 999px; background: currentColor; }
.badge.build { background: hsl(158 100% 22% / .12); color: hsl(158 100% 24%); }
.badge.next  { background: hsl(35 90% 45% / .14); color: hsl(30 80% 38%); }
.badge.exploring { background: var(--surface); color: var(--muted); }
.badge.live { background: hsl(158 100% 22% / .12); color: hsl(158 100% 24%); }
.up-blurb { color: var(--muted); font-size: 15px; margin: 12px 0 0; max-width: 62ch; line-height: 1.6; }
.up-when { color: var(--faint); font-size: 13px; margin-top: 12px; }
.up-actions { display: flex; gap: 10px; flex: 0 0 auto; }
@media (max-width: 640px) { .up-actions { width: 100%; } .up-actions .btn { flex: 1; } }

.shipped {
  margin-top: 22px; border: 1px solid var(--border); border-radius: var(--r-lg);
  background: var(--cream); padding: 28px;
}
.shipped-head { display: flex; align-items: center; gap: 11px; }
.shipped ul { list-style: none; padding: 0; margin: 16px 0 0; display: grid; gap: 11px; }
.shipped li { display: flex; align-items: center; gap: 11px; font-size: 15px; }
.ship-check {
  flex: 0 0 auto; width: 18px; height: 18px; border-radius: 999px;
  background: var(--clubs); color: #fff; display: grid; place-items: center;
}
.ship-check svg { width: 10px; height: 10px; }
.ship-date { margin-left: auto; color: var(--faint); font-size: 13px; }

/* ============================ BUSINESS ============================ */
.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; gap: 36px; } }
.stat-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.stat {
  border: 1px solid var(--border); border-radius: var(--r-md); padding: 22px; background: #fff; box-shadow: var(--sh-sm);
}
.stat .n { font-family: 'Inter Tight'; font-size: 34px; font-weight: 800; letter-spacing: -0.03em; }
.stat .l { color: var(--muted); font-size: 13.5px; margin-top: 6px; }
.check-list { list-style: none; padding: 0; margin: 26px 0 0; display: grid; gap: 14px; }
.check-list li { display: flex; gap: 13px; font-size: 16px; }
.check-list .fc-check { background: var(--clubs); }
.compare {
  border: 1px solid var(--border); border-radius: var(--r-lg); background: #fff;
  padding: 30px; box-shadow: var(--sh-md);
}
.compare-row { display: flex; justify-content: space-between; align-items: center; padding: 15px 0; border-top: 1px solid var(--hairline); }
.compare-row:first-of-type { border-top: 0; }
.compare-row .price { font-weight: 800; }
.compare-row .strike { color: var(--faint); text-decoration: line-through; }
.compare-row .free { color: var(--clubs); }

/* ============================ GET THE APP ============================ */
.app-hero { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; padding: 24px 0 0; }
@media (max-width: 900px) { .app-hero { grid-template-columns: 1fr; } }
.store-badges { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 30px; }
.store-badge {
  display: inline-flex; align-items: center; gap: 13px; height: 60px; padding: 0 22px;
  border-radius: 15px; background: var(--ink); color: #fff; box-shadow: var(--sh-md);
  transition: transform .14s cubic-bezier(.32,.72,0,1);
}
.store-badge:hover { transform: translateY(-2px); }
.store-badge.disabled { background: #f0f0f1; color: var(--faint); cursor: default; box-shadow: none; }
.store-badge.disabled:hover { transform: none; }
.store-badge svg { width: 26px; height: 26px; }
.store-badge .sb-small { display: block; font-size: 10px; opacity: .8; }
.store-badge .sb-big { display: block; font-size: 18px; font-weight: 700; margin-top: -2px; font-family: 'Inter Tight'; }
.app-device { justify-self: center; position: relative; }
.app-device .glow { position: absolute; inset: -8%; background: radial-gradient(50% 50% at 50% 45%, hsl(2 82% 56% / .4), transparent 70%); filter: blur(20px); }

.app-features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 8px; }
@media (max-width: 820px) { .app-features { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .app-features { grid-template-columns: 1fr; } }
.app-feature { display: flex; gap: 15px; align-items: flex-start; }
.app-feature .af-ico { width: 46px; height: 46px; border-radius: 14px; display: grid; place-items: center; color: #fff; flex: 0 0 auto; box-shadow: var(--sh-sm); }
.app-feature .af-ico svg { width: 23px; height: 23px; }
.app-feature h4 { margin: 0; font-size: 16.5px; letter-spacing: -0.02em; }
.app-feature p { margin: 5px 0 0; color: var(--muted); font-size: 14px; line-height: 1.55; }

/* ============================ CTA BAND ============================ */
.cta-band {
  position: relative; overflow: hidden; color: #fff; border-radius: var(--r-lg);
  padding: 68px 48px; text-align: center;
  background: linear-gradient(135deg, hsl(2 78% 52%), hsl(8 82% 38%));
  box-shadow: var(--sh-glow);
}
.cta-band::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(60% 90% at 80% 10%, rgba(255,255,255,.22), transparent 60%);
}
.cta-band > * { position: relative; }
.cta-band h2 { font-size: clamp(30px, 4.4vw, 46px); font-weight: 800; letter-spacing: -0.04em; }
.cta-band p { color: rgba(255,255,255,.86); margin: 14px auto 0; max-width: 50ch; font-size: 18px; }
.cta-band .hero-actions { justify-content: center; margin-top: 30px; }
.cta-band .btn-ghost { background: rgba(255,255,255,.14); color: #fff; border-color: rgba(255,255,255,.3); box-shadow: none; backdrop-filter: blur(6px); }
.cta-band .btn-ghost:hover { background: rgba(255,255,255,.22); }
.cta-band .btn-light { background: #fff; color: var(--ink); }

/* ============================ FOOTER ============================ */
.footer { border-top: 1px solid var(--hairline); background: var(--cream); padding: 66px 0 34px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 34px; }
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
.footer h4 { font-size: 12px; text-transform: uppercase; letter-spacing: .08em; color: var(--faint); margin: 0 0 14px; font-family: 'Inter'; font-weight: 700; }
.footer a { display: block; color: var(--muted); font-size: 14px; padding: 9px 0; transition: color .15s; }
.footer a:hover { color: var(--ink); }
.footer .brand img { height: 26px; margin-bottom: 14px; }
.footer .tag { color: var(--muted); font-size: 14.5px; max-width: 32ch; line-height: 1.6; }
.footer-base { margin-top: 44px; padding-top: 22px; border-top: 1px solid var(--hairline); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; color: var(--faint); font-size: 13px; }

/* ============================ LEGAL PAGES ============================ */
.legal { max-width: 760px; }
.legal .legal-meta { color: var(--faint); font-size: 14px; margin: 8px 0 0; }
.legal h2 { font-size: clamp(24px, 3vw, 32px); letter-spacing: -0.03em; margin: 44px 0 0; }
.legal h3 { font-size: 18px; letter-spacing: -0.02em; margin: 28px 0 0; }
.legal p, .legal li { color: var(--muted); font-size: 16px; line-height: 1.7; }
.legal p { margin: 14px 0 0; }
.legal ul { margin: 14px 0 0; padding-left: 22px; display: grid; gap: 8px; }
.legal a { color: var(--brand-2); font-weight: 600; }
.legal a:hover { text-decoration: underline; }
.legal .legal-note {
  margin-top: 40px; padding: 20px 22px; border: 1px solid var(--border);
  border-radius: var(--r-md); background: var(--cream); color: var(--muted);
  font-size: 14.5px; line-height: 1.65;
}

/* reveal on scroll */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s cubic-bezier(.22,.61,.36,1), transform .7s cubic-bezier(.22,.61,.36,1); }
.reveal.in { opacity: 1; transform: none; }

/* ============================ FOCUS (keyboard) ============================ */
/* Every interactive element gets a clear, on-brand focus ring for keyboard users
   only (:focus-visible), so mouse clicks stay clean. Without this the carousel
   dots, arrows and nav links showed nothing on Tab. */
a:focus-visible,
button:focus-visible,
.btn:focus-visible,
.nav-cta:focus-visible,
.cbtn:focus-visible,
.dots button:focus-visible,
.store-badge:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
  border-radius: 8px;
}
.dots button:focus-visible { outline-offset: 4px; }

/* ============================ REDUCED MOTION ============================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  /* Neutralise hover lifts, glows and any long transitions for motion-sensitive users. */
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}
