/* ==========================================================================
   CourtKeeper "rally" concept
   A ball in flight: a dotted trajectory arcs through the hero, rolling
   lawn hills divide the sections, everything is round: pebble cards,
   plan balls, pill buttons. No frames, no straight dividers. The mark is
   the ball landing at the end of its arc on a baseline.
   ========================================================================== */

@font-face {
  font-family: "Bricolage Grotesque";
  src: url("fonts/bricolage-var.woff2") format("woff2");
  font-weight: 200 800;
  font-display: swap;
}
@font-face {
  font-family: "Manrope";
  src: url("fonts/manrope-var.woff2") format("woff2");
  font-weight: 200 800;
  font-display: swap;
}

:root {
  --cream: #f6f1e2;
  --cream-2: #efe8d2;
  --lawn: #3c7a4c;
  --lawn-deep: #2c5c39;
  --night: #14291b;
  --chalk: #f9f6ec;
  --gold: #eec161;
  --gold-deep: #d9a53f;
  --ink: #1d2b1c;
  --ink-soft: rgba(29, 43, 28, 0.72);
  --ink-faint: rgba(29, 43, 28, 0.46);

  --disp: "Bricolage Grotesque", "Segoe UI", system-ui, sans-serif;
  --body: "Manrope", "Segoe UI", system-ui, sans-serif;

  --pad: clamp(20px, 4.5vw, 64px);
  --measure: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
/* Belt and braces: no environment (enlarged system fonts, minimum-font-size
   settings, aggressive zoom) may hand the page a horizontal scrollbar.
   `clip` rather than `hidden` so `position: sticky` keeps working. */
html, body { overflow-x: clip; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.58;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--lawn-deep); }

:focus-visible { outline: 2px solid var(--gold-deep); outline-offset: 3px; }

.skip-link {
  position: absolute; left: 16px; top: -48px;
  background: var(--ink); color: var(--cream);
  padding: 8px 14px; border-radius: 999px; z-index: 100;
  text-decoration: none; font-weight: 700;
  transition: top 120ms ease;
}
.skip-link:focus { top: 12px; }

/* ------------------------------------------------------------------- bar */

.bar {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; gap: 22px;
  flex-wrap: wrap; row-gap: 8px;
  padding: 14px var(--pad);
  background: color-mix(in srgb, var(--cream) 92%, transparent);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.lockup { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; margin-right: auto; }
.mark { width: 40px; height: 28px; }
.mark svg { width: 100%; height: 100%; overflow: visible; }
.mark path { stroke: var(--lawn-deep); stroke-width: 2.5; }
.mark circle { fill: var(--gold-deep); }
.mark line { stroke: var(--ink); stroke-width: 3; stroke-linecap: round; }
.word {
  font-family: var(--disp);
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.bar nav { display: flex; gap: 2px; }
.bar nav a {
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  color: var(--ink-soft);
  padding: 8px 13px;
  border-radius: 999px;
}
.bar nav a:hover { color: var(--ink); background: var(--cream-2); }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--disp);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0;
  text-decoration: none;
  background: var(--ink);
  color: var(--cream);
  border: none;
  border-radius: 999px;
  padding: 16px 32px;
  cursor: pointer;
  transition: transform 130ms ease, background 140ms ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px) rotate(-1deg); background: var(--lawn-deep); }
@media (prefers-reduced-motion: reduce) { .btn:hover { transform: none; } }
.btn.small { padding: 11px 20px; font-size: 13px; }
.btn.wide { width: 100%; }

.ghost {
  font-family: var(--disp);
  font-weight: 700;
  font-size: 15px;
  color: var(--ink-soft);
  text-decoration: none;
  border-bottom: 2.5px solid var(--gold-deep);
  padding-bottom: 3px;
}
.ghost:hover { color: var(--lawn-deep); border-color: var(--lawn-deep); }

/* ------------------------------------------------------------------ hero */

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 4fr);
  gap: clamp(28px, 4vw, 72px);
  align-items: center;
  max-width: var(--measure);
  margin: 0 auto;
  padding: clamp(48px, 7vh, 92px) var(--pad) clamp(30px, 4vh, 52px);
}

/* The flight path behind everything. */
.flight {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: visible;
}
.flight .path {
  fill: none;
  stroke: var(--lawn);
  stroke-width: 3;
  stroke-dasharray: 1 14;
  stroke-linecap: round;
  opacity: 0.75;
}
.flight .fb { fill: var(--gold-deep); }

.hero-inner { position: relative; }

.eyebrow {
  font-family: var(--disp);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lawn-deep);
  margin: 0 0 20px;
}

.hero h1 {
  font-family: var(--disp);
  font-weight: 800;
  font-size: clamp(64px, 10.5vw, 152px);
  line-height: 0.9;
  letter-spacing: -0.04em;
  margin: 0 0 26px;
  color: var(--ink);
}
.hero h1 .ball {
  display: inline-block;
  width: 0.17em; height: 0.17em;
  margin-left: 0.07em;
  border-radius: 999px;
  background: var(--gold-deep);
}

.lede { color: var(--ink-soft); font-size: clamp(16px, 1.5vw, 19px); max-width: 28em; margin: 0 0 32px; }

.ctas { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; }

.hero-device {
  position: relative;
  margin: 0;
  width: min(275px, 100%);
  justify-self: center;
  padding: 10px;
  background: var(--ink);
  border-radius: 40px;
  transform: rotate(4deg);
  box-shadow: 0 46px 90px rgba(29, 43, 28, 0.35);
}
.hero-device img { border-radius: 30px; }

/* ----------------------------------------------------------------- hills */

.hill { line-height: 0; }
.hill svg { width: 100%; height: clamp(48px, 8vw, 110px); display: block; }
.into-lawn { background: var(--cream); }
.into-lawn path { fill: var(--lawn); }
.into-night { background: var(--lawn); }
.into-night path { fill: var(--night); }
.outof-night { background: var(--night); }
.outof-night path { fill: var(--cream); }

/* ------------------------------------------------------------------ lawn */

.lawn { background: var(--lawn); color: var(--chalk); }
.lawn-inner { max-width: var(--measure); margin: 0 auto; padding: clamp(30px, 4vw, 56px) var(--pad) clamp(56px, 7vw, 92px); }

h2 {
  font-family: var(--disp);
  font-weight: 800;
  font-size: clamp(34px, 4.6vw, 60px);
  line-height: 0.96;
  letter-spacing: -0.035em;
  margin: 0 0 16px;
}
.intro { max-width: 44em; margin: 0 0 42px; }
.lawn .intro { color: rgba(249, 246, 236, 0.85); }
.intro.dim { color: rgba(249, 246, 236, 0.8); }

/* Pebble cards: superellipse-ish blobs, each slightly turned. */
.pebbles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-bottom: 48px;
}
.pebble {
  background: var(--lawn-deep);
  color: var(--chalk);
  border-radius: 42% 58% 55% 45% / 48% 44% 56% 52%;
  padding: clamp(30px, 3.4vw, 46px) clamp(26px, 3vw, 42px);
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
.pebble.spin-l { transform: rotate(-1.6deg); }
.pebble.spin-r { transform: rotate(1.8deg); border-radius: 56% 44% 47% 53% / 45% 55% 45% 55%; }
.pebble h3 {
  font-family: var(--disp);
  font-weight: 800;
  font-size: 21px;
  letter-spacing: -0.02em;
  margin: 0 0 8px;
}
.pebble p { margin: 0; font-size: 13.5px; color: rgba(249, 246, 236, 0.82); }
.pebble.gold { background: var(--gold); color: var(--ink); }
.pebble.gold p { color: rgba(29, 43, 28, 0.75); }
.pebble.chalk { background: var(--chalk); color: var(--ink); }
.pebble.chalk p { color: rgba(29, 43, 28, 0.72); }

.grid-shot { margin: 0; }
.grid-shot img {
  border-radius: 26px;
  box-shadow: 0 40px 90px rgba(20, 41, 27, 0.45);
}

/* ----------------------------------------------------------------- night */

.night { background: var(--night); color: var(--chalk); }
.night-inner { max-width: var(--measure); margin: 0 auto; padding: clamp(30px, 4vw, 56px) var(--pad) clamp(64px, 8vw, 104px); }

.bounce-wrap { position: relative; }
.bounce-path {
  position: absolute;
  left: 0; right: 0; top: -34px;
  width: 100%;
  height: 150px;
  pointer-events: none;
}
.bounce-path .path {
  fill: none;
  stroke: var(--gold);
  stroke-width: 2.5;
  stroke-dasharray: 1 12;
  stroke-linecap: round;
  opacity: 0.85;
}

.bounces {
  list-style: none;
  margin: 120px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 30px;
}
.bounces li { position: relative; text-align: center; }
.bp {
  display: block;
  width: 18px; height: 18px;
  margin: 0 auto 16px;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 24px rgba(238, 193, 97, 0.5);
}
.bounces time {
  display: block;
  font-family: var(--disp);
  font-weight: 800;
  font-size: 38px;
  line-height: 1;
  color: var(--gold);
  margin-bottom: 10px;
}
.bounces p { margin: 0; font-size: 14px; color: rgba(249, 246, 236, 0.8); }
.bounces b { color: var(--chalk); }
.bounces .won .bp { width: 26px; height: 26px; margin-top: -8px; }

/* ----------------------------------------------------------------- roles */

.roles {
  max-width: var(--measure);
  margin: 0 auto;
  padding: clamp(40px, 5vw, 72px) var(--pad) 0;
}
.roles h2, .roles .intro { color: var(--ink); }
.roles .intro { color: var(--ink-soft); }

.trio {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin-bottom: clamp(44px, 5vw, 64px);
}
.trio figure { margin: 0; }
.trio figure.t-l { transform: rotate(-1.6deg); }
.trio figure.t-r { transform: rotate(1.6deg); }
.trio .dev {
  display: block;
  width: min(275px, 100%);
  margin: 0 auto;
  padding: 9px;
  background: var(--night);
  border-radius: 34px;
  box-shadow: 0 34px 80px rgba(29, 43, 28, 0.3);
}
.trio img { border-radius: 26px; }
.trio figcaption {
  margin-top: 16px;
  text-align: center;
  font-family: var(--disp);
  font-weight: 700;
  font-size: 16px;
  color: var(--ink);
}

.wide-shot { margin: 0 0 clamp(44px, 5vw, 64px); }
.wide-shot img {
  border-radius: 26px;
  box-shadow: 0 36px 84px rgba(29, 43, 28, 0.25);
}
.wide-shot figcaption {
  margin-top: 14px;
  font-size: 14px;
  color: var(--ink-faint);
}

/* The communication rule, told in pills and one line: no boxes. */
.comms { max-width: 56em; }
.rails {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
}
.rails li {
  font-family: var(--disp);
  font-weight: 700;
  font-size: 14px;
  background: var(--chalk);
  color: var(--ink);
  border-radius: 999px;
  padding: 9px 20px;
  box-shadow: 0 8px 22px rgba(29, 43, 28, 0.12);
}
.rails li.metered { background: var(--night); color: var(--gold); }

.rule-line {
  position: relative;
  margin: 0;
  padding-left: 32px;
  font-size: 15px;
  color: var(--ink-soft);
}
.rule-line .dot {
  position: absolute;
  left: 4px; top: 6px;
  width: 13px; height: 13px;
  border-radius: 999px;
  background: var(--gold-deep);
}

/* --------------------------------------------------------------- pricing */

.pricing {
  max-width: var(--measure);
  margin: 0 auto;
  padding: clamp(40px, 5vw, 72px) var(--pad) 0;
  text-align: center;
}
.pricing .intro { margin-inline: auto; color: var(--ink-soft); }

.balls {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: clamp(18px, 2.6vw, 36px);
}
.planball {
  width: clamp(220px, 21vw, 264px);
  aspect-ratio: 1;
  border-radius: 999px;
  background: var(--lawn);
  color: var(--chalk);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  padding: 26px;
  transform: rotate(-2deg);
}
.planball:nth-child(2n) { transform: rotate(2deg); }
.planball b { font-family: var(--disp); font-weight: 800; font-size: 24px; letter-spacing: -0.02em; }
.planball > span { font-size: 12.5px; opacity: 0.8; }
.planball strong {
  font-family: var(--disp);
  font-weight: 800;
  font-size: 46px;
  line-height: 1;
  margin: 12px 0 4px;
  letter-spacing: -0.03em;
  color: var(--gold);
}
.planball strong i { font-style: normal; font-size: 14px; font-weight: 600; opacity: 0.7; margin-left: 2px; }
.planball strong.sm { font-size: 24px; }
.planball em { font-style: normal; font-size: 12px; opacity: 0.75; }
.planball.big {
  width: clamp(250px, 24vw, 300px);
  background: var(--gold);
  color: var(--ink);
}
.planball.big strong { color: var(--lawn-deep); }
.planball.hollow {
  background: transparent;
  border: 3px dashed var(--lawn);
  color: var(--ink);
}
.planball.hollow strong { color: var(--lawn-deep); }

.fine { font-size: 13px; color: var(--ink-faint); max-width: 56em; margin: 26px auto 0; }

/* --------------------------------------------------------------- request */

.request { max-width: var(--measure); margin: 0 auto; padding: clamp(48px, 6vw, 84px) var(--pad) clamp(56px, 7vw, 92px); }
.req-inner {
  display: grid;
  grid-template-columns: minmax(0, 6fr) minmax(0, 5fr);
  gap: clamp(28px, 4vw, 72px);
  align-items: center;
}
.request .intro { color: var(--ink-soft); margin-bottom: 0; }

.req-form {
  background: var(--chalk);
  border-radius: 36px;
  padding: clamp(26px, 3.2vw, 44px);
  box-shadow: 0 30px 70px rgba(29, 43, 28, 0.18);
  transform: rotate(1.2deg);
}
.req-form label {
  display: block;
  font-family: var(--disp);
  font-weight: 700;
  font-size: 13px;
  color: var(--ink-faint);
  margin-bottom: 18px;
}
.req-form input,
.req-form select {
  display: block;
  width: 100%;
  margin-top: 7px;
  font: 16px var(--body);
  color: var(--ink);
  background: #fff;
  border: 2px solid rgba(29, 43, 28, 0.14);
  border-radius: 999px;
  padding: 12px 18px;
}
.req-form input:focus-visible,
.req-form select:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; border-color: var(--lawn); }
.req-form input.bad { border-color: #b04a2f; }
.req-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.req-form .optional { color: var(--muted); font-size: .76rem; font-weight: 500; }
.field-error, .form-error { color: #8f3524; font-size: .78rem; line-height: 1.35; }
.field-error { min-height: 1.05em; }
.form-error { margin: 0 0 12px; }
.turnstile-slot { min-height: 65px; margin-bottom: 14px; }
.req-form button:disabled { cursor: wait; opacity: .72; }
.req-form .fine { margin: 14px 0 0; text-align: left; }
.form-done { margin: 6px 0 0; font-size: 15px; color: var(--ink-soft); }
.form-done b { color: var(--lawn-deep); }

/* ---------------------------------------------------------------- footer */

.footer {
  background: var(--night);
  color: rgba(249, 246, 236, 0.75);
  border-radius: 44px 44px 0 0;
  padding: 40px var(--pad) 30px;
  display: flex; flex-wrap: wrap; align-items: baseline; gap: 14px 40px;
}
.footer .word { color: var(--chalk); }
.footer nav { display: flex; flex-wrap: wrap; gap: 6px 26px; margin-left: auto; }
.footer nav a {
  font-size: 13.5px;
  font-weight: 700;
  color: rgba(249, 246, 236, 0.75);
  text-decoration: none;
}
.footer nav a:hover { color: var(--gold); }
.footer p { width: 100%; margin: 6px 0 0; font-size: 12px; color: rgba(249, 246, 236, 0.5); }

/* --------------------------------------------------------------- reveal */

.reveal { opacity: 0; transform: translateY(16px); }
.reveal.in { opacity: 1; transform: none; transition: opacity 550ms ease, transform 550ms ease; }
.pebble.reveal.in.spin-l { transform: rotate(-1.6deg); }
.pebble.reveal.in.spin-r { transform: rotate(1.8deg); }
.pebble.reveal:not(.in) { transform: translateY(16px); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .pebble.spin-l { transform: rotate(-1.6deg) !important; }
  .pebble.spin-r { transform: rotate(1.8deg) !important; }
}

/* ----------------------------------------------------------- responsive */

@media (max-width: 1000px) {
  .bar nav { display: none; }
  .hero { grid-template-columns: minmax(0, 1fr); }
  .hero-device { justify-self: start; }
  .pebbles { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .bounces { grid-template-columns: repeat(2, minmax(0, 1fr)); margin-top: 40px; }
  .bounce-path { display: none; }
  .trio { grid-template-columns: minmax(0, 1fr); gap: 40px; }
  .req-inner { grid-template-columns: minmax(0, 1fr); }
}

@media (max-width: 640px) {
  .bar { gap: 10px; }
  .bar > .btn.small { font-size: 11px; padding: 9px 14px; }
  .bar .word { font-size: 16px; }
  .pebbles { grid-template-columns: minmax(0, 1fr); }
  .pebble { min-height: 0; }
  .bounces { grid-template-columns: minmax(0, 1fr); }
  .balls { flex-direction: column; }
  .planball { width: min(290px, 82vw); }
  .planball.big { width: min(310px, 88vw); }
  .flight { display: none; }
}

/* ------------------------------------------- copy-refresh additions (2026-07) */

/* Hero scope strip: built for / covers / priced by. */
.scope { display: flex; flex-wrap: wrap; gap: 14px 40px; margin: 34px 0 0; }
.scope div { min-width: 150px; }
.scope dt {
  font-family: var(--disp);
  font-weight: 700;
  font-size: 11.5px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin: 0 0 2px;
}
.scope dd { margin: 0; font-size: 14px; font-weight: 600; color: var(--ink-soft); max-width: 22em; }

/* Eight feature pebbles sit in two even rows. */
.pebbles { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.pebble { min-height: 230px; }

/* Club rules, on the lawn. */
.rules { max-width: 60em; margin: 46px 0 0; }
.rules h3 {
  font-family: var(--disp);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.02em;
  margin: 0 0 14px;
}
.lawn .rule-line { color: rgba(249, 246, 236, 0.85); }
.lawn .rule-line .dot { background: var(--gold); }

/* Night: the held-offer phone beside the bounce timeline. */
.night-flex { display: flex; gap: clamp(28px, 4.5vw, 70px); align-items: center; }
.night-flex .bounce-wrap { flex: 1; min-width: 0; }
.offer-device {
  flex: 0 0 auto;
  width: min(240px, 100%);
  margin: 0;
  padding: 9px;
  background: rgba(249, 246, 236, 0.14);
  border-radius: 34px;
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.5);
  transform: rotate(-2deg);
}
.offer-device img { border-radius: 26px; }
.offer-device figcaption { margin-top: 14px; text-align: center; font-size: 13px; color: rgba(249, 246, 236, 0.65); }

/* Communication and getting-started sections share the roles layout. */
.comms-sec, .start { max-width: var(--measure); margin: 0 auto; padding: clamp(40px, 5vw, 72px) var(--pad) 0; }
.comms-sec .intro, .start .intro { color: var(--ink-soft); }

.steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
  margin: 0;
  padding: 0;
}
.steps li {
  background: var(--chalk);
  border-radius: 34px;
  padding: 30px 28px 34px;
  box-shadow: 0 18px 44px rgba(29, 43, 28, 0.1);
}
.steps li:nth-child(1) { transform: rotate(-0.8deg); }
.steps li:nth-child(2) { transform: rotate(0.7deg); }
.steps li:nth-child(3) { transform: rotate(-0.5deg); }
.steps li.reveal:not(.in) { transform: translateY(16px); }
.stepball {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: var(--gold-deep);
  color: var(--ink);
  font-family: var(--disp);
  font-weight: 800;
  font-size: 16px;
  margin-bottom: 14px;
}
.steps h3 {
  font-family: var(--disp);
  font-weight: 800;
  font-size: 19px;
  letter-spacing: -0.02em;
  margin: 0 0 8px;
}
.steps p { margin: 0; font-size: 14px; color: var(--ink-soft); }

/* The ladder desktop shot carries a partly overlapped phone. */
.ladder-shot { position: relative; }
.float-device {
  display: block;
  position: absolute;
  right: clamp(10px, 3vw, 44px);
  bottom: 48px;
  width: clamp(130px, 19%, 210px);
  padding: 7px;
  background: var(--night);
  border-radius: 28px;
  box-shadow: 0 30px 70px rgba(29, 43, 28, 0.4);
  transform: rotate(2.4deg);
}
.float-device img { border-radius: 22px; }

/* Legal pages (privacy, terms): the Rally look on a readable single column. */
.legal { max-width: 760px; margin: 0 auto; padding: clamp(36px, 5vw, 64px) var(--pad) clamp(56px, 7vw, 88px); }
.legal h1 {
  font-family: var(--disp);
  font-weight: 800;
  font-size: clamp(36px, 5vw, 48px);
  letter-spacing: -0.03em;
  margin: 0 0 6px;
}
.legal .updated { color: var(--ink-faint); font-size: 14px; margin: 0 0 30px; }
.legal-document .legal-intro {
  color: var(--ink);
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 0;
}
.legal-index {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 14px 24px;
  align-items: start;
  margin: 30px 0 6px;
  padding: 18px 0;
  border-top: 2px dotted rgba(29, 43, 28, 0.16);
  border-bottom: 2px dotted rgba(29, 43, 28, 0.16);
}
.legal-index > span {
  font-family: var(--disp);
  font-size: 13px;
  font-weight: 800;
  color: var(--ink);
}
.legal-index > div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
}
.legal-index a {
  font-size: 13px;
  font-weight: 700;
  text-underline-offset: 3px;
}
.legal h2 {
  font-family: var(--disp);
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.02em;
  margin: 36px 0 10px;
  scroll-margin-top: 90px;
}
.legal-document h2::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 3px;
  margin-right: 9px;
  border-radius: 999px;
  background: var(--gold-deep);
  vertical-align: middle;
}
.legal p, .legal li { color: var(--ink-soft); font-size: 15.5px; }
.legal ul { padding-left: 22px; }
.legal li { margin: 6px 0; }
.legal strong { color: var(--ink); }
.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 46px;
  padding-top: 20px;
  border-top: 2px dotted rgba(29, 43, 28, 0.16);
  font-size: 14px;
  font-weight: 700;
}

@media (max-width: 560px) {
  .legal-index { grid-template-columns: minmax(0, 1fr); }
}

/* Public evidence for the authenticated SMS preference. */
.evidence { max-width: 900px; }
.evidence .evidence-intro { color: var(--ink); font-size: 18px; line-height: 1.65; }
.evidence ol { padding-left: 24px; }
.evidence-shot { margin: 30px 0 10px; max-width: 704px; }
.evidence-shot img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid rgba(29, 43, 28, 0.16);
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(29, 43, 28, 0.14);
}
.evidence-shot figcaption { color: var(--ink-faint); font-size: 13px; margin-top: 10px; }
.evidence-note {
  margin-top: 28px;
  padding: 14px 16px;
  border-left: 4px solid var(--green);
  background: rgba(53, 112, 69, 0.07);
}
.evidence-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 34px;
  padding-top: 20px;
  border-top: 2px dotted rgba(29, 43, 28, 0.16);
  font-size: 14px;
  font-weight: 700;
}

/* Pricing "most clubs start here" tag and the demo-request chips. */
.planball .tag {
  font-family: var(--disp);
  font-weight: 800;
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--ink);
  color: var(--gold);
  border-radius: 999px;
  padding: 5px 13px;
  margin-bottom: 10px;
}
.req-chips { margin-top: 22px; }
.req-chips li { font-size: 13px; padding: 8px 16px; }

@media (max-width: 1200px) {
  .pebbles { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pebble { min-height: 0; }
}
@media (max-width: 1000px) {
  .night-flex { flex-direction: column; align-items: stretch; }
  .offer-device { margin: 24px auto 0; }
  .steps { grid-template-columns: minmax(0, 1fr); }
}
@media (max-width: 640px) {
  .pebbles { grid-template-columns: minmax(0, 1fr); }
  .req-form-row { grid-template-columns: minmax(0, 1fr); gap: 0; }
}

/* The narrowest phones (320px class): the bar's no-wrap CTA needs a few
   more pixels or the whole page gains a horizontal scroll. */
@media (max-width: 380px) {
  .bar { gap: 8px; padding-left: 14px; padding-right: 14px; }
  .bar > .btn.small { padding: 8px 11px; font-size: 10.5px; }
}
