:root {
  --bg: #030a0a;
  --panel: #071412;
  --panel-2: #0a1d1a;
  --ink: #f7f6ef;
  --muted: #a8b5b1;
  --teal: #64e1dc;
  --teal-soft: #a6ead3;
  --gold: #e3b440;
  --line: rgba(100, 225, 220, .19);
  --shadow: 0 30px 90px rgba(0, 0, 0, .42);
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--bg); }
body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 50% -10%, rgba(37, 126, 116, .14), transparent 34%),
    var(--bg);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}
body::after {
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  content: "";
  opacity: .045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitchTiles'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

a { color: inherit; }
img { max-width: 100%; }
button, input, select, textarea { font: inherit; }
.shell { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
[id] { scroll-margin-top: 92px; }
a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 4px;
}
.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 999;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--ink);
  color: var(--bg);
  font-weight: 900;
  transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  padding: 14px max(24px, 4vw);
  border-bottom: 1px solid transparent;
  transition: background .25s ease, border-color .25s ease, min-height .25s ease;
}
.site-header.is-scrolled {
  min-height: 68px;
  border-color: var(--line);
  background: rgba(3, 10, 10, .91);
  backdrop-filter: blur(16px);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  text-decoration: none;
}
.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(227, 180, 64, .65);
  border-radius: 13px;
  background: linear-gradient(145deg, #f1c95a, #9f6d16);
  box-shadow: 0 8px 28px rgba(0, 0, 0, .24);
  color: #06100f;
  font-size: 1.3rem;
  font-weight: 1000;
}
.brand-name {
  font-size: .73rem;
  font-weight: 1000;
  letter-spacing: .18em;
  line-height: 1.02;
}
.brand-name strong { color: var(--gold); }
.nav-links { display: flex; align-items: center; gap: 24px; }
.nav-links > a {
  color: rgba(247, 246, 239, .84);
  font-size: .67rem;
  font-weight: 1000;
  letter-spacing: .11em;
  text-decoration: none;
}
.nav-links > a:not(.nav-buy):hover { color: var(--teal); }
.member-link {
  display: inline-flex;
  min-height: 42px;
  padding: 0 15px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(100, 225, 220, .42);
  border-radius: 999px;
  background: rgba(5, 22, 20, .66);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .025);
  color: var(--ink) !important;
  white-space: nowrap;
  backdrop-filter: blur(12px);
  transition: border-color .2s ease, background .2s ease, color .2s ease;
}
.member-link:hover,
.member-link:focus-visible {
  border-color: var(--teal);
  background: rgba(100, 225, 220, .11);
  color: var(--teal) !important;
}
.member-label-short { display: none; }
.nav-buy {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--teal), var(--teal-soft) 52%, var(--gold));
  box-shadow: 0 9px 30px rgba(0, 0, 0, .23);
  color: #06100f !important;
}

.hero {
  position: relative;
  display: flex;
  min-height: 100svh;
  align-items: center;
  overflow: hidden;
  background: #03100f;
}
.media-shell {
  background-color: #061311;
  background-image: var(--poster);
  background-position: center;
  background-size: cover;
}
.media-shell mux-player {
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity .75s ease;
  --media-object-size: cover;
  --media-object-position: center;
}
.media-shell.is-playing mux-player,
.hero.is-playing mux-player { opacity: 1; }
.hero-media { position: absolute; inset: 0; background-position: 69% center; }
.hero-poster,
.hero-poster img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-poster img {
  object-fit: cover;
  object-position: 69% center;
}
.hero-media mux-player {
  position: absolute;
  inset: 0;
  --controls: none;
  --media-object-size: cover;
  --media-object-position: 69% center;
}
.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(2, 8, 8, .9) 0%, rgba(2, 8, 8, .72) 25%, rgba(2, 8, 8, .39) 46%, rgba(2, 8, 8, .07) 65%, rgba(2, 8, 8, .01) 75%),
    linear-gradient(180deg, rgba(3, 10, 10, .18) 0%, rgba(3, 10, 10, .02) 48%, rgba(3, 10, 10, .14) 72%, rgba(3, 10, 10, .84) 100%);
}
.hero-inner {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 285px;
  gap: clamp(36px, 7vw, 92px);
  align-items: center;
  padding-top: 128px;
  padding-bottom: 110px;
}
.hero-copy { width: 100%; max-width: 650px; }
.eyebrow {
  margin: 0 0 15px;
  color: var(--gold);
  font-size: .63rem;
  font-weight: 1000;
  letter-spacing: .25em;
  line-height: 1.5;
}
h1, h2, h3, p { overflow-wrap: break-word; }
h1, h2, h3 {
  font-family: Impact, "Arial Black", "Arial Narrow", Arial, sans-serif;
  font-weight: 900;
}
.hero h1 {
  max-width: 650px;
  margin: 0 0 24px;
  font-size: clamp(3.7rem, 7.6vw, 7.25rem);
  letter-spacing: -.052em;
  line-height: .86;
  text-shadow: 0 7px 28px rgba(0, 0, 0, .52);
}
.hero h1 span,
.section-heading h2 span,
.pathway-copy h2 span,
.offer-inner h2 span { color: var(--teal); }
.hero-lead {
  max-width: 570px;
  margin: 0;
  color: rgba(247, 246, 239, .91);
  font-size: clamp(1rem, 1.7vw, 1.22rem);
  line-height: 1.55;
  text-shadow: 0 3px 16px rgba(0, 0, 0, .77);
}
.hero-actions { display: flex; align-items: center; gap: 10px; margin-top: 27px; }
.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 19px;
  border: 1px solid transparent;
  border-radius: 11px;
  font-size: .69rem;
  font-weight: 1000;
  letter-spacing: .08em;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary {
  background: linear-gradient(90deg, var(--teal), var(--teal-soft) 52%, var(--gold));
  box-shadow: 0 13px 35px rgba(0, 0, 0, .32);
  color: #06100f;
}
.button-ghost {
  border-color: rgba(255, 255, 255, .2);
  background: rgba(3, 10, 10, .46);
  backdrop-filter: blur(10px);
}
.button-ghost:hover { border-color: var(--teal); }
.wide { width: 100%; }
.trust-line {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 17px 0 0;
  color: rgba(230, 236, 233, .68);
  font-size: .5rem;
  font-weight: 900;
  letter-spacing: .14em;
}
.trust-line i { width: 3px; height: 3px; border-radius: 50%; background: var(--gold); }
.hero-scroll {
  position: absolute;
  bottom: 27px;
  left: 50%;
  z-index: 6;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, .67);
  font-size: .52rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-decoration: none;
  transform: translateX(-50%);
}
.hero-scroll span { position: relative; width: 1px; height: 28px; background: linear-gradient(var(--teal), transparent); }
.hero-motion-toggle {
  position: absolute;
  right: max(18px, 3vw);
  bottom: 25px;
  z-index: 7;
  min-height: 40px;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 999px;
  background: rgba(3, 10, 10, .66);
  color: rgba(255, 255, 255, .8);
  cursor: pointer;
  font-size: .5rem;
  font-weight: 900;
  letter-spacing: .13em;
  backdrop-filter: blur(12px);
}
.hero-motion-toggle:hover { border-color: var(--teal); color: var(--teal); }
.hero-product-stack {
  display: grid;
  width: 100%;
  min-width: 0;
  gap: 10px;
}
.hero-product {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  align-items: center;
  align-self: center;
  min-width: 0;
  height: auto;
  gap: 14px;
  padding: 10px 14px 10px 10px;
  border: 1px solid rgba(227, 180, 64, .4);
  border-radius: 18px;
  background: linear-gradient(160deg, rgba(5, 24, 21, .74), rgba(2, 9, 8, .88));
  box-shadow: 0 16px 42px rgba(0, 0, 0, .34);
  backdrop-filter: blur(14px);
}
.hero-product img {
  display: block;
  width: 72px;
  height: auto;
  max-height: 108px;
  aspect-ratio: 2 / 3;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 4px;
  box-shadow: -8px 12px 26px rgba(0, 0, 0, .42);
  object-fit: cover;
}
.hero-cover {
  position: relative;
  width: 72px;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 4px;
  box-shadow: -8px 12px 26px rgba(0, 0, 0, .42);
}
.hero-cover > img {
  width: 100%;
  height: 100%;
  max-height: none;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  object-fit: cover;
}
.hero-cover--training::after {
  position: absolute;
  inset: 0 0 auto;
  height: 27%;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0, 0, 0, .88), rgba(0, 0, 0, .42) 58%, transparent);
  content: "";
  pointer-events: none;
}
.hero-cover-title {
  position: absolute;
  inset: 3px 3px auto;
  z-index: 2;
  display: grid;
  justify-items: center;
  color: var(--ink);
  text-align: center;
  pointer-events: none;
}
.hero-cover-title > small {
  color: var(--gold);
  font-size: .2rem;
  font-weight: 1000;
  letter-spacing: .15em;
  line-height: 1;
}
.hero-cover-title > strong {
  display: grid;
  justify-items: center;
  margin-top: 1px;
  font-family: Impact, "Arial Black", "Arial Narrow", Arial, sans-serif;
  font-size: .415rem;
  font-weight: 900;
  letter-spacing: .025em;
  line-height: .84;
  text-shadow: 0 2px 7px #000;
}
.hero-cover-title > strong span:last-child { color: var(--teal); }
.hero-product-copy { display: grid; min-width: 0; gap: 4px; }
.hero-product-copy small { color: var(--teal); font-size: .45rem; font-weight: 1000; letter-spacing: .14em; line-height: 1.35; }
.hero-product-copy strong { color: var(--ink); font-size: 1rem; letter-spacing: .035em; line-height: 1.02; }
.hero-product-copy span { color: #c2ceca; font-size: .61rem; line-height: 1.35; }
.hero-product--system { border-color: rgba(100, 225, 220, .35); }

.proof {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: -26px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(7, 29, 26, .98), rgba(3, 14, 13, .98));
  box-shadow: var(--shadow);
}
.proof > div { min-height: 96px; padding: 22px 20px; border-right: 1px solid var(--line); }
.proof > div:last-child { border-right: 0; }
.proof strong { display: block; color: var(--gold); font-size: 1.65rem; line-height: 1; }
.proof span { display: block; margin-top: 8px; color: #c7d1ce; font-size: .55rem; font-weight: 900; letter-spacing: .12em; }

.section { position: relative; padding: 108px 0; }
.section-heading { margin-bottom: 52px; }
.section-heading h2,
.pathway-copy h2,
.offer-inner h2 {
  margin: 0;
  font-size: clamp(3rem, 6.5vw, 6.2rem);
  letter-spacing: -.045em;
  line-height: .88;
}
.section-heading > p:not(.eyebrow) {
  max-width: 640px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
}
.split-heading { display: grid; grid-template-columns: 1fr .72fr; align-items: end; gap: 70px; }
.split-heading > p { margin-bottom: 7px !important; }
.centered { max-width: 850px; margin-inline: auto; text-align: center; }
.centered > p:not(.eyebrow) { margin-inline: auto; }

.system-intro {
  background:
    radial-gradient(circle at 20% 52%, rgba(35, 139, 127, .13), transparent 29%),
    linear-gradient(180deg, transparent, rgba(8, 30, 27, .34), transparent);
}
.product-grid { display: grid; grid-template-columns: .8fr 1.2fr; align-items: center; gap: clamp(55px, 9vw, 125px); }
.book-stage { position: relative; display: grid; place-items: center; min-height: 620px; }
.book-glow {
  position: absolute;
  inset: 15% 4%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(227, 180, 64, .24), rgba(100, 225, 220, .08) 45%, transparent 70%);
  filter: blur(30px);
}
.book-cover-frame {
  position: relative;
  width: min(330px, 68vw);
  aspect-ratio: 2 / 3;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 5px;
  box-shadow: -24px 32px 75px rgba(0, 0, 0, .58);
  transform: perspective(1200px) rotateY(9deg) rotateX(1deg);
  overflow: hidden;
}
.book-cover-frame img {
  display: block;
  width: 100% !important;
  height: 100% !important;
  max-width: none;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  object-position: center;
}
.price-orbit {
  position: absolute;
  right: 0;
  bottom: 14%;
  display: grid;
  min-width: 136px;
  padding: 15px 18px;
  border: 1px solid rgba(227, 180, 64, .62);
  border-radius: 999px;
  background: rgba(3, 10, 10, .85);
  box-shadow: 0 15px 45px rgba(0, 0, 0, .35);
  backdrop-filter: blur(12px);
  text-align: center;
}
.price-orbit b { color: var(--gold); font-size: 2rem; line-height: 1; }
.price-orbit small { margin-top: 5px; color: #d4dcda; font-size: .48rem; font-weight: 900; letter-spacing: .13em; }
.included-stack { display: grid; gap: 12px; }
.included-stack article {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 20px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(10, 30, 27, .86), rgba(5, 14, 13, .86));
}
.included-stack article > span { color: rgba(227, 180, 64, .72); font-size: 2.45rem; font-weight: 1000; letter-spacing: -.06em; }
.included-stack h3 { margin: 0 0 8px; font-size: 1.55rem; letter-spacing: -.02em; }
.included-stack p, .access-note { margin: 0; color: var(--muted); font-size: .88rem; line-height: 1.55; }
.included-stack .button { margin-top: 8px; }
.access-note { padding-inline: 12px; text-align: center; font-size: .72rem; }

.pillars-section {
  overflow: hidden;
  border-block: 1px solid rgba(100, 225, 220, .08);
  background:
    radial-gradient(circle at 50% 4%, rgba(27, 132, 121, .16), transparent 27%),
    #020807;
}
.pillar-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.foundation-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: 980px; }
.pillar-card {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 22px 70px rgba(0, 0, 0, .32);
}
.pillar-card mux-player,
.progress-card mux-player { position: absolute; inset: 0; }
.progress-card mux-player { z-index: 1; opacity: 1; }
.video-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-load-button {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: grid;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  place-items: center;
}
.video-load-button span {
  display: grid;
  width: 76px;
  height: 76px;
  padding-left: 5px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .62);
  border-radius: 50%;
  background: rgba(3, 10, 10, .76);
  box-shadow: 0 14px 44px rgba(0, 0, 0, .4);
  font-size: 1.35rem;
  backdrop-filter: blur(12px);
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}
.video-load-button:hover span,
.video-load-button:focus-visible span {
  border-color: var(--teal);
  background: rgba(5, 29, 26, .9);
  transform: scale(1.06);
}
.video-load-button:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: -8px;
}
.video-load-button[aria-busy="true"] span {
  opacity: .7;
  transform: scale(.94);
}
.video-status {
  position: absolute;
  right: 20px;
  bottom: 20px;
  left: 20px;
  z-index: 5;
  margin: 0;
  padding: 10px 12px;
  border: 1px solid rgba(227, 180, 64, .55);
  border-radius: 10px;
  background: rgba(3, 10, 10, .9);
  color: var(--ink);
  font-size: .75rem;
  line-height: 1.4;
  text-align: center;
}
.video-status:empty { display: none; }
.pillar-card:nth-child(1), .pillar-card:nth-child(2) { grid-column: span 1; }
.card-scrim {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, rgba(3, 10, 10, .05) 0%, rgba(3, 10, 10, .12) 44%, rgba(3, 10, 10, .95) 94%);
  pointer-events: none;
}
.card-copy { position: absolute; inset: auto 24px 24px; z-index: 3; }
.card-copy b { display: block; margin-bottom: auto; color: var(--gold); font-size: 3.5rem; line-height: .9; }
.card-copy h3 { margin: 14px 0 7px; font-size: 2rem; letter-spacing: -.03em; line-height: .95; }
.card-copy p { max-width: 330px; margin: 0; color: #d2dbd8; font-size: .79rem; line-height: 1.5; }
.progress-card .card-scrim {
  bottom: auto;
  height: 42%;
  background: linear-gradient(180deg, rgba(2, 8, 8, .78), rgba(2, 8, 8, .08) 76%, transparent);
}
.pathway-bridge {
  display: grid;
  gap: 20px;
  margin-top: 24px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(4, 18, 16, .75);
  text-align: center;
}
.pathway-bridge > p { margin: 0; color: var(--muted); line-height: 1.6; }
.pillar-chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 9px; }
.pillar-chips span {
  padding: 11px 14px;
  border: 1px solid rgba(100, 225, 220, .25);
  border-radius: 999px;
  background: rgba(3, 12, 11, .76);
  color: #dbe4e1;
  font-size: .61rem;
  font-weight: 1000;
  letter-spacing: .11em;
}

.pathway-section { background: linear-gradient(180deg, #030a0a, #061412, #030a0a); }
.pathway-panel {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 65px;
  padding: clamp(28px, 5vw, 64px);
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    radial-gradient(circle at 88% 12%, rgba(227, 180, 64, .13), transparent 25%),
    linear-gradient(120deg, rgba(6, 27, 24, .98), rgba(4, 14, 13, .98));
  box-shadow: var(--shadow);
}
.pathway-copy > p:not(.eyebrow) { max-width: 520px; margin: 24px 0 0; color: var(--muted); line-height: 1.65; }
.pathway-copy .button { margin-top: 24px; }
.pathway-steps { display: grid; gap: 10px; margin: 0; padding: 0; list-style: none; }
.pathway-steps li {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 20px;
  align-items: center;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 16px;
  background: rgba(3, 10, 10, .62);
}
.pathway-steps li > b { color: var(--teal); font-size: 2.1rem; }
.pathway-steps h3 { margin: 0 0 5px; font-size: 1.2rem; }
.pathway-steps p { margin: 0; color: var(--muted); font-size: .8rem; }

.progress-section { background: #020807; }
.progress-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.progress-card {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.progress-card h3 {
  position: absolute;
  right: 24px;
  top: 24px;
  bottom: auto;
  left: 24px;
  z-index: 3;
  margin: 0;
  font-size: clamp(3rem, 7vw, 6rem);
  letter-spacing: -.05em;
  line-height: .85;
  pointer-events: none;
  text-shadow: 0 5px 25px rgba(0, 0, 0, .75);
}
.progress-card h3 small { display: block; margin-top: 12px; color: var(--gold); font: 900 .55rem Arial, sans-serif; letter-spacing: .18em; }

.audience-section { padding-top: 0; background: #020807; }
.audience-panel {
  padding: clamp(28px, 5vw, 58px);
  border: 1px solid rgba(227, 180, 64, .28);
  border-radius: 26px;
  background:
    radial-gradient(circle at 100% 0%, rgba(227, 180, 64, .1), transparent 32%),
    linear-gradient(135deg, rgba(7, 28, 25, .94), rgba(3, 12, 11, .97));
  text-align: center;
}
.audience-panel h2 { max-width: 890px; margin: 0 auto; font-size: clamp(2.5rem, 5vw, 4.9rem); line-height: .92; letter-spacing: -.04em; }
.audience-panel > p:not(.eyebrow) { max-width: 720px; margin: 22px auto 0; color: var(--muted); line-height: 1.65; }
.audience-panel small { display: block; max-width: 680px; margin: 20px auto 0; color: #82928e; line-height: 1.5; }

.offer-section {
  min-height: 780px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.offer-backdrop { position: absolute; inset: 0; background-position: 62% center; }
.offer-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 8, 8, .94), rgba(2, 8, 8, .7) 46%, rgba(2, 8, 8, .46)),
    linear-gradient(180deg, rgba(2, 8, 8, .15), rgba(2, 8, 8, .8));
}
.offer-inner { position: relative; z-index: 3; display: grid; grid-template-columns: 1.18fr .65fr; align-items: center; gap: 65px; }
.offer-inner h2 { max-width: 790px; }
.offer-card {
  padding: 34px;
  border: 1px solid rgba(227, 180, 64, .4);
  border-radius: 22px;
  background: rgba(3, 10, 10, .84);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}
.offer-card > p { margin: 0; color: var(--gold); font-size: .58rem; font-weight: 900; letter-spacing: .2em; }
.offer-price { margin: 15px 0 18px; font-size: 7rem; font-weight: 1000; letter-spacing: -.08em; line-height: .8; }
.offer-price sup { color: var(--gold); font-size: 2.4rem; vertical-align: top; }
.offer-card ul { margin: 28px 0; padding: 0; list-style: none; }
.offer-card li { margin: 11px 0; color: #d4ddda; font-size: .83rem; }
.offer-card li::before { margin-right: 10px; color: var(--teal); content: "✓"; font-weight: 1000; }
.offer-card small { display: block; margin-top: 12px; color: #7f908c; text-align: center; }

.faq-section { background: linear-gradient(180deg, #030a0a, #051411); }
.faq-grid { display: grid; grid-template-columns: .68fr 1.32fr; gap: 90px; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); padding: 22px 0; }
.faq-list summary { position: relative; padding-right: 38px; cursor: pointer; font-weight: 900; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { position: absolute; top: -5px; right: 4px; color: var(--gold); content: "+"; font-size: 1.7rem; font-weight: 400; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list p { max-width: 720px; margin: 15px 0 0; color: var(--muted); font-size: .9rem; line-height: 1.65; }

.site-footer { padding: 42px 0 54px; border-top: 1px solid var(--line); background: #020706; }
.footer-inner { display: grid; grid-template-columns: .75fr 1fr .75fr; align-items: center; gap: 42px; }
.footer-copy p { margin: 0 0 8px; font-size: .64rem; font-weight: 900; letter-spacing: .14em; }
.footer-copy small { color: #71807c; font-size: .65rem; line-height: 1.5; }
.footer-links { display: grid; justify-items: end; gap: 9px; color: #82908d; font-size: .58rem; font-weight: 900; letter-spacing: .11em; }
.footer-links a { text-decoration: none; }
.footer-links a:hover { color: var(--teal); }
.mobile-buy { display: none; }

@media (max-width: 1040px) {
  .nav-links > a:nth-child(-n+2) { display: none; }
  .pillar-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-inner { grid-template-columns: minmax(0, 1fr) 245px; gap: 36px; }
  .product-grid { gap: 60px; }
  .progress-card { min-height: 560px; }
  .offer-inner { grid-template-columns: 1fr .64fr; gap: 40px; }
}

@media (max-width: 760px) {
  .shell { width: min(100% - 28px, 680px); }
  .site-header { min-height: 70px; padding: 11px 15px; }
  .brand-mark { width: 38px; height: 38px; border-radius: 11px; }
  .brand-name { font-size: .58rem; letter-spacing: .14em; }
  .nav-links { gap: 6px; }
  .member-link {
    display: inline-flex !important;
    min-height: 44px;
    padding: 0 10px;
    font-size: .55rem !important;
    letter-spacing: .08em !important;
  }
  .member-label-full { display: none; }
  .member-label-short { display: inline; }
  .nav-buy { min-height: 44px; padding: 0 10px; font-size: .58rem !important; }
  .nav-buy span { display: none; }

  .hero { min-height: 100svh; align-items: flex-end; }
  .hero-media { background-position: 70% center; }
  .hero-poster img { object-position: 70% center; }
  .hero-media mux-player { --media-object-position: 70% center; }
  .hero-scrim {
    background:
      linear-gradient(90deg, rgba(2, 8, 8, .86) 0%, rgba(2, 8, 8, .65) 34%, rgba(2, 8, 8, .2) 61%, rgba(2, 8, 8, .02) 76%),
      linear-gradient(180deg, rgba(3, 10, 10, .06) 0%, rgba(3, 10, 10, .01) 40%, rgba(3, 10, 10, .43) 67%, rgba(3, 10, 10, .94) 100%);
  }
  .hero-inner { grid-template-columns: 1fr; gap: 20px; padding-top: 112px; padding-bottom: 76px; }
  .hero-copy { width: 100%; min-width: 0; }
  .hero h1 { font-size: clamp(3.15rem, 14.5vw, 5rem); line-height: .87; }
  .hero-lead { font-size: .96rem; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .button { min-height: 52px; }
  .trust-line { display: block; line-height: 1.8; }
  .trust-line i { display: none; }
  .hero-scroll { display: none; }
  .hero-motion-toggle { right: 14px; bottom: 18px; min-height: 44px; }
  .hero-product-stack {
    width: min(100%, 340px);
    justify-self: start;
    gap: 9px;
  }
  .hero-product {
    grid-template-columns: 76px minmax(0, 1fr);
    align-self: start;
    min-height: 0;
    height: auto;
    padding: 10px 14px 10px 10px;
    gap: 14px;
  }
  .hero-product img {
    width: 76px;
    height: auto;
    max-height: 114px;
    object-fit: cover;
    transform: none;
  }
  .hero-cover { width: 76px; }
  .hero-cover > img {
    width: 100%;
    height: 100%;
    max-height: none;
  }
  .hero-product-copy { align-self: center; }
  .hero-product-copy strong { font-size: .98rem; }

  .proof { grid-template-columns: repeat(2, 1fr); margin-top: -18px; }
  .proof > div { min-height: 88px; padding: 18px; }
  .proof > div:nth-child(2) { border-right: 0; }
  .proof > div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .proof strong { font-size: 1.45rem; }

  .section { padding: 82px 0; }
  .section-heading { margin-bottom: 38px; }
  .section-heading h2, .pathway-copy h2, .offer-inner h2 { font-size: clamp(2.75rem, 14vw, 4.6rem); }
  .split-heading { grid-template-columns: 1fr; gap: 20px; }
  .product-grid { grid-template-columns: 1fr; gap: 30px; }
  .book-stage { min-height: 520px; }
  .book-cover-frame { transform: none; }
  .price-orbit { right: 2%; bottom: 11%; }
  .included-stack article { grid-template-columns: 56px 1fr; gap: 12px; padding: 19px; }
  .included-stack article > span { font-size: 2rem; }
  .included-stack h3 { font-size: 1.25rem; }

  .pillar-grid { grid-template-columns: 1fr; gap: 16px; }
  .pillar-card { min-height: 52svh; max-height: 560px; }
  .card-copy { inset: auto 20px 22px; }
  .card-copy h3 { font-size: 2.35rem; }

  .pathway-panel { grid-template-columns: 1fr; gap: 40px; padding: 24px; }
  .pathway-steps li { grid-template-columns: 54px 1fr; padding: 15px; }
  .progress-grid { grid-template-columns: 1fr; }
  .progress-card { min-height: 62svh; }

  .offer-section { min-height: auto; padding-block: 92px; }
  .offer-backdrop { background-position: 68% center; }
  .offer-inner { grid-template-columns: 1fr; }
  .offer-card { padding: 25px; }
  .offer-price { font-size: 6rem; }
  .faq-grid { grid-template-columns: 1fr; gap: 35px; }

  .footer-inner { grid-template-columns: 1fr; gap: 27px; }
  .footer-links { justify-items: start; }
  .mobile-buy {
    position: fixed;
    right: 10px;
    bottom: max(10px, env(safe-area-inset-bottom));
    left: 10px;
    z-index: 90;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 10px 10px 15px;
    border: 1px solid rgba(100, 225, 220, .35);
    border-radius: 15px;
    background: rgba(3, 14, 13, .94);
    box-shadow: 0 20px 55px rgba(0, 0, 0, .48);
    backdrop-filter: blur(16px);
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transform: translateY(125%);
    transition: opacity .25s ease, transform .25s ease, visibility 0s linear .25s;
  }
  .mobile-buy.is-visible {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    transform: translateY(0);
    transition-delay: 0s;
  }
  .mobile-buy div { display: grid; gap: 3px; }
  .mobile-buy small { color: var(--gold); font-size: .43rem; font-weight: 900; letter-spacing: .14em; }
  .mobile-buy b { font-size: .75rem; }
  .mobile-buy a {
    display: grid;
    min-height: 44px;
    padding: 0 16px;
    place-items: center;
    border-radius: 10px;
    background: linear-gradient(90deg, var(--teal), var(--gold));
    color: #06100f;
    font-size: .55rem;
    font-weight: 1000;
    letter-spacing: .08em;
    text-decoration: none;
    white-space: nowrap;
  }
  .site-footer { padding-bottom: 110px; }
}

@media (max-width: 430px) {
  .brand-name { font-size: .54rem; letter-spacing: .11em; }
}

@media (max-width: 360px) {
  .site-header .brand-name { display: none; }
  .mobile-buy > div { display: none; }
  .mobile-buy a { width: 100%; }
}

@media (max-width: 430px) {
  .hero h1 { font-size: clamp(2.8rem, 13.7vw, 4rem); }
  .hero-lead { font-size: .9rem; line-height: 1.5; }
  .hero-actions .button { font-size: .61rem; }
  .book-stage { min-height: 410px; }
  .book-cover-frame { width: min(250px, 64vw); }
  .price-orbit { min-width: 118px; padding: 13px; }
  .price-orbit b { font-size: 1.7rem; }
  .pillar-card { min-height: 48svh; }
  .progress-card { min-height: 56svh; }
}

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