/* =====================================================================
   Range Mate — custom dark design system
   Lean, dependency-free CSS. Replaces the legacy Landkit/Bootstrap bundle.
   ===================================================================== */

/* ----- Tokens ------------------------------------------------------- */
:root {
  --bg:        #07080c;
  --bg-2:      #0b0d13;
  --surface:   #111521;
  --surface-2: #171c2b;
  --border:    rgba(255, 255, 255, 0.08);
  --border-2:  rgba(255, 255, 255, 0.14);

  --text:      #eef0f6;
  --muted:     #9aa3b6;
  --faint:     #6b7488;

  --accent:    #5b82ff;
  --accent-2:  #335eea;
  --accent-3:  #5b82ff;
  --accent-ink:#0a0c12;
  --success:   #34d399;
  --danger:    #fb7185;
  --warning:   #fbbf24;

  /* Gradient starts at a deeper blue than --accent so white button labels
     hold 4.5:1 across the whole surface (older-eyes AA floor). */
  --grad: linear-gradient(135deg, #426af2 0%, var(--accent-2) 100%);
  --grad-soft: linear-gradient(135deg, rgba(91,130,255,.16), rgba(51,94,234,.16));

  --radius:    16px;
  --radius-sm: 11px;
  --radius-lg: 24px;
  --radius-btn: 10px;
  --shadow:    0 24px 60px -20px rgba(0, 0, 0, 0.7);
  --glow:      0 0 0 1px rgba(91,130,255,.25), 0 24px 70px -24px rgba(91,130,255,.45);

  --container: 1180px;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica,
          Arial, "Apple Color Emoji", "Segoe UI Emoji", sans-serif;
}

/* ----- Reset -------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: clip; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  width: 100%;
  max-width: 100%;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; }
ul { list-style: none; padding: 0; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 6px; }

/* keyboard users jump past the nav; hidden until focused */
.skip-link { position: absolute; left: 16px; top: -60px; z-index: 200; background: var(--surface);
  color: var(--text); font-weight: 600; padding: 12px 18px; border-radius: 10px;
  border: 1px solid var(--border-2); box-shadow: var(--shadow); }
.skip-link:focus { top: 12px; }

/* ----- Typography --------------------------------------------------- */
h1, h2, h3, h4 { line-height: 1.12; letter-spacing: -0.025em; font-weight: 700; }
h1 { font-size: clamp(2.4rem, 5.2vw, 4.1rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.55rem); }
h4 { font-size: 1.12rem; }
p  { color: var(--muted); }
strong { color: var(--text); font-weight: 650; }

.lead { font-size: clamp(1.05rem, 1.6vw, 1.3rem); color: var(--muted); line-height: 1.55; }
.text-gradient {
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.muted { color: var(--muted); }
.center { text-align: center; }
.measure { max-width: 720px; margin-inline: auto; }
.measure-sm { max-width: 560px; margin-inline: auto; }

/* ----- Layout ------------------------------------------------------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 22px; }
.section { padding-block: clamp(64px, 9vw, 120px); }
.section--tight { padding-block: clamp(44px, 6vw, 80px); }
.section + .section { padding-top: 0; }

.grid { display: grid; gap: 22px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.stack > * + * { margin-top: 1rem; }

@media (max-width: 900px) {
  .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
}

/* ----- Decorative background --------------------------------------- */
.glow-bg { position: relative; isolation: isolate; }
.glow-bg::before {
  content: ""; position: absolute; inset: -10% 0 auto 0; height: 620px; z-index: -1;
  background:
    radial-gradient(50% 60% at 25% 0%, rgba(91,130,255,.20), transparent 70%),
    radial-gradient(45% 55% at 80% 10%, rgba(51,94,234,.16), transparent 70%);
  pointer-events: none;
}
.grid-lines { position: relative; }
.grid-lines::after {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(70% 60% at 50% 0%, #000 0%, transparent 80%);
          mask-image: radial-gradient(70% 60% at 50% 0%, #000 0%, transparent 80%);
  opacity: .5;
}

/* ----- Badges / eyebrows ------------------------------------------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .8rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase;
  color: var(--muted);
  padding: 6px 13px; border-radius: 999px;
  border: 1px solid var(--border); background: var(--surface);
}
.eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent-3); box-shadow: 0 0 10px var(--accent-3); }
.pill { display: inline-flex; align-items: center; gap: 6px; padding: 4px 11px; border-radius: 999px;
  font-size: .78rem; font-weight: 600; border: 1px solid var(--border); color: var(--muted); white-space: nowrap; }
.pill--accent { color: var(--accent); border-color: rgba(91,130,255,.4); background: rgba(91,130,255,.08); }
.pill--green  { color: var(--success); border-color: rgba(52,211,153,.35); background: rgba(52,211,153,.08); }

/* ----- Buttons ------------------------------------------------------ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-weight: 600; font-size: .98rem; line-height: 1;
  padding: 14px 24px; border-radius: var(--radius-btn); border: 1px solid transparent;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn--primary { background: var(--grad); color: #fff; box-shadow: 0 10px 30px -10px rgba(91,130,255,.7); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 16px 40px -10px rgba(91,130,255,.85); }
.btn--ghost { background: var(--surface); color: var(--text); border-color: var(--border-2); }
.btn--ghost:hover { transform: translateY(-2px); border-color: var(--accent); background: var(--surface-2); }
.btn--lg { padding: 17px 32px; font-size: 1.05rem; }
.btn--block { width: 100%; }

/* ----- Cards -------------------------------------------------------- */
.card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 26px; transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.card--hover:hover { transform: translateY(-4px); border-color: var(--border-2); box-shadow: var(--shadow); }
.card--glow { background: linear-gradient(var(--surface), var(--surface)) padding-box,
              var(--grad) border-box; border: 1px solid transparent; box-shadow: var(--glow); }
.card__icon {
  width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center;
  background: var(--grad-soft); border: 1px solid var(--border); color: var(--accent); margin-bottom: 16px;
}
.card__icon svg { width: 22px; height: 22px; }
.card h3 { margin-bottom: 8px; }
.card p { font-size: .96rem; }

/* ----- Feature / value lists --------------------------------------- */
.ticklist { display: grid; gap: 13px; }
.ticklist li { display: flex; gap: 12px; align-items: flex-start; color: var(--text); }
.ticklist svg { width: 22px; height: 22px; flex: none; color: var(--success); margin-top: 1px; }
.ticklist--muted li { color: var(--muted); }

/* ----- Stats -------------------------------------------------------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; text-align: center; }
.stat__num { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; letter-spacing: -.03em; }
.stat__label { color: var(--muted); font-size: .92rem; }
@media (max-width: 700px) { .stats { grid-template-columns: repeat(2, 1fr); } }

/* ----- Navbar ------------------------------------------------------- */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(8,9,13,.72); backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 70px; }
.nav__logo { height: 28px; filter: brightness(0) invert(1); }
.nav__links { display: flex; align-items: center; gap: 28px; }
.nav__links a { color: var(--muted); font-weight: 500; font-size: .96rem; transition: color .15s; }
.nav__links a:hover { color: var(--text); }
.nav__actions { display: flex; align-items: center; gap: 12px; }
.nav__actions .btn { padding: 9px 17px; font-size: .9rem; }
.nav__actions .btn svg { width: 16px; height: 16px; }
.nav__toggle { display: none; background: none; border: 0; color: var(--text); padding: 9px; }
.nav__toggle svg { width: 26px; height: 26px; }
.nav__toggle-close { display: none; }
.nav.is-open .nav__toggle-open { display: none; }
.nav.is-open .nav__toggle-close { display: block; }

/* nav dropdowns */
.nav__group { position: relative; }
.nav__trigger { display: inline-flex; align-items: center; gap: 5px; background: none; border: 0;
  color: var(--muted); font-weight: 500; font-size: .96rem; font-family: inherit; cursor: pointer;
  padding: 0; transition: color .15s; }
.nav__trigger:hover { color: var(--text); }
.nav__trigger svg { width: 15px; height: 15px; transition: transform .2s ease; }
.nav__panel { position: absolute; top: 100%; right: 0; margin-top: 14px; min-width: 216px;
  background: var(--surface); border: 1px solid var(--border-2); border-radius: 14px; padding: 8px;
  box-shadow: var(--shadow); display: grid; gap: 2px; z-index: 110;
  opacity: 0; visibility: hidden; transform: translateY(6px); transition: opacity .16s ease, transform .16s ease; }
.nav__panel::before { content: ""; position: absolute; top: -16px; left: 0; right: 0; height: 16px; }
.nav__group:hover .nav__panel, .nav__group:focus-within .nav__panel, .nav__group.is-open .nav__panel {
  opacity: 1; visibility: visible; transform: translateY(0); }
.nav__group:hover .nav__trigger svg, .nav__group.is-open .nav__trigger svg { transform: rotate(180deg); }
.nav__panel a { display: flex; align-items: center; gap: 8px; padding: 9px 12px; border-radius: 9px;
  color: var(--muted); font-size: .92rem; font-weight: 500; white-space: nowrap; }
.nav__panel a:hover { background: var(--surface-2); color: var(--text); }
.nav__panel a svg { width: 14px; height: 14px; color: var(--faint); }

@media (max-width: 860px) {
  .nav__links, .nav__actions .btn--ghost { display: none; }
  .nav__toggle { display: block; }
  .nav.is-open .nav__menu {
    display: flex; flex-direction: column; gap: 18px; align-items: flex-start;
    position: absolute; top: 70px; left: 0; right: 0; padding: 22px;
    background: var(--bg-2); border-bottom: 1px solid var(--border);
  }
  .nav__menu { display: none; }
  .nav.is-open .nav__links { display: flex; flex-direction: column; gap: 18px; align-items: flex-start; }
  .nav.is-open .nav__actions { display: flex; }
  .nav__menu { width: 100%; }
  /* dropdowns become inline accordions on mobile */
  .nav__group { width: 100%; }
  .nav__trigger { width: 100%; justify-content: space-between; font-size: 1rem; color: var(--text); }
  .nav__panel { position: static; margin-top: 6px; min-width: 0; box-shadow: none; border: 0;
    background: transparent; padding: 2px 0 2px 14px; transform: none; opacity: 1; visibility: visible;
    display: none; gap: 0; }
  .nav__group.is-open .nav__panel { display: grid; }
  .nav__panel::before { display: none; }
  .nav__panel a { padding: 9px 0; }
}
.nav__menu { display: contents; }

/* ----- Footer ------------------------------------------------------- */
.footer { border-top: 1px solid var(--border); background: var(--bg-2); padding-block: 64px 40px; }
.footer__grid { display: grid; grid-template-columns: 1.6fr repeat(4, 1fr); gap: 32px; }
.footer__h { text-transform: uppercase; letter-spacing: .06em; font-size: .76rem; font-weight: 600; color: var(--muted); margin-bottom: 10px; }
.footer__grid a { color: var(--muted); font-size: .94rem; line-height: 1.4; display: inline-block; padding-block: 11px; transition: color .15s; }
.footer__grid a:hover { color: var(--text); }
.footer__brand img { height: 26px; margin-bottom: 14px; filter: brightness(0) invert(1); opacity: .92; }
.footer__social { display: flex; gap: 14px; margin-top: 18px; }
.footer__social a { width: 38px; height: 38px; border-radius: 10px; border: 1px solid var(--border);
  display: grid; place-items: center; color: var(--muted); }
.footer__social a:hover { color: var(--text); border-color: var(--accent); }
.footer__social svg { width: 18px; height: 18px; }
.footer__bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--border); color: var(--muted); font-size: .86rem; }
@media (max-width: 820px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer__grid { grid-template-columns: 1fr; } }

/* ----- Accordion (FAQ) --------------------------------------------- */
.accordion { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; background: var(--surface); }
.accordion__item + .accordion__item { border-top: 1px solid var(--border); }
.accordion__btn {
  width: 100%; text-align: left; background: none; border: 0; color: var(--text);
  padding: 22px 24px; font-size: 1.05rem; font-weight: 600;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.accordion__btn svg { width: 20px; height: 20px; color: var(--muted); transition: transform .25s ease; flex: none; }
.accordion__item.is-open .accordion__btn svg { transform: rotate(45deg); color: var(--accent); }
.accordion__panel { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.accordion__panel-inner { padding: 0 24px 22px; color: var(--muted); }

/* ----- Logo strip --------------------------------------------------- */
.logostrip { display: flex; flex-wrap: wrap; gap: 14px 30px; align-items: center; justify-content: center; opacity: .8; }
.logostrip .pill { font-size: .85rem; }

/* ----- Steps (how it works) ---------------------------------------- */
.steps { counter-reset: step; display: grid; gap: 20px; grid-template-columns: repeat(3, 1fr); }
.step { position: relative; }
.step__num { font-variant-numeric: tabular-nums; width: 40px; height: 40px; border-radius: 12px;
  display: grid; place-items: center; font-weight: 700; background: var(--grad-soft);
  border: 1px solid var(--border); color: var(--accent); margin-bottom: 14px; }
@media (max-width: 800px) { .steps { grid-template-columns: 1fr; } }

/* ----- Pricing ------------------------------------------------------ */
.price__amount { font-size: 3rem; font-weight: 700; letter-spacing: -.03em; }
.price__amount small { font-size: 1rem; color: var(--muted); font-weight: 500; }
.price--featured { box-shadow: var(--glow); }

/* ----- Prose (legal / content pages) ------------------------------- */
.prose { max-width: 760px; margin-inline: auto; }
.prose h1 { margin-bottom: 8px; }
.prose h2 { font-size: 1.5rem; margin-top: 2em; margin-bottom: .5em; }
.prose h3 { font-size: 1.2rem; margin-top: 1.6em; margin-bottom: .4em; }
.prose p, .prose li { color: var(--muted); margin-bottom: 1em; }
.prose ul, .prose ol { padding-left: 1.3em; margin-bottom: 1em; }
.prose ul li { list-style: disc; } .prose ol li { list-style: decimal; }
.prose a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.prose table { width: 100%; border-collapse: collapse; margin: 1.2em 0; font-size: .94rem; }
.prose th, .prose td { border: 1px solid var(--border); padding: 10px 12px; text-align: left; }
.prose th { background: var(--surface); }
.prose hr { border: 0; border-top: 1px solid var(--border); margin: 2em 0; }
.prose blockquote { border-left: 3px solid var(--accent); margin: 1.4em 0; padding: 6px 0 6px 20px;
  color: var(--muted); font-style: italic; line-height: 1.9; }

/* ----- Page hero (interior pages) ---------------------------------- */
.pagehero { padding-block: clamp(70px, 10vw, 130px) clamp(40px, 6vw, 70px); text-align: center; }
.pagehero p { margin-top: 16px; }

/* ----- Forms -------------------------------------------------------- */
.field { margin-bottom: 18px; }
.field label { display: block; font-size: .9rem; font-weight: 600; margin-bottom: 7px; }
.input, .textarea, .select {
  width: 100%; background: var(--surface); border: 1px solid var(--border-2); color: var(--text);
  border-radius: var(--radius-sm); padding: 13px 15px; font-size: 1rem; transition: border-color .15s, box-shadow .15s;
}
.input:focus, .textarea:focus, .select:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(91,130,255,.18); }
.textarea { resize: vertical; min-height: 140px; }

/* ----- Reveal on scroll -------------------------------------------- */
/* Hidden-then-revealed only when JS has announced itself via .js on <html>.
   If the script is blocked or fails, every section stays visible. */
.js [data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.js [data-reveal].is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .js [data-reveal] { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .wstep { animation: none; }
  .wloader span { animation: none; opacity: 1; transform: none; }
}

/* ----- No-JS fallbacks ---------------------------------------------- */
/* The FAQ must stay readable and the wizard must not dangle a dead button. */
html:not(.js) .accordion__panel { max-height: none; }
html:not(.js) [data-w-start] { display: none; }
@media (max-width: 860px) {
  /* Without JS the hamburger can't open anything: hide it and show the
     menu in-flow instead, letting the header grow. */
  html:not(.js) .nav__toggle { display: none; }
  html:not(.js) .nav__inner { height: auto; flex-wrap: wrap; padding-block: 12px; }
  html:not(.js) .nav__menu { display: flex; flex-direction: column; gap: 14px; align-items: flex-start; width: 100%; padding-top: 8px; }
  html:not(.js) .nav__links { display: flex; flex-direction: column; gap: 14px; align-items: flex-start; }
  html:not(.js) .nav__actions { display: flex; }
  html:not(.js) .nav__panel { position: static; display: grid; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; border: 0; background: transparent; padding: 2px 0 2px 14px; min-width: 0; }
}

/* ===================================================================
   WIZARD
   =================================================================== */
.wizard {
  position: relative; background: linear-gradient(180deg, var(--surface), var(--bg-2));
  border: 1px solid var(--border-2); border-radius: var(--radius-lg);
  box-shadow: var(--shadow); overflow: hidden;
}
.wizard__bar { height: 4px; background: rgba(255,255,255,.06); }
.wizard__bar-fill { height: 100%; width: 0; background: var(--grad); transition: width .4s ease; }
.wizard__head { display: flex; justify-content: space-between; align-items: center; gap: 8px; flex-wrap: wrap; padding: 18px 26px 0; }
@media (max-width: 480px) {
  .wizard__head { padding: 14px 20px 0; }
  .wizard__head .eyebrow { font-size: .7rem; padding: 5px 10px; white-space: nowrap; }
}
.wizard__count { font-size: .82rem; color: var(--muted); font-variant-numeric: tabular-nums; letter-spacing: .03em; white-space: nowrap; }
.wizard__body { padding: 26px clamp(22px, 4vw, 44px) clamp(28px, 4vw, 44px); }

.wstep { display: none; animation: wfade .45s ease both; }
.wstep.is-active { display: block; }
@keyframes wfade { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

.wstep__kicker { color: var(--accent); font-weight: 600; font-size: .85rem; letter-spacing: .04em;
  text-transform: uppercase; margin-bottom: 12px; }
.wstep__q { font-size: clamp(1.5rem, 3vw, 2.1rem); margin-bottom: 6px; }
.wstep__sub { color: var(--muted); margin-bottom: 26px; }

/* agree / disagree scale — five-point Likert, horizontal at all sizes */
.wscale { display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px; }
.wscale button {
  display: flex; flex-direction: column; align-items: center; gap: 7px;
  background: var(--surface); border: 1px solid var(--border-2); color: var(--muted);
  border-radius: var(--radius-sm); padding: 16px 6px; text-align: center; font-weight: 600; font-size: .8rem;
  transition: all .15s ease; line-height: 1.2;
}
.wscale button .num { font-size: 1.35rem; font-weight: 700; line-height: 1; font-variant-numeric: tabular-nums; }
.wscale button:hover { border-color: var(--accent); color: var(--text); transform: translateY(-3px); }
.wscale button.is-picked { border-color: transparent; color: #fff;
  background: var(--grad); box-shadow: 0 10px 30px -12px rgba(91,130,255,.7); }
.wscale__markers { display: none; justify-content: space-between; margin-top: 10px; padding: 0 4px;
  font-size: .74rem; font-weight: 600; color: var(--muted); }
@media (max-width: 620px) {
  .wscale { gap: 6px; }
  .wscale button { padding: 14px 3px; }
  .wscale button .lbl { display: none; }
  .wscale__markers { display: flex; }
}

/* choice cards (single / multi select) */
.wchoices { display: grid; gap: 12px; }
.wchoices--2 { grid-template-columns: 1fr 1fr; }
.wchoice {
  display: flex; align-items: center; gap: 14px; text-align: left;
  background: var(--surface); border: 1px solid var(--border-2); color: var(--text);
  border-radius: var(--radius-sm); padding: 17px 19px; font-weight: 600; transition: all .15s ease;
}
.wchoice:hover { border-color: var(--accent); transform: translateY(-2px); }
.wchoice.is-picked { border-color: transparent; background: var(--grad-soft); box-shadow: inset 0 0 0 1px var(--accent); }
.wchoice .tick { width: 22px; height: 22px; border-radius: 50%; border: 2px solid var(--border-2);
  flex: none; display: grid; place-items: center; }
.wchoice.is-picked .tick { background: var(--accent); border-color: var(--accent); }
.wchoice.is-picked .tick svg { width: 13px; height: 13px; color: #fff; }
.wchoice .tick svg { opacity: 0; }
.wchoice.is-picked .tick svg { opacity: 1; }
.wchoice span.sub { display: block; font-weight: 400; color: var(--muted); font-size: .85rem; margin-top: 2px; }
@media (max-width: 620px) { .wchoices--2 { grid-template-columns: 1fr; } }

.wnav { display: flex; justify-content: space-between; align-items: center; margin-top: 28px; gap: 12px; }
.btn--link { background: none; border: 0; color: var(--muted); font-weight: 600; padding: 10px 4px; cursor: pointer; }
.btn--link:hover { color: var(--text); }
.btn--link:disabled { opacity: .35; cursor: default; }

/* result */
.wresult { text-align: center; }
.wresult__big { font-size: clamp(2.6rem, 7vw, 4.4rem); font-weight: 700; letter-spacing: -.03em; line-height: 1; }
.wresult__readout { display: grid; gap: 12px; margin: 26px 0; text-align: left; }
.wresult__readout .row {
  display: flex; gap: 12px; align-items: flex-start; background: var(--surface);
  border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 14px 16px;
}
.wresult__readout svg { width: 20px; height: 20px; color: var(--success); flex: none; margin-top: 2px; }
.wresult__readout .row p { color: var(--text); font-size: .95rem; }

/* loading dots between answer and result */
.wloader { display: flex; gap: 8px; justify-content: center; padding: 50px 0; }
.wloader span { width: 12px; height: 12px; border-radius: 50%; background: var(--accent); animation: wbounce 1s infinite ease-in-out; }
.wloader span:nth-child(2) { animation-delay: .15s; }
.wloader span:nth-child(3) { animation-delay: .3s; }
@keyframes wbounce { 0%, 80%, 100% { transform: scale(.5); opacity: .4; } 40% { transform: scale(1); opacity: 1; } }

/* ----- Logo marquee (social proof) --------------------------------- */
.marquee { overflow: hidden; width: 100%;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent); }
.marquee__track { display: flex; gap: 16px; width: max-content; animation: marquee 48s linear infinite; }
.marquee--rev .marquee__track { animation-direction: reverse; }
.marquee:hover .marquee__track { animation-play-state: paused; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.logo-chip { display: flex; align-items: center; gap: 11px; padding: 15px 24px; white-space: nowrap;
  border: 1px solid var(--border); border-radius: 14px; background: var(--surface);
  color: var(--muted); font-weight: 700; font-size: 1.02rem; letter-spacing: -.01em; transition: all .2s ease; }
.logo-chip svg { width: 22px; height: 22px; color: var(--faint); flex: none; }
.logo-chip:hover { color: var(--text); border-color: var(--border-2); }
.logo-chip:hover svg { color: var(--accent); }
.logo-chip__logo { position: relative; width: 26px; height: 26px; border-radius: 7px; flex: none;
  overflow: hidden; display: grid; place-items: center; background: var(--grad-soft); border: 1px solid var(--border); }
.logo-chip__mono { color: var(--accent); font-weight: 800; font-size: .68rem; }
.logo-chip__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; background: var(--surface); }
@media (prefers-reduced-motion: reduce) {
  .marquee__track { animation: none; flex-wrap: wrap; justify-content: center; width: 100%; }
}

/* ----- "Since" / longevity badge ----------------------------------- */
.since { display: inline-flex; align-items: center; gap: 14px; padding: 10px 18px; border-radius: 999px;
  border: 1px solid var(--border-2); background: var(--surface); }
.since strong { color: var(--text); }
.since .yrs { background: var(--grad); -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; font-weight: 800; }

/* birthday / milestone banner (5-year increments) */
.birthday { display: inline-flex; align-items: center; gap: 11px; padding: 11px 22px; border-radius: 999px;
  background: var(--grad-soft); border: 1px solid transparent; font-weight: 700; font-size: 1rem;
  box-shadow: inset 0 0 0 1px rgba(91,130,255,.4), 0 10px 34px -14px rgba(91,130,255,.6); }
.birthday .emoji { font-size: 1.2rem; line-height: 1; }
.birthday .num { background: var(--grad); -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; font-weight: 800; }

/* ----- Tabs + embedded Odoo form ----------------------------------- */
.tabs { display: flex; gap: 8px; flex-wrap: wrap; }
.tab { padding: 11px 20px; border-radius: 999px; border: 1px solid var(--border-2);
  background: var(--surface); color: var(--muted); font-weight: 600; font-size: .95rem; transition: all .15s ease; }
.tab:hover { color: var(--text); border-color: var(--accent); }
.tab.is-active { background: var(--grad); color: #fff; border-color: transparent;
  box-shadow: 0 10px 30px -12px rgba(91,130,255,.6); }
.formframe-wrap { margin-top: 20px; border: 1px solid var(--border); border-radius: var(--radius);
  background: var(--bg-2); overflow: hidden; }
.formframe { display: block; width: 100%; height: 1050px; border: 0; }
.formframe-note { margin-top: 12px; font-size: .85rem; }
@media (max-width: 600px) { .formframe { height: 1250px; } }

/* ----- Contact router --------------------------------------------- */
.route { width: 100%; text-align: left; cursor: pointer; }
.route .route__sub { font-size: .88rem; color: var(--muted); margin-top: 4px; }
.route.is-active { border-color: transparent; background: var(--grad-soft); box-shadow: var(--glow); }
.route.is-active .card__icon { background: var(--grad); color: #fff; }
.panel { scroll-margin-top: 88px; }
.panel[hidden] { display: none; }
.notice { display: flex; gap: 14px; padding: 18px 20px; border-radius: var(--radius-sm);
  border: 1px solid var(--border-2); background: var(--surface); }
.notice__icon { flex: none; width: 38px; height: 38px; border-radius: 10px; display: grid; place-items: center;
  background: var(--grad-soft); color: var(--accent); }
.notice__icon svg { width: 20px; height: 20px; }
.notice strong { color: var(--text); display: block; }
.notice p { color: var(--muted); margin: 4px 0 0; font-size: .94rem; }
details.more { border-top: 1px solid var(--border); padding-top: 16px; }
details.more summary { cursor: pointer; font-weight: 600; color: var(--text); list-style: none;
  display: inline-flex; align-items: center; gap: 9px; }
details.more summary::-webkit-details-marker { display: none; }
details.more summary::before { content: "+"; color: var(--accent); font-weight: 800; font-size: 1.1rem; }
details.more[open] summary::before { content: "–"; }

/* ----- Comparison table ------------------------------------------- */
.ctable-wrap { overflow-x: auto; border: 1px solid var(--border); border-radius: var(--radius); }
.ctable { width: 100%; border-collapse: collapse; min-width: 560px; }
.ctable th, .ctable td { padding: 15px 18px; text-align: left; border-bottom: 1px solid var(--border);
  vertical-align: middle; font-size: .96rem; }
.ctable thead th { font-weight: 700; color: var(--text); background: var(--surface); }
.ctable tbody tr:last-child td { border-bottom: 0; }
.ctable td:first-child, .ctable th:first-child { color: var(--text); font-weight: 600; }
.ctable .col-rm { background: var(--grad-soft); border-left: 1px solid rgba(91,130,255,.3); border-right: 1px solid rgba(91,130,255,.3); }
.ctable thead .col-rm { color: var(--accent); }
.ctable .yes svg { width: 20px; height: 20px; color: var(--success); }
.ctable .no svg { width: 18px; height: 18px; color: var(--faint); }
.ctable .muted-cell { color: var(--muted); font-size: .9rem; }

/* ----- Ranked list (guides / roundups) ----------------------------- */
.rank { display: grid; gap: 16px; }
.rank__item { display: grid; grid-template-columns: auto 1fr auto; gap: 20px; align-items: start; }
.rank__num { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center;
  font-weight: 800; font-size: 1.1rem; background: var(--grad-soft); border: 1px solid var(--border); color: var(--accent); }
.rank__item--top .rank__num { background: var(--grad); color: #fff; border-color: transparent; }
.rank__body h3 { margin-bottom: 4px; }
.rank__best { color: var(--accent); font-weight: 600; font-size: .88rem; }
.rank__cta { align-self: center; }
@media (max-width: 640px) {
  .rank__item { grid-template-columns: auto 1fr; }
  .rank__cta { grid-column: 2; margin-top: 6px; }
}

/* ----- Section list cards ------------------------------------------ */
.listcard { display: flex; flex-direction: column; height: 100%; }
.listcard .pill { align-self: flex-start; margin-bottom: 12px; }
.listcard h3 { margin-bottom: 8px; }
.listcard .arrow { margin-top: auto; padding-top: 14px; color: var(--accent); font-weight: 600; font-size: .92rem;
  display: inline-flex; align-items: center; gap: 6px; }
.listcard .arrow svg { width: 16px; height: 16px; }
.arrow { color: var(--accent); font-weight: 600; font-size: .92rem; display: inline-flex; align-items: center; gap: 6px; }
.arrow svg { width: 16px; height: 16px; }

/* ----- Case study cards (full-width, rich) ------------------------- */
.cstudy-list { display: grid; gap: 22px; max-width: 940px; margin-inline: auto; }
.cstudy { display: grid; grid-template-columns: 280px 1fr; padding: 0; overflow: hidden; }
.cstudy.card--hover:hover, .cstudy:hover { transform: translateY(-4px); border-color: var(--border-2); box-shadow: var(--shadow); }
.cstudy__media { position: relative; min-height: 230px; display: grid; place-items: center;
  background: var(--grad-soft); border-right: 1px solid var(--border); overflow: hidden; }
.cstudy__media img, .cstudy__logoimg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.cstudy__logoimg { object-fit: contain; padding: 28px; background: var(--surface); }
.cstudy__mono { font-size: 2.8rem; font-weight: 800; color: var(--accent); letter-spacing: .02em; }
.cstudy__badge { position: absolute; bottom: 12px; left: 12px; padding: 4px 10px; border-radius: 999px;
  background: rgba(8,9,13,.7); color: var(--accent); font-size: .8rem; letter-spacing: 1px; }
.cstudy__body { padding: clamp(24px, 3vw, 38px); }
.cstudy__body .arrow { margin-top: 16px; }
@media (max-width: 720px) {
  .cstudy { grid-template-columns: 1fr; }
  .cstudy__media { min-height: 150px; border-right: 0; border-bottom: 1px solid var(--border); }
}

/* ----- Guide cards (image-top, 2-up) ------------------------------- */
.guide-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 22px; max-width: 880px; margin-inline: auto; }
.guidecard { padding: 0; overflow: hidden; display: flex; flex-direction: column; }
.guidecard__media { position: relative; aspect-ratio: 16 / 9; display: grid; place-items: center;
  background: var(--grad-soft); border-bottom: 1px solid var(--border); overflow: hidden; }
.guidecard__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.guidecard__icon svg { width: 38px; height: 38px; color: var(--accent); opacity: .85; }
.guidecard__body { padding: 20px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.guidecard__body .pill { align-self: flex-start; margin-bottom: 10px; }
.guidecard__body h3 { margin-bottom: 8px; }
.guidecard__body .arrow { margin-top: auto; padding-top: 14px; }

/* ----- Share module ------------------------------------------------ */
.share { display: flex; flex-wrap: wrap; gap: 10px; }
.share__btn { display: inline-flex; align-items: center; gap: 9px; padding: 12px 18px; border-radius: 999px;
  border: 1px solid var(--border-2); background: var(--surface); color: var(--text); font-weight: 600;
  font-size: .95rem; cursor: pointer; transition: transform .15s ease, border-color .15s ease; }
.share__btn:hover { border-color: var(--accent); transform: translateY(-2px); }
.share__btn svg { width: 18px; height: 18px; }
.share__btn--primary { background: var(--grad); color: #fff; border-color: transparent;
  box-shadow: 0 10px 30px -12px rgba(91,130,255,.7); }
.share__btn--wa:hover { border-color: #25D366; }

/* ----- Club directory --------------------------------------------- */
.club-filters { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.club-filters .select { width: auto; min-width: 190px; }
.clubcard__top { display: flex; justify-content: space-between; align-items: flex-start; gap: 10px; }
.clubcard__loc { font-size: .92rem; display: flex; align-items: center; gap: 6px; margin-top: 4px; }
.clubcard__loc svg { width: 15px; height: 15px; flex: none; }
.clubcard.is-active { border-color: var(--accent); box-shadow: var(--glow); }
.clubcard__id { display: flex; align-items: center; gap: 12px; min-width: 0; }
.clubcard__id h3 { font-size: 1.08rem; line-height: 1.2; }
.clubcard__logo { position: relative; width: 44px; height: 44px; border-radius: 11px; flex: none;
  overflow: hidden; display: grid; place-items: center; background: var(--grad-soft); border: 1px solid var(--border); }
.clubcard__mono { color: var(--accent); font-weight: 800; font-size: .92rem; }
.clubcard__logoimg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; background: var(--surface); }

/* free listing tier (pricing) */
.price-free { display: grid; grid-template-columns: minmax(0, 1fr) minmax(248px, 290px);
  gap: clamp(24px, 4vw, 44px); align-items: center; max-width: 960px; margin-inline: auto;
  border-color: var(--border-2); }
.price-free__main { max-width: 46ch; }
.price-free__side { min-width: 0; border-left: 1px solid var(--border); padding-left: clamp(24px, 4vw, 44px); }
@media (max-width: 720px) {
  .price-free { grid-template-columns: 1fr; }
  .price-free__main { max-width: none; }
  .price-free__side { border-left: 0; padding-left: 0; border-top: 1px solid var(--border); padding-top: 22px; }
}

/* footer trust badges: cap the height, no backgrounds, sit side by side.
   Scoped + filter:none so the .footer__brand img whitening filter doesn't hit them. */
.footer__badges { display: flex; flex-wrap: wrap; align-items: center; gap: 16px 20px; margin-top: 20px; }
.footer__badges .footer__badge { max-height: 44px; height: auto; width: auto; margin: 0;
  filter: none; opacity: .85; transition: opacity .2s ease; }
.footer__badges .footer__badge:hover { opacity: 1; }

/* club profile static location map */
.club-staticmap img { width: 100%; height: auto; display: block; border: 1px solid var(--border);
  border-radius: var(--radius); }

/* contact forms */
.rmform { max-width: 600px; }
.rmform__hp { position: absolute; left: -5000px; width: 1px; height: 1px; overflow: hidden; }
.rmform__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 560px) { .rmform__grid { grid-template-columns: 1fr; } }
.rmfield { display: block; }
.rmfield > span { display: block; font-size: .85rem; font-weight: 600; color: var(--muted); margin-bottom: 6px; }
.rmfield input, .rmfield textarea { width: 100%; background: var(--surface); border: 1px solid var(--border-2);
  border-radius: var(--radius-sm); color: var(--text); padding: 12px 14px; font: inherit; font-size: .98rem; }
.rmfield input:focus, .rmfield textarea:focus { outline: none; border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(91,130,255,.18); }
.rmfield textarea { resize: vertical; min-height: 120px; }
.rmform__ok { color: var(--success); margin-top: 14px; font-weight: 600; }
.rmform__err { color: var(--danger); margin-top: 14px; }
.rmform__err a { color: var(--accent); }

/* breadcrumb */
.crumbs { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; font-size: .85rem;
  font-weight: 600; color: var(--muted); margin-bottom: 18px; }
.crumbs a { color: var(--muted); }
.crumbs a:hover { color: var(--accent); }
.crumbs__sep { color: var(--faint); }
.crumbs [aria-current] { color: var(--text); }

/* club profile hero */
.club-hero { display: flex; align-items: center; gap: 20px; }
.club-hero__logo { position: relative; width: 84px; height: 84px; border-radius: 18px; flex: none;
  overflow: hidden; display: grid; place-items: center; background: var(--grad-soft); border: 1px solid var(--border); }
.club-hero__mono { color: var(--accent); font-weight: 800; font-size: 1.7rem; }
.club-hero__name { font-size: clamp(1.7rem, 3.6vw, 2.6rem); margin: 8px 0 12px; }
.club-hero__meta { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; }
.club-hero__loc { display: inline-flex; align-items: center; gap: 6px; color: var(--muted); font-weight: 600; font-size: .95rem; }
.club-hero__loc svg { width: 16px; height: 16px; }
@media (max-width: 600px) {
  .club-hero { gap: 14px; }
  .club-hero__logo { width: 62px; height: 62px; border-radius: 14px; }
  .club-hero__mono { font-size: 1.25rem; }
  .club-hero__name { font-size: 1.7rem; }
}

/* full-width directory page */
.container--full { width: 100%; max-width: none; margin-inline: 0; padding-inline: clamp(16px, 3vw, 44px); }
.club-section { padding-block: clamp(28px, 4vw, 44px) clamp(40px, 6vw, 72px); }
.club-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 18px 28px; flex-wrap: wrap; }
.club-head__title { font-size: clamp(1.7rem, 2.8vw, 2.4rem); }
.club-head .club-filters { margin: 0; }
.club-trust { display: flex; flex-wrap: wrap; gap: 8px 20px; font-size: .85rem; color: var(--muted); font-weight: 600; }
.club-trust span { display: inline-flex; align-items: center; gap: 6px; }
.club-trust svg { width: 15px; height: 15px; color: var(--success); }
.club-trust span:last-child svg { color: var(--accent); }

/* shooter-facing directory footer */
.dirfoot { display: grid; gap: 16px; }
.dirfoot__note { font-size: .85rem; max-width: 66ch; margin: 0; }
.dirfoot__note a { color: var(--muted); text-decoration: underline; text-underline-offset: 2px; }
.dirfoot__note a:hover { color: var(--accent); }

/* hybrid list + map */
.directory { display: grid; grid-template-columns: minmax(330px, 430px) minmax(0, 1fr); gap: 22px; align-items: start; }
.directory__panel { min-width: 0; }
.directory__cards { display: grid; gap: 14px; max-height: calc(100vh - 188px); overflow-y: auto; padding-right: 6px;
  scrollbar-width: thin; scrollbar-color: var(--border-2) transparent; }
.directory__cards::-webkit-scrollbar { width: 8px; }
.directory__cards::-webkit-scrollbar-track { background: transparent; }
.directory__cards::-webkit-scrollbar-thumb { background: var(--border-2); border-radius: 999px; }
.directory__cards::-webkit-scrollbar-thumb:hover { background: var(--muted); }
.directory__map { position: sticky; top: 84px; height: calc(100vh - 188px); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden; background: var(--surface); }
#club-map { width: 100%; height: 100%; }
@media (max-width: 940px) {
  .directory { grid-template-columns: 1fr; }
  .directory__map { position: static; height: 360px; order: -1; }
  .directory__cards { max-height: none; overflow: visible; }
}

/* map popup (dark). Pins/clusters are drawn as Mapbox circle layers, styled
   in clubmap.js via paint properties, so they need no CSS here. */
.club-pop__approx { display: block; margin-top: 4px; font-size: .72rem; color: var(--accent);
  font-style: italic; }
.mapboxgl-popup-content { background: var(--surface) !important; color: var(--text) !important;
  border: 1px solid var(--border-2); border-radius: 12px; padding: 12px 14px; box-shadow: var(--shadow); }
.mapboxgl-popup-tip { border-top-color: var(--surface) !important; border-bottom-color: var(--surface) !important; }
.club-pop { display: block; color: var(--text); }
.club-pop strong { display: block; }
.club-pop span { color: var(--muted); font-size: .85rem; }
.mapboxgl-ctrl-group { background: var(--surface) !important; }

/* ----- Launch countdown (directory coming soon) -------------------- */
.countdown { display: flex; gap: 12px; justify-content: center; }
.countdown__cell { display: grid; gap: 4px; min-width: 78px; padding: 14px 10px;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); }
.countdown__num { font-size: clamp(1.6rem, 4vw, 2.4rem); font-weight: 700; letter-spacing: -.02em;
  font-variant-numeric: tabular-nums; color: var(--text); }
.countdown__label { font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); }
@media (max-width: 480px) { .countdown__cell { min-width: 64px; padding: 10px 8px; } }

/* ----- REACH compliance page -------------------------------------- */
.reach-hero { text-align: left; align-items: center; }

/* Range site-plan illustration (bespoke, not a screenshot) */
.reach-plan { position: relative; aspect-ratio: 4 / 3; border: 1px solid var(--border-2);
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow);
  background: radial-gradient(120% 90% at 72% 8%, rgba(91,130,255,.16), transparent 58%), var(--bg-2); }
.reach-plan__svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.reach-plan__bar { position: absolute; inset: 0 0 auto 0; z-index: 2; display: flex; gap: 10px;
  align-items: center; justify-content: space-between; padding: 11px 14px; font-size: .74rem;
  color: var(--muted); border-bottom: 1px solid var(--border); background: rgba(8,10,16,.5); backdrop-filter: blur(4px); }
.reach-plan__found { color: var(--accent); font-weight: 600; display: inline-flex; gap: 6px; align-items: center; }
.reach-plan__found svg { width: 15px; height: 15px; }
.reach-pin { position: absolute; transform: translate(-50%,-50%); z-index: 2; white-space: nowrap;
  display: inline-flex; align-items: center; gap: 6px; padding: 4px 9px; font-size: .72rem; font-weight: 600;
  background: var(--surface); border: 1px solid var(--border-2); border-radius: 999px; color: var(--text);
  box-shadow: 0 6px 18px -8px rgba(0,0,0,.6); }
.reach-pin::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--accent); flex: none; }
.reach-pin--water::before { background: #56c8ff; }
.reach-pin--amber::before { background: var(--warning); }
.reach-pin--green::before { background: var(--success); }
@media (prefers-reduced-motion: no-preference) {
  .reach-pin--water { animation: reach-pulse 2.6s ease-in-out infinite; }
}
@keyframes reach-pulse {
  0%, 100% { box-shadow: 0 6px 18px -8px rgba(0,0,0,.6), 0 0 0 0 rgba(86,200,255,.5); }
  50%      { box-shadow: 0 6px 18px -8px rgba(0,0,0,.6), 0 0 0 9px rgba(86,200,255,0); }
}

/* Open-data source strip (logo-ready: swap each .datalogo span for an <img>) */
.datalogos { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 14px 32px; }
.datalogo { font-weight: 600; font-size: 1rem; letter-spacing: -.01em; color: var(--faint);
  filter: grayscale(1); opacity: .85; transition: color .2s ease, opacity .2s ease; }
.datalogo:hover { color: var(--muted); opacity: 1; }
.datalogo img { max-height: 30px; width: auto; }

/* "Watercourses found" results card */
.reach-scan__head { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-bottom: 4px; }
.reach-scan__src { font-size: .72rem; color: var(--accent); font-weight: 600; }
.reach-scanrow { display: flex; align-items: center; gap: 12px; padding: 13px 0; border-top: 1px solid var(--border);
  color: var(--text); font-weight: 500; font-size: .95rem; }
.reach-scanrow svg { width: 19px; height: 19px; color: var(--success); flex: none; }
.reach-scanrow .pill { margin-left: auto; }

/* range timeline mock (range-management section) */
.reach-tl { display: flex; align-items: center; gap: 12px; padding: 12px 0; border-top: 1px solid var(--border);
  font-size: .92rem; color: var(--text); }
.reach-tl .dot { width: 8px; height: 8px; border-radius: 50%; flex: none; }
.reach-tl .when { margin-left: auto; color: var(--muted); font-size: .8rem; white-space: nowrap;
  font-variant-numeric: tabular-nums; }

/* Readiness dashboard mock */
.rbar { height: 8px; border-radius: 999px; background: var(--surface-2); overflow: hidden; }
.rbar > span { display: block; height: 100%; background: var(--grad); border-radius: 999px; }
.reach-dash__row { display: flex; justify-content: space-between; font-size: .88rem; margin-bottom: 8px; }
.reach-dash__row span:first-child { color: var(--text); font-weight: 500; }
.reach-dash__row + .rbar { margin-bottom: 18px; }
.reach-dash__foot { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 4px; }
.reach-dash__foot .pill svg { width: 14px; height: 14px; }

/* utility spacing */
.mt-0{margin-top:0}.mt-1{margin-top:8px}.mt-2{margin-top:16px}.mt-3{margin-top:24px}.mt-4{margin-top:32px}.mt-6{margin-top:48px}
.mb-2{margin-bottom:16px}.mb-3{margin-bottom:24px}.mb-4{margin-bottom:32px}
.gap-sm{gap:10px}
.flex{display:flex}.flex-wrap{flex-wrap:wrap}.items-center{align-items:center}.justify-center{justify-content:center}
.cta-row{display:flex;gap:14px;flex-wrap:wrap}
@media (max-width:600px){.cta-row .btn{width:100%}}
