/* ============================================================
   THE CLUB — Landing page styles
   Scoped to the standalone campaign landing pages (.lp-*).
   Loaded AFTER css/styles.css and inherits its tokens: --red,
   --ink, --charcoal, --muted, --font-sans, --radius, shadows.
   Nothing here changes the main site.
   ============================================================ */

.lp-body { background: var(--white); }

/* The main site's sticky-header offset doesn't apply here — there is no header. */
.lp-body { scroll-padding-top: 1.5rem; }

.lp-container { width: min(1120px, 100% - 2.5rem); margin-inline: auto; }
.lp-narrow { width: min(820px, 100% - 2.5rem); }
.lp-section { position: relative; }

/* ============================================================
   1. DEADLINE BAR + COUNTDOWN
   ============================================================ */
.lp-bar {
  background: var(--ink);
  color: var(--white);
  border-bottom: 3px solid var(--red);
}
.lp-bar-inner {
  width: min(1120px, 100% - 2.5rem);
  margin-inline: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem 1.5rem;
  padding: 0.65rem 0;
}
.lp-bar-title { display: flex; flex-direction: column; gap: 0.1rem; }
.lp-bar-kicker {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ff6b6f;
}
.lp-bar-deadline { font-size: 0.85rem; font-weight: 600; color: #e9e9ee; }

.lp-cd-label {
  margin-left: auto;
  padding-right: 0.15rem;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: #ff8589;
  white-space: nowrap;
}
.lp-countdown { display: flex; align-items: center; gap: 0.35rem; }
.lp-cd-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 46px;
  padding: 0.3rem 0.35rem;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
}
.lp-cd-num {
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  color: var(--white);
}
.lp-cd-lbl {
  margin-top: 0.15rem;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #a9a9b2;
}
.lp-cd-sep { color: #55555e; font-weight: 800; }

/* Closed state — swapped in by js/landing.js after the deadline */
.lp-bar.is-closed { background: var(--charcoal); }
.lp-bar-closed {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.25rem 0.8rem;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.1);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
}

@media (max-width: 560px) {
  .lp-bar-inner { justify-content: center; text-align: center; padding: 0.55rem 0 0.65rem; }
  .lp-bar-title { align-items: center; }
  .lp-bar-deadline { font-size: 0.78rem; }
  .lp-cd-unit { min-width: 42px; }
  /* On a phone the bar stacks, so the label sits centred above the digits
     instead of being pushed to the right-hand end of the row. */
  .lp-cd-label { margin-left: 0; width: 100%; text-align: center; padding-right: 0; }
}

/* ============================================================
   2–4. HERO / VSL / PRIMARY CTA
   ============================================================ */
/* The hero is light so the dark case-study section below it reads as a
   deliberate, high-contrast block rather than more of the same. Page
   rhythm: dark bar → LIGHT hero → DARK results → light offer. */
.lp-hero {
  position: relative;
  overflow: hidden;
  background: var(--white);
  color: var(--ink);
  padding: clamp(1.4rem, 3.5vw, 2.3rem) 0 clamp(2.6rem, 6vw, 4rem);
}
.lp-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1100px 520px at 50% -12%, rgba(217, 22, 28, 0.09), transparent 60%),
    linear-gradient(180deg, #ffffff 0%, var(--bg-soft) 100%);
}
.lp-hero-bg::after {
  /* the same diagonal texture, inverted for a light ground */
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(115deg, rgba(23,23,27,0.026) 0 2px, transparent 2px 9px);
}
.lp-hero-inner { position: relative; text-align: center; }

.lp-hero-logo { display: inline-block; margin-bottom: clamp(0.7rem, 1.8vw, 1.05rem); }
.lp-hero-logo img { width: 96px; height: auto; }

.lp-eyebrow {
  margin-bottom: 0.6rem;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #ff8589;  /* default: the dark final-CTA section */
}
/* The hero is light, so its eyebrow needs the dark red instead. Scoped,
   because the same class sits on the dark final CTA further down. */
.lp-hero .lp-eyebrow { color: var(--red-dark); }
.lp-hero h1 {
  /* 30ch keeps the headline to two lines with the manual <br>; narrower
     values push it to three and shove the CTA further below the fold. */
  max-width: 30ch;
  margin-inline: auto;
  color: var(--ink);
  font-size: clamp(1.95rem, 4.2vw, 3.1rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
}
.lp-hero-sub {
  max-width: 60ch;
  margin: 0.85rem auto 0;
  font-size: clamp(1rem, 1.6vw, 1.12rem);
  line-height: 1.6;
  color: var(--body);
}
.lp-hero-sub strong { color: var(--ink); }
.lp-br { display: none; }
@media (min-width: 720px) { .lp-br { display: inline; } }

/* ---------- VSL ---------- */
.lp-vsl { margin: clamp(1.2rem, 2.5vw, 1.7rem) auto 0; max-width: 680px; }
.lp-video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  background: #0d0d10;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
}
.lp-video-frame > iframe,
.lp-video-frame > video,
.lp-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  object-fit: cover;
}
.lp-video-placeholder {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1.5rem;
  border: 0;
  cursor: pointer;
  background: transparent;
  font-family: inherit;
  color: var(--white);
}
.lp-video-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.34;
  filter: grayscale(0.3);
}
.lp-play {
  position: relative;
  display: grid;
  place-items: center;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 10px 30px rgba(217, 22, 28, 0.5);
  transition: transform 0.25s ease, background 0.25s ease;
}
.lp-play svg { width: 34px; height: 34px; margin-left: 4px; }
.lp-video-placeholder:hover .lp-play { transform: scale(1.07); background: var(--red-dark); }
.lp-video-placeholder:focus-visible { outline: 3px solid rgba(255, 255, 255, 0.7); outline-offset: -6px; }
.lp-video-caption { position: relative; display: flex; flex-direction: column; gap: 0.35rem; }
.lp-video-caption strong { font-size: 1.02rem; font-weight: 700; }
.lp-video-note {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ff8589;
}
@media (max-width: 560px) {
  .lp-play { width: 62px; height: 62px; }
  .lp-play svg { width: 27px; height: 27px; }
  .lp-video-caption strong { font-size: 0.92rem; }
}

.lp-video-fallback {
  margin-top: 0.7rem;
  text-align: center;
  font-size: 0.85rem;
  color: var(--muted);
}
.lp-video-fallback a { color: var(--red-dark); text-decoration: underline; }

/* ---------- CTA block ---------- */
.lp-cta-wrap { margin-top: clamp(1.2rem, 2.4vw, 1.6rem); text-align: center; }
.lp-btn-xl {
  padding: 1.15rem 2.6rem;
  font-size: clamp(1rem, 1.5vw, 1.12rem);
  font-weight: 800;
  letter-spacing: 0.01em;
  min-height: 60px;
  border-radius: 10px;
}
@media (max-width: 560px) {
  .lp-btn-xl { width: 100%; padding-inline: 1.2rem; }
}
.lp-cta-support {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.3rem 0.6rem;
  margin-top: 0.95rem;
  font-size: 0.9rem;
  color: var(--muted);
}
.lp-cta-support strong { color: var(--ink); }
.lp-dot { color: #b9b9c1; }

.lp-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem 0.7rem;
  margin-top: clamp(1.3rem, 2.4vw, 1.7rem);
  padding: 0;
}
.lp-trust li {
  padding: 0.45rem 0.95rem;
  border: 1px solid var(--line);
  border-radius: 100px;
  background: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--body);
}

/* ============================================================
   5. SOCIAL PROOF
   ============================================================ */
.lp-proof-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 1.6rem;
}
@media (max-width: 800px) { .lp-proof-grid { grid-template-columns: 1fr; } }

.lp-proof {
  position: relative;
  margin: 0;
  padding: 1.6rem 1.6rem 1.6rem 3.6rem;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: var(--charcoal-2);
}
/* Oversized opening quote mark, like the graphic these came from */
.lp-proof::before {
  content: "\201C";
  position: absolute;
  left: 1.1rem;
  top: 0.55rem;
  font-family: var(--font-serif);
  font-size: 3.6rem;
  line-height: 1;
  color: var(--red);
}
@media (max-width: 520px) {
  .lp-proof { padding: 1.4rem 1.3rem 1.4rem 1.3rem; }
  .lp-proof::before { position: static; display: block; margin-bottom: -0.6rem; }
}
/* ---------- Case study ---------- */
.lp-case {
  margin-bottom: clamp(1.6rem, 3vw, 2.4rem);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: var(--charcoal-2);
  overflow: hidden;
}
.lp-case-head {
  padding: 1.5rem clamp(1.3rem, 3vw, 2rem) 1.3rem;
  border-bottom: 1px solid var(--line-dark);
  background: rgba(0, 0, 0, 0.22);
}
.lp-case-tag {
  display: inline-block;
  margin-bottom: 0.55rem;
  padding: 0.25rem 0.7rem;
  border-radius: 100px;
  background: var(--red);
  color: var(--white);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.lp-case-head h3 {
  color: var(--white);
  font-size: clamp(1.4rem, 3vw, 1.95rem);
  letter-spacing: -0.015em;
  margin-bottom: 0.25rem;
}
.lp-case-head p { font-size: 0.88rem; font-weight: 700; color: #a9a9b2; }

.lp-case-body {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(1.2rem, 3vw, 2.2rem);
  padding: clamp(1.3rem, 3vw, 2rem);
  align-items: start;
}
@media (max-width: 860px) {
  .lp-case-body { grid-template-columns: 1fr; }
  /* 600px keeps the 1200px team photo sharp on high-density screens */
  .lp-case-photo.has-photo { width: 100%; max-width: 600px; }
}

.lp-case-photo {
  display: grid;
  place-items: center;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.05);
  border: 1px dashed var(--line-dark);
  overflow: hidden;
}
.lp-case-photo.has-photo { border-style: solid; padding: 0; aspect-ratio: 3 / 2; }  /* matches the team photo, so no one at the edges is cropped */
.lp-case-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.lp-case-photo-label {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #a9a9b2;
}

.lp-metrics { display: grid; gap: 1.15rem; }
.lp-metric-group + .lp-metric-group { padding-top: 1.15rem; border-top: 1px solid var(--line-dark); }
.lp-metric-group h4 {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.7rem;
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.lp-metric-icon { display: grid; place-items: center; color: var(--red); }
.lp-metric-icon svg { width: 17px; height: 17px; }
.lp-metric-group ul { display: grid; gap: 0.5rem; padding: 0; }
.lp-metric-group li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: baseline;
  gap: 0.5rem 0.9rem;
}
.m-name { font-size: 0.93rem; color: #c9c9cf; }
.m-val {
  font-size: 1.02rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
/* Green for numbers that went up, red for times that came down. Every row
   is an improvement either way, so colour alone would mislead — the
   percentage always spells out the direction ("7.1% faster", "61% heavier").
   That also keeps the meaning available to colour-blind readers, who cannot
   rely on a green/red distinction. */
.m-val.up { color: #4cb466; }   /* measured 5.31:1 on the card */
.m-val.down { color: #ff8589; }
.m-val::before { margin-right: 0.2rem; font-size: 0.85em; }
.m-val.up::before { content: "\2191"; }
.m-val.down::before { content: "\2193"; }
.m-pct {
  min-width: 8.5ch;
  text-align: right;
  font-size: 0.82rem;
  font-weight: 700;
  color: #a6a6af;
  white-space: nowrap;
}
@media (max-width: 480px) {
  .lp-metric-group li { grid-template-columns: minmax(0, 1fr) auto; }
  .m-pct { grid-column: 2; text-align: right; }
}

.lp-case-foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem 0.9rem;
  padding: 1.1rem clamp(1.3rem, 3vw, 2rem);
  border-top: 1px solid var(--line-dark);
  background: rgba(0, 0, 0, 0.22);
  font-size: 0.92rem;
  color: #c9c9cf;
}
.lp-case-foot strong { color: var(--white); letter-spacing: 0.01em; }
/* Stating the inclusion rule makes the numbers more credible, not less —
   it shows they weren't cherry-picked from the athletes who showed up most. */
.lp-case-method { font-size: 0.85rem; color: #a6a6af; }
.lp-proof blockquote {
  margin: 0;
  font-size: 1rem;
  line-height: 1.65;
  color: #d4d4da;
}
.lp-proof figcaption { margin-top: 1.1rem; }
.lp-proof .t-name {
  display: block;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ff8589;
}
.lp-proof .t-meta { display: block; margin-top: 0.15rem; font-size: 0.85rem; color: #a6a6af; }

/* ============================================================
   6. OFFER — facts, pricing, payments, guarantee
   ============================================================ */
/* 3x2 rather than a single row of 6 — six across is too cramped to read,
   and 6 items in a 5-column grid leaves an orphan on the second row. */
.lp-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}
@media (max-width: 900px) { .lp-facts { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 420px) { .lp-facts { grid-template-columns: 1fr; } }

.lp-fact {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.5rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}
.lp-fact-num {
  font-size: clamp(1.8rem, 3vw, 2.3rem);
  font-weight: 800;
  line-height: 1;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.lp-fact-lbl {
  margin-top: 0.4rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
}
.lp-fact-sub { margin-top: 0.45rem; font-size: 0.85rem; color: var(--muted); line-height: 1.45; }
.lp-fact--accent { background: var(--ink); border-color: var(--ink); }
.lp-fact--accent .lp-fact-num { color: var(--white); }
.lp-fact--accent .lp-fact-lbl { color: #ff8589; }
.lp-fact--accent .lp-fact-sub { color: #b9b9c1; }

/* ---------- Pricing ---------- */
.lp-pricing {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  max-width: 780px;
  margin: 0 auto clamp(1.6rem, 3vw, 2.2rem);
}
@media (max-width: 640px) { .lp-pricing { grid-template-columns: 1fr; } }

.lp-price-card {
  position: relative;
  padding: 1.9rem 1.5rem 1.6rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  text-align: center;
}
.lp-price-card--eb { border: 2px solid var(--red); box-shadow: 0 10px 30px rgba(217, 22, 28, 0.13); }
.lp-price-flag {
  position: absolute;
  top: -0.72rem;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.3rem 0.9rem;
  border-radius: 100px;
  background: var(--red);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}
.lp-price-flag--plain { background: var(--ink); }
.lp-price { display: flex; align-items: baseline; justify-content: center; gap: 0.15rem; }
.lp-price-amt { font-size: clamp(2.4rem, 5vw, 3rem); font-weight: 800; color: var(--ink); letter-spacing: -0.03em; }
.lp-price-per { font-size: 1.05rem; font-weight: 700; color: var(--muted); }
.lp-price-tax { margin-top: 0.15rem; font-size: 0.85rem; color: var(--muted); }
.lp-price-cond { margin-top: 0.9rem; font-size: 0.9rem; line-height: 1.5; color: var(--body); }

/* Early-bird expired state, applied by js/landing.js */
.lp-price-card.is-expired { opacity: 0.55; border-color: var(--line); border-width: 1px; box-shadow: none; }
.lp-price-card.is-expired .lp-price-flag { background: #8a8a93; }
.lp-price-card.is-expired .lp-price-amt { text-decoration: line-through; }

/* ---------- Payments ---------- */
.lp-payments {
  max-width: 780px;
  margin: 0 auto clamp(1.5rem, 3vw, 2rem);
  padding: 1.8rem 1.7rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}
.lp-payments h3 { font-size: 1.15rem; margin-bottom: 0.5rem; }
.lp-payments-intro { font-size: 0.95rem; color: var(--muted); margin-bottom: 1.3rem; }
.lp-pay-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; padding: 0; list-style: none; counter-reset: none; }
@media (max-width: 640px) { .lp-pay-list { grid-template-columns: 1fr; } }
.lp-pay-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 1rem;
  border-radius: var(--radius-sm);
  background: var(--bg-soft);
}
.lp-pay-n {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 800;
}
.lp-pay-when { font-size: 0.9rem; font-weight: 700; color: var(--ink); line-height: 1.35; }

/* ---------- Guarantee ---------- */
.lp-guarantee {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  max-width: 780px;
  margin: 0 auto clamp(1.8rem, 3.5vw, 2.4rem);
  padding: 1.7rem;
  border: 1px solid rgba(217, 22, 28, 0.25);
  border-left: 4px solid var(--red);
  border-radius: var(--radius);
  background: var(--red-tint);
}
.lp-guarantee-badge {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
}
.lp-guarantee-badge svg { width: 27px; height: 27px; }
.lp-guarantee h3 { font-size: 1.15rem; margin-bottom: 0.45rem; }
.lp-guarantee p { font-size: 0.96rem; line-height: 1.6; color: var(--body); }
@media (max-width: 560px) {
  .lp-guarantee { flex-direction: column; gap: 0.9rem; padding: 1.4rem; }
}

/* ============================================================
   7. SESSION TABS
   ============================================================ */
.lp-tabs {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line-dark);
  background: var(--charcoal-2);
}
.lp-tablist {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: rgba(0, 0, 0, 0.25);
}
@media (max-width: 800px) { .lp-tablist { grid-template-columns: repeat(2, 1fr); } }

.lp-tab {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.15rem;
  padding: 1.1rem 1.1rem 1rem;
  border: 0;
  border-bottom: 3px solid transparent;
  background: transparent;
  color: #a9a9b2;
  font-family: inherit;
  text-align: left;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.lp-tab + .lp-tab { box-shadow: inset 1px 0 0 rgba(255, 255, 255, 0.07); }
.lp-tab:hover { background: rgba(255, 255, 255, 0.05); color: #d4d4da; }
.lp-tab:focus-visible { outline: 3px solid rgba(255, 255, 255, 0.5); outline-offset: -3px; }
.lp-tab.is-active {
  background: var(--charcoal-2);
  border-bottom-color: var(--red);
  color: var(--white);
}
.lp-tab-n {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #ff6b6f;
}
.lp-tab-name { font-size: 0.97rem; font-weight: 700; line-height: 1.25; }
.lp-tab-time { font-size: 0.75rem; color: #8a8a93; }
.lp-tab.is-active .lp-tab-time { color: #a9a9b2; }

.lp-panels { padding: clamp(1.6rem, 3.5vw, 2.6rem); }
.lp-panel:focus-visible { outline: 3px solid rgba(255, 255, 255, 0.4); outline-offset: 4px; }
.lp-panel h3 {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.75rem;
  color: var(--white);
  font-size: clamp(1.25rem, 2.3vw, 1.6rem);
  margin-bottom: 0.7rem;
}
.lp-panel-time {
  padding: 0.22rem 0.65rem;
  border-radius: 100px;
  background: rgba(217, 22, 28, 0.22);
  color: #ff8589;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.lp-panel-lede { font-size: 1.04rem; line-height: 1.6; color: #d4d4da; margin-bottom: 1.4rem; }
.lp-panel-sub { margin: 1.5rem 0 1rem; color: #c9c9cf; }
.lp-panel-sub strong, .lp-panel-list strong { color: var(--white); }
.lp-panel-list { display: grid; gap: 0.75rem; padding: 0; }
.lp-panel-list li {
  position: relative;
  padding-left: 1.6rem;
  color: #b9b9c1;
  line-height: 1.6;
}
.lp-panel-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--red);
}
.lp-panel-foot {
  margin-top: 1.5rem;
  padding-top: 1.3rem;
  border-top: 1px solid var(--line-dark);
  font-size: 0.95rem;
  line-height: 1.65;
  color: #a9a9b2;
}

.lp-skill-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
@media (max-width: 700px) { .lp-skill-grid { grid-template-columns: 1fr; } }
.lp-skill {
  padding: 1.25rem 1.3rem;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.035);
}
.lp-skill h4 { color: var(--white); font-size: 1rem; margin-bottom: 0.4rem; }
.lp-skill p { font-size: 0.92rem; line-height: 1.6; color: #a9a9b2; }

.lp-callout {
  margin: 1.4rem 0;
  padding: 1.3rem 1.4rem;
  border-left: 4px solid var(--red);
  border-radius: var(--radius-sm);
  background: rgba(217, 22, 28, 0.1);
}
.lp-callout-tag {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: #ff8589;
}
.lp-callout p { font-size: 0.97rem; line-height: 1.65; color: #d4d4da; }
.lp-callout strong { color: var(--white); }

.lp-pattern-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.6rem; padding: 0; }
@media (max-width: 700px) { .lp-pattern-list { grid-template-columns: 1fr; } }
.lp-pattern-list li {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  padding: 0.75rem 0.95rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.04);
  border-left: 2px solid var(--red);
}
.lp-pattern-list strong { color: var(--white); font-size: 0.93rem; }
.lp-pattern-list span { font-size: 0.83rem; color: #a6a6af; line-height: 1.45; }  /* was #9a9aa3 — 4.41:1 */

/* ============================================================
   8. CTA BAND
   ============================================================ */
.lp-cta-band {
  padding: clamp(3rem, 6vw, 4.5rem) 0;
  background: var(--red);
  color: var(--white);
  text-align: center;
}
.lp-cta-band h2 { color: var(--white); margin-bottom: 0.7rem; }
.lp-cta-band > .lp-container > p { max-width: 54ch; margin: 0 auto 1.8rem; color: rgba(255, 255, 255, 0.92); font-size: 1.05rem; }
.lp-cta-band .btn--primary { background: var(--white); color: var(--red-dark); box-shadow: 0 8px 26px rgba(0, 0, 0, 0.22); }
.lp-cta-band .btn--primary:hover { background: var(--ink); color: var(--white); }
.lp-cta-band-points {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1.6rem;
  margin-top: 1.5rem;
  padding: 0;
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.93);
}
.lp-cta-band-points li { position: relative; }
.lp-cta-band-points li + li::before {
  content: "";
  position: absolute;
  left: -0.85rem;
  top: 50%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  transform: translateY(-50%);
}
@media (max-width: 620px) {
  .lp-cta-band-points { flex-direction: column; gap: 0.45rem; }
  .lp-cta-band-points li + li::before { display: none; }
}

/* ============================================================
   9. MULTI-SPORT
   ============================================================ */
.lp-sports-wrap { max-width: 760px; margin-inline: auto; }
.lp-sports-wrap p { margin-bottom: 1.1rem; line-height: 1.7; }
.lp-sports-lede { font-size: 1.1rem; font-weight: 600; color: var(--ink); }
.lp-quality-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.6rem 0;
  padding: 0;
}
.lp-quality-chips li {
  padding: 0.45rem 0.95rem;
  border: 1px solid var(--line);
  border-radius: 100px;
  background: var(--bg-soft);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--ink);
}
.lp-sports-foot { font-size: 0.95rem; color: var(--muted); }

/* ============================================================
   10–11. COACH + CONTACT
   ============================================================ */
.lp-coach {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}
@media (max-width: 860px) { .lp-coach { grid-template-columns: 1fr; } }

.lp-coach-photo {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-gray);
  /* 3/2, not the portrait 4/5 this started as. The source photo is 500x281
     landscape; a 4/5 frame forced it UP by 1.42x (2.85x on a retina screen)
     and threw away 55% of its width to the crop, which is what made it look
     soft. At 3/2 the same photo is scaled DOWN, so it renders sharp.
     If a proper portrait photo arrives (640x800 or better, ideally
     1280x1600 for retina), put this back to 4 / 5. */
  aspect-ratio: 3 / 2;
  box-shadow: var(--shadow-md);
}
.lp-coach-photo img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 860px) { .lp-coach-photo { aspect-ratio: 16 / 9; max-width: 460px; } }

.lp-coach-body h3 { font-size: clamp(1.5rem, 3vw, 1.9rem); margin-bottom: 0.25rem; }
.lp-coach-role {
  margin-bottom: 1.1rem;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red);
}
.lp-coach-body > p { margin-bottom: 1rem; line-height: 1.7; }
.lp-coach-quote {
  margin: 1.5rem 0 0;
  padding: 1.2rem 1.4rem;
  border-left: 3px solid var(--red);
  background: var(--white);
  border-radius: var(--radius-sm);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--ink);
}

/* Placeholder styling — deliberately obvious so it can't ship by accident */
.lp-placeholder-inline {
  display: inline-block;
  padding: 0.1rem 0.45rem;
  border-radius: 4px;
  background: #fff3cd;
  border: 1px dashed #d0a537;
  color: #6b5210;
  font-size: 0.86em;
  font-weight: 700;
}
.lp-placeholder-block {
  margin: 1.3rem 0;
  padding: 1.1rem 1.25rem;
  border: 1px dashed #d0a537;
  border-radius: var(--radius-sm);
  background: #fffbf0;
}
.lp-placeholder-tag {
  display: block;
  margin-bottom: 0.6rem;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #8a6d13;
}
.lp-placeholder-block ul { display: grid; gap: 0.4rem; padding: 0; }
.lp-placeholder-block li { font-size: 0.88rem; font-weight: 700; color: #6b5210; }

/* ---------- Contact box ---------- */
.lp-contact {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem 2.5rem;
  align-items: center;
  margin-top: clamp(2rem, 4vw, 3rem);
  padding: clamp(1.5rem, 3vw, 2.2rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
@media (max-width: 860px) { .lp-contact { grid-template-columns: 1fr; } }
.lp-contact h3 { font-size: 1.3rem; margin-bottom: 0.5rem; }
.lp-contact p { line-height: 1.65; color: var(--body); max-width: 56ch; }
.lp-contact-actions { display: flex; flex-direction: column; gap: 0.7rem; min-width: 260px; }
.lp-contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.6rem;
  padding: 0.85rem 1.2rem;
  font-size: 0.92rem;
}
.lp-contact-btn svg { width: 18px; height: 18px; flex: 0 0 auto; }
.lp-contact-btn:hover { transform: none; }

/* ============================================================
   13. FINAL CTA
   ============================================================ */
.lp-final {
  padding: clamp(3.2rem, 7vw, 5.5rem) 0;
  background:
    radial-gradient(900px 420px at 50% 0%, rgba(217, 22, 28, 0.3), transparent 62%),
    var(--ink);
  color: var(--white);
  text-align: center;
}
.lp-final h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 4vw, 2.85rem);
  line-height: 1.12;
  margin-bottom: 1.6rem;
}
.lp-final-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  max-width: 460px;
  margin: 0 auto 2rem;
  padding: 0;
  text-align: left;
}
.lp-final-list li {
  position: relative;
  width: 100%;
  padding-left: 2rem;
  font-size: 1rem;
  color: #d4d4da;
}
.lp-final-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.32em;
  width: 15px;
  height: 9px;
  border-left: 2.5px solid var(--red);
  border-bottom: 2.5px solid var(--red);
  transform: rotate(-45deg);
}
.lp-final-deadline {
  margin-top: 1.2rem;
  font-size: 0.87rem;
  font-weight: 700;
  color: #a9a9b2;
}

/* ============================================================
   FOOTER
   ============================================================ */
.lp-footer {
  padding: clamp(2.2rem, 4vw, 3rem) 0;
  background: var(--charcoal);
  color: #a9a9b2;
  text-align: center;
  font-size: 0.87rem;
}
.lp-footer-logo { width: 116px; height: auto; margin: 0 auto 1.1rem; }
.lp-footer-addr { line-height: 1.7; margin-bottom: 1rem; }
.lp-footer a { color: #d4d4da; text-decoration: underline; }
.lp-footer a:hover { color: var(--white); }
.lp-footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.5rem 1.4rem; margin-bottom: 1rem; }
.lp-footer-legal { font-size: 0.78rem; color: #92929a; line-height: 1.6; }  /* was #78787f — 3.62:1 on --charcoal */

/* ============================================================
   MOBILE STICKY CTA
   ============================================================ */
.lp-sticky {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 120;
  padding: 0.7rem 1rem calc(0.7rem + env(safe-area-inset-bottom, 0px));
  background: rgba(23, 23, 27, 0.97);
  border-top: 2px solid var(--red);
  transform: translateY(110%);
  transition: transform 0.28s ease;
}
.lp-sticky.is-visible { transform: translateY(0); }
.lp-sticky-btn { width: 100%; min-height: 54px; font-size: 0.97rem; font-weight: 800; }
.lp-sticky-btn:hover { transform: none; }

/* Never show it on larger screens — the page has plenty of inline CTAs there. */
@media (min-width: 861px) { .lp-sticky { display: none !important; } }

/* Keep the cookie bar clear of the sticky CTA. The offset is the sticky
   bar's measured height, set as --lp-sticky-h by js/landing.js, because the
   CTA's height changes with the button's text wrapping. */
.lp-body .cookie-bar { padding-bottom: 1.15rem; }
.lp-body.lp-sticky-on .cookie-bar { bottom: var(--lp-sticky-h, 96px); }

@media (prefers-reduced-motion: reduce) {
  .lp-sticky, .lp-play { transition: none; }
}
