/* ============================================================
   SECTIONS — announce, header, hero, ticker, pain, story,
   bridge, stack, countdown, testimonials, guarantee, checkout,
   footer.
   ============================================================ */

/* ---------- Announce bar ---------- */
.announce {
  background: linear-gradient(90deg, var(--gold-deep), var(--terra), var(--gold-deep));
  background-size: 220% auto;
  animation: slide-bg 5s linear infinite;
  color: #2a1c08;
  font-size: var(--step--1);
  font-weight: 600;
  text-align: center;
}
.announce__inner {
  display: flex; align-items: center; justify-content: center; gap: 0.55rem;
  padding: 0.55rem 1rem; flex-wrap: wrap;
}
.announce__pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: #2a1c08;
  animation: pulse 1.4s var(--ease) infinite;
}
.announce strong { font-weight: 800; }
.announce__timer {
  font-variant-numeric: tabular-nums;
  font-weight: 800; letter-spacing: 0.02em;
  background: rgba(20,17,14,0.16); border-radius: var(--r-pill);
  padding: 0.12rem 0.55rem;
}

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 900;
  background: rgba(247,245,241,0.82);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--t), background var(--t);
}
.header.is-stuck { border-bottom-color: var(--border); background: rgba(247,245,241,0.96); box-shadow: var(--shadow-sm); }
.header__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--header-h);
}
.brand { display: inline-flex; align-items: center; gap: 0.6rem; }
.brand img { height: 26px; width: auto; }
.brand__tagline {
  font-size: 0.72rem; font-weight: 700; color: var(--muted-2);
  padding-left: 0.6rem; border-left: 1px solid var(--border);
  white-space: nowrap;
}
@media (max-width: 900px) { .brand__tagline { display: none; } }
.header__nav { display: flex; align-items: center; gap: 1.6rem; }
.header__link {
  font-size: var(--step--1); font-weight: 600; color: var(--muted);
  transition: color var(--t-fast);
}
.header__link:hover { color: var(--text); }
@media (max-width: 680px) { .header__link:not(.btn) { display: none; } }

/* ---------- Hero ---------- */
.hero { position: relative; padding-block: clamp(2.5rem, 7vw, 5.5rem) clamp(2rem, 5vw, 4rem); overflow: hidden; }
.hero__bg {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center;
  opacity: 0.16;
  -webkit-mask-image: radial-gradient(ellipse 60% 55% at 50% 42%, #000 0%, #000 35%, transparent 78%);
          mask-image: radial-gradient(ellipse 60% 55% at 50% 42%, #000 0%, #000 35%, transparent 78%);
}
.hero__glow {
  position: absolute; top: -20%; right: -10%;
  width: 60vw; height: 60vw; max-width: 720px; max-height: 720px;
  background: radial-gradient(circle, rgba(240,169,59,0.16), transparent 65%);
  pointer-events: none;
  animation: float-glow 9s var(--ease) infinite alternate;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
}

/* ---------- Floating countdown overlay (sits on top of the hero visuals) ---------- */
.hero__timer-overlay {
  position: absolute; top: clamp(0.8rem, 3vw, 1.4rem); right: clamp(0.8rem, 3vw, 1.4rem);
  z-index: 3;
  display: flex; align-items: center; gap: 0.5rem;
  background: rgba(20,17,14,0.88); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.12); border-radius: var(--r-pill);
  padding: 0.5rem 0.9rem;
  color: #fdfbf7; font-size: 0.76rem; font-weight: 700;
  box-shadow: var(--shadow);
}
.hero__timer-overlay i { width: 14px; height: 14px; color: var(--gold-bright); flex-shrink: 0; }
.hero__timer-overlay-label { color: rgba(253,251,247,0.72); font-weight: 600; }
.hero__timer-overlay-clock { color: var(--gold-bright); font-variant-numeric: tabular-nums; letter-spacing: 0.02em; }
@media (max-width: 560px) {
  .hero__timer-overlay { top: 0.6rem; right: 0.6rem; padding: 0.4rem 0.7rem; font-size: 0.68rem; gap: 0.35rem; }
  .hero__timer-overlay-label { display: none; }
}
.hero__title {
  font-size: var(--step-4);
  margin-block: 1rem;
}
.hero__title em { font-style: normal; color: var(--gold); }
.hero__title .hl {
  position: relative;
  white-space: nowrap;
  color: var(--text);
}
.hero__title .hl::after {
  content: ""; position: absolute; left: -2%; right: -2%; bottom: 0.08em; height: 0.34em;
  background: linear-gradient(90deg, rgba(240,169,59,0.5), rgba(224,122,82,0.4));
  border-radius: 4px; z-index: -1;
}
.hero__sub { font-size: var(--step-1); color: var(--muted); max-width: 32em; }
.hero__sub em { color: var(--text-soft); font-style: italic; }

.hero__cta { margin-block: 1.8rem 1.4rem; }

.hero__portrait { position: relative; }
.hero__portrait img {
  width: 100%;
  border-radius: var(--r-lg);
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 13 / 15;
  object-fit: cover;
  background: var(--card);
}
.hero__portrait-tag {
  position: absolute; left: 0.9rem; bottom: 0.9rem;
  background: rgba(20,17,14,0.78);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 0.6rem 0.9rem;
  display: grid;
}
.hero__portrait-name { font-weight: 700; font-size: var(--step--1); }
.hero__portrait-role { font-size: 0.74rem; color: var(--muted); }

@media (max-width: 820px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__portrait { max-width: 360px; margin-inline: auto; order: -1; }
}

/* ---------- Ticker ---------- */
.ticker {
  background: var(--bg-2);
  border-block: 1px solid var(--border);
  overflow: hidden;
  padding-block: 0.75rem;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.ticker__track {
  display: flex; gap: 3rem; width: max-content;
  animation: ticker-scroll 32s linear infinite;
}
.ticker:hover .ticker__track { animation-play-state: paused; }
.ticker__item {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: var(--step--1); font-weight: 500; white-space: nowrap;
}
.ticker__item img { width: 26px; height: 26px; border-radius: 50%; object-fit: cover; }
.ticker__item .amt { color: var(--green); font-weight: 700; }
.ticker__item .when { color: var(--muted-2); }

/* ---------- Pain ---------- */
.pain-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 1.4rem;
  transition: transform var(--t) var(--ease), border-color var(--t);
}
.pain-card:hover { transform: translateY(-4px); border-color: rgba(226,97,90,0.3); }
.pain-card__icon {
  display: grid; place-items: center;
  width: 46px; height: 46px; border-radius: 12px;
  background: rgba(226,97,90,0.1); color: var(--red);
  margin-bottom: 0.9rem;
}
.pain-card__icon svg { width: 22px; height: 22px; }
.pain-card h3 { font-size: var(--step-1); margin-bottom: 0.35rem; }
.pain-card p { font-size: var(--step--1); color: var(--muted); }

.pain-proof {
  margin-top: clamp(1.6rem, 4vw, 2.4rem);
  display: flex; align-items: center; flex-wrap: wrap; justify-content: center;
  gap: 0.9rem;
  padding: 1rem 1.2rem;
  border: 1px solid var(--border);
  border-radius: var(--r);
  background: var(--card);
}
.pain-proof img {
  width: 56px; height: 56px; border-radius: 10px;
  object-fit: cover; border: 1px solid var(--border-strong);
  box-shadow: var(--shadow);
  flex-shrink: 0;
}
.pain-proof p { font-size: var(--step--1); color: var(--muted); margin: 0; }
.pain-proof a { color: var(--gold-deep); font-weight: 600; white-space: nowrap; }
@media (max-width: 560px) { .pain-proof { justify-content: flex-start; } }

/* ---------- Story ---------- */
.story__grid {
  display: grid; grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(1.5rem, 4vw, 3rem); align-items: center;
}
.story__photo img {
  width: 100%; border-radius: var(--r-lg);
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 8 / 9; object-fit: cover; background: var(--card);
}
.story__body p { color: var(--text-soft); margin-bottom: 0.9rem; }
.story__body p:first-of-type { font-size: var(--step-1); color: var(--text); }
.story__sign { font-family: var(--font-display); font-style: italic; color: var(--gold); }
@media (max-width: 760px) {
  .story__grid { grid-template-columns: 1fr; }
  .story__photo { max-width: 320px; }
}

/* ---------- Bridge ---------- */
.bridge {
  display: grid; grid-template-columns: 1fr auto 1fr;
  gap: clamp(1rem, 4vw, 2.5rem); align-items: stretch;
}
.bridge__col {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 1.8rem;
}
.bridge__col--before { border-color: rgba(226,97,90,0.2); }
.bridge__col--after { border-color: rgba(70,201,138,0.25); box-shadow: var(--glow-green); }
.bridge__label {
  display: block; font-size: var(--step--1); font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 1rem;
}
.bridge__col--before .bridge__label { color: var(--red); }
.bridge__col--after .bridge__label { color: var(--green); }
.bridge__arrow {
  display: grid; place-items: center; color: var(--gold);
}
.bridge__arrow svg { width: 34px; height: 34px; }
@media (max-width: 680px) {
  .bridge { grid-template-columns: 1fr; }
  .bridge__arrow { transform: rotate(90deg); }
}

/* ---------- Value stack ---------- */
.stack { display: grid; gap: 0.8rem; margin-bottom: 1rem; }
.stack__item {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.1rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 1.3rem 1.4rem;
  transition: transform var(--t) var(--ease), border-color var(--t);
}
.stack__item:hover { transform: translateX(4px); border-color: var(--border-strong); }
.stack__item--core {
  border-color: rgba(240,169,59,0.35);
  background: linear-gradient(135deg, rgba(240,169,59,0.06), rgba(224,122,82,0.04));
}
.stack__badge {
  position: absolute; top: -9px; left: 1.3rem;
  background: var(--gold); color: #2a1c08;
  font-size: 0.66rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.2rem 0.6rem; border-radius: var(--r-pill);
}
.stack__num {
  width: 44px; height: 44px; border-radius: 12px;
  display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 700; font-size: var(--step-1);
  background: linear-gradient(135deg, var(--terra), var(--gold-deep));
  color: #2a1c08;
}
.stack__num--bonus { background: rgba(240,169,59,0.12); color: var(--gold); }
.stack__num--bonus i { width: 20px; height: 20px; }
.stack__body h3 { font-size: var(--step-1); margin-bottom: 0.2rem; }
.stack__body p { font-size: var(--step--1); color: var(--muted); }
.stack__value { text-align: right; display: grid; gap: 0.1rem; }
.stack__value s { font-size: var(--step--1); }
.stack__value strong { color: var(--green); font-weight: 700; white-space: nowrap; }

@media (max-width: 600px) {
  .stack__item { grid-template-columns: auto 1fr; }
  .stack__value { grid-column: 1 / -1; text-align: left; display: flex; gap: 0.6rem; align-items: baseline; }
}

.value-bar {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 1.2rem;
  background: linear-gradient(135deg, rgba(240,169,59,0.1), rgba(70,201,138,0.06));
  border: 2px solid rgba(240,169,59,0.3);
  border-radius: var(--r-lg);
  padding: 1.6rem 1.8rem;
}
.value-bar__total { display: grid; }
.value-bar__total span { font-size: var(--step--1); color: var(--muted); }
.value-bar__total strong { font-family: var(--font-display); font-size: var(--step-2); color: var(--text); }
.value-bar__price { display: grid; }
.value-bar__price s { font-size: var(--step-0); }
.value-bar__now { font-family: var(--font-display); font-size: var(--step-3); font-weight: 700; color: var(--green); line-height: 1; }
.value-bar__price small { color: var(--muted); }

/* ---------- Countdown ---------- */
.countdown {
  background: linear-gradient(135deg, rgba(240,169,59,0.1), rgba(224,122,82,0.06));
  border-block: 1px solid rgba(240,169,59,0.2);
  padding-block: clamp(2rem, 5vw, 3rem);
}
.countdown__inner {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.5rem;
}
.countdown__text h2 { font-size: var(--step-2); margin-bottom: 0.3rem; }
.countdown__text p { color: var(--muted); max-width: 36em; }
.countdown__text strong { color: var(--text-soft); }
.timer { display: flex; gap: 0.5rem; align-items: center; }
.timer__block {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--r-sm); padding: 0.8rem 0.9rem; text-align: center; min-width: 66px;
}
.timer__num {
  display: block; font-family: var(--font-display); font-weight: 700;
  font-size: var(--step-3); line-height: 1; color: var(--gold);
  font-variant-numeric: tabular-nums;
}
.timer__label { font-size: 0.66rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted-2); }
.timer__sep { font-size: var(--step-2); color: var(--gold); opacity: 0.5; }

/* Depleting progress bar under the countdown — refills on each loop */
.timer__track {
  height: 6px; margin-top: clamp(1rem, 3vw, 1.5rem);
  background: var(--border-strong); border-radius: 999px; overflow: hidden;
}
.timer__progress {
  display: block; height: 100%; width: 100%;
  background: linear-gradient(90deg, var(--gold-bright), var(--gold-deep));
  border-radius: 999px; transition: width 1s linear;
}

/* "Beta price locked" chip → flips to the ₱27,990 warning on each zero-crossing */
.countdown__pricetag {
  display: inline-flex; align-items: center; gap: 0.45rem; margin-top: 0.9rem;
  padding: 0.4rem 0.85rem; border-radius: var(--r-pill);
  border: 1px solid rgba(70,201,138,0.32); background: rgba(70,201,138,0.08);
  font-size: var(--step--1); font-weight: 700; color: var(--text-soft);
  transition: background var(--t), border-color var(--t), color var(--t);
}
.countdown__pricetag i { width: 15px; height: 15px; color: var(--green); flex-shrink: 0; }

/* Shared "price reverted" flash (landing chip + enrollment price) */
.is-reverted {
  color: var(--hot-2) !important;
  border-color: rgba(255,90,60,0.45) !important;
  background: rgba(255,90,60,0.1) !important;
  animation: pulse-soft 0.6s var(--ease) 2;
}
.is-reverted i { color: var(--hot-2) !important; }

/* ---------- Testimonials ---------- */
.testi {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 1.5rem;
  transition: transform var(--t) var(--ease), border-color var(--t);
}
.testi:hover { transform: translateY(-4px); border-color: var(--border-strong); }
.testi--featured { border-color: rgba(70,201,138,0.3); background: linear-gradient(135deg, rgba(70,201,138,0.05), var(--card)); }
.testi--four { border-style: dashed; }
.testi__head { display: flex; align-items: center; gap: 0.8rem; margin-bottom: 0.9rem; }
.testi__avatar { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; background: var(--card-raised); }
.testi__name { font-size: var(--step-1); }
.testi__meta { font-size: var(--step--1); color: var(--muted); }
.testi__stars { color: var(--gold); letter-spacing: 2px; margin-bottom: 0.7rem; }
.testi__star-empty { color: var(--muted-2); }
.testi__result {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: var(--step--1); font-weight: 700; color: var(--green);
  background: rgba(70,201,138,0.1); border: 1px solid rgba(70,201,138,0.22);
  padding: 0.35rem 0.8rem; border-radius: var(--r-pill); margin-bottom: 0.8rem;
}
.testi__result i { width: 14px; height: 14px; }
.testi__result--neutral { color: var(--muted); background: rgba(255,255,255,0.04); border-color: var(--border); }
.testi__body { color: var(--text-soft); font-size: var(--step-0); }
.testi__body em { color: var(--gold); font-style: italic; }
.testi__proof { margin-top: 1rem; }
.testi__proof img { width: 100%; border-radius: var(--r-sm); border: 1px solid var(--border); }

/* ---------- Stats ---------- */
.stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
  margin-top: 3rem;
}
.stat { text-align: center; background: var(--card); border: 1px solid var(--border); border-radius: var(--r); padding: 1.6rem 1rem; }
.stat__num { display: block; font-family: var(--font-display); font-weight: 700; font-size: var(--step-3); color: var(--gold); line-height: 1.1; }
.stat__label { font-size: var(--step--1); color: var(--muted); }
@media (max-width: 700px) { .stats { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Guarantee ---------- */
.guarantee {
  position: relative;
  text-align: center;
  max-width: 760px; margin-inline: auto;
  background: linear-gradient(135deg, rgba(70,201,138,0.12), rgba(70,201,138,0.03));
  border: 2px solid rgba(70,201,138,0.4);
  border-radius: var(--r-lg);
  padding: clamp(2.4rem, 5vw, 3.8rem);
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(70,201,138,0.08), var(--shadow-lg);
}
.guarantee .eyebrow { color: var(--green); justify-content: center; width: 100%; }
.guarantee__badge {
  width: 96px; height: 96px; border-radius: 50%;
  display: grid; place-items: center; margin: 0 auto 1.3rem;
  background: linear-gradient(135deg, var(--green), var(--green-deep));
  color: #06251a; box-shadow: var(--glow-green);
}
.guarantee__badge svg { width: 46px; height: 46px; }
.guarantee .section__title { font-size: var(--step-3); }
.guarantee__headline {
  color: var(--text) !important; font-weight: 700; font-size: var(--step-1);
  max-width: 34em; margin: 0.9rem auto 0 !important; line-height: 1.4;
}
.guarantee > p { color: var(--muted); max-width: 36em; margin: 0.8rem auto 0; }
.guarantee__kicker { color: var(--text) !important; font-weight: 600; }

/* Inline refund highlight used in the hero deck copy */
.hl-refund {
  color: var(--green-deep);
  background: linear-gradient(transparent 62%, rgba(70,201,138,0.28) 62%);
}

/* ---------- Checkout ---------- */
.checkout {
  background: linear-gradient(180deg, var(--bg-2), var(--bg));
  padding-block: clamp(3rem, 6vw, 5rem); /* was flush — gives the card air above + below */
}
.card--checkout { padding: clamp(1.5rem, 5vw, 2.8rem); }
.checkout__head { text-align: center; margin-bottom: 1.6rem; }
.checkout__head .eyebrow { justify-content: center; width: 100%; }
.checkout__head h2 { font-size: var(--step-2); margin-bottom: 0.4rem; }
.checkout__head p { color: var(--muted); }

.price {
  display: flex; align-items: flex-end; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--r); padding: 1.4rem; margin-bottom: 1.3rem;
}
.price__was { font-size: var(--step-0); }
.price__now { font-family: var(--font-display); font-weight: 700; font-size: var(--step-4); color: var(--green); line-height: 1; }
.price__note { font-size: var(--step--1); color: var(--muted); }
.price__save { text-align: right; }
.price__save span { display: block; font-size: var(--step--1); color: var(--muted); }
.price__save strong { font-family: var(--font-display); font-size: var(--step-2); color: var(--green); }

.checkout__list { margin-bottom: 1.4rem; }

.bump {
  display: grid; grid-template-columns: auto 1fr auto; align-items: start; gap: 0.85rem;
  background: rgba(240,169,59,0.06);
  border: 2px dashed rgba(240,169,59,0.32);
  border-radius: var(--r); padding: 1rem 1.1rem; margin-bottom: 1.3rem;
  cursor: pointer; transition: border-color var(--t), background var(--t);
}
.bump:hover { border-color: rgba(240,169,59,0.5); }
.bump__input { position: absolute; opacity: 0; width: 0; height: 0; }
.bump__box {
  width: 24px; height: 24px; border-radius: 7px; margin-top: 1px;
  border: 2px solid var(--gold); background: rgba(240,169,59,0.1);
  display: grid; place-items: center; color: #2a1c08;
  transition: background var(--t-fast);
}
.bump__box svg { width: 15px; height: 15px; opacity: 0; transform: scale(0.5); transition: opacity var(--t-fast), transform var(--t-fast) var(--ease-spring); }
.bump__input:checked + .bump__box { background: var(--gold); }
.bump__input:checked + .bump__box svg { opacity: 1; transform: scale(1); }
.bump__input:focus-visible + .bump__box { outline: 2px solid var(--gold); outline-offset: 2px; }
.bump__text strong { display: block; color: var(--gold); font-size: var(--step-0); }
.bump__text span { font-size: var(--step--1); color: var(--muted); }
.bump__price { font-family: var(--font-display); font-weight: 700; color: var(--gold); }

.checkout__assure { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.4rem 1.4rem; margin-top: 1rem; font-size: var(--step--1); color: var(--muted); }
.checkout__assure span { display: inline-flex; align-items: center; gap: 0.4rem; }
.checkout__assure i { width: 14px; height: 14px; color: var(--green); }

.paywall { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.2rem; }
.paywall > span { font-size: var(--step--1); color: var(--muted); }
.paywall__methods { display: flex; gap: 0.4rem; flex-wrap: wrap; }
.paywall__methods li {
  font-size: 0.7rem; font-weight: 800; color: var(--text-soft);
  background: var(--bg); border: 1px solid var(--border);
  border-radius: 6px; padding: 0.3rem 0.6rem;
}
.paywall__methods .is-apple { color: #fff; }
.paywall__methods .is-google { color: #6ea2ff; }
.paywall__secure { display: flex; align-items: center; justify-content: center; gap: 0.4rem; font-size: var(--step--1); color: var(--muted-2); margin-top: 0.7rem; }
.paywall__secure i { width: 13px; height: 13px; color: var(--green); }

/* ---------- Footer ---------- */
.footer { background: var(--bg-2); border-top: 1px solid var(--border); padding-block: clamp(2.6rem, 5vw, 3.6rem); }
.footer__inner { display: grid; gap: 1.5rem; }
.footer__top {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 1.2rem 2rem;
}
.footer__brand { display: flex; align-items: center; gap: 0.9rem; flex-wrap: wrap; }
.footer__logo { height: 26px; opacity: 0.9; }
.footer__tag { font-size: var(--step--1); color: var(--muted); }
.footer__nav { display: flex; flex-wrap: wrap; gap: 0.6rem 1.4rem; }
.footer__nav a { font-size: var(--step--1); font-weight: 600; color: var(--muted); transition: color var(--t-fast); }
.footer__nav a:hover { color: var(--text); }
.footer__divider { height: 1px; background: var(--border); }
.footer__bottom {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 0.6rem 1.6rem;
}
.footer__legalnav { display: flex; flex-wrap: wrap; gap: 0.5rem 1.2rem; }
.footer__legalnav a { font-size: 0.78rem; color: var(--muted-2); transition: color var(--t-fast); }
.footer__legalnav a:hover { color: var(--text-soft); }
.footer__legal { font-size: var(--step--1); color: var(--muted); white-space: nowrap; }
.footer__disclaimer { font-size: 0.75rem; color: var(--muted-2); max-width: 78ch; line-height: 1.6; }
@media (max-width: 600px) {
  .footer__top { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   v3 ADDITIONS — tight hero, peso, Temu-style flash, proof dash
   ============================================================ */

/* ---------- Hero (tight, centered, text-first) ---------- */
.hero { padding-block: clamp(1.8rem, 5vw, 3.2rem) clamp(1.6rem, 4vw, 2.6rem); }
.hero__inner { text-align: center; display: flex; flex-direction: column; align-items: center; }
.hero__inner .eyebrow { justify-content: center; }
.hero__title { font-size: var(--step-4); margin: 0.3rem 0 0.8rem; max-width: 17ch; }
.hero__sub { font-size: var(--step-1); color: var(--text-soft); max-width: 44ch; }
.hero__value {
  display: inline-flex; align-items: center; gap: 0.6rem; margin-top: 1.1rem;
  background: linear-gradient(135deg, rgba(255,90,60,0.13), rgba(240,169,59,0.1));
  border: 1px solid rgba(255,90,60,0.32); border-radius: var(--r-pill);
  padding: 0.55rem 1.1rem; font-size: var(--step--1); color: var(--text-soft);
  box-shadow: var(--glow-hot);
}
.hero__value i { width: 18px; height: 18px; color: var(--hot-2); flex-shrink: 0; }
.hero__value strong { color: var(--gold-bright); }
.hero__value em { color: var(--text); font-style: normal; font-weight: 700; }
.hero__cta { margin-top: 1.4rem; display: flex; flex-direction: column; align-items: center; }
.btn__peso { font-size: 0.76em; font-weight: 700; opacity: 0.72; }

/* ---------- Lightning deal bar ---------- */
.deal-bar { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 0.6rem 1rem; margin-bottom: 1.3rem; }
.deal-bar__flag {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: linear-gradient(135deg, var(--hot), var(--hot-2)); color: #2a1006;
  font-weight: 800; font-size: var(--step--1); letter-spacing: 0.05em;
  padding: 0.4rem 0.9rem; border-radius: var(--r-pill);
  box-shadow: var(--glow-hot); animation: pulse-soft 1.6s var(--ease) infinite;
}
.deal-bar__flag i { width: 15px; height: 15px; }
.deal-bar__off { font-weight: 900; color: var(--hot-2); font-size: var(--step-1); text-shadow: 0 0 18px rgba(255,138,43,0.5); }
.deal-bar__viewing { display: inline-flex; align-items: center; gap: 0.45rem; font-size: var(--step--1); color: var(--muted); }
.live-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--hot); box-shadow: 0 0 8px var(--hot); animation: pulse 1.3s infinite; flex-shrink: 0; display: inline-block; }

/* ---------- Seats-left bar ---------- */
.seats { max-width: 560px; margin: 1.6rem auto 0; }
.seats__row { display: flex; justify-content: space-between; gap: 1rem; font-size: var(--step--1); margin-bottom: 0.5rem; }
.seats__row i { width: 15px; height: 15px; color: var(--hot); vertical-align: -2px; }
.seats__row strong { color: var(--hot-2); }
.seats__bar { height: 10px; border-radius: var(--r-pill); background: rgba(255,255,255,0.07); overflow: hidden; border: 1px solid var(--border); }
.seats__fill { display: block; height: 100%; border-radius: var(--r-pill); background: linear-gradient(90deg, var(--hot-2), var(--hot)); box-shadow: var(--glow-hot); transition: width 1.4s var(--ease); }

/* ---------- Value bar + price flash ---------- */
.value-bar__off, .price__off {
  display: inline-block; background: linear-gradient(135deg, var(--hot), var(--hot-2));
  color: #2a1006; font-weight: 800; font-size: var(--step--1);
  padding: 0.18rem 0.65rem; border-radius: var(--r-pill); box-shadow: var(--glow-hot);
}
.value-bar__off { margin-bottom: 0.3rem; }
.price__off { margin-bottom: 0.55rem; animation: pulse-soft 1.8s var(--ease) infinite; }
.value-bar__total strong small { font-size: 0.55em; color: var(--muted); font-weight: 600; }
.price__peso { font-family: var(--font-body); font-size: 0.36em; font-weight: 700; color: var(--muted); vertical-align: middle; }
.price__save small { display: block; font-size: var(--step--1); color: var(--muted-2); text-decoration: none; }
.price__save strong { text-decoration: none; }
.sticky-cta__price em { font-style: normal; font-size: var(--step--1); color: var(--muted); }
.text-hot { color: var(--hot-2); }

/* ---------- Student proof dashboard ---------- */
.proof-dash { margin-top: 1rem; background: #0e0c0a; border: 1px solid var(--border-strong); border-radius: var(--r-sm); padding: 0.9rem 1rem; box-shadow: var(--shadow-sm); }
.proof-dash__top { display: flex; align-items: center; gap: 0.6rem; font-size: 0.72rem; color: var(--muted-2); margin-bottom: 0.7rem; }
.proof-dash__top .pd-period { background: rgba(255,255,255,0.05); padding: 0.15rem 0.5rem; border-radius: 6px; }
.proof-dash__top .pd-visitors { display: inline-flex; align-items: center; gap: 0.3rem; color: var(--green); }
.proof-dash__top .pd-report { margin-left: auto; border: 1px solid var(--border); padding: 0.15rem 0.5rem; border-radius: 6px; }
.proof-dash__metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.5rem; }
.proof-dash__metrics > div { display: grid; gap: 0.05rem; }
.pd-label { font-size: 0.64rem; color: var(--muted-2); }
.pd-val { font-family: var(--font-display); font-weight: 800; font-size: var(--step-0); color: var(--text); letter-spacing: -0.02em; }
.pd-up { font-size: 0.66rem; font-weight: 700; color: var(--green); }
.proof-dash__spark { width: 100%; height: 38px; margin: 0.5rem 0 0.5rem; display: block; }
.proof-dash__fulfill { display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.72rem; color: var(--muted); background: rgba(255,255,255,0.04); padding: 0.3rem 0.6rem; border-radius: 6px; }
.proof-dash__fulfill i { width: 14px; height: 14px; }

/* testimonial name + verified badge */
.testi__name { display: inline-flex; align-items: center; gap: 0.3rem; }
.testi__verified { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; }

.proofarc__h { font-family: var(--font-display); font-weight: 800; font-size: var(--step-2); line-height: 1.15; margin: 0 0 0.5rem; }
.proofarc__lead { color: var(--muted); margin: 0 0 1.3rem; max-width: 46ch; }

/* ---------- Proof arc band ---------- */
.proofarc__band { margin-top: clamp(1.6rem, 4vw, 2.4rem); scroll-margin-top: 88px; }

/* ---------- Track-record pill (students + academy) ---------- */
.proof-pill {
  display: inline-flex; align-items: center; gap: 0.55rem; flex-wrap: wrap; justify-content: center;
  margin-top: 0.6rem; padding: 0.55rem 1.2rem;
  border-radius: var(--r-pill);
  border: 1px solid rgba(70,201,138,0.32);
  background: rgba(70,201,138,0.08);
  font-size: var(--step--1); font-weight: 700; color: var(--text-soft);
}
.proof-pill i { width: 17px; height: 17px; color: var(--green); flex-shrink: 0; }
.proof-pill strong { color: var(--green); }

/* ---------- Floating, auto-scrolling wall of small text reviews ---------- */
.review-wall {
  display: grid; gap: clamp(0.7rem, 2vw, 1rem); overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}
.review-wall__row { display: flex; gap: clamp(0.7rem, 2vw, 1rem); width: max-content; }
.review-wall__row[data-review-row="0"] { animation: review-scroll-l 64s linear infinite; }
.review-wall__row[data-review-row="1"] { animation: review-scroll-r 78s linear infinite; }
.review-wall:hover .review-wall__row { animation-play-state: paused; }
.review-chip {
  flex: 0 0 auto; width: clamp(250px, 72vw, 330px);
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--r); padding: 1rem 1.1rem;
  display: grid; gap: 0.45rem; align-content: start;
}
.review-chip__stars { color: var(--gold); font-size: var(--step--1); letter-spacing: 2px; }
.review-chip__stars .is-empty { color: var(--muted-2); }
.review-chip__text {
  font-size: var(--step--1); color: var(--text-soft); line-height: 1.45;
  display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden;
}
.review-chip__who { font-size: 0.74rem; color: var(--muted); }
.review-chip__who strong { color: var(--text-soft); }
@media (prefers-reduced-motion: reduce) { .review-wall__row { animation: none; } }

/* ---------- Vertical floating gallery (sits beside the collage on desktop) ---------- */
.review-wall--vert {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(0.7rem, 1.5vw, 1rem);
  height: clamp(420px, 46vw, 560px); /* fixed frame; columns scroll inside */
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(180deg, transparent, #000 8%, #000 92%, transparent);
}
.review-wall--vert .review-wall__row { flex-direction: column; width: auto; height: max-content; }
.review-wall--vert .review-wall__row[data-review-row="0"] { animation: review-scroll-up 38s linear infinite; }
.review-wall--vert .review-wall__row[data-review-row="1"] { animation: review-scroll-down 46s linear infinite; }
.review-wall--vert .review-chip { width: auto; }

/* on narrow screens the gallery sits below the collage → revert to horizontal rows */
@media (max-width: 880px) {
  .review-wall--vert {
    grid-template-columns: 1fr; height: auto; gap: clamp(0.7rem, 2vw, 1rem);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
            mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  }
  .review-wall--vert .review-wall__row { flex-direction: row; width: max-content; height: auto; }
  .review-wall--vert .review-wall__row[data-review-row="0"] { animation: review-scroll-l 64s linear infinite; }
  .review-wall--vert .review-wall__row[data-review-row="1"] { animation: review-scroll-r 78s linear infinite; }
  .review-wall--vert .review-chip { width: clamp(250px, 72vw, 330px); }
}

/* ---------- Testimonials carousel (one review at a time, fixed height) ----------
   The viewport has a FIXED height and every card is absolutely positioned inside
   it, so cycling through reviews of different lengths never resizes the section. */
.tcarousel { max-width: 660px; margin: 0 auto; }
.tcarousel__viewport {
  position: relative;
  height: clamp(230px, 38vw, 260px);   /* fixed — does not grow/shrink per card */
}
.tcard {
  position: absolute; inset: 0;
  display: none; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; gap: 0.9rem; padding: clamp(1.4rem, 4vw, 2.2rem);
  background: var(--card); border: 1px solid var(--border); border-radius: var(--r-lg);
  box-shadow: var(--shadow);
}
.tcard.is-active { display: flex; animation: fade-up var(--t-slow) var(--ease); }
.tcard__stars { color: var(--gold); letter-spacing: 3px; font-size: var(--step-1); }
.tcard__stars .is-empty { color: var(--muted-2); }
.tcard__text { font-size: var(--step-1); color: var(--text); line-height: 1.45; max-width: 42ch; }
.tcard__who { font-size: var(--step--1); color: var(--muted); font-weight: 600; }
.tcard__who strong { color: var(--text-soft); }
.tcarousel__nav { display: flex; align-items: center; justify-content: center; gap: 0.4rem; margin-top: 1.2rem; }
.tdot {
  width: 8px; height: 8px; border-radius: 999px;
  background: var(--border-strong); border: none; cursor: pointer; padding: 0;
  transition: background var(--t), width var(--t);
}
.tdot.is-active { background: var(--gold); width: 22px; }
.tcarousel__foot { text-align: center; font-size: var(--step--1); color: var(--muted-2); margin-top: 1rem; }
@media (prefers-reduced-motion: reduce) { .tcard.is-active { animation: none; } }

/* ---------- Hero: deck line (who + price) + risk-reversal line ---------- */
.hero__deck {
  font-size: var(--step-0); color: var(--muted);
  max-width: 46ch; margin: 0.1rem 0 0;
}
.hero__deck strong { color: var(--text); font-weight: 700; }
.hero__deck small { font-size: 0.82em; color: var(--muted-2); }
.hero__value small { font-size: 0.82em; color: var(--text-soft); }
.hero__guarantee {
  margin-top: 0.95rem; font-size: var(--step--1);
  color: var(--text-soft); max-width: 44ch;
}

/* ---------- Hero: smaller tertiary CTA — free training, no commitment ---------- */
.hero__free-cta { margin-top: 0.9rem; }

/* ---------- Hero: value-anchor pill (deal hint, no actual price) ---------- */
.hero__anchor {
  display: inline-flex; align-items: center; gap: 0.5rem;
  margin-top: 1rem; padding: 0.45rem 1rem;
  border-radius: var(--r-pill);
  border: 1px solid rgba(240,169,59,0.3);
  background: linear-gradient(135deg, rgba(240,169,59,0.1), rgba(70,201,138,0.06));
  font-size: var(--step--1); color: var(--text-soft); font-weight: 600;
  max-width: 100%;
}
.hero__anchor i { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; }
.hero__anchor strong { color: var(--gold-bright); }

/* ---------- Hero: welcome video (same embed pattern as lesson videos) ---------- */
.hero__video {
  width: 100%; max-width: 560px; margin: 1.5rem auto 0;
  aspect-ratio: 16 / 9;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow-lg);
  background: radial-gradient(circle at 50% 40%, #1c1812, #0c0a08);
}
.hero__video iframe { width: 100%; height: 100%; border: 0; display: block; }
.hero__video--empty { display: grid; place-items: center; gap: 0.5rem; color: var(--muted); }
.hero__video--empty i { width: 42px; height: 42px; color: var(--gold); }
.hero__video--empty span { font-size: var(--step--1); font-weight: 600; }

/* ---------- Hero: dual CTA row (primary enroll + proof/reviews) ---------- */
.hero__cta-row { display: flex; gap: 0.7rem; flex-wrap: wrap; justify-content: center; }
.hero__cta-row .btn { flex: 0 1 auto; }
.hero__cta-row .btn--ghost {
  --btn-bg: var(--card);
  box-shadow: inset 0 0 0 1.5px var(--gold);
  color: var(--text);
}
.hero__cta-row .btn--ghost:hover { box-shadow: inset 0 0 0 1.5px var(--gold-deep); }
@media (max-width: 480px) {
  .hero__cta-row { flex-direction: column; align-items: stretch; width: 100%; }
  .hero__cta-row .btn { width: 100%; justify-content: center; }
}

.hero__inner { position: relative; z-index: 2; }

/* ---------- Value bar: honest "what this saves you" framing ---------- */
.value-bar__label { display: block; font-size: var(--step--1); color: var(--muted); }
.value-bar__total strong { font-size: var(--step-1); line-height: 1.18; }
.value-bar__total small { display: block; margin-top: 0.25rem; font-size: var(--step--1); color: var(--muted-2); font-weight: 400; line-height: 1.4; }
.value-bar__price s { font-size: var(--step--1); }
.checkout__head h2 { line-height: 1.12; }

/* ============================================================
   WORK-WITH-ME TIERS — shared by the landing teaser (.mentor,
   no prices) and the enrollment reveal (.etiers, with prices).
   ============================================================ */
.mentor__grid, .etiers__grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: clamp(0.8rem, 1.8vw, 1.2rem); align-items: stretch;
}
@media (max-width: 980px) { .mentor__grid, .etiers__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .mentor__grid, .etiers__grid { grid-template-columns: 1fr; } }

.tier {
  position: relative; display: flex; flex-direction: column; gap: 0.55rem; min-width: 0;
  background: var(--card); border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: clamp(1.2rem, 2.4vw, 1.6rem);
  transition: transform var(--t) var(--ease), border-color var(--t);
}
.tier:hover { transform: translateY(-4px); border-color: var(--border-strong); }
.tier--feat {
  border-color: rgba(240,169,59,0.5);
  background: linear-gradient(180deg, rgba(240,169,59,0.07), var(--card) 55%);
  box-shadow: var(--glow-gold), var(--shadow);
}
.tier__flag {
  position: absolute; top: -0.7rem; left: 1.2rem;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep)); color: #2a1c08;
  font-weight: 800; font-size: 0.7rem; letter-spacing: 0.02em;
  padding: 0.25rem 0.7rem; border-radius: var(--r-pill);
}
.tier__icon {
  display: grid; place-items: center; width: 44px; height: 44px; border-radius: 12px;
  background: rgba(240,169,59,0.12); color: var(--gold-bright);
}
.tier__icon svg { width: 22px; height: 22px; }
.tier__name { font-family: var(--font-display); font-weight: 800; font-size: var(--step-1); line-height: 1.1; }
.tier__tag { color: var(--muted); font-size: var(--step--1); margin-top: -0.25rem; }
.tier__price { font-family: var(--font-display); font-weight: 800; font-size: var(--step-2); color: var(--gold-bright); line-height: 1.1; }
.tier__price small { display: block; margin-top: 0.1rem; font-size: 0.42em; color: var(--muted); font-weight: 600; }
.tier__locked {
  display: inline-flex; align-items: center; gap: 0.35rem; align-self: flex-start;
  font-size: 0.72rem; font-weight: 700; color: var(--muted);
  border: 1px solid var(--border); border-radius: var(--r-pill); padding: 0.25rem 0.65rem;
}
.tier__locked svg { width: 13px; height: 13px; color: var(--gold); }
.tier__list { list-style: none; margin: 0.25rem 0; padding: 0; display: grid; gap: 0.5rem; }
.tier__list li { position: relative; padding-left: 1.45rem; font-size: var(--step--1); color: var(--text-soft); line-height: 1.4; }
.tier__list li::before {
  content: "✓"; position: absolute; left: 0; top: 0;
  color: var(--green); font-weight: 800;
}
.tier__cta { margin-top: auto; }
.tier__note { font-size: 0.74rem; color: var(--muted-2); text-align: center; line-height: 1.4; }

.mentor__foot, .etiers__foot {
  display: flex; align-items: center; justify-content: center; gap: 0.45rem; flex-wrap: wrap;
  text-align: center; margin-top: clamp(1.4rem, 3vw, 2rem);
  font-size: var(--step--1); color: var(--muted);
}
.mentor__foot svg, .etiers__foot svg { width: 15px; height: 15px; color: var(--gold); }
.etiers__foot a, .mentor__foot a { color: var(--gold-bright); font-weight: 700; }

/* enrollment: tiers view drops the sidebar → single column */
.enroll__grid.is-tiers { grid-template-columns: 1fr; }
.etiers__grid { margin-top: 0.5rem; }
.estep__upsell {
  display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap;
  margin-top: 1.4rem; padding-top: 1.2rem; border-top: 1px solid var(--border);
  font-size: var(--step--1); color: var(--muted);
}
.estep__upsell svg { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; }
.estep__upsell a { color: var(--gold-bright); font-weight: 700; }

/* Lean "work with me" teaser on the landing page — deliberately SECONDARY
   to the ₱1,299 offer: centered, compact, one learn-more button. */
.mentor__inner { text-align: center; }
.mentor__title { font-family: var(--font-display); font-weight: 800; font-size: var(--step-2); line-height: 1.14; margin: 0.4rem 0 0.8rem; }
.mentor__title em { color: var(--gold-bright); font-style: normal; }
.mentor__hardline { color: var(--muted); max-width: 58ch; margin: 0 auto 1.4rem; line-height: 1.55; }
.mentor__hardline strong { color: var(--text); font-weight: 700; }
.mentor__chips {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 0.6rem;
  list-style: none; padding: 0; margin: 0 0 1.6rem;
}
.mentor__chips li {
  display: inline-flex; align-items: center; gap: 0.45rem;
  background: var(--card); border: 1px solid var(--border); border-radius: var(--r-pill);
  padding: 0.45rem 0.9rem; font-size: var(--step--1); color: var(--muted);
}
.mentor__chips strong { color: var(--text-soft); font-weight: 700; }
.mentor__chips span { color: var(--muted-2); }
.mentor__chips i { width: 15px; height: 15px; color: var(--gold); flex-shrink: 0; }
.mentor__reassure { margin-top: 1rem; font-size: var(--step--1); color: var(--muted-2); }

/* ============================================================
   PROOF CASCADE — three marquee layers of real comment/DM/Messenger
   screenshots. Replaces the old hero ambient gallery, the photo-strip,
   and the static proof grid with one unified display: layer a & c
   scroll left→right, layer b scrolls right→left, all at different
   speeds with staggered start offsets (negative animation-delay) so
   they never look synced. Each card's height is cycled per-card while
   width stays auto (driven by the image's own aspect ratio) — that mix
   of card sizes plus opposing directions is what reads as a cascade
   instead of a grid.
   ============================================================ */
.proof-cascade {
  /* Full-bleed breakout — spans the entire viewport width regardless of
     where it sits inside a narrow .container, so the cascade reads as
     endless rather than boxed in. */
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  display: grid;
  gap: clamp(0.7rem, 2vw, 1.1rem);
  overflow: hidden;
  padding-block: 0.3rem;
}
.proof-cascade__layer {
  display: flex;
  align-items: center;
  gap: clamp(0.7rem, 2vw, 1.1rem);
  width: max-content;
  /* Runs continuously — never paused, not even on hover/click/tap, so it
     always reads as a live, limitless feed. */
  animation-play-state: running !important;
}
.proof-cascade__layer--a { animation: review-scroll-r 72s linear infinite; animation-delay: -6s; }
.proof-cascade__layer--b { animation: review-scroll-l 54s linear infinite; animation-delay: -24s; }
.proof-cascade__layer--c { animation: review-scroll-r 90s linear infinite; animation-delay: -42s; }
@media (prefers-reduced-motion: reduce) { .proof-cascade__layer { animation: none; } }

.proof-cascade__card {
  position: relative;
  flex: 0 0 auto;
  display: block;
  padding: 0;
  border: 1px solid var(--border-strong);
  border-radius: var(--r);
  overflow: hidden;
  background: var(--card);
  cursor: zoom-in;
  box-shadow: var(--shadow);
  transition: transform var(--t) var(--ease-spring), box-shadow var(--t) var(--ease);
}
.proof-cascade__card:hover { transform: translateY(-3px) scale(1.015); box-shadow: var(--shadow-lg); z-index: 1; }
.proof-cascade__card:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
.proof-cascade__card img { display: block; height: 100%; width: auto; }
.proof-cascade__tag {
  position: absolute; top: 0.5rem; left: 0.5rem; z-index: 1;
  background: rgba(20, 17, 14, 0.78); color: var(--text);
  font-size: 0.64rem; font-weight: 700; letter-spacing: 0.03em; text-transform: uppercase;
  padding: 0.22rem 0.5rem; border-radius: var(--r-pill);
  backdrop-filter: blur(4px);
}

.proof-lightbox {
  position: fixed; inset: 0; z-index: 200;
  display: grid; place-items: center; padding: 1.5rem;
}
.proof-lightbox__overlay { position: absolute; inset: 0; background: rgba(10, 8, 6, 0.82); backdrop-filter: blur(3px); }
.proof-lightbox__frame {
  position: relative; max-width: min(92vw, 480px); max-height: 88vh;
  animation: proof-pop var(--t-slow) var(--ease-spring);
}
.proof-lightbox__img { display: block; width: 100%; max-height: 88vh; object-fit: contain; border-radius: var(--r); box-shadow: var(--shadow-lg); }
.proof-lightbox__close {
  position: absolute; top: -0.9rem; right: -0.9rem;
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--text); color: var(--bg); border: none;
  font-size: 1.3rem; line-height: 1; cursor: pointer;
  display: grid; place-items: center; box-shadow: var(--shadow);
}
@keyframes proof-pop { from { opacity: 0; transform: scale(0.9); } to { opacity: 1; transform: scale(1); } }
