/* ==========================================================================
   Go2biker — Sporty & Sophisticated MTB Design System
   Palette: navy + electric blue accent + warm off-white
   Typography: Barlow Condensed (display) + Inter (body)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@600;700;800&family=Inter:wght@400;500;600;700&display=swap');

:root {
  /* brand blue family — sporty electric */
  --blue-50: #eef6ff;
  --blue-100: #d1e8ff;
  --blue-200: #a3d1ff;
  --blue-300: #66b3ff;
  --blue-400: #3399ff;
  --blue-500: #1a85ff;
  --blue-600: #0066e6;
  --blue-700: #004db3;

  /* surfaces */
  --bg: #f5f6f8;
  --surface: #ffffff;
  --surface-2: #eef1f4;
  --surface-3: #dfe4ea;
  --surface-dark: #0b1a2e;

  /* text */
  --fg: #0f1a2a;
  --fg-soft: #263347;
  --muted: #5a6a7e;
  --muted-2: #7a8a9e;
  --muted-3: #a8b4c2;

  /* lines */
  --border: #dde2ea;
  --border-2: #c8d0da;

  /* accents */
  --green: #16a34a;
  --pink: #e70891;
  --white: #ffffff;

  /* type */
  --font-display: 'Barlow Condensed', 'Impact', 'Arial Narrow', ui-sans-serif, sans-serif;
  --font-sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;

  /* radius */
  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 16px;
  --r-pill: 999px;

  /* shadows */
  --shadow-1: 0 1px 0 rgba(11, 26, 46, 0.05), 0 1px 3px rgba(11, 26, 46, 0.04);
  --shadow-2: 0 4px 20px rgba(11, 26, 46, 0.08);
  --shadow-3: 0 16px 48px rgba(11, 26, 46, 0.14);
  --shadow-blue: 0 8px 24px rgba(26, 133, 255, 0.25);

  /* overlays */
  --overlay-dark: rgba(11, 26, 46, 0.55);
  --overlay-hero: rgba(11, 26, 46, 0.35);
}

/* ---------- reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.55;
  color: var(--fg);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-tap-highlight-color: transparent;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg, video { max-width: 100%; height: auto; display: block; }

a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

::selection { background: var(--blue-200); color: var(--fg); }

h1, h2, h3, h4, h5 {
  margin: 0;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--fg);
  font-weight: 700;
}
h1 { font-family: var(--font-display); font-size: clamp(2.2rem, 4.5vw, 3.5rem); letter-spacing: -0.02em; text-transform: uppercase; }
h2 { font-family: var(--font-display); font-size: clamp(1.5rem, 2.8vw, 2.2rem); text-transform: uppercase; letter-spacing: 0.01em; }
h3 { font-size: clamp(1.1rem, 1.8vw, 1.35rem); }
p { margin: 0 0 1em 0; color: var(--fg-soft); }

/* ---------- skip link ---------- */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 8px;
  background: var(--blue-500);
  color: var(--white);
  padding: 8px 12px;
  border-radius: var(--r-sm);
  z-index: 200;
}
.skip-link:focus { left: 8px; }

/* ---------- focus visible ---------- */
:focus-visible {
  outline: 3px solid var(--blue-500);
  outline-offset: 2px;
  border-radius: 2px;
}

/* ---------- layout ---------- */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}
.container-sm { max-width: 760px; }
.container-prose { max-width: 720px; }

section { padding: 80px 0; }
section.tight { padding: 48px 0; }

.section-head {
  max-width: 720px;
  margin: 0 auto 40px;
  text-align: center;
}
.section-head.left { text-align: left; margin-left: 0; }
.section-head p { color: var(--muted); margin-top: 12px; }

/* ---------- eyebrow / kicker ---------- */
.eyebrow, .section-kicker {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue-500);
  font-weight: 700;
  background: rgba(26, 133, 255, 0.08);
  padding: 5px 10px;
  border-radius: var(--r-pill);
}

.lede {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 60ch;
}

.muted { color: var(--muted-2); }

/* ---------- buttons (44px touch targets) ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 12px 20px;
  border-radius: var(--r-pill);
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  transition: transform 0.12s ease, background 0.15s ease, color 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
  white-space: nowrap;
  text-align: center;
  text-decoration: none;
}
.btn:hover { text-decoration: none; }
.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--blue-500);
  color: var(--white);
  box-shadow: var(--shadow-blue);
}
.btn-primary:hover { background: var(--blue-600); color: var(--white); box-shadow: 0 10px 28px rgba(26, 133, 255, 0.32); }

.btn-secondary {
  background: var(--fg);
  color: var(--white);
}
.btn-secondary:hover { background: #2a2a2a; }

.btn-outline {
  background: transparent;
  color: var(--fg);
  border-color: var(--border-2);
}
.btn-outline:hover { border-color: var(--fg); background: rgba(26,26,26,0.04); }

.btn-ghost {
  background: transparent;
  color: var(--fg);
}
.btn-ghost:hover { background: var(--surface-3); }

.btn--lg {
  min-height: 52px;
  padding: 14px 28px;
  font-size: 1rem;
}

.btn--sm {
  padding: 8px 14px;
  font-size: 0.85rem;
  min-height: 36px;
}

.btn-block { width: 100%; }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }

/* ---------- cards ---------- */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 24px;
  box-shadow: var(--shadow-1);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.card h3 { margin: 0; }
.card .card-sub { color: var(--muted); font-size: 0.95rem; margin: 0; }
.card .card-foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; }

.card-soft { background: var(--surface-2); box-shadow: none; }

/* ==========================================================================
   HEADER / NAV — clean sporty sticky + hamburger mobile
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 64px;
}

.nav-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--fg);
  line-height: 0;
  text-decoration: none;
}
.nav-brand:hover { text-decoration: none; }

.nav-brand img {
  height: 44px;
  width: auto;
  border-radius: 50%;
}

.nav-brand .brand-text {
  white-space: nowrap;
}


.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.nav-link {
  padding: 8px 12px;
  border-radius: var(--r-sm);
  font-size: 0.93rem;
  color: var(--fg-soft);
  font-weight: 500;
  text-decoration: none;
  transition: color 0.15s ease, background 0.15s ease;
}
.nav-link:hover { background: var(--surface-3); color: var(--fg); text-decoration: none; }
.nav-link.active { color: var(--blue-500); font-weight: 700; }

.nav-cta { margin-left: 8px; }

.nav-toggle {
  display: none;
}

/* Mobile hamburger */
@media (max-width: 860px) {
  .site-header {
    background: var(--white);
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .nav { gap: 12px; height: 60px; }

  .nav-links {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 16px 24px 20px;
    margin: 0;
    border-top: 1px solid var(--border);
    box-shadow: var(--shadow-2);
    z-index: 60;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.18s ease, transform 0.18s ease;
  }

  .nav-links.open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    background: var(--white);
  }

  .nav-link {
    background: var(--white);
    padding: 14px 12px;
    font-size: 1rem;
    border-bottom: 1px solid var(--border);
    border-radius: 0;
  }

  .nav-cta { margin: 12px 0 0 0; }

  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: var(--r-sm);
  }

  .nav-toggle .bar,
  .nav-toggle .bar::before,
  .nav-toggle .bar::after {
    content: '';
    display: block;
    width: 18px;
    height: 2px;
    background: var(--fg);
    position: relative;
  }
  .nav-toggle .bar::before { position: absolute; top: -6px; }
  .nav-toggle .bar::after { position: absolute; top: 6px; }
}

/* ==========================================================================
   HERO — dark sporty editorial with bike backdrop
   ========================================================================== */
.hero--editorial {
  position: relative;
  isolation: isolate;
  padding: clamp(100px, 15vw, 200px) 0 clamp(90px, 13vw, 160px);
  background: var(--surface-dark);
  overflow: hidden;
  text-align: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 34px;
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 3;
  max-width: 880px;
  margin: 0 auto;
}

.hero--editorial h1 {
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6rem);
  letter-spacing: -0.03em;
  line-height: 0.98;
  max-width: 880px;
  margin: 0 auto 16px;
  text-transform: uppercase;
  text-wrap: balance;
}

.hero--editorial .hero-copy .lede {
  max-width: 540px;
  margin: 0 auto 28px;
  font-size: clamp(1.05rem, 1.4vw, 1.15rem);
  color: rgba(255,255,255,.88);
  text-shadow: 0 1px 3px rgba(0,0,0,.5);
}

.hero--editorial .btn-row { justify-content: center; }

.hero--editorial .btn--outline {
  color: var(--white);
  border-color: rgba(255,255,255,.6);
  background: rgba(255,255,255,.06);
}
.hero--editorial .btn--outline:hover {
  color: var(--white);
  border-color: var(--white);
  background: rgba(255,255,255,.14);
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(11,26,46,.18) 0%, rgba(11,26,46,.82) 100%), url('/images/bike-hero.webp') center top / cover no-repeat;
}
.hero-backdrop::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--overlay-hero);
}

.hero-eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue-400);
  background: rgba(255,107,43,.1);
  border: 1px solid rgba(255,107,43,.2);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.hero-eyebrow--dark { color: var(--blue-400); background: rgba(255,107,43,.1); border: 1px solid rgba(255,107,43,.2); }

/* ==========================================================================
   PAGE HERO — light gradient for inner pages
   ========================================================================== */
.page-hero {
  padding: 88px 0 44px;
  background: radial-gradient(60% 60% at 100% 0%, var(--blue-50) 0%, transparent 60%), var(--bg);
  border-bottom: 1px solid var(--border);
}
.page-hero h1 { max-width: 20ch; }
.page-hero p.lede { margin-top: 16px; max-width: 60ch; }

/* ==========================================================================
   TRUST BAR
   ========================================================================== */
.trust-bar {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}
.trust-bar-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 32px;
  padding: 16px 0;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--fg);
}
.trust-item svg { flex: none; color: var(--blue-500); }

/* ==========================================================================
   STATS STRIP
   ========================================================================== */
.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  text-align: center;
}
@media (min-width: 700px) { .stats { grid-template-columns: repeat(4, 1fr); } }
.stat-value { font-family: var(--font-display); font-size: 2rem; font-weight: 800; color: var(--blue-500); letter-spacing: -0.02em; }
.stat-label { font-size: 0.9rem; color: var(--muted); margin-top: 4px; text-transform: uppercase; letter-spacing: 0.06em; font-weight: 500; }

/* ==========================================================================
   POST CARDS — editorial magazine style
   ========================================================================== */
.feature-grid, .archive-grid, .group-grid { display: grid; gap: 18px; grid-template-columns: 1fr; }
.feature-grid--editorial .post-card { min-height: 340px; }
.feature-grid--editorial .read-more { align-self: end; }

.post-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 40px;
  min-height: 320px;
  padding: 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-1);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.post-card:hover {
  border-color: var(--blue-300);
  box-shadow: var(--shadow-2);
  transform: translateY(-3px);
}

.post-card-thumb {
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: center;
  border-radius: var(--r-md);
  margin-bottom: 8px;
}

.post-card--featured {
  background: linear-gradient(180deg, var(--blue-50) 0%, var(--white) 100%);
  border-color: var(--blue-200);
}

.post-card h2 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.8vw, 2.2rem);
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin-top: 12px;
  max-width: 520px;
  text-wrap: balance;
}
.post-card h2 a { color: var(--fg); text-decoration: none; }
.post-card h2 a:hover { color: var(--blue-500); }
.post-card p { max-width: 440px; color: var(--muted); }

.post-card time, .article time { display: block; font-size: .82rem; color: var(--muted); font-family: var(--font-mono); letter-spacing: 0.04em; }

.post-index, .post-category {
  font-family: var(--font-mono);
  font-size: .75rem;
  color: var(--blue-500);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: 700;
}

.read-more {
  color: var(--blue-500);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  margin-top: auto;
  transition: gap 0.2s ease;
}
.read-more .icon { transition: transform 0.2s ease; }
a:hover > .read-more .icon, .read-more:hover .icon { transform: translate(3px, -3px); }

@media (min-width: 760px) {
  .feature-grid { grid-template-columns: 1fr 1fr 1fr; }
  .post-card--featured { min-height: 440px; }
  .archive-grid { grid-template-columns: repeat(2, 1fr); }
  .group-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ==========================================================================
   SPLIT HEADING — dark section
   ========================================================================== */
.split-heading {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: end;
}
.split-heading h2 {
  color: var(--fg);
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  letter-spacing: -.03em;
  text-transform: uppercase;
  margin-top: 15px;
  text-wrap: balance;
}
.split-heading p { color: var(--muted); max-width: 380px; }

.section--dark { background: var(--surface-dark); }
.section--dark .split-heading h2 { color: var(--white); }
.section--dark .split-heading p { color: rgba(255,255,255,.82); }
.section--dark .hero-eyebrow--dark { color: var(--blue-400); }

.route-list { margin-top: 60px; }
.route-list a, .social-list a {
  display: grid;
  grid-template-columns: 1fr auto 24px;
  gap: 16px;
  align-items: center;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,.15);
  color: white;
  text-decoration: none;
  transition: border-color 0.15s ease;
}
.route-list a:hover, .social-list a:hover { text-decoration: none; border-top-color: rgba(255,107,43,.4); }
.route-list span, .social-list span { color: var(--muted-3); font-size: .82rem; font-family: var(--font-mono); letter-spacing: 0.04em; }
.route-list strong, .social-list b { font-size: 1.1rem; }
.route-arrow { width: 22px; height: 22px; color: var(--blue-400); justify-self: end; transition: transform 0.2s ease; }
.route-list a:hover .route-arrow { transform: translate(3px, -3px); }

/* ==========================================================================
   SUPPORT / PARTNERSHIP SECTION
   ========================================================================== */
.section--support { background: var(--surface); }
.support-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: end;
  gap: 28px;
}
.support-box h2 { font-family: var(--font-display); font-size: clamp(2rem, 5vw, 4rem); letter-spacing: -.03em; text-transform: uppercase; max-width: 560px; text-wrap: balance; }
.support-box p { max-width: 500px; }

@media (min-width: 760px) {
  .split-heading { grid-template-columns: 1fr 380px; }
}

/* ==========================================================================
   STRAVA CARD
   ========================================================================== */
.strava-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-1);
  text-decoration: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.strava-card:hover {
  border-color: var(--blue-500);
  box-shadow: var(--shadow-2);
  transform: translateY(-2px);
  text-decoration: none;
}
.strava-card__media {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  border-radius: var(--r-sm);
  background: var(--blue-500);
  color: var(--white);
}
.strava-card__body { flex: 1 1 auto; min-width: 0; display: flex; flex-direction: column; }
.strava-card__kicker {
  color: var(--blue-500);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .68rem;
  font-weight: 800;
  font-family: var(--font-mono);
}
.strava-card__title { color: var(--fg); font-weight: 700; font-size: 1.05rem; text-decoration: none; }
.strava-card__cta {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--blue-500);
  font-weight: 700;
  font-size: .9rem;
  white-space: nowrap;
}
.strava-card__cta svg { transition: transform 0.2s ease; }
.strava-card:hover .strava-card__cta svg { transform: translate(3px, -3px); }

/* ==========================================================================
   STEPS — CSS counters
   ========================================================================== */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  counter-reset: step;
}
.step {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 28px;
  counter-increment: step;
}
.step .num {
  position: absolute;
  top: 20px;
  right: 20px;
  font-family: var(--font-display);
  color: var(--blue-500);
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  background: rgba(255,107,43,.08);
  border-radius: var(--r-pill);
  padding: 4px 10px;
  text-transform: uppercase;
}
.step .num::before { content: 'STEP 0' counter(step); }
.step h3 { font-size: 1.05rem; margin-top: 6px; }
.step p { color: var(--muted); font-size: 0.95rem; margin: 8px 0 0 0; }

.step.step--final { background: var(--surface-2); }
@media (min-width: 901px) { .step.step--final { grid-column: 1 / -1; } }
@media (max-width: 900px) { .steps { grid-template-columns: 1fr; } }

/* ==========================================================================
   FAQ — <details> accordion
   ========================================================================== */
.faq {
  display: grid;
  gap: 8px;
  max-width: 760px;
}
.faq details {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 18px 20px;
  transition: border-color 0.15s ease;
}
.faq details[open] { border-color: var(--blue-500); }
.faq summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  color: var(--fg);
  min-height: 44px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '';
  width: 14px;
  height: 14px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231f2a37' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform 0.18s ease;
}
.faq details[open] summary::after { transform: rotate(180deg); }
.faq .body, .faq .faq-a { color: var(--muted); font-size: 0.95rem; line-height: 1.65; margin-top: 10px; padding: 0; }

/* ==========================================================================
   CITY / AREA CHIPS
   ========================================================================== */
.city-grid { display: flex; flex-wrap: wrap; gap: 8px; }
.areas .chip, .city-chip {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 14px;
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  background: var(--surface);
  font-size: 0.88rem;
  color: var(--fg-soft);
  font-weight: 500;
  transition: border-color 0.15s ease, color 0.15s ease;
}
.areas .chip:hover, .city-chip:hover {
  border-color: var(--blue-500);
  color: var(--blue-600);
  text-decoration: none;
}

/* ==========================================================================
   CTA BAND — full-width blue gradient
   ========================================================================== */
.cta-band {
  background: linear-gradient(135deg, var(--blue-500) 0%, var(--blue-700) 100%);
  color: var(--white);
  padding: 80px 0;
  text-align: center;
}
.cta-band h2 { color: var(--white); }
.cta-band p { color: rgba(255,255,255,.88); max-width: 560px; margin: 0 auto 24px; }
.cta-band .btn-primary { background: var(--white); color: var(--blue-700); box-shadow: 0 6px 20px rgba(0,0,0,.15); }
.cta-band .btn-primary:hover { background: var(--surface-2); }
.cta-band .note { margin-top: 16px; font-size: 0.9rem; color: rgba(255,255,255,.75); }

/* ==========================================================================
   BANNER BLOCKS
   ========================================================================== */
.banner-cyan, .banner-blue {
  background: linear-gradient(135deg, var(--blue-500), var(--blue-700));
  color: var(--white);
  border-radius: var(--r-md);
  padding: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.banner-cyan.center, .banner-blue.center { text-align: center; }
.banner-cyan.center .btn-primary, .banner-blue.center .btn-primary { display: block; width: max-content; margin: 0 auto; }
.banner-cyan h2, .banner-blue h2 { color: var(--white); }
.banner-cyan p, .banner-blue p { color: rgba(255,255,255,.88); margin: 8px 0 0 0; }
.banner-cyan .btn-primary, .banner-blue .btn-primary { background: var(--white); color: var(--blue-700); }
.banner-cyan .btn-primary:hover, .banner-blue .btn-primary:hover { background: var(--surface-2); }

.banner-pink {
  background: var(--pink);
  color: var(--white);
  border-radius: var(--r-md);
  padding: 36px;
  text-align: center;
}
.banner-pink h2 { color: var(--white); }
.banner-pink p { color: rgba(255,255,255,.9); margin: 12px auto 0; max-width: 50ch; }
.banner-pink .btn { background: var(--white); color: var(--pink); }
.banner-pink .btn:hover { background: var(--surface-2); }

/* ==========================================================================
   INSTAGRAM BAND
   ========================================================================== */
.instagram-band {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 32px 24px;
  background: linear-gradient(135deg, rgba(26, 133, 255, 0.04) 0%, rgba(0, 102, 230, 0.03) 50%, rgba(0, 77, 179, 0.04) 100%);
  border: 1px solid rgba(26, 133, 255, 0.12);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-1);
}
.instagram-band__icon { flex: 0 0 auto; }
.instagram-band__body { flex: 1 1 auto; min-width: 0; display: flex; flex-direction: column; }
.instagram-band__handle { font-family: var(--font-display); font-size: 1.3rem; font-weight: 800; color: var(--fg); letter-spacing: -0.01em; text-transform: uppercase; }
.instagram-band__followers {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--blue-500);
}
.instagram-band__copy { margin-top: 8px; color: var(--muted); font-size: 0.92rem; max-width: 420px; }

.btn--instagram {
  flex: 0 0 auto;
  background: linear-gradient(135deg, var(--blue-500), var(--blue-700));
  color: var(--white);
  font-weight: 700;
  white-space: nowrap;
  box-shadow: var(--shadow-blue);
}
.btn--instagram:hover { background: linear-gradient(135deg, var(--blue-600), var(--blue-700)); color: var(--white); box-shadow: 0 10px 28px rgba(26,133,255,.3); }

@media (max-width: 639px) {
  .instagram-band { flex-direction: column; text-align: center; align-items: center; gap: 16px; }
  .instagram-band__body { align-items: center; }
  .instagram-band__copy { text-align: center; }
}

/* ==========================================================================
   YOUTUBE BANNER — site-wide, dismissible
   ========================================================================== */
.yt-banner-wrap {
  position: relative;
  z-index: 49;
}

.yt-banner {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 56px 12px 24px;
  background: linear-gradient(90deg, #0b1a2e 0%, #132d4a 55%, #1a3d62 100%);
  color: var(--white);
  text-decoration: none;
  border-bottom: 1px solid rgba(26, 133, 255, 0.3);
}
.yt-banner:hover { text-decoration: none; }

.yt-banner__icon { flex: 0 0 auto; display: inline-flex; }

.yt-banner__text {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}
.yt-banner__text strong { font-weight: 700; font-size: 0.95rem; letter-spacing: -0.01em; }
.yt-banner__desc {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.72);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.yt-banner__cta {
  flex: 0 0 auto;
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: var(--r-pill);
  background: var(--blue-500);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 700;
  white-space: nowrap;
  transition: transform 0.12s ease, box-shadow 0.15s ease;
}
.yt-banner__cta .icon { width: 14px; height: 14px; }
.yt-banner:hover .yt-banner__cta { transform: translateY(-1px); box-shadow: 0 6px 16px rgba(26, 133, 255, 0.35); }

.yt-banner-close {
  position: absolute;
  top: 50%;
  margin-top: -16px;
  right: 12px;
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  font-size: 1.3rem;
  line-height: 1;
  transition: background 0.15s ease;
}
.yt-banner-close:hover { background: rgba(255, 255, 255, 0.22); }

.yt-banner--hidden,
.yt-banner-wrap.yt-banner--hidden { display: none; }

@media (max-width: 639px) {
  .yt-banner { padding: 10px 48px 10px 16px; gap: 10px; }
  .yt-banner__desc { display: none; }
  .yt-banner__cta { display: none; }
}

/* ==========================================================================
   FOOTER — dark panel sporty
   ========================================================================== */
.site-footer {
  background: var(--surface-dark);
  color: rgba(255,255,255,.78);
  padding: 56px 0 24px;
  font-size: 0.92rem;
}
.site-footer a { color: rgba(255,255,255,.78); text-decoration: none; transition: color 0.15s ease; }
.site-footer a:hover { color: var(--blue-400); }

.footer-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: 1.4fr repeat(2, 1fr);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.footer-brand-logo { display: block; height: 44px; width: auto; border-radius: 50%; }

.footer-brand p {
  color: rgba(255,255,255,.6);
  font-size: 0.92rem;
  max-width: 36ch;
  margin: 0;
}

.footer-col h4 {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.9rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
  font-size: 0.92rem;
}

.footer-bottom {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: rgba(255,255,255,.55);
}

@media (max-width: 800px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 500px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   CONTACT GRID
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 32px;
  align-items: start;
}
.email-link { color: var(--blue-500); font-size: clamp(1.3rem, 3vw, 2rem); font-weight: 700; }

.social-list a {
  display: grid;
  grid-template-columns: 1fr auto 24px;
  gap: 16px;
  align-items: center;
  padding: 20px 0;
  border-top: 1px solid var(--border);
  color: var(--fg);
  text-decoration: none;
  transition: border-color 0.15s ease;
}
.social-list a:hover { text-decoration: none; border-top-color: var(--blue-300); }
.social-list span { color: var(--muted); font-size: .82rem; font-family: var(--font-mono); letter-spacing: 0.04em; }
.social-list b { font-weight: 700; }
.social-arrow { width: 20px; height: 20px; color: var(--blue-500); justify-self: end; transition: transform 0.2s ease; }
.social-list a:hover .social-arrow { transform: translate(3px, -3px); }

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   ABOUT / PROSE
   ========================================================================== */
.prose { max-width: 720px; color: var(--fg-soft); }
.prose h1 { font-size: clamp(1.8rem, 3.4vw, 2.4rem); margin-bottom: 8px; }
.prose h2 { font-size: 1.25rem; margin: 40px 0 10px; color: var(--fg); }
.prose p, .prose li { color: var(--fg-soft); line-height: 1.7; }
.prose .intro { font-size: clamp(1.4rem, 3vw, 2.1rem); color: var(--fg); line-height: 1.35; font-weight: 500; }
.prose--wide { max-width: 800px; }

.about-links { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 36px; }

/* ==========================================================================
   ARTICLE / POST CONTENT
   ========================================================================== */
.article { padding: 80px 0 120px; }
.article h1 { font-family: var(--font-display); font-size: clamp(3rem, 8vw, 6rem); letter-spacing: -.03em; text-transform: uppercase; margin-top: 20px; text-wrap: balance; }
.article-body {
  border-top: 1px solid var(--border);
  margin-top: 48px;
  padding-top: 32px;
  font-size: 1.15rem;
}
.back-link { display: block; margin-bottom: 70px; font-weight: 700; color: var(--blue-500); }

.post-gallery { display: grid; gap: 16px; margin: 24px 0; }
.post-gallery img { width: 100%; border-radius: var(--r-md); }
.post-figure { margin: 0; }
.post-embeds { display: grid; gap: 24px; margin: 24px 0; }

/* YouTube */
.youtube-embed { margin: 16px 0; }
.youtube-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-2);
  background: var(--surface-dark);
}
.youtube-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Video showcase — featured embed on landing */
.video-showcase {
  padding: 48px 0 0;
}
.video-showcase .section-head {
  text-align: center;
  margin-bottom: 24px;
}
.video-showcase .youtube-wrapper {
  max-width: 960px;
  margin: 0 auto;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-3);
}
  height: 100%;
  border: 0;
}

/* Instagram embeds */
.post-embeds--instagram { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 560px) { .post-embeds--instagram { grid-template-columns: repeat(2, 1fr); } }
.post-embeds--instagram .instagram-media {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  margin: 0 !important;
}

/* ==========================================================================
   GROUP CARDS
   ========================================================================== */
.group-card {
  padding: 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-1);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.group-card:hover {
  border-color: var(--blue-300);
  box-shadow: var(--shadow-2);
  transform: translateY(-2px);
}
.group-card h2 { margin-top: 24px; }
.group-card a { font-weight: 700; color: var(--blue-500); }
.group-card a:hover { text-decoration: underline; }

/* ==========================================================================
   REVEAL ANIMATIONS — IntersectionObserver
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ==========================================================================
   UTILITY
   ========================================================================== */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }

.icon {
  flex: none;
  width: 1em;
  height: 1em;
  vertical-align: -0.125em;
  display: inline-block;
}

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* ==========================================================================
   BREADCRUMB
   ========================================================================== */
.breadcrumb { font-size: 0.88rem; color: var(--muted); padding: 16px 0 0; }
.breadcrumb a { color: var(--muted); transition: color 0.15s ease; }
.breadcrumb a:hover { color: var(--blue-500); }
.breadcrumb span[aria-current] { color: var(--fg); font-weight: 600; }

/* ==========================================================================
   PRICE TABLE
   ========================================================================== */
.price-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.97rem;
}
.price-table th, .price-table td {
  text-align: left;
  padding: 12px 8px;
  border-bottom: 1px solid var(--border);
}
.price-table th { color: var(--muted); font-weight: 600; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.04em; }
.price-table td:last-child { text-align: right; font-weight: 700; color: var(--fg); white-space: nowrap; }
.price-table tr:last-child td { border-bottom: none; }
.price-note { font-size: 0.85rem; color: var(--muted); margin-top: 12px; }

/* ==========================================================================
   BADGE
   ========================================================================== */
.badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: 999px;
  background: rgba(22, 163, 74, 0.10);
  color: var(--green);
  letter-spacing: 0.04em;
}
.badge--info { background: rgba(26, 133, 255, 0.10); color: var(--blue-500); }

/* ==========================================================================
   COMPARISON TABLE
   ========================================================================== */
.compare { display: grid; gap: 24px; }
@media (min-width: 700px) { .compare { grid-template-columns: 1fr 1fr; } }
.compare-col { border-radius: var(--r-md); padding: 24px; }
.compare-col--us { background: rgba(22, 163, 74, 0.06); border: 2px solid var(--green); }
.compare-col--them { background: var(--surface-2); border: 1px solid var(--border); }
.compare-col h3 { display: flex; align-items: center; gap: 8px; }
.compare-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.compare-col li { display: flex; align-items: center; gap: 8px; font-size: 0.95rem; }
.ok { color: var(--green); }
.no { color: var(--pink); }
.mid { color: var(--muted); }

/* ==========================================================================
   TIPS GRID
   ========================================================================== */
.tip-card { transition: box-shadow 0.18s ease, transform 0.18s ease; }
.tip-card:hover { box-shadow: var(--shadow-2); transform: translateY(-2px); }
.tip-category { font-family: var(--font-mono); font-size: 0.75rem; font-weight: 700; color: var(--blue-500); text-transform: uppercase; letter-spacing: 0.06em; }

/* ==========================================================================
   NO-JS FALLBACK — show .reveal content if JS fails to load
   ========================================================================== */
noscript + .reveal,
noscript ~ .reveal { opacity: 1 !important; transform: none !important; }

/* ==========================================================================
   REDUCED MOTION
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}
