/* ─────────────────────────────────────────────────────────────────────────
   CoFinder marketing site
   Brand re-skin from the Figma design system (file numOSy9bY8L5HmqAlaZ6lU).
   Cobalt blue × white × lime accent × Inter — matches the mobile app.
   ───────────────────────────────────────────────────────────────────────── */

:root {
  /* Brand colour tokens — sourced verbatim from get_variable_defs on
     the Cofinder Figma. Keep these in sync with the app's design system. */
  --c-blue-500:  #007bff;      /* primary action */
  --c-blue-600:  #0062cc;      /* hover / press */
  --c-blue-200:  #99ccff;      /* tint / fill */
  --x-blue:      #345CD0;      /* deeper accent (X/Blue) */
  --brand-red:   #df0024;      /* logo bottom + critical */
  --c-lime-300:  #eff778;      /* Pro badge fill */
  --c-lime-600:  #d9e70e;      /* lime accent */

  --ink:         #0A0A0A;      /* near-black for headings */
  --ink-body:    #343a40;      /* color/text/primary — body */
  --ink-soft:    #475467;      /* X/Gray/600 — secondary text */
  --muted:       #666666;      /* Content/Secondary */
  --paper:       #FFFFFF;
  --paper-2:     #F8FAFC;      /* card bg */
  --paper-3:     #F2F4F7;      /* X/Gray/100 — surface */
  --rule:        #EAECF0;      /* X/Gray/200 — dividers */
  --rule-dark:   #D0D5DD;

  /* Type — Inter across the board, JetBrains Mono for micro-labels. */
  --font-sans: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;

  --shadow-card: 0 -2px 12px rgba(29, 41, 47, 0.08),
                 0 0 2px rgba(29, 41, 47, 0.10);
  --shadow-lift: 0 14px 40px -16px rgba(29, 41, 47, 0.18),
                 0 4px 14px -10px rgba(29, 41, 47, 0.14);

  /* Radii from the mobile UI's card system. */
  --radius-sm: 8px;
  --radius:    14px;
  --radius-lg: 22px;

  --pad-x: clamp(20px, 4vw, 64px);
  --pad-y: clamp(64px, 8vw, 120px);

  --max: 1200px;
}

/* ─── Reset / base ──────────────────────────────────────────────────────── */

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink-body);
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: 'ss01' on, 'cv11' on;
}

img, svg { max-width: 100%; display: block; height: auto; }
button { font: inherit; cursor: pointer; }
a { color: var(--c-blue-500); text-decoration: none; }
a:hover { color: var(--c-blue-600); text-decoration: underline; text-underline-offset: 3px; }

p { margin: 0 0 1em; }
strong { font-weight: 700; color: var(--ink); }

::selection { background: var(--c-lime-300); color: var(--ink); }

.skip-link {
  position: absolute; left: -9999px;
  background: var(--ink); color: var(--paper);
  padding: 12px 18px; font-family: var(--font-mono); font-size: 12px;
  text-decoration: none; text-transform: uppercase; letter-spacing: 0.1em;
  border-radius: var(--radius-sm);
}
.skip-link:focus { left: 16px; top: 16px; z-index: 1000; }

/* ─── Site header ───────────────────────────────────────────────────────── */

.site-header {
  position: sticky; top: 0; z-index: 30;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--rule);
}
.site-header__inner {
  max-width: var(--max); margin: 0 auto;
  padding: 16px var(--pad-x);
  display: flex; align-items: center; justify-content: space-between;
}
.brand {
  display: inline-flex; align-items: center; gap: 10px;
  text-decoration: none; color: var(--ink);
}
.brand:hover { text-decoration: none; }
.brand__mark { width: 24px; height: 28px; flex: none; }
.brand__word {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.site-nav { display: flex; gap: 12px; align-items: center; }
.site-nav a {
  font-family: var(--font-sans);
  font-size: 14px; font-weight: 500;
  color: var(--ink-body);
  padding: 8px 14px;
  border-radius: 999px;
  transition: background .15s ease, color .15s ease;
}
.site-nav a:hover {
  background: var(--paper-3); color: var(--ink); text-decoration: none;
}

/* Language switcher — segmented EN | ES toggle, no-JS direct links. */
.lang-switch {
  display: inline-flex; align-items: center;
  margin-left: 4px; padding: 2px;
  background: var(--paper-3);
  border-radius: 999px;
}
.lang-switch a {
  font-family: var(--font-mono); font-size: 12px; font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  padding: 6px 10px; min-width: 40px; text-align: center;
  border-radius: 999px;
  transition: background .15s ease, color .15s ease;
}
.lang-switch a:hover { color: var(--ink); text-decoration: none; }
.lang-switch a.is-active {
  background: var(--paper); color: var(--c-blue-500);
  box-shadow: 0 1px 2px rgba(29, 41, 47, 0.12);
}

/* ─── Hero ──────────────────────────────────────────────────────────────── */

.hero {
  padding: clamp(40px, 7vw, 96px) var(--pad-x) clamp(40px, 6vw, 80px);
  max-width: var(--max); margin: 0 auto;
}
.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.hero__headline {
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: clamp(40px, 6vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin: 0 0 24px;
  text-wrap: balance;
}
.hero__lede {
  font-size: clamp(17px, 1.25vw, 19px);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 52ch;
  margin-bottom: 40px;
}
.hero__cta-label {
  font-family: var(--font-sans);
  font-size: 13px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--muted);
  margin: 0 0 14px;
}

/* Right column — "Private Lessons" card mirror */
.hero__plate {
  display: flex; flex-direction: column; gap: 16px;
  align-items: stretch;
}
.plate {
  position: relative;
  background: linear-gradient(135deg, var(--c-blue-500) 0%, var(--x-blue) 100%);
  border-radius: var(--radius-lg);
  padding: 28px 28px 26px;
  color: var(--paper);
  box-shadow: var(--shadow-lift);
  overflow: hidden;
}
/* Photo variant — the Private Lessons tile uses the court image from
   Figma. A bottom-up scrim keeps the title/caption legible over the
   photo, and the title block is pinned to the bottom-left negative space. */
.plate--photo {
  display: flex; flex-direction: column; justify-content: flex-end;
  min-height: 340px;
  background:
    linear-gradient(to top, rgba(10, 10, 10, 0.82) 0%,
                            rgba(10, 10, 10, 0.30) 45%,
                            rgba(10, 10, 10, 0.05) 100%),
    var(--ink);
  background-image:
    linear-gradient(to top, rgba(10, 10, 10, 0.82) 0%,
                            rgba(10, 10, 10, 0.30) 45%,
                            rgba(10, 10, 10, 0.05) 100%),
    url('../img/padel-court.jpg');
  background-size: cover, cover;
  background-position: center, center;
}
.plate--photo::before,
.plate--photo::after { content: none; }
.plate--photo .plate__title { font-size: 24px; }
/* Decorative racket sweep — pure CSS */
.plate::before, .plate::after {
  content: ''; position: absolute; border-radius: 50%;
  pointer-events: none;
}
.plate::before {
  width: 240px; height: 240px;
  top: -100px; right: -80px;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.18), transparent 70%);
}
.plate::after {
  width: 120px; height: 120px;
  bottom: -40px; left: -20px;
  background: var(--c-lime-300);
  opacity: 0.85;
  filter: blur(2px);
}
.plate__icon {
  display: flex; align-items: center; justify-content: center;
  width: 56px; height: 56px; border-radius: 16px;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(4px);
  margin-bottom: 24px;
  position: relative; z-index: 1;
}
.plate__icon svg { width: 28px; height: 28px; color: var(--paper); }
.plate__court { display: none; }
.plate__title {
  font-family: var(--font-sans); font-weight: 700;
  font-size: 22px; letter-spacing: -0.01em;
  margin: 0 0 6px;
  position: relative; z-index: 1;
}
.plate__caption {
  font-family: var(--font-sans);
  font-size: 14px; font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  position: relative; z-index: 1;
}
.plate__index {
  position: absolute; top: 18px; right: 18px;
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255, 255, 255, 0.18);
  color: var(--paper);
  font-family: var(--font-mono); font-size: 11px; font-weight: 500;
  padding: 6px 10px; border-radius: 999px;
  letter-spacing: 0.06em;
  backdrop-filter: blur(4px);
  z-index: 2;
}

/* Compact live-coach widget under the hero photo plate — a real, condensed
   mirror of the full #coaches section (same data, sliced to 5). */
.plate-coaches {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 14px 16px;
  box-shadow: var(--shadow-lift);
}
.plate-coaches__head {
  display: flex; align-items: center; gap: 8px;
  margin: 0 0 10px;
  font-family: var(--font-mono); font-size: 11px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--ink-soft);
}
.plate-coaches__dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--c-lime-600);
  box-shadow: 0 0 0 3px rgba(217, 231, 14, 0.28);
}
.plate-coaches__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 2px; }
.plate-coach {
  display: flex; align-items: center; gap: 10px;
  padding: 8px; border-radius: 10px;
  text-decoration: none;
  transition: background .15s ease;
}
.plate-coach:hover,
.plate-coach:focus-visible { background: var(--paper-3); text-decoration: none; }
.plate-coach__media {
  flex: 0 0 auto; width: 34px; height: 34px; border-radius: 50%;
  overflow: hidden; background: linear-gradient(135deg, var(--paper-3), var(--rule));
  display: grid; place-items: center;
}
.plate-coach__media img { width: 100%; height: 100%; object-fit: cover; }
.plate-coach__initial {
  font-family: var(--font-sans); font-weight: 800; font-size: 14px;
  color: var(--c-blue-500);
}
.plate-coach__id { display: grid; gap: 1px; min-width: 0; flex: 1 1 auto; }
.plate-coach__name {
  font-family: var(--font-sans); font-weight: 600; font-size: 14px;
  color: var(--ink); line-height: 1.2;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.plate-coach__meta {
  font-family: var(--font-sans); font-size: 12px; color: var(--muted);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.plate-coach__arrow {
  flex: 0 0 auto; color: var(--rule-dark); font-size: 15px;
  transition: transform .2s ease, color .2s ease;
}
.plate-coach:hover .plate-coach__arrow,
.plate-coach:focus-visible .plate-coach__arrow {
  transform: translateX(3px); color: var(--c-blue-500);
}

/* Hero rule — audience chips, now real links */
.hero__rule {
  margin-top: clamp(48px, 6vw, 72px);
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 13px; font-weight: 500;
}
.hero__rule a {
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--paper-3);
  border: 1px solid var(--rule);
  color: var(--ink-soft);
  text-decoration: none;
  transition: color .2s ease, background-color .2s ease,
              border-color .2s ease, transform .2s ease;
}
.hero__rule a:hover,
.hero__rule a:focus-visible {
  color: var(--c-blue-600);
  background: rgba(0, 123, 255, 0.08);
  border-color: var(--c-blue-500);
  transform: translateY(-1px);
}

/* ─── Store buttons ─────────────────────────────────────────────────────── */

.store-row { display: flex; gap: 12px; flex-wrap: wrap; }
.store-row--center { justify-content: center; }
.store-btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 14px 22px 14px 18px;
  background: var(--ink);
  color: var(--paper);
  border-radius: var(--radius);
  text-decoration: none;
  transition: transform .15s ease, background .15s ease, box-shadow .15s ease;
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.04);
}
.store-btn:hover {
  transform: translateY(-2px);
  background: var(--c-blue-500);
  color: var(--paper);
  text-decoration: none;
  box-shadow: var(--shadow-lift);
}
.store-btn__icon { width: 26px; height: 26px; flex: none; }
.store-btn small {
  display: block;
  font-family: var(--font-sans); font-size: 10px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.14em;
  opacity: 0.7; margin-bottom: 2px;
}
.store-btn strong {
  display: block;
  font-family: var(--font-sans);
  font-weight: 700; font-size: 16px;
  letter-spacing: -0.01em;
  color: var(--paper);
}
.store-btn--soon {
  background: var(--paper-3); color: var(--ink-soft);
  cursor: not-allowed; box-shadow: none;
}
.store-btn--soon strong { color: var(--ink-body); }

/* ─── Trio (how it works) ───────────────────────────────────────────────── */

.trio {
  padding: var(--pad-y) var(--pad-x);
  max-width: var(--max); margin: 0 auto;
  border-top: 1px solid var(--rule);
}
.trio__head { max-width: 760px; margin-bottom: 56px; }
.trio__title {
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.05; letter-spacing: -0.025em;
  color: var(--ink);
  margin: 0;
  text-wrap: balance;
}
.trio__list {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 2.5vw, 32px);
}
.trio__item {
  background: var(--paper-2);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.trio__item:hover {
  transform: translateY(-3px);
  border-color: var(--c-blue-500);
  box-shadow: var(--shadow-lift);
}
.trio__num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  background: var(--c-blue-500);
  color: var(--paper);
  border-radius: 10px;
  font-family: var(--font-sans); font-weight: 700; font-size: 14px;
  margin-bottom: 18px;
}
.trio__item h3 {
  font-family: var(--font-sans); font-weight: 700;
  font-size: 22px; line-height: 1.2; letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0 0 10px;
}
.trio__item p {
  color: var(--ink-soft); margin: 0; max-width: 32ch;
  line-height: 1.55;
}

/* ─── News strip on landing ─────────────────────────────────────────────── */

.news-strip {
  padding: var(--pad-y) var(--pad-x);
  max-width: var(--max); margin: 0 auto;
  border-top: 1px solid var(--rule);
}
.news-strip__head {
  display: flex; flex-wrap: wrap; align-items: end;
  justify-content: space-between; gap: 24px; margin-bottom: 40px;
}
.news-strip__head h2 {
  font-family: var(--font-sans); font-weight: 800;
  font-size: clamp(32px, 4vw, 48px);
  margin: 6px 0 0; letter-spacing: -0.025em;
  color: var(--ink);
}
.news-strip__more {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-sans); font-size: 14px; font-weight: 600;
  color: var(--c-blue-500);
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(0, 123, 255, 0.08);
  text-decoration: none;
  transition: background .15s ease;
}
.news-strip__more:hover {
  background: rgba(0, 123, 255, 0.16);
  text-decoration: none;
}

.news-strip__list {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 2.5vw, 32px);
}
.news-card {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: 24px 24px 22px;
  display: grid; gap: 12px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.news-card:hover {
  transform: translateY(-3px);
  border-color: var(--c-blue-500);
  box-shadow: var(--shadow-lift);
}
.news-card__kicker {
  align-self: start;
  font-family: var(--font-sans); font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--c-blue-500);
  background: rgba(0, 123, 255, 0.08);
  padding: 4px 10px; border-radius: 999px;
}
.news-card__title {
  font-family: var(--font-sans); font-weight: 700;
  font-size: 20px; line-height: 1.2; letter-spacing: -0.01em;
  margin: 0;
}
.news-card__title a {
  color: var(--ink); text-decoration: none;
}
.news-card__title a:hover { color: var(--c-blue-500); text-decoration: none; }
.news-card__summary {
  color: var(--ink-soft); margin: 0;
  font-size: 15px; line-height: 1.55;
}
.news-card__meta {
  font-family: var(--font-sans); font-size: 12px; font-weight: 500;
  color: var(--muted); margin: 0;
}

/* ─── Coaches teaser (live, listed coaches) ─────────────────────────────── */

.coaches {
  padding: var(--pad-y) var(--pad-x);
  max-width: var(--max); margin: 0 auto;
  border-top: 1px solid var(--rule);
}
.coaches__head { max-width: 760px; margin-bottom: 44px; }
.coaches__title {
  font-family: var(--font-sans); font-weight: 800;
  font-size: clamp(32px, 4vw, 48px);
  margin: 6px 0 0; letter-spacing: -0.025em;
  color: var(--ink);
}
.coaches__sub {
  color: var(--ink-soft); margin: 14px 0 0;
  font-size: 16px; line-height: 1.55; max-width: 52ch;
}
.coaches__list {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: clamp(18px, 2.2vw, 28px);
}
.coach-card { display: flex; }
/* Card mirrors the in-app coach card (Figma 8943:4747): a grey summary
   header, a white action body, and a lime "next available" accent strip. */
.coach-card__link {
  display: flex; flex-direction: column;
  width: 100%;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.coach-card__link:hover,
.coach-card__link:focus-visible {
  transform: translateY(-3px);
  border-color: var(--c-blue-500);
  box-shadow: var(--shadow-lift);
  text-decoration: none;
}

/* Header — grey surface: avatar, name + badge, city */
.coach-card__head {
  display: flex; align-items: center; gap: 12px;
  padding: 16px;
  background: var(--paper-3);
  border-bottom: 1px solid var(--rule);
}
.coach-card__media {
  flex: 0 0 auto;
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--paper-3), var(--rule));
  display: grid; place-items: center;
  overflow: hidden;
}
.coach-card__media img { width: 100%; height: 100%; object-fit: cover; }
.coach-card__initial {
  font-family: var(--font-sans); font-weight: 800;
  font-size: 20px; color: var(--c-blue-500);
}
.coach-card__id { display: grid; gap: 4px; min-width: 0; flex: 1 1 auto; }
.coach-card__name-row { display: flex; align-items: center; gap: 6px; min-width: 0; }
.coach-card__name {
  font-family: var(--font-sans); font-weight: 700;
  font-size: 17px; line-height: 1.25; letter-spacing: -0.02em;
  color: var(--ink);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.coach-card__badge {
  flex: 0 0 auto;
  font-family: var(--font-sans); font-size: 12px; font-weight: 500;
  line-height: 1; color: var(--ink-body);
  padding: 3px 8px; border-radius: 999px;
}
.coach-card__badge--pro { background: var(--c-lime-300); }
.coach-card__badge--coach { background: var(--c-blue-200); }
.coach-card__city {
  display: inline-flex; align-items: center; gap: 4px;
  font-family: var(--font-sans); font-size: 14px; font-weight: 400;
  color: var(--ink-soft);
}
.coach-card__pin { width: 15px; height: 15px; flex: 0 0 auto; color: var(--muted); }
.coach-card__chevron {
  flex: 0 0 auto; margin-left: auto;
  color: var(--rule-dark); font-size: 22px; line-height: 1;
  transition: transform .2s ease, color .2s ease;
}
.coach-card__link:hover .coach-card__chevron,
.coach-card__link:focus-visible .coach-card__chevron {
  transform: translateX(3px); color: var(--c-blue-500);
}

/* Body — white: blue "Book in app" button + the slot value (Figma price slot) */
.coach-card__body {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 16px;
  background: var(--paper);
}
.coach-card__book {
  display: inline-flex; align-items: center; justify-content: center;
  height: 36px; padding: 0 14px; border-radius: 12px;
  background: var(--c-blue-500); color: var(--paper);
  font-family: var(--font-sans); font-size: 14px; font-weight: 600;
  letter-spacing: -0.01em;
  transition: background .2s ease;
}
.coach-card__link:hover .coach-card__book,
.coach-card__link:focus-visible .coach-card__book { background: var(--c-blue-600); }
.coach-card__price {
  font-family: var(--font-sans); font-size: 14px; font-weight: 600;
  color: var(--ink-body); white-space: nowrap;
}

/* Footer — lime accent strip (Figma's "Popular" band) */
.coach-card__foot {
  display: flex; align-items: center; gap: 6px;
  padding: 8px 16px;
  background: var(--c-lime-300);
  color: var(--ink-body);
  font-family: var(--font-sans); font-size: 13px; font-weight: 500;
}
.coach-card__foot-icon { width: 15px; height: 15px; flex: 0 0 auto; }

/* ─── Hero foot strip ───────────────────────────────────────────────────── */

.hero-foot {
  background: var(--ink);
  color: var(--paper);
  padding: clamp(72px, 8vw, 120px) var(--pad-x);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero-foot::before, .hero-foot::after {
  content: ''; position: absolute; pointer-events: none;
  width: 380px; height: 380px; border-radius: 50%;
  filter: blur(80px);
}
.hero-foot::before { background: var(--c-blue-500); top: -100px; left: -80px; opacity: 0.55; }
.hero-foot::after  { background: var(--c-lime-600); bottom: -120px; right: -80px; opacity: 0.45; }
.hero-foot__inner {
  position: relative; z-index: 1;
  max-width: var(--max); margin: 0 auto;
  display: grid; gap: 36px; justify-items: center;
}
.hero-foot__line {
  font-family: var(--font-sans); font-weight: 800;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.05; letter-spacing: -0.03em;
  margin: 0; max-width: 20ch; text-wrap: balance;
  color: var(--paper);
}
.hero-foot__line em {
  font-style: normal;
  background: linear-gradient(135deg, var(--c-blue-200), var(--c-lime-600));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-foot .store-btn { background: var(--paper); color: var(--ink); }
.hero-foot .store-btn:hover { background: var(--c-blue-500); color: var(--paper); }
.hero-foot .store-btn:hover strong { color: var(--paper); }
.hero-foot .store-btn strong { color: var(--ink); }
.hero-foot .store-btn small { color: var(--ink-soft); }
.hero-foot .store-btn:hover small { color: rgba(255, 255, 255, 0.7); }

/* ─── Download page ─────────────────────────────────────────────────────── */

.download {
  padding: clamp(56px, 9vw, 120px) var(--pad-x) clamp(64px, 9vw, 120px);
  max-width: var(--max); margin: 0 auto;
  display: flex; justify-content: center;
}
.download__inner {
  max-width: 680px; width: 100%;
  text-align: center;
  display: flex; flex-direction: column; align-items: center;
}
.download__headline {
  font-size: clamp(36px, 5.5vw, 64px);
  margin-bottom: 20px;
}
.download__lede {
  margin: 0 auto 36px;
  max-width: 48ch;
}
.download__cta { width: 100%; }
.download .hero__cta-label { margin-bottom: 16px; }
.download__points {
  list-style: none; padding: 0;
  margin: 44px 0 0;
  display: flex; flex-wrap: wrap; gap: 10px 22px;
  justify-content: center;
}
.download__points li {
  position: relative;
  font-size: 14px; color: var(--ink-soft);
  padding-left: 22px;
}
.download__points li::before {
  content: '✓';
  position: absolute; left: 0; top: 0;
  color: var(--c-blue-500); font-weight: 700;
}
.download__back { margin: 40px 0 0; }
.download__back a {
  font-family: var(--font-sans); font-size: 14px; font-weight: 600;
  color: var(--c-blue-500); text-decoration: none;
  display: inline-flex; align-items: center; gap: 6px;
  transition: gap .15s ease, color .15s ease;
}
.download__back a:hover { color: var(--c-blue-600); gap: 10px; }

/* ─── About page ────────────────────────────────────────────────────────── */

.about-head {
  padding: clamp(64px, 7vw, 120px) var(--pad-x) clamp(40px, 5vw, 64px);
  max-width: var(--max); margin: 0 auto;
}
.about-head__title {
  font-family: var(--font-sans); font-weight: 800;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.05; letter-spacing: -0.03em;
  color: var(--ink);
  margin: 0; max-width: 22ch; text-wrap: balance;
}

.about-story {
  padding: 0 var(--pad-x) var(--pad-y);
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
  gap: clamp(40px, 5vw, 72px);
  border-bottom: 1px solid var(--rule);
}
.about-story__body {
  font-size: 18px; line-height: 1.7; color: var(--ink-body);
  max-width: 62ch;
}
.about-story__body p { margin-bottom: 1.4em; }
.about-story__pull {
  align-self: start;
  background: linear-gradient(135deg, var(--c-blue-500) 0%, var(--x-blue) 100%);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  color: var(--paper);
  box-shadow: var(--shadow-lift);
  position: relative; overflow: hidden;
}
.about-story__pull::after {
  content: ''; position: absolute;
  width: 200px; height: 200px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.15), transparent 70%);
  top: -80px; right: -60px; pointer-events: none;
}
.pull__eyebrow {
  font-family: var(--font-sans); font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.75);
  margin: 0 0 14px;
  position: relative; z-index: 1;
}
.pull__quote {
  font-family: var(--font-sans); font-weight: 700;
  font-size: 22px; line-height: 1.25; letter-spacing: -0.015em;
  margin: 0;
  position: relative; z-index: 1;
}

/* Team */
.team { padding: var(--pad-y) var(--pad-x); max-width: var(--max); margin: 0 auto; }
.team__head { margin-bottom: 48px; }
.team__title {
  font-family: var(--font-sans); font-weight: 800;
  font-size: clamp(32px, 4vw, 48px); letter-spacing: -0.025em;
  color: var(--ink);
  margin: 6px 0 0;
}
.team__list {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: clamp(24px, 2.5vw, 36px);
}
.team-card {
  display: grid; gap: 16px;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: 20px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.team-card:hover {
  transform: translateY(-3px);
  border-color: var(--c-blue-500);
  box-shadow: var(--shadow-lift);
}
.team-card__media {
  aspect-ratio: 1 / 1;
  background: linear-gradient(135deg, var(--paper-3), var(--rule));
  display: grid; place-items: center;
  overflow: hidden; border-radius: var(--radius);
  position: relative;
}
.team-card__media::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(0, 123, 255, 0.1), transparent 60%);
}
.team-card__media img { width: 100%; height: 100%; object-fit: cover; }
.team-card__initial {
  font-family: var(--font-sans); font-weight: 800;
  font-size: 64px; color: var(--c-blue-500);
  position: relative; z-index: 1;
}
.team-card__role {
  font-family: var(--font-sans); font-size: 12px; font-weight: 500;
  color: var(--c-blue-500);
  background: rgba(0, 123, 255, 0.08);
  padding: 4px 10px; border-radius: 999px;
  display: inline-block;
  margin: 0;
}
.team-card__name {
  font-family: var(--font-sans); font-weight: 700;
  font-size: 20px; line-height: 1.2; letter-spacing: -0.01em;
  color: var(--ink);
  margin: 4px 0 6px;
}
.team-card__bio {
  color: var(--ink-soft); margin: 0; font-size: 14px; line-height: 1.55;
}
.team-card__social {
  display: flex; gap: 10px; margin-top: 14px;
}
.team-card__social a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: 50%;
  color: var(--ink-soft);
  background: var(--paper-3);
  border: 1px solid var(--rule);
  transition: color .2s ease, background-color .2s ease,
              border-color .2s ease, transform .2s ease;
}
.team-card__social a:hover,
.team-card__social a:focus-visible {
  color: var(--paper);
  background: var(--c-blue-500);
  border-color: var(--c-blue-500);
  transform: translateY(-2px);
}
.team-card__social svg { width: 16px; height: 16px; }

/* ─── News list ─────────────────────────────────────────────────────────── */

.news-head {
  padding: clamp(64px, 7vw, 112px) var(--pad-x) clamp(28px, 4vw, 56px);
  max-width: 980px; margin: 0 auto;
}
.news-head__title {
  font-family: var(--font-sans); font-weight: 800;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 1; letter-spacing: -0.035em;
  color: var(--ink);
  margin: 0;
}
.news-head__lede {
  margin-top: 20px;
  font-size: 18px; color: var(--ink-soft); max-width: 52ch;
}
.news-index {
  padding: 0 var(--pad-x) var(--pad-y);
  max-width: 980px; margin: 0 auto;
}
.news-index__list { list-style: none; padding: 0; margin: 0; }
.news-row {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  margin-bottom: 16px;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.news-row:hover {
  transform: translateY(-2px);
  border-color: var(--c-blue-500);
  box-shadow: var(--shadow-lift);
}
.news-row__link {
  display: grid; grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px; padding: 26px 28px; align-items: end;
  text-decoration: none;
}
.news-row__link:hover { text-decoration: none; }
.news-row__meta {
  font-family: var(--font-sans); font-size: 12px; font-weight: 500;
  color: var(--muted); margin: 0 0 12px;
  grid-column: 1 / -1;
  display: flex; gap: 12px; align-items: center;
}
.news-row__kicker {
  font-weight: 600; color: var(--c-blue-500);
  background: rgba(0, 123, 255, 0.08);
  padding: 3px 10px; border-radius: 999px;
  text-transform: uppercase; letter-spacing: 0.08em; font-size: 11px;
}
.news-row__title {
  font-family: var(--font-sans); font-weight: 700;
  font-size: clamp(22px, 2.4vw, 32px); line-height: 1.2; letter-spacing: -0.02em;
  margin: 0; color: var(--ink);
}
.news-row__summary {
  grid-column: 1; margin: 10px 0 0;
  color: var(--ink-soft); max-width: 60ch; line-height: 1.55;
}
.news-row__read {
  font-family: var(--font-sans); font-size: 14px; font-weight: 600;
  color: var(--c-blue-500);
  align-self: end;
  display: inline-flex; align-items: center; gap: 4px;
}

/* ─── News detail / article ─────────────────────────────────────────────── */

.article {
  max-width: 740px; margin: 0 auto;
  padding: clamp(64px, 7vw, 112px) var(--pad-x) var(--pad-y);
}
.article__head { margin-bottom: 40px; }
.article__meta {
  font-family: var(--font-sans); font-size: 13px; font-weight: 500;
  color: var(--muted); margin: 0 0 18px;
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
}
.article__kicker {
  font-weight: 600; color: var(--c-blue-500);
  background: rgba(0, 123, 255, 0.08);
  padding: 3px 10px; border-radius: 999px;
  text-transform: uppercase; letter-spacing: 0.08em; font-size: 11px;
}
.article__title {
  font-family: var(--font-sans); font-weight: 800;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.04; letter-spacing: -0.03em;
  color: var(--ink);
  margin: 0; text-wrap: balance;
}
.article__lede {
  font-family: var(--font-sans); font-weight: 500;
  font-size: 20px; line-height: 1.45;
  color: var(--ink-soft);
  margin: 24px 0 0; max-width: 56ch;
}
.article__byline {
  font-family: var(--font-sans); font-size: 13px; font-weight: 500;
  color: var(--muted); margin: 20px 0 0;
}
.article__figure {
  margin: 40px 0 48px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.article__figure img { width: 100%; }
.article__rule {
  border: 0; border-top: 1px solid var(--rule); margin: 48px 0 24px;
}
.article__back a {
  font-family: var(--font-sans); font-size: 14px; font-weight: 600;
  color: var(--c-blue-500);
}

/* ─── Prose (long-form body) ────────────────────────────────────────────── */

.prose {
  font-size: 17px; line-height: 1.72; color: var(--ink-body);
}
.prose p { margin: 0 0 1.25em; max-width: 68ch; }
.prose strong { font-weight: 700; color: var(--ink); }
.prose em { font-style: italic; }
.prose a {
  color: var(--c-blue-500);
  text-decoration: underline; text-underline-offset: 2px;
  text-decoration-color: var(--c-blue-200);
  transition: text-decoration-color .15s ease, color .15s ease;
}
.prose a:hover { color: var(--c-blue-600); text-decoration-color: currentColor; }

/* Section headings rendered by the `rich_body` filter ("## " / "### "). */
.prose__h2 {
  font-family: var(--font-sans); font-weight: 700;
  font-size: clamp(20px, 2.4vw, 26px);
  line-height: 1.25; letter-spacing: -0.02em;
  color: var(--ink);
  margin: 2.2em 0 0.7em;
  padding-top: 1.4em;
  border-top: 1px solid var(--rule);
  scroll-margin-top: 96px;
}
.prose__h2:first-child { margin-top: 0; padding-top: 0; border-top: 0; }
.prose__h3 {
  font-family: var(--font-sans); font-weight: 700;
  font-size: clamp(17px, 1.8vw, 20px);
  line-height: 1.3; letter-spacing: -0.015em;
  color: var(--ink);
  margin: 1.8em 0 0.5em;
}
.prose__list {
  margin: 0 0 1.25em; padding-left: 1.25em;
  max-width: 68ch; color: var(--ink-body);
}
.prose__list li { margin: 0 0 0.5em; padding-left: 0.25em; }
.prose__list li::marker { color: var(--c-blue-500); }

/* ─── Legal page ────────────────────────────────────────────────────────── */

.legal {
  max-width: 760px; margin: 0 auto;
  padding: clamp(64px, 7vw, 112px) var(--pad-x) var(--pad-y);
}
.legal__head { margin-bottom: 40px; }
.legal__title {
  font-family: var(--font-sans); font-weight: 800;
  font-size: clamp(34px, 5vw, 56px);
  margin: 0; letter-spacing: -0.025em; color: var(--ink);
}
.legal__lede {
  margin-top: 16px; font-size: 18px; color: var(--ink-soft);
}
.legal__updated {
  font-family: var(--font-mono); font-size: 12px;
  color: var(--muted); margin: 18px 0 0;
}

/* ─── Supported countries page ─────────────────────────────────────────── */

.supported-countries__title {
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: clamp(24px, 3vw, 34px);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0 0 20px;
}
.supported-countries__grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  list-style: none;
  margin: 0;
  padding: 0;
}
.supported-countries__item {
  align-items: center;
  background: var(--paper-2);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
}
.supported-countries__item code {
  background: rgba(0, 123, 255, 0.08);
  border-radius: 999px;
  color: var(--c-blue-500);
  font-family: var(--font-mono);
  font-size: 12px;
  padding: 3px 8px;
}

/* ─── Support page ──────────────────────────────────────────────────────── */

.support-head {
  max-width: 760px; margin: 0 auto;
  padding: clamp(64px, 7vw, 112px) var(--pad-x) clamp(28px, 4vw, 44px);
  text-align: center;
}
.support-head__title {
  font-family: var(--font-sans); font-weight: 800;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.05; letter-spacing: -0.03em;
  color: var(--ink);
  margin: 0; text-wrap: balance;
}
.support-head__lede {
  margin: 18px auto 0; max-width: 54ch;
  font-size: 18px; line-height: 1.6; color: var(--ink-soft);
}
.support-cta {
  display: inline-flex; align-items: center; gap: 16px;
  margin-top: 32px; padding: 16px 24px;
  min-height: 64px;
  background: linear-gradient(135deg, var(--c-blue-500) 0%, var(--x-blue) 100%);
  color: var(--paper); text-decoration: none;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lift);
  transition: transform .2s ease, box-shadow .2s ease;
}
.support-cta:hover {
  color: var(--paper); text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 20px 50px -18px rgba(0, 98, 204, 0.55);
}
.support-cta:focus-visible {
  outline: 3px solid var(--c-blue-200); outline-offset: 3px;
}
.support-cta__icon {
  width: 28px; height: 28px; flex: none; color: var(--paper);
}
.support-cta__text { display: grid; gap: 2px; text-align: left; }
.support-cta__label {
  font-family: var(--font-mono); font-size: 11px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.78);
}
.support-cta__addr {
  font-family: var(--font-sans); font-weight: 700; font-size: 18px;
  letter-spacing: -0.01em;
}

.support-grid {
  max-width: var(--max); margin: 0 auto;
  padding: 0 var(--pad-x) var(--pad-y);
  display: grid; gap: clamp(16px, 2vw, 24px);
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.support-card {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.support-card:hover {
  transform: translateY(-3px);
  border-color: var(--c-blue-500);
  box-shadow: var(--shadow-lift);
}
.support-card__title {
  font-family: var(--font-sans); font-weight: 700;
  font-size: 18px; letter-spacing: -0.01em; color: var(--ink);
  margin: 0 0 10px;
}
.support-card__body {
  font-size: 15px; line-height: 1.6; color: var(--ink-soft); margin: 0;
}

/* ─── Footer ────────────────────────────────────────────────────────────── */

.site-footer {
  background: var(--paper-3);
  border-top: 1px solid var(--rule);
  padding: clamp(56px, 6vw, 96px) var(--pad-x) 40px;
}
.site-footer__inner { max-width: var(--max); margin: 0 auto; }
.site-footer__brand .brand__word {
  font-size: 28px; font-weight: 800;
}
.site-footer__tag {
  font-family: var(--font-sans); font-weight: 500;
  font-size: 16px; color: var(--ink-soft);
  margin: 4px 0 0;
}
.site-footer__cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 36px;
  margin-top: 48px;
}
.site-footer__col h4 {
  font-family: var(--font-sans); font-size: 12px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--ink-soft); margin: 0 0 16px;
}
.link-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.link-list a {
  text-decoration: none;
  font-family: var(--font-sans); font-weight: 500;
  font-size: 15px; color: var(--ink-body);
}
.link-list a:hover { color: var(--c-blue-500); text-decoration: none; }
.link-list .muted { color: var(--muted); font-style: italic; }

.site-footer__rule {
  border-top: 1px solid var(--rule); margin: 40px 0 20px;
}
.site-footer__bottom small {
  font-family: var(--font-sans); font-size: 13px; font-weight: 500;
  color: var(--muted);
}

/* ─── Utility ───────────────────────────────────────────────────────────── */

.empty {
  font-family: var(--font-sans); font-size: 18px;
  color: var(--ink-soft);
}

/* ─── Cookie consent ────────────────────────────────────────────────────── */

.cookie-consent {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 1000;
  padding: 16px var(--pad-x) calc(16px + env(safe-area-inset-bottom, 0px));
  background: var(--paper);
  border-top: 1px solid var(--rule);
  box-shadow: var(--shadow-card);
}
.cookie-consent[hidden] { display: none; }
.cookie-consent__inner {
  max-width: var(--max); margin: 0 auto;
  display: flex; flex-wrap: wrap; align-items: center;
  gap: 16px 32px;
}
.cookie-consent__text { flex: 1 1 320px; min-width: 0; }
.cookie-consent__title {
  font-family: var(--font-sans); font-weight: 700;
  font-size: 15px; color: var(--ink); margin: 0 0 4px;
}
.cookie-consent__body {
  font-family: var(--font-sans); font-weight: 500;
  font-size: 14px; line-height: 1.55; color: var(--ink-soft);
  margin: 0; max-width: 70ch;
}
.cookie-consent__body a {
  color: var(--c-blue-500); text-decoration: underline; text-underline-offset: 2px;
}
.cookie-consent__actions {
  display: flex; gap: 12px; flex: 0 0 auto;
}
.cookie-consent__btn {
  font-family: var(--font-sans); font-weight: 600; font-size: 14px;
  min-height: 44px; padding: 0 22px;
  border-radius: var(--radius); cursor: pointer;
  border: 1px solid transparent;
  transition: background .18s ease, color .18s ease,
              border-color .18s ease, transform .18s ease;
}
.cookie-consent__btn--ghost {
  background: transparent; color: var(--ink-body);
  border-color: var(--rule);
}
.cookie-consent__btn--ghost:hover { border-color: var(--ink-soft); color: var(--ink); }
.cookie-consent__btn--solid {
  background: var(--c-blue-500); color: var(--paper);
}
.cookie-consent__btn--solid:hover { background: var(--c-blue-600); }
.cookie-consent__btn:focus-visible {
  outline: 3px solid var(--c-blue-200); outline-offset: 2px;
}
.cookie-consent__btn:active { transform: translateY(1px); }

/* ─── Motion ────────────────────────────────────────────────────────────── */

@media (prefers-reduced-motion: no-preference) {
  .cookie-consent:not([hidden]) {
    animation: cookie-slide .4s cubic-bezier(0.2, 0.65, 0.2, 1);
  }
  @keyframes cookie-slide { from { transform: translateY(100%); } to { transform: translateY(0); } }

  .js .hero__headline,
  .js .hero__lede,
  .js .hero__cta {
    opacity: 0; transform: translateY(14px);
    animation: rise .9s cubic-bezier(0.2, 0.65, 0.2, 1) forwards;
  }
  .js .hero__lede { animation-delay: .12s; }
  .js .hero__cta  { animation-delay: .24s; }

  .js .hero__plate {
    opacity: 0; transform: translateY(20px) scale(0.98);
    animation: pop 1s cubic-bezier(0.2, 0.65, 0.2, 1) .35s forwards;
  }

  @keyframes rise { to { opacity: 1; transform: translateY(0); } }
  @keyframes pop  { to { opacity: 1; transform: translateY(0) scale(1); } }

  /* Scroll-reveal — progressive enhancement. Elements tagged `.reveal`
     start hidden + nudged down; the IntersectionObserver in base.html
     adds `.is-visible` as they enter the viewport. Gated by `.js` so
     no-JS visitors always see content (see the always-visible fallback
     outside this query). */
  .js .reveal {
    opacity: 0; transform: translateY(22px);
    transition: opacity .7s cubic-bezier(0.2, 0.65, 0.2, 1),
                transform .7s cubic-bezier(0.2, 0.65, 0.2, 1);
    will-change: opacity, transform;
  }
  .js .reveal.is-visible { opacity: 1; transform: none; }
  /* Stagger children of a `.reveal-group` for a cascading entrance. */
  .js .reveal-group.is-visible > * {
    animation: rise .7s cubic-bezier(0.2, 0.65, 0.2, 1) both;
  }
  .js .reveal-group.is-visible > *:nth-child(2) { animation-delay: .07s; }
  .js .reveal-group.is-visible > *:nth-child(3) { animation-delay: .14s; }
  .js .reveal-group.is-visible > *:nth-child(4) { animation-delay: .21s; }
  .js .reveal-group.is-visible > *:nth-child(5) { animation-delay: .28s; }
  .js .reveal-group.is-visible > *:nth-child(6) { animation-delay: .35s; }
}

/* No-JS + reduced-motion fallback: content is always fully visible. */
.no-js .reveal,
.reveal.is-visible { opacity: 1; transform: none; }

/* ─── Responsive ────────────────────────────────────────────────────────── */

/* Tablet — single hero column; coaches/news drop to two-up. */
@media (max-width: 880px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__plate { order: -1; max-width: 420px; margin: 0 auto; }
  /* The full #coaches section sits just below the fold on mobile, so the
     compact hero teaser would be redundant + push the headline down. */
  .plate-coaches { display: none; }
  .trio__list { grid-template-columns: 1fr; }
  .news-strip__list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .coaches__list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .about-story { grid-template-columns: 1fr; }
  .about-story__pull { order: -1; }
  .article__figure { margin-inline: 0; }
}

/* Small tablet / large phone — let the header wrap to a tidy second row
   rather than cramming brand + nav + language switch onto one line. */
@media (max-width: 680px) {
  .site-header__inner { flex-wrap: wrap; row-gap: 6px; padding-block: 12px; }
  .brand { margin-right: auto; }
  .site-nav {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 2px;
  }
  .site-nav a { padding: 10px 12px; }   /* roomier tap targets */
  .lang-switch { margin-left: auto; }   /* park EN|ES at the row's end */
  .news-strip__list { grid-template-columns: 1fr; }
}

@media (max-width: 520px) {
  .brand__word { font-size: 18px; }
  .site-nav a { font-size: 13px; padding: 10px 10px; }
  .hero { padding-top: 28px; }
  .coaches__list { grid-template-columns: 1fr; }
  .store-row .store-btn { flex: 1 1 100%; justify-content: flex-start; }
  .download__points { gap: 8px 16px; }
  .news-row__link { grid-template-columns: 1fr; }
  .news-row__read { justify-self: start; margin-top: 8px; }
  .cookie-consent__actions { width: 100%; }
  .cookie-consent__btn { flex: 1 1 0; }
}
