/* ============================================================
   Momentum Investing Masterclass — RED / OwnerBook-energy
   Hero: solid black, 3-col (product | headline+CTA | portrait)
   Below fold: black / cream / red bands, Roboto Condensed
   ============================================================ */

:root {
  --black: #000000;
  --ink: #111111;
  --cream: #f5f1ea;
  --surface: #ffffff;
  --text: #292929;
  --muted: #5c574f;
  --faint: #8a8378;
  --line: #ddd6cc;
  --line-strong: #c9c0b4;
  --accent: #e4002b;
  --accent-hover: #c40024;
  --accent-deep: #9e001f;
  --on-accent: #ffffff;
  --gold: #c9a227;
  --gold-bright: #e8c547;
  --header-h: 70px;
  --sticky-h: 64px;
  --container: 1190px;
  --narrow: 720px;
  --radius-card: 12px;
  --radius-pill: 999px;
  --radius-cta: 20px;
  --font: "Roboto", system-ui, -apple-system, Segoe UI, sans-serif;
  --display: "Roboto Condensed", "Roboto", sans-serif;
  --script: "Caveat", cursive;
  --focus: 0 0 0 3px rgba(228, 0, 43, 0.4);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.48;
  color: var(--text);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a {
  color: var(--accent);
  text-underline-offset: 0.15em;
}

a:hover {
  color: var(--ink);
}

:focus-visible {
  outline: none;
  box-shadow: var(--focus);
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  background: var(--accent);
  color: var(--on-accent);
  padding: 0.6rem 1rem;
  z-index: 1000;
  font-weight: 700;
  border-radius: var(--radius-pill);
  text-decoration: none;
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: min(100% - 80px, var(--container));
  margin-inline: auto;
}

@media (max-width: 719px) {
  .container {
    width: min(100% - 2rem, var(--container));
  }
}

.narrow {
  width: min(100% - 2rem, var(--narrow));
  margin-inline: auto;
}

/* ---------- Type ---------- */
.eyebrow {
  display: block;
  margin: 0 0 0.85rem;
  font-family: var(--font);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

.eyebrow--on-dark {
  color: var(--accent);
}

.eyebrow--on-red {
  color: rgba(255, 255, 255, 0.85);
}

h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 900;
  color: var(--ink);
  text-transform: uppercase;
  margin: 0 0 1rem;
  overflow: visible;
}

h2 {
  font-size: clamp(2rem, 4.5vw, 2.85rem);
  line-height: 1;
  letter-spacing: -0.03em;
}

.h2--light {
  color: #fff;
}

h3 {
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 0.65rem;
}

.lead {
  font-size: 1.125rem;
  line-height: 1.55;
  color: var(--muted);
  margin: 0 0 2rem;
  max-width: 40rem;
}

.lead strong {
  color: var(--text);
  font-weight: 700;
}

.lead--on-dark {
  color: rgba(255, 255, 255, 0.72);
}

.lead--on-dark strong {
  color: #fff;
}

.lead--on-red {
  color: rgba(255, 255, 255, 0.88);
}

.lead--on-red strong {
  color: #fff;
}

.link-on-dark {
  color: var(--gold-bright);
}

.link-on-dark:hover {
  color: #fff;
}

.section-cta {
  margin-top: 2.5rem;
}

.trust-line {
  margin: 1.35rem 0 0;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.55);
}

section[id] {
  scroll-margin-top: 1rem;
}

/* ============================================================
   HERO SHELL — OwnerBook exact measurements
   Ref viewport ~1280×656; hero ~547px (~83% fold); black bg
   Header: absolute, 70px, transparent, sparse logo-only
   Tri-col: 362 | 530 | 269, 0 gutter, content ~1190 + 40px pad
   ============================================================ */
.hero-shell {
  position: relative;
  background: var(--black);
  color: #fff;
  /* Tighter band — content packed under header, bottoms share CTA baseline */
  min-height: 520px;
  height: auto;
  overflow: hidden;
  padding-bottom: 0;
}

.site-header--dark {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  height: var(--header-h);
  background: transparent;
  border-bottom: none;
  pointer-events: none;
}

.site-header--dark .logo {
  pointer-events: auto;
}

.header__row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  height: var(--header-h);
  min-height: var(--header-h);
  padding-block: 0;
}

.logo {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--ink);
  line-height: 1.1;
}

.logo--light {
  color: #fff;
}

.logo--light:hover {
  color: #fff;
}

.logo__brand,
.logo__name {
  font-family: var(--display);
  font-weight: 900;
  font-size: 0.95rem;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  line-height: 1.05;
}

.logo__brand {
  color: var(--accent); /* Momentum — red */
}

.logo__name {
  color: #fff; /* Investing — white */
}

/* ---------- Hero tri-column: 0 gutter ---------- */
.hero--ob {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 0;
  box-sizing: border-box;
}

.hero__tri {
  display: grid;
  grid-template-columns: 340px 580px 300px;
  gap: 0; /* 0 gutter — columns touch */
  align-items: end; /* shared baseline = CTA bottom */
  justify-content: center;
  width: min(100% - 80px, var(--container));
  margin-inline: auto;
  /* Clear absolute header, then pack row — less empty black above */
  padding-top: 78px;
  padding-bottom: 28px;
  box-sizing: border-box;
}

/* LEFT — course bundle; bottom aligns with CTA */
.hero__product {
  width: 340px;
  height: auto;
  max-height: 400px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  overflow: visible;
  align-self: end;
}

.product-bundle {
  width: 100%;
  max-width: 340px;
  height: auto;
  max-height: 400px;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 14px 28px rgba(0, 0, 0, 0.55));
  flex-shrink: 0;
  display: block;
}

/* CENTER — headline + CTA; sits on same baseline as images */
.hero__center {
  width: 580px;
  max-width: 580px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  text-align: left;
  padding: 0 12px 0;
  box-sizing: border-box;
  z-index: 2;
  align-self: end;
  height: auto;
  overflow: visible;
  position: relative;
}

.hero__headline {
  margin: 0 0 18px;
  font-family: var(--display);
  font-weight: 900;
  font-size: 90px;
  line-height: 94.5px;
  letter-spacing: -2.7px;
  text-transform: uppercase;
  color: #fff;
}

.hero__line {
  display: block;
  white-space: nowrap;
}

.hero__headline em {
  font-style: normal;
  color: var(--accent); /* #E4002B */
}



.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  width: auto;
}

/* CTA: #E4002B — Roboto Condensed 900 so weight reads clearly bold */
a.btn--hero-cta,
.btn--hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent) !important;
  color: #fff !important;
  font-family: var(--display) !important;
  font-weight: 900 !important;
  font-size: 22px !important;
  line-height: 1.2 !important;
  letter-spacing: 0.04em !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  border: 0 !important;
  border-radius: 22px !important;
  padding: 20px 32px !important;
  min-height: 68px;
  height: auto;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: none !important;
  transition: background 0.15s ease;
}

a.btn--hero-cta:hover,
.btn--hero-cta:hover {
  background: var(--accent-hover) !important;
  color: #fff !important;
}

/* RIGHT — person cutout ~269×403, no frame */
.hero__portrait {
  width: 300px;
  height: auto;
  max-height: none;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  align-self: end;
  pointer-events: none;
  overflow: hidden; /* keep pointing hand inside column — never under headline */
  z-index: 1;
}

.portrait-cutout {
  width: 300px;
  height: auto;
  max-height: 400px;
  max-width: 100%;
  object-fit: contain;
  object-position: center bottom;
  border: 0;
  border-radius: 0;
  background: transparent;
  filter: none;
  display: block;
}

/* ============================================================
   BELOW FOLD — OwnerBook black → red → cream → black rhythm
   ============================================================ */

/* 1. Black tagline band */
.tagline-band {
  background: var(--black);
  color: #fff;
  padding: clamp(3.5rem, 8vw, 5.5rem) 0;
  text-align: center;
}

.tagline-band__inner {
  max-width: 980px;
}

.tagline-band__text {
  margin: 0;
  text-align: center;
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(1.55rem, 4.2vw, 2.75rem);
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.05;
}

.tagline-band__script {
  margin: 1.1rem 0 0;
  font-family: var(--script);
  font-weight: 700;
  font-size: clamp(1.15rem, 2.4vw, 1.65rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.2;
}

/* 2. Full-bleed red blast */
.blast-band {
  background: var(--accent);
  color: #fff;
  padding: clamp(3.75rem, 9vw, 6.5rem) 0;
  text-align: center;
}

.blast-band__inner {
  max-width: 1100px;
}

.blast-band__line {
  margin: 0;
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(2.4rem, 7.5vw, 5.6rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
  text-transform: uppercase;
  color: #fff;
}

.blast-band__line + .blast-band__line {
  margin-top: 0.15em;
}

/* 3. Cream + black offer card */
.offer-card-band {
  background: var(--cream);
  padding: clamp(3.5rem, 8vw, 5.75rem) 0;
}

.offer-card-band__inner {
  display: flex;
  justify-content: center;
}

.offer-card {
  width: min(100%, 720px);
  background: var(--black);
  color: #fff;
  border-radius: 16px;
  padding: clamp(2.25rem, 5vw, 3.25rem) clamp(1.5rem, 4vw, 2.75rem);
  text-align: center;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.offer-card__title {
  margin: 0 0 1.25rem;
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(1.35rem, 3.2vw, 1.85rem);
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.1;
}

.offer-card__price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.55rem;
  margin: 0 0 1.5rem;
}

.offer-card__was {
  font-family: var(--display);
  font-weight: 900;
  font-size: 1.35rem;
  text-decoration: line-through;
  text-decoration-thickness: 2px;
  color: rgba(255, 255, 255, 0.4);
}

.offer-card__arrow {
  color: rgba(255, 255, 255, 0.4);
  font-size: 1.1rem;
}

.offer-card__now {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(2.4rem, 5vw, 3.25rem);
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--gold-bright);
}

.offer-card .btn {
  width: min(100%, 420px);
}

.offer-card__note {
  margin: 1.15rem 0 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.55);
}

/* Mobile / tablet hero collapse — keep CTA above fold */
@media (max-width: 1190px) {
  .hero-shell {
    height: auto;
    min-height: 0;
    overflow: visible;
  }

  .hero--ob {
    height: auto;
    min-height: 0;
    justify-content: flex-start;
    padding: calc(var(--header-h) + 12px) 0 24px;
  }

  .hero__tri {
    grid-template-columns: 1fr;
    gap: 1rem;
    width: min(100% - 2rem, var(--container));
    height: auto;
    padding-top: 0;
    justify-items: center;
  }

  .hero__product {
    width: auto;
    height: auto;
    order: 2;
  }

  .product-bundle {
    max-width: 260px;
    max-height: 280px;
  }

  .hero__center {
    width: 100%;
    max-width: 530px;
    order: 1;
    align-items: center;
    text-align: center;
    padding: 0 0 8px;
    align-self: center;
  }

  .hero__headline {
    font-size: clamp(2.25rem, 9vw, 3.5rem);
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
  }


  .btn--hero-cta {
    white-space: normal;
    text-align: center;
    font-size: 20px !important;
    padding: 18px 28px !important;
    min-height: 62px;
  }

  .hero__portrait {
    width: auto;
    height: auto;
    order: 3;
  }

  .portrait-cutout {
    width: auto;
    max-width: min(280px, 70vw);
    height: auto;
    max-height: min(42svh, 320px);
    object-fit: contain;
    object-position: center bottom;
  }

  .hero__actions {
    justify-content: center;
  }
}

@media (min-width: 960px) and (max-width: 1190px) {
  .hero__tri {
    grid-template-columns: minmax(200px, 0.9fr) minmax(280px, 1.2fr) minmax(180px, 0.85fr);
    gap: 0;
    align-items: end;
    justify-items: stretch;
  }

  .hero__center {
    order: 0;
    align-items: flex-start;
    text-align: left;
    width: auto;
    max-width: none;
    padding-bottom: 40px;
  }

  .hero__product,
  .hero__portrait {
    order: 0;
    width: auto;
    height: auto;
  }

  .product-bundle {
    max-width: 300px;
    max-height: 340px;
  }

  .portrait-cutout {
    width: 100%;
    max-width: 280px;
    height: auto;
    max-height: 380px;
    object-fit: contain;
    object-position: center bottom;
  }

  .hero__headline {
    font-size: clamp(3rem, 6vw, 4.5rem);
    line-height: 1.05;
    letter-spacing: -0.03em;
  }

  .hero__actions {
    justify-content: flex-start;
  }
}

/* ---------- Sticky CTA (mobile) ---------- */
.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  background: var(--ink);
  border-top: 2px solid var(--accent);
  transform: translateY(100%);
  transition: transform 0.22s ease;
}

.sticky-cta.is-visible {
  transform: translateY(0);
}

.sticky-cta__inner {
  width: min(100% - 1.5rem, var(--container));
  margin-inline: auto;
  min-height: var(--sticky-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.sticky-cta__text {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.72);
}

.sticky-cta__text strong {
  color: var(--gold-bright);
  font-family: var(--display);
  font-weight: 900;
  font-size: 1.15rem;
}

body.has-sticky-cta {
  padding-bottom: calc(var(--sticky-h) + 0.5rem);
}

@media (min-width: 900px) {
  .sticky-cta {
    display: none;
  }
  body.has-sticky-cta {
    padding-bottom: 0;
  }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-family: var(--display);
  font-weight: 900;
  font-size: 16px;
  line-height: 1.2;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--radius-pill);
  border: 0;
  cursor: pointer;
  padding: 14px 22px;
  box-shadow: none;
  transition: background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}

.btn--pill {
  border-radius: var(--radius-pill);
}

.btn--sm {
  padding: 10px 16px;
  font-size: 13px;
}

.btn--lg {
  padding: 16px 28px;
  font-size: 16px;
}

.btn--xl {
  padding: 18px 36px;
  font-size: clamp(15px, 2.2vw, 18px);
  font-weight: 900;
  letter-spacing: 0.08em;
}

.btn--primary {
  background: var(--accent);
  color: var(--on-accent);
}

.btn--primary:hover {
  background: var(--accent-hover);
  color: var(--on-accent);
}

.btn--ink {
  background: var(--black);
  color: #fff;
}

.btn--ink:hover {
  background: #1a1a1a;
  color: #fff;
}

/* ---------- Sections (stacked full-bleed bands) ---------- */
.section {
  padding: clamp(4rem, 8vw, 6.25rem) 0;
}

.section--center {
  text-align: center;
}

.section--center .lead,
.section--center .eyebrow,
.section--center h2 {
  margin-left: auto;
  margin-right: auto;
}

.section--center .lead--center,
.lead--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section--cream {
  background: var(--cream);
  color: var(--text);
}

.section--black {
  background: var(--black);
  color: #e8e4dc;
}

.section--final {
  padding-bottom: clamp(4.5rem, 9vw, 7rem);
}

.section-cta--center {
  display: flex;
  justify-content: center;
}

/* ---------- Price rows ---------- */
.price-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.5rem 0.7rem;
  margin: 0 0 1.25rem;
}

.price-row--center {
  justify-content: center;
}

.price-row__was {
  font-family: var(--display);
  font-weight: 900;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  color: var(--faint);
  text-decoration: line-through;
  text-decoration-thickness: 2px;
}

.price-row__arrow {
  color: var(--faint);
  font-size: 1.15rem;
}

.price-row__now {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--gold);
}

.price-row--on-dark .price-row__was,
.price-row--on-dark .price-row__arrow {
  color: rgba(255, 255, 255, 0.45);
}

.price-row--on-dark .price-row__now {
  color: var(--gold-bright);
}

/* ---------- Lists ---------- */
.check-list {
  list-style: none;
  margin: 1.75rem auto 0;
  padding: 0;
  display: grid;
  gap: 0.7rem;
  max-width: 36rem;
  text-align: left;
}

.check-list li {
  position: relative;
  padding-left: 1.6rem;
  color: var(--text);
  font-size: 1rem;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--accent);
}

.check-list--on-dark li {
  color: rgba(255, 255, 255, 0.88);
}

.check-list--on-dark li::before {
  background: var(--gold-bright);
}

.check-list--split {
  margin-top: 1.75rem;
}

@media (min-width: 640px) {
  .check-list--split {
    grid-template-columns: 1fr 1fr;
    gap: 0.7rem 1.5rem;
    max-width: 44rem;
  }
}

/* ---------- Cards ---------- */
.who-grid,
.pillar-grid,
.path-steps,
.outcome-row,
.trust-strip {
  display: grid;
  gap: 1.15rem;
  margin-top: 2rem;
  align-items: stretch;
  text-align: left;
}

@media (min-width: 800px) {
  .who-grid,
  .pillar-grid,
  .path-steps,
  .outcome-row,
  .trust-strip {
    grid-template-columns: repeat(3, 1fr);
  }
}

.who-card,
.pillar,
.path-step,
.outcome,
.trust-strip__item,
.include-aside,
.soft-upsell {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: 1.6rem 1.45rem;
  box-shadow: none;
  overflow: visible;
}

.who-card--dark,
.pillar--dark,
.outcome--dark,
.trust-strip__item--dark {
  background: var(--accent);
  border-color: var(--accent-deep);
}

/* Momentum Terminal — keep charcoal + gold (not red) */
.soft-upsell--dark {
  background: #141414;
  border-color: #2a2a2a;
}

.who-card p,
.pillar p,
.path-step p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.5;
}

.who-card--dark h3,
.pillar--dark h3,
.outcome--dark strong,
.trust-strip__item--dark strong {
  color: #fff;
}

/* Red audience cards: white on accent — must beat .who-card p */
.who-card--dark h3 {
  color: #fff;
}

.who-card--dark p {
  color: #ffffff;
}

.pillar--dark p,
.outcome--dark span,
.trust-strip__item--dark span {
  color: rgba(255, 255, 255, 0.78);
}

.pillar__num {
  display: block;
  font-family: var(--display);
  font-weight: 900;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 0.7rem;
}

.path-steps {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
  counter-reset: path;
}

.path-step {
  counter-increment: path;
}

.path-step h3::before {
  content: counter(path) "  ";
  color: var(--accent);
}

.outcome {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.outcome strong {
  font-family: var(--display);
  font-weight: 900;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--ink);
  line-height: 1.1;
}

.outcome span {
  color: var(--muted);
  font-size: 0.975rem;
}

.trust-strip__item {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.trust-strip__item strong {
  font-family: var(--display);
  font-weight: 900;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--ink);
}

.trust-strip__item span {
  color: var(--muted);
  font-size: 0.975rem;
}

/* ---------- Instructor ---------- */
.instructor {
  display: grid;
  gap: 2rem;
  align-items: center;
  text-align: left;
}

@media (min-width: 800px) {
  .instructor {
    grid-template-columns: 260px 1fr;
    gap: 3.25rem;
  }
}

.instructor__photo-wrap {
  margin: 0 auto;
  width: min(240px, 70vw);
  background: #1a1a1a;
  border-radius: var(--radius-card);
  overflow: hidden;
}

@media (min-width: 800px) {
  .instructor__photo-wrap {
    margin: 0;
  }
}

.instructor__photo {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center top;
  background: transparent;
  border: 0;
}

.instructor__copy h2 {
  margin-bottom: 0.35rem;
}

.instructor__brand {
  margin: 0 0 1rem;
  font-weight: 700;
  color: var(--accent);
  font-size: 1rem;
}

.instructor__brand--on-dark {
  color: var(--gold-bright);
}

.instructor__copy p {
  color: rgba(255, 255, 255, 0.68);
  max-width: 36rem;
}

.instructor__copy p strong {
  color: #fff;
}

.instructor__tags {
  list-style: none;
  margin: 1.15rem 0 1.35rem;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.15rem;
  color: var(--muted);
  font-size: 0.875rem;
}

.instructor__tags--on-dark {
  color: rgba(255, 255, 255, 0.55);
}

.instructor__tags--on-dark li::before {
  content: "· ";
  color: var(--accent);
}

/* ---------- Included ---------- */
.include-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 2rem;
  align-items: start;
  text-align: left;
}

@media (min-width: 800px) {
  .include-grid {
    grid-template-columns: 1.2fr 0.8fr;
  }
}

.include-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.include-list li {
  padding: 0.95rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--text);
}

.include-list li:first-child {
  padding-top: 0;
}

.include-aside__label {
  margin: 0;
  font-family: var(--display);
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
}

.include-aside__big {
  margin: 0.45rem 0 0.9rem;
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(1.85rem, 3.2vw, 2.35rem);
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--ink);
  line-height: 1.05;
}

.include-aside p {
  font-family: var(--font);
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
}

.include-aside .btn {
  margin-top: 1.15rem;
}

/* ---------- Detail / final black cards on cream ---------- */
.detail-card,
.final-card {
  width: min(100%, 760px);
  margin-inline: auto;
  background: var(--black);
  color: #fff;
  border-radius: 16px;
  padding: clamp(2.25rem, 5vw, 3.5rem) clamp(1.5rem, 4vw, 2.75rem);
  text-align: center;
}

.detail-card .lead,
.final-card .lead {
  margin-left: auto;
  margin-right: auto;
}

.detail-card__note {
  margin: 1.25rem 0 0;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.55);
}

/* ---------- Soft upsell ---------- */
.soft-upsell {
  text-align: center;
  padding: clamp(1.75rem, 4vw, 2.4rem);
}

.soft-upsell--dark {
  border: 1px solid #2a2a2a;
}

.soft-upsell p {
  color: rgba(255, 255, 255, 0.68);
  max-width: 38rem;
  margin-left: auto;
  margin-right: auto;
}

.soft-upsell__price {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin: 1.15rem 0 0.5rem;
  align-items: center;
}

.soft-upsell__now {
  font-family: var(--display);
  font-weight: 900;
  font-size: 2rem;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: var(--ink);
  line-height: 1;
}

.soft-upsell__now--on-dark {
  color: var(--gold-bright);
}

.soft-upsell__later,
.soft-upsell__hint {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.45);
}

.soft-upsell__hint {
  margin: 0;
}

/* ---------- FAQ ---------- */
.faq {
  margin-top: 1.75rem;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
  text-align: left;
}

.faq--on-dark {
  border-top-color: rgba(255, 255, 255, 0.12);
}

.faq__item {
  background: transparent;
  border-bottom: 1px solid var(--line);
  overflow: visible;
}

.faq--on-dark .faq__item {
  border-bottom-color: rgba(255, 255, 255, 0.12);
}

.faq__item summary {
  cursor: pointer;
  list-style: none;
  padding: 1.1rem 0;
  font-family: var(--font);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.faq--on-dark .faq__item summary {
  color: #fff;
}

.faq__item summary::-webkit-details-marker {
  display: none;
}

.faq__item summary::after {
  content: "+";
  font-family: var(--font);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--accent);
  line-height: 1;
  flex-shrink: 0;
}

.faq__item[open] summary::after {
  content: "−";
}

.faq__item summary:focus-visible {
  box-shadow: inset var(--focus);
}

.faq__body {
  padding: 0 0 1.15rem;
}

.faq__body p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
}

.faq--on-dark .faq__body p {
  color: rgba(255, 255, 255, 0.65);
}

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 2.4rem 0 2.1rem;
  background: #0c0c0c;
  color: rgba(255, 255, 255, 0.62);
}

.footer__brand {
  margin: 0;
  font-family: var(--display);
  font-weight: 900;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #fff;
}

.footer__tag {
  margin: 0.3rem 0 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
}

.footer__nav li {
  display: inline-flex;
  align-items: center;
  margin: 0;
  padding: 0;
}

.footer__nav li:not(:last-child)::after {
  content: "";
  display: inline-block;
  width: 1.35rem;
}

.footer__nav a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  font-size: 0.875rem;
  white-space: nowrap;
}

.footer__nav a:hover {
  color: #fff;
}

.disclaimer {
  font-size: 0.8rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.42);
  margin: 0 0 1.25rem;
  max-width: 70rem;
}

.disclaimer strong {
  color: rgba(255, 255, 255, 0.7);
}

.footer__copy {
  margin: 0;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.38);
}

/* ============================================================
   Contrast lock — dark / red surfaces always get light text
   ============================================================ */
.who-card--dark p,
.who-card--dark h3,
.pillar--dark p,
.pillar--dark h3,
.outcome--dark strong,
.outcome--dark span,
.trust-strip__item--dark strong,
.trust-strip__item--dark span {
  color: #fff !important;
}

.who-card--dark p,
.pillar--dark p,
.outcome--dark span,
.trust-strip__item--dark span {
  color: rgba(255, 255, 255, 0.95) !important;
}

/* Terminal upsell: light text on charcoal (previous combo) */
.soft-upsell--dark p {
  color: rgba(255, 255, 255, 0.68) !important;
}
.soft-upsell--dark .soft-upsell__now,
.soft-upsell--dark .soft-upsell__now--on-dark {
  color: var(--gold-bright) !important;
}


.section--black .lead--on-dark {
  color: rgba(255, 255, 255, 0.78);
}

.instructor__copy p {
  color: rgba(255, 255, 255, 0.82);
}

.instructor__tags--on-dark {
  color: rgba(255, 255, 255, 0.72);
}

.faq--on-dark .faq__body p {
  color: rgba(255, 255, 255, 0.78);
}

.sticky-cta__text {
  color: rgba(255, 255, 255, 0.78);
}
