/* ═══════════════════════════════════════════════════════════════
   TRADER BUILD — Landing v2
   Design system: dark, restrained gold, monospace data, sharp edges
   ═══════════════════════════════════════════════════════════════ */

:root {
  /* Surfaces */
  --bg:        #0a0a0c;
  --bg-1:      #111114;
  --bg-2:      #16161c;
  --bg-3:      #1d1d26;
  --bg-card:   #14141a;

  /* Ink */
  --ink:       #f5f5f7;
  --ink-2:     #b8b8c0;
  --ink-3:     #7a7a82;
  --ink-4:     #4a4a52;

  /* Lines */
  --line:      rgba(255,255,255,0.08);
  --line-2:    rgba(255,255,255,0.04);
  --line-3:    rgba(255,255,255,0.14);

  /* Accent: restrained gold */
  --gold:        #d4af37;
  --gold-bright: #f3e1a3;
  --gold-soft:   rgba(212,175,55,0.12);
  --gold-line:   rgba(212,175,55,0.32);

  /* Signal */
  --green:     #10b981;
  --green-soft: rgba(16,185,129,0.12);
  --red:       #ef4444;
  --red-soft:  rgba(239,68,68,0.12);

  /* Type */
  --display: 'Bebas Neue', 'Inter', 'IBM Plex Sans Thai', sans-serif;
  --sans:    'IBM Plex Sans Thai', 'Inter', system-ui, sans-serif;
  --mono:    'JetBrains Mono', 'IBM Plex Mono', ui-monospace, monospace;

  /* Layout */
  --wrap: 1240px;
  --pad: 24px;
  --r: 6px;
  --r-lg: 12px;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

::selection { background: var(--gold); color: #000; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a { color: inherit; text-decoration: none; }

.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 var(--pad);
  position: relative;
}

.mono { font-family: var(--mono); font-feature-settings: 'tnum'; letter-spacing: -0.02em; }
.gold { color: var(--gold-bright); }
.g    { color: var(--green); }

/* ──────────────────────────────── BANNER ──────────────────────────────── */
.banner {
  background: linear-gradient(90deg, #1a0808 0%, #2a0d0d 50%, #1a0808 100%);
  border-bottom: 1px solid rgba(239,68,68,0.25);
  font-size: 13px;
  position: relative;
  z-index: 100;
}
.banner__inner {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 10px var(--pad);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.banner__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 4px rgba(239,68,68,0.18);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; }
  50% { opacity: 0.5; }
}
.banner__txt { color: var(--ink-2); }
.banner__txt b { color: var(--ink); font-weight: 600; }
.banner__clock { display: inline-flex; align-items: baseline; gap: 1px; font-family: var(--mono); font-size: 13px; }
.banner__clock b { color: var(--gold-bright); font-weight: 600; font-variant-numeric: tabular-nums; min-width: 1.6em; text-align: center; }
.banner__clock i { color: var(--ink-3); font-style: normal; font-size: 10px; margin-right: 4px; }
.banner__sep { color: var(--ink-4); }

/* ──────────────────────────────── NAV ──────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(10,10,12,0.78);
  backdrop-filter: saturate(160%) blur(16px);
  -webkit-backdrop-filter: saturate(160%) blur(16px);
  border-bottom: 1px solid var(--line-2);
}
.nav__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 14px;
  padding-bottom: 14px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  letter-spacing: 0.06em;
}
.logo__mark {
  display: inline-grid; place-items: center;
  width: 34px; height: 34px;
  background: var(--gold);
  color: #000;
  font-size: 16px;
  font-weight: 700;
  border-radius: var(--r);
}
.logo__txt {
  font-size: 20px;
  color: var(--ink);
  font-weight: 400;
}
.logo__txt span { color: var(--gold-bright); }

.nav__right { display: flex; align-items: center; gap: 18px; }
.nav__social { display: flex; gap: 6px; }
.soc {
  width: 34px; height: 34px;
  display: grid; place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--r);
  color: var(--ink-3);
  transition: all .2s var(--ease);
}
.soc:hover { color: var(--ink); border-color: var(--line-3); background: var(--bg-2); }

/* ──────────────────────────────── BUTTONS ──────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: var(--r);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all .2s var(--ease);
  white-space: nowrap;
}
.btn--ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--ink);
}
.btn--ghost:hover { background: var(--bg-2); border-color: var(--line-3); }
.btn--gold {
  background: var(--gold);
  color: #0a0a0c;
  border-color: var(--gold);
  font-weight: 700;
}
.btn--gold:hover { background: var(--gold-bright); border-color: var(--gold-bright); transform: translateY(-1px); }
.btn--line {
  background: transparent;
  border-color: var(--line-3);
  color: var(--ink);
}
.btn--line:hover { background: var(--bg-2); }
.btn--lg { padding: 16px 32px; font-size: 16px; }
.arr { transition: transform .2s var(--ease); }
.btn:hover .arr { transform: translateX(3px); }

/* ──────────────────────────────── HERO ──────────────────────────────── */
.hero {
  padding-top: 60px;
  padding-bottom: 0;
  position: relative;
  background:
    radial-gradient(ellipse 1200px 600px at 50% 0%, rgba(212,175,55,0.08), transparent 60%),
    var(--bg);
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: center;
  padding-bottom: 80px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 32px;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 100px;
  background: var(--bg-1);
}
.eyebrow__dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
}

.hero__h1 {
  font-family: var(--display);
  font-size: clamp(48px, 7vw, 96px);
  line-height: 0.95;
  letter-spacing: 0.005em;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 24px;
}
.hero__h1 .gold {
  background: linear-gradient(180deg, var(--gold-bright) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.strike {
  position: relative;
  color: var(--ink-3);
}
.strike::after {
  content: '';
  position: absolute;
  left: -4%; right: -4%;
  top: 52%;
  height: 6px;
  background: var(--red);
  transform: rotate(-3deg);
  border-radius: 2px;
}

.hero__sub {
  font-size: 17px;
  color: var(--ink-2);
  line-height: 1.65;
  max-width: 540px;
  margin-bottom: 36px;
}
.hero__sub b { color: var(--ink); font-weight: 600; }

.hero__cta {
  display: flex;
  gap: 12px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.stat__n {
  font-family: var(--display);
  font-size: 44px;
  color: var(--gold-bright);
  line-height: 1;
  letter-spacing: 0.02em;
  margin-bottom: 6px;
}
.stat__n sup { font-size: 0.55em; margin-left: 2px; vertical-align: super; color: var(--ink-3); }
.stat__n--word {
  font-size: 40px;
  letter-spacing: 0.04em;
}
.stat__n--money {
  font-family: var(--mono);
  font-size: 28px;
  letter-spacing: -0.02em;
  font-weight: 700;
}
.stat__l {
  font-size: 12px;
  color: var(--ink-3);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Hero visual */
.hero__visual { position: relative; }
.hero__photo {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--bg-2);
}
.hero__photo img,
.hero__video {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.hero__video { background: #000; position: absolute; inset: 0; z-index: 0; }
.hero__poster { position: relative; z-index: 1; }
.hero__photo.is-playing .hero__poster { opacity: 0; pointer-events: none; }
.hero__photo .hero__poster { transition: opacity .3s var(--ease); }

/* Play button overlay (sits over poster) */
.hero__play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 84px; height: 84px;
  border-radius: 50%;
  background: rgba(255,255,255,0.96);
  border: 0;
  color: #0a0a0c;
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 4;
  transition: all .25s var(--ease);
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
}
.hero__play::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  opacity: 0.5;
  animation: ring 2.2s ease-out infinite;
}
@keyframes ring {
  0%   { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.4); opacity: 0; }
}
.hero__play:hover {
  transform: translate(-50%, -50%) scale(1.06);
  background: var(--gold-bright);
}
.hero__play svg { margin-left: 4px; }
.hero__photo.is-playing .hero__play,
.hero__photo.is-playing .hero__photo-grad,
.hero__photo.is-playing .hero__chip { opacity: 0; pointer-events: none; transition: opacity .3s var(--ease); }
.hero__photo-grad {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,10,12,0) 30%, rgba(10,10,12,0.85) 100%);
  z-index: 1;
  pointer-events: none;
}
.hero__chip {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(10,10,12,0.7);
  backdrop-filter: blur(12px);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 10px 14px;
  font-size: 12px;
  z-index: 3;
}
.hero__chip--tl { top: 20px; left: 20px; }
.hero__chip--br {
  bottom: 20px; left: 20px; right: 20px;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  border-color: var(--gold-line);
  background: rgba(20,15,5,0.85);
}
.hero__chip-kicker {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--gold-bright);
}
.hero__chip-lead {
  font-size: 14px;
  color: var(--ink);
  line-height: 1.35;
}
.hero__chip-lead b { font-weight: 600; font-size: 16px; }
.hero__chip-sub { font-size: 11px; color: var(--ink-3); letter-spacing: 0.04em; }
.dot { width: 6px; height: 6px; border-radius: 50%; display: inline-block; }
.dot--g { background: var(--green); box-shadow: 0 0 8px var(--green); }
.dot--r { background: var(--red); box-shadow: 0 0 8px var(--red); animation: pulse 2s infinite; }

/* Ticker */
.ticker {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-1);
  padding: 18px 0;
  overflow: hidden;
  position: relative;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.ticker__track {
  display: flex;
  gap: 0;
  animation: scroll-x 50s linear infinite;
  width: max-content;
}
.ticker__set {
  display: flex;
  gap: 48px;
  padding-right: 48px;
  flex-shrink: 0;
}
@keyframes scroll-x {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.tk {
  font-size: 14px;
  color: var(--ink-3);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.tk b { font-size: 15px; font-weight: 700; }

/* ──────────────────────────────── SECTION ──────────────────────────────── */
section { position: relative; }

.proof, .payouts, .ict, .results, .reviews, .pricing, .faq, .final {
  padding: 100px 0;
}

.sect-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 64px;
}
.sect-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.sect-h2 {
  font-family: var(--display);
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: 0.01em;
  font-weight: 400;
  margin-bottom: 16px;
}
.sect-h2 .gold {
  background: linear-gradient(180deg, var(--gold-bright) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.sect-sub {
  font-size: 16px;
  color: var(--ink-2);
  line-height: 1.65;
}

/* ──────────────────────────────── PROOF ──────────────────────────────── */
.proof { background: var(--bg); }

.bignums {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--bg-1);
  margin-bottom: 64px;
}
.bignum {
  padding: 32px 24px;
  border-right: 1px solid var(--line);
  text-align: center;
}
.bignum:last-child { border-right: 0; }
.bignum__n {
  font-family: var(--display);
  font-size: clamp(36px, 4.5vw, 56px);
  color: var(--ink);
  line-height: 1;
  margin-bottom: 8px;
}
.bignum__n sup { font-size: 0.5em; color: var(--gold-bright); vertical-align: super; }
.bignum__l {
  font-size: 12px;
  color: var(--ink-3);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.firms {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 24px 0;
  margin-bottom: 48px;
  border-top: 1px solid var(--line-2);
  border-bottom: 1px solid var(--line-2);
  flex-wrap: wrap;
}
.firms__label {
  font-size: 11px;
  color: var(--ink-3);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.firms__list {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}
.firms__list span {
  font-family: var(--display);
  font-size: 15px;
  letter-spacing: 0.08em;
  color: var(--ink-2);
}
.firms__list i { color: var(--ink-4); font-style: normal; }

/* Cert gallery */
.certs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 80px;
}
.cert {
  position: relative;
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  transition: all .3s var(--ease);
}
.cert:hover {
  border-color: var(--gold-line);
  transform: translateY(-3px);
  box-shadow: 0 16px 40px -20px rgba(212,175,55,0.4);
}
.cert img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s var(--ease);
}
.cert:hover img { transform: scale(1.04); }
.cert__overlay {
  position: absolute; inset: auto 0 0 0;
  padding: 14px 16px;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.92));
  color: #fff;
}
.cert__firm {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--gold-bright);
  margin-bottom: 2px;
}
.cert__name { font-size: 13px; color: var(--ink); }

/* Students list */
.students { padding-top: 32px; border-top: 1px solid var(--line-2); }
.students__head { text-align: center; margin-bottom: 32px; }
.students__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.scard {
  padding: 18px 20px;
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: var(--r);
  transition: all .2s var(--ease);
}
.scard:hover { border-color: var(--gold-line); background: var(--bg-2); }
.scard__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 4px;
}
.scard__row b { font-weight: 600; font-size: 15px; }
.scard__row .mono { font-size: 14px; font-weight: 700; }
.scard__sub { font-size: 12px; color: var(--ink-3); font-family: var(--mono); letter-spacing: 0.02em; }
.scard--more {
  background: var(--gold-soft);
  border-color: var(--gold-line);
}
.scard--more .scard__row b { color: var(--gold-bright); }
.scard--more .scard__sub { color: var(--gold-bright); }

/* ──────────────────────────────── PAYOUTS ──────────────────────────────── */
.payouts { background: var(--bg-1); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

.payout-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 16px;
}
.pcard {
  position: relative;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px;
  min-height: 240px;
  overflow: hidden;
  transition: all .3s var(--ease);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.pcard:hover { border-color: var(--gold-line); }
.pcard--lg { background: linear-gradient(135deg, var(--bg-2) 0%, var(--bg) 100%); border-color: var(--gold-line); }
.pcard__amount {
  font-family: var(--display);
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 8px;
}
.pcard__amount .mono {
  font-family: var(--mono);
  font-size: 38px;
  font-weight: 700;
  color: var(--green);
  letter-spacing: -0.03em;
}
.pcard--lg .pcard__amount .mono { font-size: 56px; }
.pcard__cur { color: var(--ink-3); font-size: 14px; }
.pcard__meta { display: flex; flex-direction: column; gap: 2px; margin-bottom: 14px; }
.pcard__firm {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--gold-bright);
}
.pcard__name { font-size: 13px; color: var(--ink-2); }
.pcard__img {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 50%;
  opacity: 0.16;
  filter: grayscale(0.4);
  pointer-events: none;
}
.pcard--lg .pcard__img { opacity: 0.22; width: 55%; }

/* ──────────────────────────────── ICT ──────────────────────────────── */
.ict { background: var(--bg); }
.ict__inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}
.ict__lead {
  font-size: 18px;
  color: var(--ink-2);
  line-height: 1.6;
  margin: 24px 0 28px;
}
.ict__lead b { color: var(--ink); }
.ict__list {
  list-style: none;
  display: flex; flex-direction: column;
  gap: 16px;
}
.ict__list li {
  padding-left: 28px;
  position: relative;
  color: var(--ink-2);
  font-size: 15px;
  line-height: 1.55;
}
.ict__list li::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 14px; height: 2px;
  background: var(--gold);
}
.ict__list b { color: var(--ink); }

.ict__right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

/* ICT concept cards (replaces student-data metrics) */
.icard {
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 24px;
  position: relative;
  overflow: hidden;
  transition: all .3s var(--ease);
}
.icard:hover {
  border-color: var(--gold-line);
  background: var(--bg-2);
  transform: translateY(-3px);
}
.icard__num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 12px;
}
.icard__title {
  font-family: var(--display);
  font-size: 28px;
  letter-spacing: 0.02em;
  line-height: 1;
  color: var(--ink);
  margin-bottom: 10px;
}
.icard__desc {
  font-size: 13px;
  color: var(--ink-2);
  line-height: 1.55;
}
.icard::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--gold-soft), transparent);
  border-radius: 0 0 0 var(--r-lg);
  opacity: 0;
  transition: opacity .3s var(--ease);
}
.icard:hover::after { opacity: 1; }
.metric {
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 24px;
  position: relative;
  overflow: hidden;
}
.metric__label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--ink-3);
  margin-bottom: 10px;
}
.metric__val {
  font-family: var(--mono);
  font-size: 36px;
  color: var(--ink);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
}
.metric__val span { font-size: 0.55em; color: var(--ink-3); font-weight: 400; }
.metric--accent {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, rgba(212,175,55,0.08), rgba(16,185,129,0.04));
  border-color: var(--gold-line);
}
.metric--accent .metric__val { color: var(--green); font-size: 40px; }
.metric--accent .metric__val span { color: var(--ink-2); }

/* ──────────────────────────────── RESULTS ──────────────────────────────── */
.results { background: var(--bg-1); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

.results__feature {
  position: relative;
  border: 1px solid var(--gold-line);
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-bottom: 24px;
  background: var(--bg);
}
.results__feature img { width: 100%; height: auto; display: block; }
.results__feature-meta {
  position: absolute;
  inset: auto 0 0 0;
  padding: 24px 28px;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.95));
}
.results__quote {
  font-family: var(--display);
  font-size: clamp(22px, 3.5vw, 36px);
  color: var(--ink);
  line-height: 1.15;
  margin-bottom: 6px;
}
.results__byline {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--gold-bright);
  text-transform: uppercase;
}

.results__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.rfig {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: all .3s var(--ease);
}
.rfig:hover { border-color: var(--gold-line); transform: translateY(-2px); }
.rfig img {
  width: 100%; height: 220px;
  object-fit: cover;
  display: block;
}
.rfig figcaption {
  padding: 12px 16px;
  font-size: 13px;
  color: var(--ink-2);
  border-top: 1px solid var(--line);
  background: var(--bg-1);
}

/* ──────────────────────────────── REVIEWS ──────────────────────────────── */
.reviews { background: var(--bg); }

.quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 60px;
}
.quote {
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  position: relative;
  transition: all .3s var(--ease);
}
.quote:hover { border-color: var(--gold-line); }
.quote__mark {
  font-family: var(--display);
  font-size: 80px;
  color: var(--gold);
  line-height: 0.6;
  margin-bottom: 8px;
}
.quote__text {
  font-size: 18px;
  line-height: 1.5;
  color: var(--ink);
  margin-bottom: 18px;
}
.quote--big {
  grid-column: span 2;
  background: linear-gradient(135deg, rgba(212,175,55,0.06), transparent);
  border-color: var(--gold-line);
}
.quote--big .quote__text {
  font-family: var(--display);
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.1;
  letter-spacing: 0.005em;
}
.quote--big .quote__text u {
  text-decoration: none;
  background: linear-gradient(180deg, var(--gold-bright), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.quote__text b { color: var(--gold-bright); font-weight: 600; }
.quote__by {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--ink-2);
  letter-spacing: 0.04em;
}
.quote__by span { color: var(--ink-3); }
.quote__src {
  display: inline-block;
  margin-top: 10px;
  font-size: 12px;
  color: var(--gold);
  font-family: var(--mono);
}

/* Review grid + lightbox */
.reviews__grid-wrap { margin-top: 8px; }
.rgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.rcell {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  background: var(--bg-1);
  padding: 0;
  cursor: zoom-in;
  transition: all .3s var(--ease);
}
.rcell:hover {
  border-color: var(--gold-line);
  transform: translateY(-3px);
  box-shadow: 0 14px 36px -20px rgba(212,175,55,0.5);
}
.rcell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform .5s var(--ease);
}
.rcell:hover img { transform: scale(1.04); }

.rcell__zoom {
  position: absolute;
  top: 10px; right: 10px;
  width: 28px; height: 28px;
  display: grid; place-items: center;
  background: rgba(10,10,12,0.78);
  border: 1px solid var(--line-3);
  color: var(--ink);
  border-radius: 50%;
  opacity: 0;
  transform: scale(0.8);
  transition: all .25s var(--ease);
  backdrop-filter: blur(8px);
}
.rcell:hover .rcell__zoom { opacity: 1; transform: scale(1); }

.reviews__hint {
  margin-top: 24px;
  text-align: center;
  font-size: 12px;
  color: var(--ink-3);
  font-family: var(--mono);
  letter-spacing: 0.04em;
}

/* ─── Lightbox ─── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 60px 16px;
}
.lightbox.is-open { display: flex; animation: lbFade .3s var(--ease); }
@keyframes lbFade { from { opacity: 0; } to { opacity: 1; } }
.lightbox__inner {
  max-width: 100%;
  max-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox__inner img {
  max-width: 100%;
  max-height: 84vh;
  display: block;
  border-radius: var(--r-lg);
  box-shadow: 0 30px 80px rgba(0,0,0,0.7);
  animation: lbPop .35s var(--ease);
}
@keyframes lbPop {
  from { opacity: 0; transform: scale(0.92); }
  to   { opacity: 1; transform: scale(1); }
}
.lightbox__close,
.lightbox__nav {
  position: absolute;
  background: rgba(20,20,28,0.86);
  border: 1px solid var(--line-3);
  color: var(--ink);
  border-radius: 50%;
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 22px;
  font-family: var(--sans);
  transition: all .2s var(--ease);
}
.lightbox__close {
  top: 18px; right: 18px;
  width: 42px; height: 42px;
}
.lightbox__nav {
  top: 50%;
  transform: translateY(-50%);
  width: 50px; height: 50px;
  font-size: 28px;
  line-height: 1;
}
.lightbox__nav--prev { left: 24px; }
.lightbox__nav--next { right: 24px; }
.lightbox__close:hover,
.lightbox__nav:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #0a0a0c;
}
.lightbox__counter {
  position: absolute;
  bottom: 24px; left: 50%;
  transform: translateX(-50%);
  font-family: var(--mono);
  font-size: 13px;
  color: var(--ink-2);
  background: rgba(20,20,28,0.78);
  border: 1px solid var(--line);
  padding: 6px 14px;
  border-radius: 100px;
  letter-spacing: 0.06em;
}

/* lightbox open: lock body scroll */
body.lb-open { overflow: hidden; }

/* ──────────────────────────────── PRICING ──────────────────────────────── */
.pricing {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-1) 100%);
  border-top: 1px solid var(--line);
}

.pricing__urgency {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  padding: 10px 18px;
  background: var(--red-soft);
  border: 1px solid rgba(239,68,68,0.3);
  border-radius: 100px;
  font-size: 13px;
}
.pricing__urgency .sep { color: var(--ink-4); }
.pricing__urgency b { color: var(--ink); }

.prices {
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr 1fr;
  gap: 16px;
  align-items: stretch;
}
.price {
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px 26px;
  display: flex;
  flex-direction: column;
  transition: all .3s var(--ease);
  position: relative;
}
.price:hover { border-color: var(--line-3); }
.price__head { margin-bottom: 20px; }
.price__tier {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--ink-3);
  margin-bottom: 10px;
  text-transform: uppercase;
}
.price__title {
  font-family: var(--display);
  font-size: 28px;
  letter-spacing: 0.02em;
  font-weight: 400;
  color: var(--ink);
}
.price__amount {
  display: flex;
  align-items: baseline;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 4px;
}
.price__cur { font-size: 18px; color: var(--ink-2); }
.price__amount .mono {
  font-size: 38px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.price__old {
  font-size: 14px;
  color: var(--ink-3);
  text-decoration: line-through;
}
.price__sub {
  font-size: 13px;
  color: var(--ink-3);
  margin-bottom: 20px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 20px;
}
.price__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
  flex: 1;
}
.price__list li {
  padding-left: 22px;
  position: relative;
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.45;
}
.price__list li::before {
  content: '✓';
  position: absolute;
  left: 0; top: 0;
  color: var(--gold);
  font-weight: 700;
}
.price__list b { color: var(--ink); font-weight: 600; }

.price__cta {
  display: block;
  text-align: center;
  padding: 14px;
  border-radius: var(--r);
  background: transparent;
  border: 1px solid var(--line-3);
  color: var(--ink);
  font-weight: 600;
  font-size: 14px;
  transition: all .2s var(--ease);
}
.price__cta:hover { background: var(--bg-2); border-color: var(--ink-3); }
.price__cta--gold {
  background: var(--gold);
  color: #0a0a0c;
  border-color: var(--gold);
  font-weight: 700;
}
.price__cta--gold:hover { background: var(--gold-bright); border-color: var(--gold-bright); }
.price__detail {
  display: block;
  text-align: center;
  margin-top: 10px;
  font-size: 12px;
  color: var(--ink-3);
  font-family: var(--mono);
  letter-spacing: 0.04em;
}
.price__detail:hover { color: var(--gold-bright); }

/* HERO emphasis — Bundle ribbon + scale (separate from gold visual) */
.price--hero {
  transform: scale(1.04);
  z-index: 1;
  position: relative;
}

/* Selected state — gold glow, gradient bg, gold border — applies to clicked card */
.price.is-selected {
  background: linear-gradient(180deg, var(--bg-2) 0%, var(--bg-1) 100%);
  border: 1px solid var(--gold-line);
  box-shadow: 0 20px 60px -20px rgba(212,175,55,0.3);
  position: relative;
}
.price.is-selected::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--r-lg);
  padding: 1px;
  background: linear-gradient(180deg, var(--gold) 0%, transparent 50%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.price__ribbon {
  position: absolute;
  top: -1px; left: 50%;
  transform: translate(-50%, -50%);
  background: var(--gold);
  color: #0a0a0c;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 6px 14px;
  border-radius: 100px;
  text-transform: uppercase;
  white-space: nowrap;
}
.price.is-selected .price__title { color: var(--gold-bright); }
.price.is-selected .price__amount .mono { color: var(--gold-bright); }
.price--hero .price__amount .mono { font-size: 44px; }

/* Click cursor + smooth selection */
.price { cursor: pointer; }

.pricing__foot {
  text-align: center;
  margin-top: 32px;
  font-size: 12px;
  color: var(--ink-3);
  font-family: var(--mono);
}

/* ──────────────────────────────── FAQ ──────────────────────────────── */
.faq { background: var(--bg); }
.faq__list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.faq__item {
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: var(--bg-1);
  overflow: hidden;
}
.faq__item summary {
  cursor: pointer;
  padding: 20px 24px;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  position: relative;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: '+';
  font-family: var(--mono);
  font-size: 24px;
  color: var(--gold);
  font-weight: 300;
  transition: transform .2s var(--ease);
}
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item p {
  padding: 0 24px 22px;
  color: var(--ink-2);
  font-size: 15px;
  line-height: 1.65;
}

/* ──────────────────────────────── FINAL ──────────────────────────────── */
.final {
  background:
    radial-gradient(ellipse 800px 400px at 50% 100%, rgba(212,175,55,0.12), transparent 60%),
    var(--bg);
  text-align: center;
}
.final__h {
  font-family: var(--display);
  font-size: clamp(40px, 6vw, 80px);
  line-height: 1;
  letter-spacing: 0.01em;
  margin-bottom: 16px;
}
.final__h .gold {
  background: linear-gradient(180deg, var(--gold-bright) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.final__p { font-size: 17px; color: var(--ink-2); margin-bottom: 32px; }

/* ──────────────────────────────── FOOTER ──────────────────────────────── */
.footer {
  background: var(--bg-1);
  border-top: 1px solid var(--line);
  padding: 64px 0 24px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 2fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer__tag {
  margin-top: 16px;
  color: var(--ink-3);
  font-size: 14px;
  max-width: 280px;
  line-height: 1.5;
}
.footer__tag em {
  display: inline-block;
  font-family: var(--display);
  font-style: normal;
  font-size: 18px;
  letter-spacing: 0.04em;
  color: var(--gold-bright);
  margin-bottom: 4px;
}
.footer__tag-th {
  display: block;
  font-size: 13px;
  color: var(--ink-3);
}
.footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.footer__cols > div { display: flex; flex-direction: column; gap: 8px; }
.footer__h {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--gold-bright);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.footer__cols a {
  font-size: 14px;
  color: var(--ink-2);
  transition: color .2s var(--ease);
}
.footer__cols a:hover { color: var(--ink); }
.footer__bottom {
  border-top: 1px solid var(--line-2);
  padding-top: 20px;
  font-size: 12px;
  color: var(--ink-4);
}

/* ──────────────────────────────── FLOATING CTA ──────────────────────────────── */
.fab {
  position: fixed;
  bottom: 16px;
  right: 16px;
  z-index: 80;
  display: none;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: #0a0a0c;
  padding: 14px 20px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 12px 30px -8px rgba(212,175,55,0.5);
  transition: all .2s var(--ease);
}
.fab:hover { background: var(--gold-bright); }

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════ */

/* Tablet */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; gap: 48px; padding-bottom: 60px; }
  .hero__visual { max-width: 480px; margin: 0 auto; width: 100%; }
  .certs { grid-template-columns: repeat(3, 1fr); }
  .students__grid { grid-template-columns: repeat(3, 1fr); }
  .payout-grid { grid-template-columns: 1fr 1fr; }
  .pcard--lg { grid-column: span 2; }
  .ict__inner { grid-template-columns: 1fr; gap: 40px; }
  .results__grid { grid-template-columns: repeat(2, 1fr); }
  .quotes { grid-template-columns: 1fr 1fr; }
  .quote--big { grid-column: span 2; }
  .prices { grid-template-columns: 1fr 1fr; }
  .price--hero { transform: none; }
  .bignums { grid-template-columns: 1fr 1fr; }
  .bignum:nth-child(2) { border-right: 0; }
  .bignum:nth-child(1), .bignum:nth-child(2) { border-bottom: 1px solid var(--line); }
  .footer__inner { grid-template-columns: 1fr; gap: 40px; }
}

/* Mobile */
@media (max-width: 720px) {
  :root { --pad: 18px; }

  .banner { font-size: 12px; }
  .banner__inner { gap: 8px; padding: 9px 14px; }
  .banner__sep { display: none; }

  .nav__inner { padding-top: 12px; padding-bottom: 12px; }
  .nav__social { display: none; }
  .logo__txt { font-size: 17px; }
  .logo__mark { width: 30px; height: 30px; font-size: 14px; }

  .hero { padding-top: 36px; }
  .hero__inner { gap: 36px; padding-bottom: 40px; }
  .hero__h1 { font-size: clamp(40px, 11vw, 60px); margin-bottom: 20px; }
  .hero__sub { font-size: 15px; margin-bottom: 28px; }
  .hero__cta { flex-direction: column; }
  .hero__cta .btn { width: 100%; }
  .hero__stats { gap: 14px; padding-top: 24px; }
  .stat__n { font-size: 32px; }
  .stat__l { font-size: 10px; }
  .eyebrow { font-size: 10px; padding: 6px 12px; margin-bottom: 20px; }

  .hero__photo { aspect-ratio: 4/4.5; }
  .hero__chip { font-size: 11px; padding: 8px 12px; }
  .hero__chip--br .mono { font-size: 18px; }

  .ticker__set { gap: 28px; padding-right: 28px; }
  .tk { font-size: 12px; }
  .tk b { font-size: 13px; }

  section { padding-left: 0 !important; padding-right: 0 !important; }
  .proof, .payouts, .ict, .results, .reviews, .pricing, .faq, .final { padding: 64px 0; }

  .sect-head { margin-bottom: 40px; }
  .sect-h2 { font-size: clamp(30px, 9vw, 48px); }
  .sect-sub { font-size: 14px; }

  .bignums { grid-template-columns: 1fr 1fr; }
  .bignum { padding: 24px 16px; }
  .bignum__n { font-size: 32px; }
  .bignum__l { font-size: 10px; }

  .firms { gap: 12px; padding: 18px 0; }
  .firms__label { font-size: 10px; }
  .firms__list { gap: 10px; }
  .firms__list span { font-size: 12px; }

  .certs { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .cert__overlay { padding: 10px 12px; }
  .cert__firm { font-size: 9px; }
  .cert__name { font-size: 11px; }

  .students__grid { grid-template-columns: 1fr 1fr; }
  .scard { padding: 14px 16px; }
  .scard__row b { font-size: 13px; }
  .scard__row .mono { font-size: 13px; }
  .scard__sub { font-size: 11px; }

  .payout-grid { grid-template-columns: 1fr; }
  .pcard, .pcard--lg { grid-column: auto; min-height: 180px; padding: 22px; }
  .pcard__amount .mono { font-size: 32px; }
  .pcard--lg .pcard__amount .mono { font-size: 42px; }

  .ict__right { grid-template-columns: 1fr 1fr; }
  .icard { padding: 18px; }
  .icard__title { font-size: 22px; }
  .icard__desc { font-size: 12px; }
  .ict__lead { font-size: 16px; }
  .ict__list li { font-size: 14px; padding-left: 22px; }

  .results__grid { grid-template-columns: 1fr; }
  .rfig img { height: 200px; }
  .results__feature-meta { padding: 16px 18px; }
  .results__quote { font-size: 20px; }
  .results__byline { font-size: 10px; }

  .quotes { grid-template-columns: 1fr; gap: 12px; margin-bottom: 40px; }
  .quote { padding: 24px 22px; }
  .quote__text { font-size: 16px; }
  .quote--big { grid-column: auto; }
  .quote--big .quote__text { font-size: clamp(26px, 8vw, 38px); }
  .quote__mark { font-size: 60px; }

  .rgrid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .rcell__zoom { opacity: 1; transform: scale(1); }

  .lightbox { padding: 50px 8px; }
  .lightbox__close { top: 10px; right: 10px; width: 38px; height: 38px; font-size: 18px; }
  .lightbox__nav { width: 40px; height: 40px; font-size: 22px; }
  .lightbox__nav--prev { left: 8px; }
  .lightbox__nav--next { right: 8px; }
  .lightbox__counter { bottom: 14px; }

  .hero__play { width: 70px; height: 70px; }
  .hero__chip-lead { font-size: 13px; }
  .hero__chip-lead b { font-size: 14px; }

  .stat__n--word { font-size: 28px; }
  .stat__n--money { font-size: 22px; }

  .prices { grid-template-columns: 1fr; gap: 14px; }
  .price--hero { order: -1; }  /* Bundle first on mobile */
  .price { padding: 26px 22px; }
  .price__title { font-size: 24px; }
  .price__amount .mono { font-size: 32px; }
  .price--hero .price__amount .mono { font-size: 36px; }

  .faq__item summary { padding: 16px 18px; font-size: 14px; }
  .faq__item p { padding: 0 18px 18px; font-size: 14px; }

  .final__h { font-size: clamp(34px, 9vw, 56px); }
  .final__p { font-size: 14px; }

  .footer__cols { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer { padding: 48px 0 20px; }

  .fab {
    display: inline-flex;
    bottom: 12px;
    right: 12px;
    left: 12px;
    justify-content: center;
  }

  /* Ensure wrap padding still applies */
  .wrap, .nav__inner, .banner__inner { padding-left: var(--pad); padding-right: var(--pad); }
}

/* Very small phones */
@media (max-width: 380px) {
  .stat__n { font-size: 28px; }
  .pcard--lg .pcard__amount .mono { font-size: 36px; }
  .hero__h1 { font-size: clamp(36px, 11vw, 52px); }
}

/* ═══════════════════════════════════════════════════════════════
   ANIMATIONS — scroll reveals, stagger, microinteractions
   ═══════════════════════════════════════════════════════════════ */

/* Base reveal state */
[data-reveal],
[data-stagger] > * {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.9s var(--ease),
    transform 0.9s var(--ease);
  will-change: opacity, transform;
}
[data-reveal].is-in,
[data-stagger].is-in > * {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays — each child waits a beat */
[data-stagger].is-in > *:nth-child(1)  { transition-delay: 0.00s; }
[data-stagger].is-in > *:nth-child(2)  { transition-delay: 0.06s; }
[data-stagger].is-in > *:nth-child(3)  { transition-delay: 0.12s; }
[data-stagger].is-in > *:nth-child(4)  { transition-delay: 0.18s; }
[data-stagger].is-in > *:nth-child(5)  { transition-delay: 0.24s; }
[data-stagger].is-in > *:nth-child(6)  { transition-delay: 0.30s; }
[data-stagger].is-in > *:nth-child(7)  { transition-delay: 0.36s; }
[data-stagger].is-in > *:nth-child(8)  { transition-delay: 0.42s; }
[data-stagger].is-in > *:nth-child(9)  { transition-delay: 0.48s; }
[data-stagger].is-in > *:nth-child(10) { transition-delay: 0.54s; }
[data-stagger].is-in > *:nth-child(11) { transition-delay: 0.60s; }
[data-stagger].is-in > *:nth-child(12) { transition-delay: 0.66s; }

/* Hero copy: animate on load */
.hero__copy .eyebrow,
.hero__copy .hero__h1,
.hero__copy .hero__sub,
.hero__copy .hero__cta,
.hero__copy .hero__stats,
.hero__visual {
  opacity: 0;
  transform: translateY(20px);
  animation: heroIn 0.9s var(--ease) forwards;
}
.hero__copy .eyebrow    { animation-delay: 0.10s; }
.hero__copy .hero__h1   { animation-delay: 0.22s; }
.hero__copy .hero__sub  { animation-delay: 0.34s; }
.hero__copy .hero__cta  { animation-delay: 0.46s; }
.hero__copy .hero__stats { animation-delay: 0.58s; }
.hero__visual            { animation-delay: 0.30s; transform: translateY(20px) scale(0.98); }
.hero__visual            { animation-name: heroInScale; }

@keyframes heroIn {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes heroInScale {
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* Floating chips on hero photo: subtle hover-bob */
.hero__chip--tl { animation: floatA 4s ease-in-out infinite; }
.hero__chip--br { animation: floatB 5s ease-in-out infinite; }
@keyframes floatA {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
@keyframes floatB {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(4px); }
}

/* Strike line: draw in once visible */
.strike::after {
  transform-origin: left center;
  transform: rotate(-3deg) scaleX(0);
  animation: strikeDraw 0.8s var(--ease) 0.9s forwards;
}
@keyframes strikeDraw {
  to { transform: rotate(-3deg) scaleX(1); }
}

/* Gold sweep on the ribbon */
.price__ribbon { position: absolute; overflow: hidden; }
.price__ribbon::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 30%, rgba(255,255,255,0.55) 50%, transparent 70%);
  transform: translateX(-100%);
  animation: shine 4.5s ease-in-out infinite;
}
@keyframes shine {
  0%,15% { transform: translateX(-100%); }
  40%    { transform: translateX(100%); }
  100%   { transform: translateX(100%); }
}

/* Selected card: ambient gold glow */
.price.is-selected {
  animation: glow 6s ease-in-out infinite;
}
@keyframes glow {
  0%,100% { box-shadow: 0 20px 60px -20px rgba(212,175,55,0.30); }
  50%     { box-shadow: 0 20px 70px -16px rgba(212,175,55,0.55); }
}

/* Cert hover: gold corner reveal */
.cert::before {
  content: '';
  position: absolute;
  top: 12px; right: 12px;
  width: 24px; height: 24px;
  border-top: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
  opacity: 0;
  transform: translate(-6px, 6px);
  transition: all .35s var(--ease);
  z-index: 2;
  pointer-events: none;
}
.cert:hover::before { opacity: 1; transform: translate(0, 0); }

/* Result-figure: gold corner same treatment */
.rfig { position: relative; }
.rfig::before {
  content: '';
  position: absolute;
  top: 10px; right: 10px;
  width: 22px; height: 22px;
  border-top: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
  opacity: 0;
  transform: translate(-6px, 6px);
  transition: all .35s var(--ease);
  z-index: 2;
  pointer-events: none;
}
.rfig:hover::before { opacity: 1; transform: translate(0, 0); }

/* Button shine on hover */
.btn--gold { position: relative; overflow: hidden; }
.btn--gold::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 35%, rgba(255,255,255,0.4) 50%, transparent 65%);
  transform: translateX(-110%);
  transition: transform 0.7s var(--ease);
}
.btn--gold:hover::after { transform: translateX(110%); }

/* CTA arrow micro-spring */
.btn:hover .arr { transform: translateX(4px); }

/* Eyebrow dot pulse */
.eyebrow__dot { animation: pulseDot 2.2s ease-in-out infinite; }
@keyframes pulseDot {
  0%,100% { box-shadow: 0 0 0 0 rgba(16,185,129,0.6); }
  50%     { box-shadow: 0 0 0 6px rgba(16,185,129,0); }
}

/* FAQ open expand */
.faq__item p {
  animation: faqIn 0.4s var(--ease);
}
@keyframes faqIn {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Quote card: lift on hover */
.quote { transition: transform .3s var(--ease), border-color .3s var(--ease); }
.quote:hover { transform: translateY(-4px); }

/* Pricing card hover lift (except selected) */
.price:not(.is-selected):hover { transform: translateY(-4px); }
.price--hero:not(.is-selected):hover { transform: scale(1.04) translateY(-4px); }
.price { transition: transform .3s var(--ease), border-color .3s var(--ease), box-shadow .4s var(--ease); }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
  }
  [data-reveal], [data-stagger] > * { opacity: 1 !important; transform: none !important; }
  .ticker__track { animation: none; }
  .hero__copy *, .hero__visual { opacity: 1 !important; transform: none !important; }
  .strike::after { transform: rotate(-3deg) scaleX(1) !important; }
}
