/* ═══════════════════════════════════════════════════════════════
   ADULTS V2 — B-style hero + A-stack body
   Adds: cinematic hero · VSL · benefits 3-up · comparison ·
         guarantee · booking. Existing week/coaches/proof/pricing/faq reused.
   ═══════════════════════════════════════════════════════════════ */

/* ── B-STYLE CINEMATIC HERO ── */
.hero-cine {
  position: relative;
  min-height: 100vh;
  background: var(--charcoal);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 0 64px;
}
.hero-cine__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(232, 93, 4, 0.22), transparent 55%),
    radial-gradient(ellipse at 30% 70%, rgba(201, 150, 45, 0.10), transparent 50%),
    linear-gradient(180deg, #1A0F08 0%, #0A0807 50%, #0A0A0A 100%);
}
.hero-cine__figure {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  opacity: 0.92;
}
.hero-cine__figure svg {
  width: min(72%, 900px);
  height: 100%;
  filter: drop-shadow(0 40px 80px rgba(0, 0, 0, 0.8));
}
.hero-cine__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(10, 10, 10, 0.35) 0%,
    rgba(10, 10, 10, 0.60) 55%,
    rgba(10, 8, 7, 0.92) 85%,
    var(--charcoal) 100%);
}
.hero-cine__inner {
  position: relative;
  z-index: 5;
  padding: 0 56px;
  width: 100%;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 56px;
  align-items: flex-end;
  margin-top: auto;
}
.hero-cine__heading .eyebrow {
  color: var(--ember);
  margin-bottom: 18px;
  display: inline-block;
}
.hero-cine__heading .eyebrow::before {
  content: '⌁ ';
  color: var(--gold);
  margin-right: 4px;
}
.hero-cine__title {
  font-family: var(--font-display);
  font-size: clamp(72px, 11vw, 168px);
  line-height: 0.86;
  letter-spacing: -0.01em;
  color: var(--cream);
  text-transform: uppercase;
  margin: 0;
}
.hero-cine__title .accent { color: var(--ember); display: block; font-style: italic; }
.hero-cine__title .second { display: block; }

.hero-cine__corner {
  text-align: right;
  max-width: 360px;
  justify-self: end;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.hero-cine__corner p {
  font-size: 16px;
  color: var(--cream);
  line-height: 1.55;
  opacity: 0.95;
}
.hero-cine__corner .ctas {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.hero-cine__strip {
  position: relative;
  z-index: 5;
  margin: 80px 56px 0;
  padding: 24px 32px;
  background: rgba(21, 16, 11, 0.72);
  backdrop-filter: blur(14px);
  border: 1px solid var(--border);
  border-bottom: 1px solid var(--border-ember);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.hero-cine__strip-cell {
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-left: 1px solid var(--border);
  padding-left: 24px;
}
.hero-cine__strip-cell:first-child { border-left: none; padding-left: 0; }
.hero-cine__strip-cell .num {
  font-family: var(--font-display);
  font-size: 40px;
  color: var(--ember);
  line-height: 1;
}
.hero-cine__strip-cell .lbl {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--muted);
  text-transform: uppercase;
}
.hero-cine__strip-cell .sub {
  font-size: 13px;
  color: var(--cream);
  line-height: 1.4;
  margin-top: 4px;
}

@media (max-width: 900px) {
  .hero-cine__inner { grid-template-columns: 1fr; padding: 0 28px; gap: 32px; }
  .hero-cine__corner { text-align: left; justify-self: start; }
  .hero-cine__corner .ctas { justify-content: flex-start; }
  .hero-cine__strip { margin: 48px 28px 0; grid-template-columns: repeat(2, 1fr); padding: 20px; gap: 20px; }
  .hero-cine__strip-cell { border-left: none; padding-left: 0; }
}

/* ── VSL / story ── */
.vsl { background: var(--charcoal); padding: 96px 0; }
.vsl__inner { max-width: 880px; margin: 0 auto; text-align: center; }
.vsl__player {
  position: relative;
  aspect-ratio: 16 / 9;
  margin: 32px auto 24px;
  background: var(--warm-grey);
  border: 1px solid var(--border-strong);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.3s;
}
.vsl__player:hover { border-color: var(--border-ember); }
.vsl__player::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 50%, rgba(232, 93, 4, 0.18), transparent 60%),
    linear-gradient(135deg, rgba(26, 15, 8, 0.85), rgba(10, 10, 10, 0.95));
}
.vsl__play {
  position: relative;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: var(--ember);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 1px rgba(232, 93, 4, 0.4), 0 0 60px rgba(232, 93, 4, 0.5);
  transition: transform 0.3s;
}
.vsl__player:hover .vsl__play { transform: scale(1.08); }
.vsl__play::after {
  content: '';
  border-style: solid;
  border-width: 14px 0 14px 22px;
  border-color: transparent transparent transparent var(--charcoal);
  margin-left: 4px;
}
.vsl__caption {
  position: absolute;
  bottom: 16px;
  left: 16px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--cream);
  text-transform: uppercase;
  z-index: 2;
}
.vsl__lede {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto;
}

/* ── 3-UP BENEFITS ── */
.benefits { background: var(--charcoal); padding: 96px 0; border-top: 1px solid var(--border); }
.benefits__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.benefit {
  background: var(--warm-grey);
  border: 1px solid var(--border);
  padding: 36px 28px;
  position: relative;
  transition: border-color 0.3s, transform 0.3s;
}
.benefit:hover { border-color: var(--border-ember); transform: translateY(-3px); }
.benefit__num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
}
.benefit__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(232, 93, 4, 0.10);
  border: 1px solid var(--border-ember);
  color: var(--ember);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 16px 0 20px;
}
.benefit h3 {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 12px;
}
.benefit p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}
@media (max-width: 900px) { .benefits__grid { grid-template-columns: 1fr; } }

/* ── COMPARISON ── */
.compare { background: var(--warm-grey); padding: 96px 0; border-top: 1px solid var(--border); }
.compare__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 48px;
}
.compare__col {
  padding: 32px 28px;
  border: 1px solid var(--border);
  background: var(--charcoal);
}
.compare__col.us {
  border-color: var(--border-ember);
  background: linear-gradient(180deg, rgba(232, 93, 4, 0.06), rgba(10, 10, 10, 0.8));
  position: relative;
}
.compare__col.us::before {
  content: 'LESHGO';
  position: absolute;
  top: -12px;
  left: 24px;
  background: var(--ember);
  color: var(--charcoal);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  padding: 4px 12px;
}
.compare__col h4 {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--faint);
  text-transform: uppercase;
  margin-bottom: 24px;
}
.compare__col.us h4 { color: var(--ember); }
.compare__list { list-style: none; }
.compare__list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  color: var(--muted);
}
.compare__col.us .compare__list li { color: var(--cream); }
.compare__list li:last-child { border-bottom: none; }
.compare__list .mark {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
}
.compare__list .mark.x { background: rgba(255, 60, 60, 0.10); color: #ff7b7b; }
.compare__list .mark.v { background: rgba(232, 93, 4, 0.16); color: var(--ember); }

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

/* ── GUARANTEE ── */
.guarantee {
  background: var(--charcoal);
  padding: 96px 0;
  border-top: 1px solid var(--border);
}
.guarantee__card {
  max-width: 760px;
  margin: 0 auto;
  padding: 64px 56px;
  background: linear-gradient(135deg, rgba(201, 150, 45, 0.06), rgba(232, 93, 4, 0.04));
  border: 1px solid var(--border-gold);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.guarantee__card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(201, 150, 45, 0.18), transparent 60%);
  pointer-events: none;
}
.guarantee__seal {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  background: var(--charcoal);
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}
.guarantee__seal-num {
  font-family: var(--font-display);
  font-size: 42px;
  color: var(--gold);
  line-height: 1;
}
.guarantee__seal-num + small {
  position: absolute;
  bottom: 18px;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  color: var(--gold);
}
.guarantee__title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  text-transform: uppercase;
  color: var(--cream);
  line-height: 1;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.guarantee__title .accent { color: var(--gold); display: block; }
.guarantee__copy {
  font-size: 16px;
  color: var(--body);
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto 28px;
  position: relative;
  z-index: 1;
}
.guarantee__cta { position: relative; z-index: 1; }

/* ── BOOKING ── */
.booking { background: var(--warm-grey); padding: 96px 0; border-top: 1px solid var(--border); }
.booking__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 32px;
  margin-top: 48px;
}
.booking__iframe {
  background: var(--charcoal);
  border: 1px solid var(--border-strong);
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.booking__iframe::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(232, 93, 4, 0.10), transparent 60%);
}
.booking__iframe-mock {
  position: relative;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  padding: 32px;
  width: 100%;
  height: 100%;
}
.booking__iframe-mock .day-label {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--gold);
  letter-spacing: 0.2em;
  text-align: center;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}
.booking__iframe-mock .cell {
  background: rgba(232, 93, 4, 0.08);
  border: 1px solid var(--border);
  border-radius: 2px;
  min-height: 18px;
}
.booking__iframe-mock .cell.active { background: var(--ember); border-color: var(--ember); }
.booking__iframe-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--cream);
  text-transform: uppercase;
  background: rgba(0, 0, 0, 0.5);
  padding: 4px 8px;
}
.booking__visit {
  background: var(--charcoal);
  border: 1px solid var(--border);
  padding: 32px 28px;
}
.booking__visit h4 {
  font-family: var(--font-display);
  font-size: 24px;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: var(--cream);
}
.booking__visit-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.booking__visit-row:last-of-type { border-bottom: none; }
.booking__visit-row .lbl {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--muted);
  text-transform: uppercase;
}
.booking__visit-row .val { color: var(--cream); font-size: 15px; }
.booking__visit-map {
  margin-top: 20px;
  aspect-ratio: 4 / 3;
  background: var(--warm-grey);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.booking__visit-map::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201, 150, 45, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 150, 45, 0.08) 1px, transparent 1px);
  background-size: 32px 32px;
}
.booking__visit-pin {
  position: relative;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--ember);
  box-shadow: 0 0 0 4px rgba(232, 93, 4, 0.3), 0 0 0 8px rgba(232, 93, 4, 0.15);
}
@media (max-width: 900px) { .booking__grid { grid-template-columns: 1fr; } }

/* ── BOOKING IFRAME (replaces placeholder mock) ── */
.booking__iframe--live {
  aspect-ratio: auto;
  min-height: 720px;
  padding: 0;
  background: var(--charcoal);
  display: block;
  overflow: hidden;
}
.booking__iframe--live::before { display: none; }
.booking__iframe--live iframe {
  width: 100%;
  height: 100%;
  min-height: 720px;
  border: 0;
  display: block;
  background: transparent;
}

/* ── NAV: countdown chip ── */
.nav__countdown {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--gold);
  text-transform: uppercase;
  padding: 4px 10px;
  border: 1px solid var(--border-gold, rgba(201, 150, 45, 0.4));
  background: rgba(201, 150, 45, 0.06);
  border-radius: 2px;
  white-space: nowrap;
}
.nav__countdown .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ember);
  box-shadow: 0 0 8px rgba(232, 93, 4, 0.7);
  animation: pulse 1.8s ease-in-out infinite;
}
.nav__countdown [data-countdown-days] {
  color: var(--cream);
  font-weight: 600;
}
@keyframes pulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}
.nav__link--ghost {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted, #888);
  margin-right: 10px;
}
.nav__link--ghost:hover { color: var(--cream); }
@media (max-width: 1024px) {
  .nav__countdown { display: none; }
}

/* ── PRICING: two-card grid + strikethrough + foundation counter ── */
.price__grid--two {
  grid-template-columns: 1.05fr 0.95fr;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.price__strike {
  display: inline-block;
  margin-right: 12px;
  font-family: var(--font-display);
  font-size: 0.55em;
  color: var(--faint, #5a5a5a);
  text-decoration: line-through;
  text-decoration-color: rgba(232, 93, 4, 0.6);
  text-decoration-thickness: 2px;
  vertical-align: middle;
  opacity: 0.85;
}
.price__counter {
  margin-top: 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ember);
  text-align: center;
}
.price__footnote {
  max-width: 760px;
  margin: 28px auto 0;
  text-align: center;
  font-size: 13px;
  color: var(--muted, #888);
  line-height: 1.6;
}
.price__footnote strong {
  color: var(--cream);
  font-weight: 600;
}
@media (max-width: 900px) {
  .price__grid--two { grid-template-columns: 1fr; }
}

/* (Top sticky bar removed 2026-05-11. The countdown chip moved into the hero eyebrow.
   Nav goes back to top:0. Body padding is reset to default.) */
body { padding-top: 0; padding-bottom: 0; }

/* ── HERO COUNTDOWN CHIP (replaces the previous sticky bar's chip) ── */
.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--gold);
  text-transform: uppercase;
  padding: 11px 20px;
  border: 1px solid var(--border-gold, rgba(201, 150, 45, 0.4));
  background: rgba(201, 150, 45, 0.06);
  white-space: nowrap;
  margin-bottom: 24px;
}
@media (max-width: 480px) {
  .hero-chip {
    padding: 9px 14px;
    gap: 10px;
    font-size: 10.5px;
    letter-spacing: 0.14em;
  }
}
.hero-chip .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ember);
  box-shadow: 0 0 8px rgba(232, 93, 4, 0.7);
  animation: pulse 1.8s ease-in-out infinite;
}
.hero-chip [data-countdown-days] {
  color: var(--cream);
  font-weight: 600;
}

/* ── ROTATING HEADLINE WORD ── */
/* Sizer reserves max width so the period after never jumps when words cycle. */
.rotating {
  display: inline-block;
  position: relative;
  vertical-align: baseline;
  text-align: center;
  color: var(--ember);
}
.rotating__sizer {
  visibility: hidden;
  display: inline-block;
  white-space: nowrap;
}
.rotating__word {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  white-space: nowrap;
  text-align: center;
  opacity: 0;
  transform: translateY(0.18em);
  transition: opacity 0.5s ease, transform 0.5s ease;
  pointer-events: none;
}

/* Hero (.final.is-hero) padding tweaks. */
.final.is-hero h1 { margin-bottom: 36px; }
.final.is-hero h1 + p { margin-top: 0; }

/* Hero background effect #9 — vignette + ember scanlines. Layers over the
   existing .final background. Sparks (effect #5) are already animated via
   base.css .sparks span + sparkRise keyframes. */
.final.is-hero {
  position: relative;
  isolation: isolate;
  background-image: url('../images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
/* iOS / touch devices don't render `background-attachment: fixed` correctly
   (they paint the full image at viewport size, causing massive zoom). Fall
   back to normal scroll on touch + narrow screens. */
@media (max-width: 960px), (hover: none) and (pointer: coarse) {
  .final.is-hero {
    background-attachment: scroll;
  }
}
.final.is-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.72) 0%,
      rgba(0, 0, 0, 0.55) 45%,
      rgba(0, 0, 0, 0.78) 100%
    ),
    repeating-linear-gradient(
      0deg,
      transparent 0px,
      transparent 2px,
      rgba(232, 93, 4, 0.045) 2px,
      rgba(232, 93, 4, 0.045) 3px
    ),
    radial-gradient(ellipse 80% 70% at 50% 50%, transparent 38%, rgba(0, 0, 0, 0.78) 100%);
}
.final.is-hero > .container,
.final.is-hero > .sparks { position: relative; z-index: 2; }

/* Footer brand text replaces the image logo. */
.footer__name {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 0.06em;
  color: var(--cream);
  text-transform: uppercase;
  display: block;
  margin-bottom: 14px;
}
.rotating__word.is-active {
  opacity: 1;
  transform: translateY(0);
}

/* ── GUARANTEE: gold shield variant ── */
.guarantee__seal--shield svg path {
  stroke: var(--gold);
}

/* ── NAV DROPDOWNS (Adults / Kids program with section links) ── */
.nav__item {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.nav__item > .nav__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
/* The caret ::after only applies to non-active links. Active links get the
   plain ember underline indicator from components.css. The previous combined
   rules were cascading into a tiny orange diamond under the active link. */
.nav__item > .nav__link:not(.is-active)::after {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  border-left: 0;
  border-top: 0;
  background: transparent;
  position: static;
  transform: rotate(45deg) translateY(-2px);
  opacity: 0.5;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav__item:hover > .nav__link:not(.is-active)::after,
.nav__item:focus-within > .nav__link:not(.is-active)::after {
  transform: rotate(45deg) translateY(0);
  opacity: 1;
}
/* Active link: restore the components.css underline indicator (clean line,
   no diamond). Explicit override to wipe any stray properties. */
.nav__item > .nav__link.is-active::after {
  content: '';
  display: block;
  position: absolute;
  bottom: -4px;
  left: 16px;
  right: 16px;
  width: auto;
  height: 1px;
  border: 0;
  background: var(--ember);
  transform: none;
  opacity: 1;
}

/* ── BUTTON: ghost with proper outline matching text colour ── */
.btn-ghost {
  background: transparent;
  border-color: currentColor;
}
.btn-ghost:hover {
  background: rgba(232, 93, 4, 0.06);
}

/* ── NAV: image logo replaces the text mark ── */
.nav__logo {
  display: block;
  height: 44px;
  width: auto;
  max-width: 240px;
  object-fit: contain;
}
@media (max-width: 720px) {
  .nav__logo { height: 36px; max-width: 180px; }
}
.nav__dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 220px;
  background: rgba(10, 10, 10, 0.96);
  backdrop-filter: blur(20px) saturate(140%);
  border: 1px solid var(--border-strong);
  border-radius: 4px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
  z-index: 120;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
}
.nav__item:hover .nav__dropdown,
.nav__item:focus-within .nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav__dropdown a {
  display: block;
  padding: 10px 18px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--body);
  text-decoration: none;
  transition: color 0.18s ease, background 0.18s ease, padding-left 0.18s ease;
}
.nav__dropdown a:hover {
  color: var(--ember);
  background: rgba(232, 93, 4, 0.08);
  padding-left: 22px;
}
.nav__dropdown a + a { border-top: 1px solid var(--border); }
@media (max-width: 900px) {
  .nav__item { display: none; }
}

/* ── HERO-AS-FINAL: pull padding down so the .final block reads as the hero ── */
section.final.is-hero {
  padding-top: clamp(96px, 16vh, 180px);
  padding-bottom: clamp(72px, 10vh, 128px);
  border-top: 0;
  overflow: hidden;
  position: relative;
}

/* ── PRICE STRIKETHROUGH BLEND with featured card ── */
.price.featured .price__strike {
  color: rgba(240, 230, 210, 0.45);
  text-decoration-color: var(--ember);
}

/* Reserve space at page bottom so sticky bar doesn't cover footer */
body { padding-bottom: 60px; }
@media (max-width: 720px) { body { padding-bottom: 56px; } }

/* ═══════════════════════════════════════════════════════════════
   REVISION 2 — Readability + Option D pricing rebuild
   ═══════════════════════════════════════════════════════════════ */

/* Anton is a tight condensed display face. At large sizes letters mash
   together, so we add positive letter-spacing and looser line-height. */
.hero-cine__title {
  letter-spacing: 0.015em;
  line-height: 0.95;
  font-size: clamp(56px, 9vw, 124px);
}
.section-header h2,
.hero-cine__title,
.guarantee__title,
.benefit h3,
.coach__name,
.price__name,
.final h2 {
  letter-spacing: 0.02em;
}
.section-header h2,
.final h2 {
  line-height: 1.05;
}

/* Hero eyebrow: drop the gold ⌁ pseudo, bump size for readability */
.hero-cine__heading .eyebrow {
  font-size: 13px;
  letter-spacing: 0.22em;
}
.hero-cine__heading .eyebrow::before { content: none; }

/* Hero strip: only num + sub used now (no .lbl row). Give the number
   room to handle longer values like "$$" and "June 6". */
.hero-cine__strip-cell .num {
  font-size: clamp(32px, 4.4vw, 48px);
  letter-spacing: 0.01em;
  line-height: 1;
}
.hero-cine__strip-cell .sub {
  font-size: 14px;
  line-height: 1.45;
  margin-top: 10px;
  color: var(--cream);
  opacity: 0.85;
}

/* Three-reasons placeholder image block */
.benefit__image {
  width: 100%;
  aspect-ratio: 16 / 9;
  margin-bottom: 28px;
  background:
    linear-gradient(135deg, rgba(232, 93, 4, 0.18), rgba(232, 93, 4, 0.06)),
    linear-gradient(180deg, rgba(26, 15, 8, 0.92), rgba(10, 10, 10, 0.95));
  border: 1px solid var(--border-ember);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  position: relative;
  overflow: hidden;
}
.benefit__image::after {
  content: '';
  position: absolute;
  inset: 12px;
  border: 1px dashed rgba(232, 93, 4, 0.28);
  pointer-events: none;
}
/* More breathing room between the eyebrow, heading and body inside each Why-LeshGo card. */
.benefit__num { display: block; margin-bottom: 18px; }
.benefit h3 { margin-bottom: 18px; }
.benefit p { margin-top: 4px; }

/* Nav program-switcher button (replaces the brand mark on the opposite-program page). */
.nav__switch {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.nav__switch .arrow {
  font-size: 14px;
  line-height: 1;
}
@media (max-width: 900px) {
  .nav__switch { font-size: 10px; padding: 8px 14px; }
}

/* Booking form (book.html) — referenced from parent. Pill <strong> uses
   Inter 600 so the program-selector option labels feel lighter to read. */

/* Visit map: Google Maps iframe tinted ember to match the dark site */
.booking__visit-map {
  position: relative;
  isolation: isolate;
}
.booking__visit-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: invert(0.86) hue-rotate(155deg) saturate(0.6) brightness(1.05) contrast(0.95);
}
.booking__visit-map::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 50%, rgba(232, 93, 4, 0.22), transparent 70%),
    linear-gradient(180deg, rgba(232, 93, 4, 0.10), rgba(10, 10, 10, 0.18));
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: 1;
}

/* ─────────────────────────────────────────────────────────
   PRICING — Option D (Foundation offer + parachute + after)
   ───────────────────────────────────────────────────────── */
.lg-membership {
  position: relative;
  padding: clamp(72px, 9vw, 128px) clamp(20px, 4vw, 56px);
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(232,93,4,0.10) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 90%, rgba(201,150,45,0.06) 0%, transparent 60%),
    linear-gradient(180deg, #0A0807 0%, #14100D 50%, #0A0807 100%);
  overflow: hidden;
  isolation: isolate;
  border-top: 1px solid var(--border);
}
/* (Decorative diagonal ember rule above .lg-membership removed 2026-05-12.) */

/* ── TIMETABLE: column-count modifiers ── */
/* Adults run Mon-Sat (6 cols), kids run Mon-Fri (5 cols). Overrides the
   default repeat(7,1fr) from programme.css. */
.week__grid--6 { grid-template-columns: repeat(6, 1fr); }
.week__grid--5 { grid-template-columns: repeat(5, 1fr); }
@media (max-width: 900px) {
  .week__grid--6,
  .week__grid--5 { grid-template-columns: repeat(2, 1fr); }
}
/* Kids days hold only two slots — drop the tall min-height so the cards
   aren't mostly empty space. */
.week__grid--5 .day { min-height: 0; }

/* ── TIMETABLE: bigger, more readable type ── */
/* The programme.css defaults (10-13px) were too small to read. With
   fewer columns now there's room to size everything up. */
.day { padding: 22px 16px; }
.day__header { font-size: 24px; padding-bottom: 14px; }
.day__header span { font-size: 10px; }
.slot { padding: 13px 14px; font-size: 14px; gap: 5px; }
.slot__time { font-size: 13px; letter-spacing: 0.06em; }
.slot__name { font-size: 17px; line-height: 1.18; }
.slot__coach { font-size: 11px; }

/* ── TIMETABLE: adults / kids switcher ── */
.week__toggle {
  display: flex;
  gap: 6px;
  width: fit-content;
  margin: 0 auto 40px;
  padding: 6px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}
.week__toggle-btn {
  appearance: none;
  border: 0;
  cursor: pointer;
  padding: 11px 26px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  background: transparent;
  border-radius: var(--radius);
  transition: background 0.2s ease, color 0.2s ease;
}
.week__toggle-btn:hover { color: var(--cream); }
.week__toggle-btn.is-active {
  background: var(--ember);
  color: var(--charcoal);
}
.week__panel { display: none; }
.week__panel.is-active { display: block; }
@media (max-width: 480px) {
  .week__toggle { width: 100%; }
  .week__toggle-btn { flex: 1; padding: 11px 10px; letter-spacing: 0.08em; }
}

/* ── CLASS GUIDE: short description per class, under the timetable ── */
.class-guide { margin-top: 56px; }
.class-guide__head {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
  margin-bottom: 24px;
}
.class-guide__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 12px;
}
.class-guide__item {
  background: var(--card);
  border: 1px solid var(--border);
  border-left: 2px solid var(--ember);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 18px 20px;
}
.class-guide__name {
  font-family: var(--font-display);
  font-size: 19px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 7px;
}
.class-guide__desc {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.6;
  color: var(--body);
}
.lg-shell {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.lg-head {
  text-align: center;
  margin-bottom: 72px;
  position: relative;
}
.lg-head__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ember);
  margin-bottom: 28px;
}
.lg-head__eyebrow::before,
.lg-head__eyebrow::after {
  content: '';
  width: 36px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--ember));
}
.lg-head__eyebrow::after {
  background: linear-gradient(90deg, var(--ember), transparent);
}
.lg-head__title {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 92px);
  line-height: 1.0;
  letter-spacing: 0.012em;
  text-transform: uppercase;
  color: var(--cream);
}
.lg-head__title em {
  font-style: normal;
  color: var(--ember);
}
.lg-head__sub {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  font-weight: 400;
  color: rgba(240, 230, 210, 0.7);
  max-width: 620px;
  margin: 28px auto 0;
}
.lg-head__sub b { color: var(--cream); font-weight: 600; }

/* Offer card */
.lg-offer {
  position: relative;
  max-width: 1080px;
  margin: 0 auto;
}
.lg-offer__corners {
  position: absolute;
  inset: -18px;
  pointer-events: none;
  z-index: 3;
}
.lg-offer__corners::before,
.lg-offer__corners::after {
  content: '';
  position: absolute;
  width: 42px;
  height: 42px;
  border: 1.5px solid var(--ember);
}
.lg-offer__corners::before { top: 0; left: 0; border-right: none; border-bottom: none; }
.lg-offer__corners::after { bottom: 0; right: 0; border-left: none; border-top: none; }
.lg-offer__corners-inner::before,
.lg-offer__corners-inner::after {
  content: '';
  position: absolute;
  width: 42px;
  height: 42px;
  border: 1.5px solid var(--ember);
}
.lg-offer__corners-inner::before { top: 0; right: 0; border-left: none; border-bottom: none; }
.lg-offer__corners-inner::after { bottom: 0; left: 0; border-right: none; border-top: none; }

.lg-offer__card {
  position: relative;
  background:
    linear-gradient(135deg, rgba(232,93,4,.10) 0%, rgba(232,93,4,.02) 50%, rgba(201,150,45,.06) 100%),
    linear-gradient(180deg, var(--warm-grey-2), var(--warm-grey));
  border: 1px solid rgba(232, 93, 4, 0.32);
  padding: 56px 64px;
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 64px;
  align-items: center;
  z-index: 2;
  box-shadow:
    0 0 0 1px rgba(232, 93, 4, 0.08),
    0 40px 80px -20px rgba(0, 0, 0, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
.lg-offer__ribbon {
  position: absolute;
  top: -1px;
  left: 48px;
  background: var(--ember);
  color: var(--charcoal);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 8px 16px 9px;
  z-index: 4;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}

.lg-offer__left { position: relative; }
.lg-offer__lockup {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 18px;
}
.lg-offer__kicker {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
}
.lg-offer__divider {
  width: 1px;
  height: 14px;
  background: rgba(232, 220, 196, 0.2);
  display: inline-block;
}
.lg-offer__count {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(240, 230, 210, 0.55);
}
.lg-offer__count b { color: var(--cream); font-weight: 700; }

/* Phase 1 sold-out banner (sits above the price block inside .lg-offer__left). */
.lg-offer__phase-banner {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
  padding: 8px 14px;
  background: rgba(0, 0, 0, 0.32);
  border: 1px solid rgba(232, 93, 4, 0.22);
  border-radius: 4px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.4;
}
.lg-offer__phase-tag {
  color: var(--ember);
  font-weight: 700;
}
.lg-offer__phase-was {
  color: rgba(240, 230, 210, 0.5);
  text-decoration: line-through;
}

.lg-offer__name {
  font-family: var(--font-display);
  font-size: clamp(40px, 4.5vw, 56px);
  line-height: 0.95;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--cream);
}
.lg-offer__name em {
  font-style: normal;
  color: var(--ember);
}

.lg-offer__price-block {
  margin-top: 28px;
  display: flex;
  align-items: flex-end;
  gap: 18px;
  position: relative;
}
.lg-offer__price-block::after {
  content: '';
  position: absolute;
  bottom: -18px;
  left: 0;
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, var(--ember), transparent);
}
.lg-offer__currency {
  font-family: var(--font-display);
  font-size: 40px;
  color: var(--ember);
  line-height: 1;
  transform: translateY(-22px);
}
.lg-offer__amount {
  font-family: var(--font-display);
  font-size: clamp(96px, 12vw, 132px);
  line-height: 0.85;
  color: var(--ember);
  letter-spacing: -0.02em;
  text-shadow: 0 0 60px rgba(232, 93, 4, 0.25);
}
.lg-offer__meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-bottom: 8px;
}
.lg-offer__meta-period {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream);
}
.lg-offer__meta-was {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.01em;
  color: var(--cream);
  text-decoration: line-through;
  text-decoration-color: var(--ember);
  text-decoration-thickness: 3px;
  text-decoration-skip-ink: none;
  opacity: 0.65;
  line-height: 1;
}
.lg-offer__lock-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  display: block;
  margin-top: 4px;
}

.lg-offer__perks {
  list-style: none;
  margin-top: 44px;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 28px;
}
.lg-offer__perks li {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.5;
  font-weight: 500;
  color: var(--cream);
  padding-left: 30px;
  position: relative;
}
.lg-offer__perks li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  width: 18px;
  height: 18px;
  background: rgba(232, 93, 4, 0.18);
  border: 1px solid rgba(232, 93, 4, 0.5);
  border-radius: 50%;
}
.lg-offer__perks li::after {
  content: '';
  position: absolute;
  left: 4px;
  top: 9px;
  width: 9px;
  height: 5px;
  border-left: 2px solid var(--ember);
  border-bottom: 2px solid var(--ember);
  transform: rotate(-45deg);
  transform-origin: center center;
}

.lg-offer__right {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: stretch;
  position: relative;
}
.lg-offer__right::before {
  content: '';
  position: absolute;
  left: -32px;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: linear-gradient(180deg, transparent 0%, rgba(232, 220, 196, 0.18) 30%, rgba(232, 220, 196, 0.18) 70%, transparent 100%);
}

.lg-btn-primary {
  appearance: none;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 22px 28px;
  background: var(--ember);
  color: var(--charcoal);
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid var(--ember);
  position: relative;
  transition: all 0.25s ease;
  overflow: hidden;
  text-decoration: none;
  z-index: 1;
}
.lg-btn-primary:hover {
  transform: translateY(-2px);
  background: var(--ember-hot);
  box-shadow: 0 16px 40px -8px rgba(232, 93, 4, 0.5), 0 0 0 1px var(--ember-hot);
}
.lg-btn-primary .arrow { font-size: 22px; transition: transform 0.25s ease; }
.lg-btn-primary:hover .arrow { transform: translateX(4px); }

.lg-offer__urgency {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ember);
  padding: 14px 16px;
  background: rgba(232, 93, 4, 0.08);
  border: 1px solid rgba(232, 93, 4, 0.2);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.lg-offer__urgency .pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ember);
  animation: lgPulse 2s infinite;
}
@keyframes lgPulse {
  0% { box-shadow: 0 0 0 0 rgba(232, 93, 4, 0.6); }
  70% { box-shadow: 0 0 0 10px rgba(232, 93, 4, 0); }
  100% { box-shadow: 0 0 0 0 rgba(232, 93, 4, 0); }
}

.lg-offer__spots {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.lg-offer__spots-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.lg-offer__spots-row .a { color: var(--cream); }
.lg-offer__spots-row .b { color: var(--ember); }
.lg-offer__spots-bar {
  height: 4px;
  background: rgba(232, 220, 196, 0.08);
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}
.lg-offer__spots-bar::after {
  content: '';
  position: absolute;
  inset: 0;
  width: var(--spots-fill, 16%);
  background: linear-gradient(90deg, var(--ember), var(--gold));
  border-radius: 2px;
  box-shadow: 0 0 12px rgba(232, 93, 4, 0.4);
  transition: width 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.lg-offer__fineprint {
  font-family: var(--font-body);
  font-size: 12px;
  line-height: 1.55;
  font-weight: 400;
  color: rgba(240, 230, 210, 0.5);
  text-align: center;
  padding-top: 8px;
}
.lg-offer__fineprint b { color: var(--cream); font-weight: 600; }

/* Parachute (free trial) strip */
.lg-parachute {
  max-width: 1080px;
  margin: 36px auto 0;
  background:
    linear-gradient(135deg, rgba(232, 220, 196, 0.03), rgba(232, 220, 196, 0.01)),
    var(--warm-grey);
  border: 1px solid var(--border-strong);
  padding: 32px 40px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 32px;
  align-items: center;
  position: relative;
}
.lg-parachute::before {
  content: '';
  position: absolute;
  left: 40px;
  top: -1px;
  width: 64px;
  height: 2px;
  background: var(--cream);
}
.lg-parachute__mark {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-light);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.lg-parachute__date {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--cream);
  line-height: 0.95;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  /* Reset any inherited block/box from sibling .day rule in programme.css */
  background: none;
  border: 0;
  padding: 0;
  min-height: 0;
  display: block;
}
.lg-parachute__day {
  font-family: var(--font-mono);
  font-size: 10px;
  color: rgba(240, 230, 210, 0.5);
  letter-spacing: 0.2em;
  /* Reset programme.css .day collision (background, border, min-height: 320px) */
  background: none;
  border: 0;
  padding: 0;
  min-height: 0;
  display: block;
}
.lg-parachute__when {
  font-family: var(--font-mono);
  font-size: 10px;
  color: rgba(240, 230, 210, 0.5);
  letter-spacing: 0.2em;
  display: block;
}
.lg-parachute__body {
  border-left: 1px solid var(--border-strong);
  padding-left: 32px;
}
.lg-parachute__title {
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 8px;
}
.lg-parachute__title em {
  font-style: normal;
  color: var(--gold-light);
}
.lg-parachute__copy {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.55;
  font-weight: 400;
  color: rgba(240, 230, 210, 0.7);
  max-width: 540px;
}
.lg-parachute__copy b { color: var(--cream); font-weight: 600; }
.lg-parachute__note {
  font-family: var(--font-body);
  font-size: 11px;
  line-height: 1.45;
  color: rgba(240, 230, 210, 0.45);
  margin-top: 10px;
  max-width: 540px;
}
.lg-parachute__note .ast {
  color: var(--gold);
  margin-right: 2px;
}

.lg-btn-ghost {
  appearance: none;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 26px;
  background: transparent;
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid rgba(232, 220, 196, 0.35);
  text-decoration: none;
  transition: all 0.25s ease;
  position: relative;
  white-space: nowrap;
}
.lg-btn-ghost:hover {
  border-color: var(--cream);
  background: rgba(232, 220, 196, 0.05);
  transform: translateY(-2px);
}
.lg-btn-ghost .arrow { font-size: 18px; transition: transform 0.25s ease; }
.lg-btn-ghost:hover .arrow { transform: translateX(4px); }

/* After-foundation strip (standard rates) */
.lg-after {
  max-width: 1080px;
  margin: 72px auto 0;
  position: relative;
}
.lg-after__head {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 24px;
  padding: 0 4px;
}
.lg-after__head-rule {
  flex: 1;
  height: 1px;
  background: repeating-linear-gradient(90deg, var(--border-strong) 0 6px, transparent 6px 12px);
}
.lg-after__head-text {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(240, 230, 210, 0.45);
}
.lg-after__head-text b { color: var(--gold-light); font-weight: 600; }
.lg-after__grid {
  display: grid;
  grid-template-columns: 1.1fr repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  background: rgba(20, 16, 13, 0.5);
  backdrop-filter: blur(8px);
}
.lg-after__cell {
  padding: 28px 24px;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
}
.lg-after__cell:last-child { border-right: none; }
.lg-after__cell.heading {
  background: rgba(20, 16, 13, 0.7);
  justify-content: center;
}
.lg-after__cell.heading h4 {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: rgba(240, 230, 210, 0.7);
  line-height: 1.1;
}
.lg-after__cell.heading h4 em {
  font-style: normal;
  color: var(--gold-light);
}
.lg-after__cell.heading p {
  font-family: var(--font-body);
  font-size: 12px;
  line-height: 1.5;
  font-weight: 400;
  color: rgba(240, 230, 210, 0.45);
  margin-top: 8px;
}
.lg-after__tier-lbl {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(240, 230, 210, 0.5);
}
.lg-after__tier-name {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--cream);
}
.lg-after__tier-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-top: 6px;
}
.lg-after__tier-price .amt {
  font-family: var(--font-display);
  font-size: 44px;
  color: var(--cream);
  line-height: 0.9;
  letter-spacing: 0;
}
.lg-after__tier-price .per {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(240, 230, 210, 0.5);
}
.lg-after__tier-detail {
  font-family: var(--font-body);
  font-size: 12px;
  line-height: 1.45;
  font-weight: 400;
  color: rgba(240, 230, 210, 0.5);
}
.lg-after__foot {
  margin-top: 18px;
  text-align: center;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  color: rgba(240, 230, 210, 0.4);
  letter-spacing: 0.04em;
}
.lg-after__foot b { color: rgba(240, 230, 210, 0.7); font-weight: 600; }

/* Membership section responsive */
@media (max-width: 960px) {
  .lg-offer__card {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 48px 32px;
  }
  .lg-offer__right::before { display: none; }
  .lg-offer__perks { grid-template-columns: 1fr; }
  .lg-parachute {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 28px 24px;
    text-align: center;
  }
  .lg-parachute__body { border-left: none; padding-left: 0; border-top: 1px solid var(--border-strong); padding-top: 20px; }
  .lg-parachute__mark { align-items: center; }
  .lg-after__grid { grid-template-columns: 1fr; }
  .lg-after__cell { border-right: none; border-bottom: 1px solid var(--border); }
  .lg-after__cell:last-child { border-bottom: none; }
}
@media (max-width: 520px) {
  .lg-offer__name { font-size: 36px; }
  .lg-offer__amount { font-size: 84px; }
  .lg-head__title { font-size: 44px; }
  .lg-offer__card { padding: 36px 24px; }
}

/* Guarantee section: shield seal replacement (no circle ring needed) */
.guarantee__seal--shield {
  width: 84px;
  height: 84px;
  background: transparent;
  border: 0;
  margin-bottom: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.guarantee__seal--shield svg {
  width: 100%;
  height: 100%;
  display: block;
}
.guarantee__seal--shield + .guarantee__seal-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.28em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 18px;
}
.guarantee__title em {
  font-style: normal;
  color: var(--gold);
}

/* ─── Pre-launch placeholders (rev 12) ─── */

.vsl__placeholder {
  position: relative;
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ember);
  opacity: 0.85;
  z-index: 1;
}

.benefit__image--placeholder {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.6vw, 32px);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ember);
  opacity: 0.85;
}

.benefit__bullets {
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.benefit__bullets li {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.55;
  color: var(--body);
  position: relative;
  padding-left: 18px;
}
.benefit__bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ember);
}

/* "This is real" live counter honesty note (carried over from coming-soon). */
.lg-live-note {
  margin-top: 14px;
  display: flex;
  gap: 9px;
  align-items: flex-start;
  font-family: var(--font-body);
  font-size: 12.5px;
  line-height: 1.5;
  color: rgba(240, 230, 210, 0.6);
}
.lg-live-note b { color: var(--cream); font-weight: 600; }
.lg-live-dot {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  margin-top: 5px;
  border-radius: 50%;
  background: #3ddc84;
  box-shadow: 0 0 0 0 rgba(61, 220, 132, 0.55);
  animation: lgLivePulse 2s infinite;
}
@keyframes lgLivePulse {
  0%   { box-shadow: 0 0 0 0 rgba(61, 220, 132, 0.55); }
  70%  { box-shadow: 0 0 0 8px rgba(61, 220, 132, 0); }
  100% { box-shadow: 0 0 0 0 rgba(61, 220, 132, 0); }
}
