@import url("https://fonts.googleapis.com/css2?family=Inter+Tight:wght@400;500;650;750;850&display=swap");

:root {
  --ink: #090909;
  --muted: #686868;
  --line: #e4e4e4;
  --paper: #f7f7f5;
  --paper-2: #ededeb;
  --black: #090909;
  --black-2: #141414;
  --red: #b11226;
  --red-2: #e11937;
  --red-dark: #720b18;
  --white: #ffffff;
  --pointer-x: 50vw;
  --pointer-y: 50vh;
  --hero-shift: 0px;
  --hero-zoom: 1.04;
  --hero-focus: 0;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  overflow-y: auto;
  scroll-behavior: auto;
  scroll-padding-top: 88px;
}

body {
  min-height: 100%;
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family:
    "Inter Tight", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
  overflow-y: visible;
  touch-action: pan-y;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at var(--pointer-x) var(--pointer-y), rgba(225, 25, 55, 0.08), transparent 22rem),
    linear-gradient(180deg, rgba(9, 9, 9, 0.02), transparent 30rem);
}

.cursor-glow {
  position: fixed;
  z-index: 8;
  width: 280px;
  height: 280px;
  pointer-events: none;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(225, 25, 55, 0.18), transparent 62%);
  opacity: 0;
  transition: opacity 220ms ease;
  will-change: transform, opacity;
}

body.is-menu-open .cursor-glow,
body.lightbox-open .cursor-glow {
  opacity: 0 !important;
}

@media (hover: none) {
  .cursor-glow {
    display: none;
  }
}

.is-ready .cursor-glow {
  opacity: 1;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 14px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--white);
  background: rgba(7, 7, 7, 0.8);
  backdrop-filter: blur(18px);
}

.brand,
.nav,
.hero-actions,
.metrics,
.apply {
  display: flex;
  align-items: center;
}

.brand {
  gap: 12px;
  font-weight: 750;
  letter-spacing: 0;
}

.brand-mark {
  position: relative;
  display: block;
  width: 46px;
  height: 46px;
  overflow: hidden;
  border-radius: 8px;
  background: #030303;
  box-shadow:
    0 0 18px rgba(225, 25, 55, 0.36),
    0 0 42px rgba(177, 18, 38, 0.22);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transform: scale(1.2);
}

.nav {
  gap: clamp(18px, 3vw, 38px);
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.nav-item {
  position: relative;
}

.nav > a:hover,
.nav > a.is-active,
.nav-item > a:hover,
.nav-item > a.is-active,
.header-cta:hover {
  color: var(--white);
}

.nav > a,
.nav-item > a {
  position: relative;
  padding: 15px 0;
  transition: color 180ms ease;
}

.nav > a::after,
.nav-item > a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  background: var(--red-2);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.nav > a:hover::after,
.nav > a.is-active::after,
.nav-item:hover > a::after,
.nav-item > a.is-active::after {
  transform: scaleX(0.72);
  transform-origin: left;
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  z-index: 30;
  display: grid;
  min-width: 220px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(135deg, rgba(177, 18, 38, 0.16), transparent 44%),
    rgba(18, 18, 18, 0.96);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.32);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 10px);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.has-menu:hover .nav-dropdown,
.has-menu:focus-within .nav-dropdown,
.has-menu.is-open .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-dropdown a {
  padding: 13px 14px;
  color: rgba(255, 255, 255, 0.68);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition:
    color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.nav-dropdown a:last-child {
  border-bottom: 0;
}

.nav-dropdown a:hover {
  color: var(--white);
  background: rgba(225, 25, 55, 0.13);
  transform: translateX(5px);
}

.header-cta {
  position: relative;
  overflow: hidden;
  padding: 13px 20px;
  border: 1px solid rgba(225, 25, 55, 0.72);
  color: var(--white);
  background: rgba(177, 18, 38, 0.9);
  box-shadow: 0 0 24px rgba(177, 18, 38, 0.24);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.header-cta::after {
  content: "";
  position: absolute;
  right: 18px;
  bottom: 7px;
  left: 18px;
  height: 2px;
  background: rgba(255, 255, 255, 0.75);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.header-cta:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.hero {
  position: relative;
  min-height: 650px;
  height: 86svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: #050505;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
  opacity: 0.94;
  filter: contrast(1.2) saturate(1.1) brightness(1.1);
  transform: translate3d(0, var(--hero-shift), 0) scale(var(--hero-zoom));
  transition:
    transform 120ms linear,
    filter 180ms linear;
}

.hero-shade {
  background:
    radial-gradient(circle at 74% 42%, rgba(225, 25, 55, 0.24), transparent 32%),
    radial-gradient(ellipse at 72% 82%, rgba(255, 255, 255, 0.3), transparent 25%),
    radial-gradient(ellipse at 72% 82%, rgba(225, 25, 55, 0.11), transparent 32%),
    radial-gradient(circle at 72% 56%, rgba(255, 255, 255, 0.08), transparent 28%),
    linear-gradient(90deg, rgba(5, 5, 5, 0.98) 0%, rgba(5, 5, 5, 0.82) 35%, rgba(5, 5, 5, 0.34) 68%, rgba(5, 5, 5, 0.12) 100%),
    linear-gradient(0deg, rgba(5, 5, 5, 0.91) 0%, rgba(5, 5, 5, 0.2) 48%, rgba(5, 5, 5, 0.05) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: 132px 0 38px;
}

.eyebrow,
.section-label,
.card-topline {
  margin: 0 0 14px;
  color: var(--red-2);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(52px, 7vw, 96px);
  line-height: 0.95;
  font-weight: 750;
  letter-spacing: 0;
}

.kinetic-title {
  display: grid;
}

.kinetic-title > span {
  display: block;
  transform: translateY(18px);
  opacity: 0;
  animation: title-rise 460ms cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.kinetic-title > span:nth-child(2) {
  animation-delay: 130ms;
}

.kinetic-title > span:nth-child(3) {
  animation-delay: 260ms;
}

.kinetic-title > span:nth-child(4) {
  animation-delay: 390ms;
}

.glow-dot {
  display: inline-block;
  color: var(--red-2);
  transform-origin: center;
  opacity: 0;
  text-shadow: none;
  animation:
    dot-place 320ms cubic-bezier(0.2, 0.8, 0.2, 1) 700ms forwards,
    dot-breathe 2.6s ease-in-out 1.05s infinite;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(34px, 4.4vw, 62px);
  line-height: 1;
  font-weight: 750;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 19px;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 13px 18px;
  border: 1px solid transparent;
  font-weight: 750;
  transition:
    transform 180ms ease,
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.button::before,
.header-cta::before {
  content: "";
  position: absolute;
  inset: -1px;
  pointer-events: none;
  background: radial-gradient(circle at var(--button-x, 50%) var(--button-y, 50%), rgba(255, 255, 255, 0.42), transparent 34%);
  opacity: 0;
  transition: opacity 180ms ease;
}

.button:hover,
.header-cta:hover {
  transform: translateY(-2px);
}

.button:hover::before,
.header-cta:hover::before {
  opacity: 1;
}

.button.primary {
  color: var(--white);
  background: var(--red);
}

.button.primary:hover {
  background: var(--white);
  color: var(--black);
  box-shadow: 0 18px 50px rgba(177, 18, 38, 0.34);
}

.button.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.08);
}

.metrics span {
  color: var(--red-2);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.section {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: 96px 0;
}

.two-column,
.section-heading,
.trial-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
  gap: clamp(34px, 6vw, 88px);
  align-items: start;
}

.copy-stack {
  color: var(--muted);
  font-size: 18px;
}

.copy-stack p:last-child {
  margin-bottom: 0;
}

.section-heading {
  margin-bottom: 34px;
}

.section-heading p {
  max-width: 620px;
  color: var(--muted);
  font-size: 18px;
}

.course-grid,
.fit-grid,
.faq-grid {
  display: grid;
  gap: 16px;
}

.course-card,
.fit-panel,
details {
  border: 1px solid var(--line);
  background: var(--white);
}

.course-card p,
.course-card li,
.fit-panel li,
details p,
.apply p {
  color: var(--muted);
}

.course {
  width: 100%;
  padding: 112px 18px;
  color: var(--white);
  background:
    radial-gradient(circle at 74% 34%, rgba(177, 18, 38, 0.18), transparent 28%),
    #1b1b1a;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.course-heading {
  grid-template-columns: minmax(0, 1fr);
  margin-bottom: 48px;
}

.course-heading-copy {
  display: grid;
  gap: 18px;
  max-width: 760px;
}

.course-heading-copy h2 {
  margin: 0;
}

.course-heading-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 17px;
  line-height: 1.6;
}

.coaches {
  padding: 110px 18px;
  color: var(--white);
  background:
    radial-gradient(circle at 18% 34%, rgba(177, 18, 38, 0.16), transparent 26%),
    #111111;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.coaches-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.coaches .section-heading p {
  color: rgba(255, 255, 255, 0.62);
}

.coach-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.coach-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(210px, 0.78fr) minmax(0, 1fr);
  min-height: 480px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 42%),
    #1d1d1c;
  overflow: hidden;
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.coach-card:hover {
  transform: translateY(-8px);
  border-color: rgba(225, 25, 55, 0.45);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.24);
}

.coach-photo {
  min-height: 100%;
  background: #050505;
}

.coach-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.18) contrast(1.06) brightness(0.84);
  transition: filter 280ms ease;
}

.coach-card:hover .coach-photo img {
  filter: grayscale(0) contrast(1.12) brightness(0.98);
}

.coach-copy {
  padding: clamp(26px, 4vw, 42px);
}

.coach-copy h3 {
  margin-bottom: 18px;
  color: var(--white);
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.05;
  font-weight: 850;
}

.coach-copy p:not(.card-topline) {
  color: rgba(255, 255, 255, 0.66);
  font-size: 17px;
}

.coach-preview {
  margin-bottom: 26px;
}

.coach-toggle {
  position: relative;
  z-index: 2;
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border: 1px solid rgba(225, 25, 55, 0.5);
  color: var(--white);
  background: rgba(177, 18, 38, 0.18);
  font: inherit;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.coach-toggle:hover {
  background: rgba(177, 18, 38, 0.34);
  border-color: rgba(225, 25, 55, 0.8);
  transform: translateY(-2px);
}

.coach-long {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: grid;
  align-content: start;
  gap: 14px;
  padding: clamp(26px, 4vw, 42px);
  overflow: auto;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(177, 18, 38, 0.14), transparent 34%),
    rgba(12, 12, 12, 0.96);
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px);
  transition:
    opacity 220ms ease,
    transform 220ms ease;
}

.coach-card.is-expanded .coach-long {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

@media (hover: hover) {
  .coach-card:hover .coach-long {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
}

.coach-close {
  justify-self: end;
  min-height: 34px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.05);
  font: inherit;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
}

.coach-close:hover {
  color: var(--white);
  border-color: rgba(225, 25, 55, 0.65);
}

.coach-long p {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 15px;
  line-height: 1.58;
}

.course-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.course .section-heading {
  margin-bottom: 58px;
}

.course .section-heading p {
  color: rgba(255, 255, 255, 0.6);
}

.course-note {
  max-width: 820px;
  margin: 42px auto 34px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.2em;
  line-height: 1.8;
  text-align: center;
  text-transform: uppercase;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 28px;
}

.value-grid article {
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.035);
}

.value-grid span {
  color: var(--red-2);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.18em;
}

.value-grid h3 {
  margin: 26px 0 10px;
  color: var(--white);
  font-size: 24px;
}

.value-grid p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.62);
}

.course-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  gap: 26px;
}

.pricing-card {
  position: relative;
  min-height: 700px;
  padding: clamp(30px, 4vw, 48px);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 40%),
    #20201f;
  overflow: hidden;
  perspective: 1600px;
}

.pricing-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at var(--pointer-x) var(--pointer-y), rgba(225, 25, 55, 0.1), transparent 24rem);
  opacity: 0;
  transition: opacity 220ms ease;
}

.pricing-card:hover::before {
  opacity: 1;
}

.pricing-book {
  isolation: isolate;
}

.pricing-book-cover {
  position: relative;
  z-index: 2;
  min-height: calc(700px - clamp(30px, 4vw, 48px) * 2);
  transform-origin: left center;
  transition:
    transform 520ms cubic-bezier(0.2, 0.8, 0.2, 1),
    opacity 320ms ease,
    filter 320ms ease;
  will-change: transform, opacity;
}

.pricing-book-pages {
  position: absolute;
  inset: clamp(12px, 1.4vw, 18px);
  z-index: 1;
  padding: clamp(16px, 1.6vw, 22px);
  color: #111111;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.08), transparent 9%),
    linear-gradient(180deg, #fffaf2, #f4eee4);
  border: 1px solid rgba(255, 255, 255, 0.32);
  box-shadow:
    inset 10px 0 24px rgba(0, 0, 0, 0.12),
    0 22px 60px rgba(0, 0, 0, 0.22);
  opacity: 0;
  transform: translateX(18px) scale(0.985);
  transition:
    opacity 260ms ease,
    transform 520ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.pricing-book:hover .pricing-book-pages,
.pricing-book:focus-within .pricing-book-pages,
.pricing-book:focus .pricing-book-pages {
  z-index: 4;
  opacity: 1;
  transform: translateX(0) scale(1);
}

.pricing-book:hover .pricing-book-cover,
.pricing-book:focus-within .pricing-book-cover,
.pricing-book:focus .pricing-book-cover {
  z-index: 2;
  opacity: 0.08;
  filter: saturate(0.75) brightness(0.82);
  transform: rotateY(-68deg) translateX(-18px);
}

.pricing-book-page-head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 12px;
  padding-bottom: 11px;
  border-bottom: 1px solid rgba(17, 17, 17, 0.14);
}

.pricing-book-page-head span {
  color: #b11226;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.pricing-book-page-head strong {
  color: #111111;
  font-size: 20px;
  font-weight: 850;
}

.pricing-topic-list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 5px;
  margin: 0;
  padding-left: 24px;
  list-style: decimal;
}

.pricing-topic-list li {
  padding: 0 0 0 2px;
  color: rgba(17, 17, 17, 0.82);
  border: 0;
  font-size: clamp(11px, 0.78vw, 14px);
  font-weight: 650;
  line-height: 1.2;
}

.pricing-topic-list li::before {
  display: none;
}

.pricing-card.featured {
  border-color: rgba(225, 25, 55, 0.78);
  background:
    linear-gradient(180deg, rgba(225, 25, 55, 0.08), transparent 34%),
    #222120;
  box-shadow:
    inset 0 0 0 1px rgba(225, 25, 55, 0.18),
    0 30px 90px rgba(0, 0, 0, 0.24);
}

.pricing-card .card-topline {
  color: rgba(255, 255, 255, 0.42);
  letter-spacing: 0.32em;
}

.pricing-card h3 {
  margin: 34px 0 20px;
  color: var(--white);
  font-size: clamp(42px, 5vw, 66px);
  line-height: 1;
  font-weight: 850;
  letter-spacing: 0;
}

.pricing-card h3 span {
  color: var(--red-2);
}

.pricing-card > p,
.pricing-book-cover > p {
  max-width: 540px;
  min-height: 94px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin: 24px 0 0;
  padding: 24px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.price-row small {
  color: var(--red-2);
  font-size: 26px;
  font-weight: 850;
}

.price-row strong {
  color: var(--white);
  font-size: clamp(36px, 4.5vw, 54px);
  line-height: 0.9;
  font-weight: 850;
  letter-spacing: 0;
}

.access-line {
  min-height: auto !important;
  color: rgba(255, 255, 255, 0.42) !important;
  font-size: 14px !important;
  font-weight: 650;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.access-line strong {
  color: var(--white);
}

.access-price {
  color: #8fcf9c;
}

.pricing-card ul,
.pricing-book-cover ul {
  display: grid;
  gap: 0;
  margin: 42px 0 48px;
  padding: 0;
  list-style: none;
}

.pricing-card ul li,
.pricing-book-cover ul li {
  position: relative;
  padding: 18px 0 18px 32px;
  color: rgba(255, 255, 255, 0.72);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 17px;
}

.pricing-card ul li::before,
.pricing-book-cover ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--red-2);
  transform: translateY(-50%);
  box-shadow: 0 0 14px rgba(225, 25, 55, 0.5);
}

.pricing-card li strong,
.pricing-book-cover li strong {
  color: var(--white);
}

.course-trial-cta {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.course-button {
  width: min(460px, 100%);
  display: flex;
  min-height: 62px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--white);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.course-button:hover {
  transform: translateY(-3px);
  border-color: rgba(225, 25, 55, 0.55);
  background: rgba(225, 25, 55, 0.16);
}

.course-button.primary {
  border-color: transparent;
  background: #be3f4b;
}

.course-button.primary:hover {
  background: var(--red-2);
  box-shadow: 0 20px 60px rgba(177, 18, 38, 0.35);
}

.ribbon {
  position: absolute;
  top: 0;
  right: 0;
  min-width: 230px;
  padding: 17px 24px;
  color: var(--white);
  background: #be3f4b;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.32em;
  text-align: center;
  text-transform: uppercase;
}

ul {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding-left: 19px;
}

.band {
  padding: 24px clamp(18px, 4vw, 56px);
  color: var(--white);
  background: var(--black);
}

.metrics {
  width: min(1120px, 100%);
  margin: 0 auto;
  justify-content: space-between;
  gap: 18px;
}

.marquee-track {
  position: relative;
  overflow: hidden;
}

.marquee-track div {
  min-width: 180px;
}

.metrics div {
  display: grid;
  gap: 4px;
}

.metrics strong {
  font-size: 15px;
}

.fit {
  border-top: 1px solid var(--line);
}

.fit-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.fit-panel {
  position: relative;
  padding: 30px;
  overflow: visible;
}

.fit-panel.yes {
  border-top: 5px solid var(--black);
  transition: background 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.fit-panel.yes:hover {
  border-color: rgba(40, 160, 90, 0.22);
  background:
    linear-gradient(135deg, rgba(40, 160, 90, 0.10), transparent 46%),
    linear-gradient(180deg, #f6fdf8, #ffffff 72%);
  box-shadow: 0 18px 48px rgba(40, 160, 90, 0.08);
}

.fit-panel.no {
  border-top: 5px solid var(--red);
  border-color: rgba(177, 18, 38, 0.18);
  background:
    linear-gradient(135deg, rgba(225, 25, 55, 0.085), transparent 46%),
    linear-gradient(180deg, #fffafa, #ffffff 72%);
  box-shadow: 0 18px 48px rgba(177, 18, 38, 0.075);
}

.fit-panel.yes::before,
.fit-panel.yes::after,
.fit-panel.no::before,
.fit-panel.no::after {
  content: none;
}

.fit-panel.no h3 {
  color: #8f1020;
}

/* Cursor glow turns green over the Good fit panel so the brand red stays
   reserved for the "Not a good fit" side. */
body:has(.fit-panel.yes:hover) .cursor-glow {
  background: radial-gradient(circle, rgba(40, 160, 90, 0.20), transparent 62%);
}

.support {
  width: 100%;
  max-width: none;
  padding: 96px clamp(18px, 4vw, 56px);
  background: var(--paper-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.support > .two-column {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.trial {
  position: relative;
  padding: 92px 18px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(177, 18, 38, 0.18), transparent 32%),
    var(--black);
  border-top: 3px solid var(--red-2);
}

.trial .section-label {
  color: var(--red-2);
}

.trial-inner {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.trial-steps {
  display: grid;
  gap: 12px;
}

.trial-steps div {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 14px;
  align-items: start;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
}

.trial-steps span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--white);
  background: var(--red);
  font-weight: 850;
}

.trial-steps p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
}

.faq-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

details {
  padding: 22px;
}

.motion-card {
  transform: perspective(900px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg)) translateY(0);
  transform-style: preserve-3d;
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    background 220ms ease;
  will-change: transform;
}

.motion-card:hover {
  border-color: rgba(177, 18, 38, 0.42);
  box-shadow: 0 24px 70px rgba(9, 9, 9, 0.12);
}

.motion-card:hover h3 {
  color: var(--red);
}

.pricing-card.motion-card:hover h3 {
  color: var(--white);
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 720ms ease var(--reveal-delay, 0ms),
    transform 720ms cubic-bezier(0.2, 0.8, 0.2, 1) var(--reveal-delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

summary {
  cursor: pointer;
  font-weight: 800;
}

details p {
  margin: 16px 0 0;
}

details[open] {
  border-color: rgba(177, 18, 38, 0.4);
  box-shadow: inset 0 3px 0 var(--red);
}

.apply {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto 84px;
  justify-content: space-between;
  gap: 28px;
  padding: clamp(28px, 5vw, 48px);
  color: var(--white);
  background:
    linear-gradient(135deg, var(--red-dark), transparent 36%),
    var(--black);
}

.apply h2 {
  margin-bottom: 14px;
}

.apply p {
  max-width: 650px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 18px;
}

.footer {
  padding: 92px clamp(18px, 4vw, 56px) 38px;
  color: var(--white);
  background: #1b1b1a;
  border-top: 14px solid #be3f4b;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.9fr 0.9fr 0.9fr 0.9fr;
  gap: clamp(28px, 4vw, 60px);
  width: min(1240px, 100%);
  margin: 0 auto 72px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}

.footer-logo-mark {
  display: block;
  width: 46px;
  height: 46px;
  overflow: hidden;
  border-radius: 8px;
  background: #030303;
  box-shadow:
    0 0 18px rgba(225, 25, 55, 0.34),
    0 0 40px rgba(177, 18, 38, 0.2);
}

.footer-logo-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.2);
}

.footer-logo strong,
.footer-menu h3 {
  color: var(--white);
  font-size: 14px;
  font-weight: 850;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.footer-brand p {
  max-width: 350px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 18px;
  line-height: 1.55;
}

.footer-menu {
  display: grid;
  align-content: start;
  gap: 19px;
}

.footer-menu h3 {
  position: relative;
  margin: 0 0 22px;
  padding-bottom: 18px;
}

.footer-menu h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background: var(--red-2);
}

.footer-menu a {
  color: rgba(255, 255, 255, 0.62);
  font-size: 18px;
  overflow-wrap: anywhere;
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.footer-menu a:hover {
  color: var(--white);
  transform: translateX(6px);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  width: min(1180px, 100%);
  margin: 0 auto;
  padding-top: 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.32);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.48);
  font-size: 12px;
  letter-spacing: 0;
  transition:
    color 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.footer-social a:hover {
  color: var(--white);
  border-color: rgba(225, 25, 55, 0.65);
  transform: translateY(-3px);
}

@media (max-width: 860px) {
  .site-header {
    position: absolute;
    flex-wrap: wrap;
    gap: 12px;
    padding-block: 12px;
  }

  .nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    gap: 12px;
    flex-wrap: wrap;
    padding-bottom: 0;
    font-size: 11px;
    letter-spacing: 0.14em;
  }

  .nav > a,
  .nav-item > a {
    white-space: nowrap;
  }

  .nav-dropdown {
    left: 0;
    transform: translate(0, 10px);
  }

  .has-menu:hover .nav-dropdown,
  .has-menu:focus-within .nav-dropdown,
  .has-menu.is-open .nav-dropdown {
    transform: translate(0, 0);
  }

  .hero {
    min-height: 650px;
    height: auto;
  }

  .hero-content {
    padding-top: 166px;
    padding-bottom: 30px;
  }

  .hero-copy,
  .copy-stack,
  .section-heading p,
  .apply p {
    font-size: 16px;
  }

  .two-column,
  .section-heading,
  .trial-inner,
  .course-grid,
  .coach-grid,
  .fit-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .metrics {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section {
    padding: 72px 0;
  }

  .course-card {
    min-height: auto;
  }

  .course {
    padding: 82px 18px;
  }

  .course-note {
    margin-bottom: 26px;
    font-size: 12px;
    letter-spacing: 0.18em;
  }

  .value-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-card {
    min-height: auto;
    padding-bottom: 30px;
  }

  .pricing-card > p {
    min-height: auto;
  }

  .price-row strong {
    font-size: 58px;
  }

  .course-button {
    margin-top: 0;
  }

  .coaches {
    padding: 78px 18px;
  }

  .coach-card {
    grid-template-columns: 1fr;
  }

  .coach-photo {
    min-height: 360px;
  }

  .apply {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

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

  .cursor-glow {
    display: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@keyframes title-rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes dot-place {
  from {
    opacity: 0;
    transform: scale(0.2);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes dot-breathe {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.08);
  }
}

@media (max-width: 520px) {
  .header-cta {
    display: none;
  }

  .brand {
    font-size: 14px;
  }

  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 36px;
  }

  .hero {
    min-height: 620px;
    height: auto;
  }

  .hero-content {
    padding-top: 154px;
  }

  .button {
    width: 100%;
  }

  .metrics {
    grid-template-columns: 1fr;
  }

  .value-grid {
    grid-template-columns: 1fr;
  }

  .course-heading {
    margin-bottom: 36px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   MOBILE BURGER MENU
   Added in Chunk 4. The block at the bottom of this file
   intentionally overrides the earlier @media (max-width: 860px)
   rules that wrapped the nav into the header.
   ============================================================ */

.burger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
  cursor: pointer;
  border-radius: 4px;
  transition:
    border-color 180ms ease,
    background 180ms ease;
}

.burger:hover,
.burger:focus-visible {
  border-color: rgba(225, 25, 55, 0.65);
  background: rgba(225, 25, 55, 0.12);
  outline: none;
}

.burger-icon {
  position: relative;
  display: block;
  width: 18px;
  height: 12px;
}

.burger-icon > span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1.5px;
  background: var(--white);
  border-radius: 1px;
  transition:
    transform 280ms cubic-bezier(0.2, 0.8, 0.2, 1),
    opacity 180ms ease,
    top 280ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.burger-icon > span:nth-child(1) {
  top: 0;
}

.burger-icon > span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}

.burger-icon > span:nth-child(3) {
  top: 100%;
  transform: translateY(-100%);
}

.is-menu-open .burger-icon > span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.is-menu-open .burger-icon > span:nth-child(2) {
  opacity: 0;
}

.is-menu-open .burger-icon > span:nth-child(3) {
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 18;
  display: flex;
  flex-direction: column;
  padding: 100px clamp(20px, 6vw, 48px) 36px;
  color: var(--white);
  background:
    radial-gradient(circle at 76% 18%, rgba(225, 25, 55, 0.16), transparent 38%),
    rgba(7, 7, 7, 0.96);
  backdrop-filter: blur(24px) saturate(140%);
  -webkit-backdrop-filter: blur(24px) saturate(140%);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition:
    opacity 280ms cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 320ms cubic-bezier(0.2, 0.8, 0.2, 1),
    visibility 0ms linear 320ms;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.is-menu-open .mobile-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition-delay: 0ms, 0ms, 0ms;
}

.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  gap: 38px;
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
}

.mobile-nav {
  display: grid;
  gap: 0;
}

.mobile-nav a,
.mobile-nav-label {
  position: relative;
  display: block;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.86);
  font-size: 24px;
  font-weight: 750;
  letter-spacing: 0;
  opacity: 0;
  transform: translateY(14px);
  transition:
    color 200ms ease,
    padding-left 220ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.mobile-nav-label {
  margin-top: 14px;
  color: var(--red-2);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.is-menu-open .mobile-nav a,
.is-menu-open .mobile-nav-label {
  animation: mobile-nav-item 520ms cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.is-menu-open .mobile-nav a:nth-child(1) { animation-delay: 90ms; }
.is-menu-open .mobile-nav a:nth-child(2) { animation-delay: 130ms; }
.is-menu-open .mobile-nav a:nth-child(3) { animation-delay: 170ms; }
.is-menu-open .mobile-nav a:nth-child(4) { animation-delay: 210ms; }
.is-menu-open .mobile-nav a:nth-child(5) { animation-delay: 250ms; }
.is-menu-open .mobile-nav a:nth-child(6) { animation-delay: 290ms; }
.is-menu-open .mobile-nav a:nth-child(7) { animation-delay: 330ms; }
.is-menu-open .mobile-nav a:nth-child(8) { animation-delay: 370ms; }
.is-menu-open .mobile-nav a:nth-child(9) { animation-delay: 410ms; }
.is-menu-open .mobile-nav a:nth-child(10) { animation-delay: 450ms; }
.is-menu-open .mobile-nav a:nth-child(11) { animation-delay: 490ms; }
.is-menu-open .mobile-nav a:nth-child(12) { animation-delay: 530ms; }
.is-menu-open .mobile-nav a:nth-child(13) { animation-delay: 570ms; }
.is-menu-open .mobile-nav a:nth-child(14) { animation-delay: 610ms; }

@keyframes mobile-nav-item {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mobile-nav a:hover,
.mobile-nav a:focus-visible {
  color: var(--white);
  padding-left: 10px;
  outline: none;
}

.mobile-nav .mobile-sub {
  padding-left: 26px;
  border-bottom-color: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  font-weight: 850;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.mobile-nav .mobile-sub::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 14px;
  height: 1px;
  background: rgba(225, 25, 55, 0.7);
  transform: translateY(-50%);
}

.mobile-nav .mobile-sub:hover,
.mobile-nav .mobile-sub:focus-visible {
  color: var(--white);
  padding-left: 36px;
}

.mobile-cta {
  width: 100%;
  min-height: 58px;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(14px);
}

.is-menu-open .mobile-cta {
  animation: mobile-nav-item 520ms cubic-bezier(0.2, 0.8, 0.2, 1) 420ms forwards;
}

.mobile-meta {
  display: grid;
  gap: 10px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.48);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(14px);
}

.is-menu-open .mobile-meta {
  animation: mobile-nav-item 520ms cubic-bezier(0.2, 0.8, 0.2, 1) 480ms forwards;
}

.mobile-meta a {
  color: rgba(255, 255, 255, 0.72);
  transition: color 200ms ease;
}

.mobile-meta a:hover,
.mobile-meta a:focus-visible {
  color: var(--red-2);
  outline: none;
}

html.is-menu-open,
body.is-menu-open {
  overflow: hidden;
}

@media (max-width: 860px) {
  .burger {
    display: inline-flex;
  }

  .site-header {
    position: fixed;
    flex-wrap: nowrap;
    padding-block: 14px;
  }

  .site-header .nav {
    display: none;
  }

  .hero-content {
    padding-top: 120px;
  }
}

@media (max-width: 520px) {
  .hero-content {
    padding-top: 112px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mobile-menu,
  .mobile-nav a,
  .mobile-cta,
  .mobile-meta,
  .burger-icon > span {
    transition: none !important;
    animation: none !important;
  }

  .is-menu-open .mobile-nav a,
  .is-menu-open .mobile-cta,
  .is-menu-open .mobile-meta {
    opacity: 1;
    transform: none;
  }
}

.pricing-standalone {
  padding-top: 140px;
}

.button.tertiary {
  color: rgba(255, 255, 255, 0.86);
  border-color: rgba(255, 255, 255, 0.18);
  background: transparent;
}

.button.tertiary:hover {
  color: var(--white);
  border-color: var(--red-2);
  background: rgba(225, 25, 55, 0.12);
}

.guarantees-standalone {
  padding-top: 140px;
  max-width: 820px;
}

.guarantee-item {
  padding: 28px 0;
  border-top: 1px solid var(--line);
}

.guarantee-item:last-child {
  border-bottom: 1px solid var(--line);
}

.guarantee-item h2 {
  margin-bottom: 12px;
  font-size: clamp(24px, 2.6vw, 32px);
}

.guarantee-item p {
  color: var(--muted);
  font-size: 17px;
  margin-bottom: 0;
}

.info-standalone {
  max-width: 860px;
  padding-top: 140px;
}

.info-standalone.reveal,
.guarantees-standalone.reveal {
  opacity: 1;
  transform: none;
}

.info-standalone h1 {
  margin: 0 0 18px;
  font-size: clamp(44px, 6vw, 76px);
  line-height: 0.95;
}

.info-lead {
  max-width: 700px;
  margin: 0 0 42px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.info-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.info-item {
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}

.info-item h2 {
  margin: 0 0 14px;
  font-size: clamp(24px, 3vw, 34px);
}

.info-item p,
.info-item li {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.68;
}

.info-item p {
  margin: 0 0 14px;
}

.info-item p:last-child {
  margin-bottom: 0;
}

.info-item ul {
  display: grid;
  gap: 9px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.info-item li {
  position: relative;
  padding-left: 24px;
}

.info-item li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.82em;
  width: 10px;
  height: 1px;
  background: var(--red);
}

.info-cta {
  margin: 36px 0 0;
}

/* ============================================================
   REVIEWS CAROUSEL + LIGHTBOX
   Added in Reviews chunk. Light-background section that hosts
   forum screenshots, one at a time, with prev/next, dots,
   keyboard nav, swipe, and a full-size lightbox.
   ============================================================ */

.reviews {
  padding: 110px clamp(18px, 4vw, 56px);
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.reviews-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.reviews-head {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
  gap: clamp(34px, 6vw, 88px);
  align-items: end;
  margin-bottom: 48px;
}

.reviews-head h2 {
  margin-bottom: 0;
}

.reviews-sub {
  max-width: 480px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.reviews-carousel {
  position: relative;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 48px;
  grid-template-rows: auto auto;
  gap: 18px 14px;
  align-items: center;
}

.reviews-arrow {
  display: grid;
  width: 48px;
  height: 48px;
  align-self: center;
  place-items: center;
  padding: 0;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  font-size: 18px;
  cursor: pointer;
  border-radius: 50%;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.reviews-arrow:hover,
.reviews-arrow:focus-visible {
  border-color: var(--red);
  background: var(--red);
  color: var(--white);
  outline: none;
  transform: translateY(-2px);
}

.reviews-arrow:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  transform: none;
}

.reviews-prev {
  grid-column: 1;
  grid-row: 1;
}

.reviews-next {
  grid-column: 3;
  grid-row: 1;
}

.reviews-stage {
  grid-column: 2;
  grid-row: 1;
  min-width: 0;
}

.reviews-track {
  position: relative;
  width: 100%;
  min-height: 320px;
  border: 1px solid var(--line);
  border-top: 3px solid var(--red);
  background: var(--white);
  box-shadow: 0 24px 70px rgba(9, 9, 9, 0.06);
  overflow: hidden;
  cursor: zoom-in;
  transition: box-shadow 220ms ease;
}

.reviews-track:hover {
  box-shadow: 0 32px 90px rgba(9, 9, 9, 0.1);
}

.reviews-slide {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 18px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition:
    opacity 360ms cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 360ms cubic-bezier(0.2, 0.8, 0.2, 1),
    visibility 0ms linear 360ms;
}

.reviews-slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition-delay: 0ms, 0ms, 0ms;
}

.reviews-slide img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 540px;
  object-fit: contain;
}

.reviews-meta {
  display: grid;
  gap: 4px;
  margin-top: 16px;
  text-align: left;
}

.reviews-counter {
  margin: 0;
  color: var(--red);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.reviews-source {
  margin: 0;
  color: var(--ink);
  font-size: 17px;
  font-weight: 750;
}

.reviews-caption {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
}

.reviews-caption:empty {
  display: none;
}

.reviews-dots {
  grid-column: 1 / -1;
  grid-row: 2;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}

.reviews-dot {
  width: 22px;
  height: 4px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: rgba(9, 9, 9, 0.18);
  cursor: pointer;
  transition:
    background 220ms ease,
    width 220ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reviews-dot:hover,
.reviews-dot:focus-visible {
  background: rgba(9, 9, 9, 0.36);
  outline: none;
}

.reviews-dot.is-active {
  width: 44px;
  background: var(--red);
}

.reviews-disclosure {
  max-width: 640px;
  margin: 40px auto 0;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-align: center;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) 56px;
  align-items: center;
  gap: 16px;
  padding: clamp(60px, 8vh, 96px) clamp(16px, 4vw, 48px);
  background: rgba(7, 7, 7, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 240ms ease,
    visibility 0ms linear 240ms;
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
  transition-delay: 0ms, 0ms;
}

.lightbox-image {
  grid-column: 2;
  grid-row: 1;
  justify-self: center;
  max-width: 100%;
  max-height: calc(100vh - 200px);
  display: block;
  object-fit: contain;
  background: var(--white);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
  border-top: 3px solid var(--red);
}

.lightbox-arrow {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
  font-size: 18px;
  cursor: pointer;
  border-radius: 50%;
  transition:
    background 180ms ease,
    border-color 180ms ease;
}

.lightbox-arrow:hover,
.lightbox-arrow:focus-visible {
  background: rgba(225, 25, 55, 0.85);
  border-color: var(--red);
  outline: none;
}

.lightbox-prev {
  grid-column: 1;
  grid-row: 1;
  justify-self: end;
}

.lightbox-next {
  grid-column: 3;
  grid-row: 1;
  justify-self: start;
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  border-radius: 50%;
  transition:
    background 180ms ease,
    border-color 180ms ease;
}

.lightbox-close:hover,
.lightbox-close:focus-visible {
  background: rgba(225, 25, 55, 0.85);
  border-color: var(--red);
  outline: none;
}

.lightbox-meta {
  grid-column: 1 / -1;
  grid-row: 2;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-align: center;
}

html.lightbox-open,
body.lightbox-open {
  overflow: hidden;
}

@media (max-width: 860px) {
  .reviews-head {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .reviews-carousel {
    grid-template-columns: 40px minmax(0, 1fr) 40px;
    gap: 12px 8px;
  }

  .reviews-arrow {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .reviews-slide img {
    max-height: 420px;
  }

  .lightbox {
    grid-template-columns: 40px minmax(0, 1fr) 40px;
    gap: 8px;
    padding: 60px 8px;
  }

  .lightbox-arrow {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 520px) {
  .reviews {
    padding: 72px 18px;
  }

  .reviews-track {
    min-height: 280px;
  }

  .reviews-slide {
    padding: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reviews-slide,
  .reviews-arrow,
  .reviews-dot,
  .lightbox {
    transition: none !important;
  }

}

.error-404 {
  max-width: 720px;
  padding-top: 160px;
  text-align: left;
}

.error-404 .section-label {
  font-size: 56px;
  color: var(--red);
  letter-spacing: 0;
}

.error-404 h1 {
  margin: 24px 0 18px;
}

.error-404 p {
  color: var(--muted);
  font-size: 18px;
}

.course-anchor {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(300px, 1.08fr);
  align-items: center;
  gap: clamp(24px, 4vw, 54px);
  max-width: 980px;
  margin: 0 0 56px;
  padding: clamp(24px, 4vw, 38px);
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(177, 18, 38, 0.14), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.024));
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-left: 4px solid var(--red);
}

.course-anchor::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 74% 48%, rgba(225, 25, 55, 0.16), transparent 32%),
    linear-gradient(90deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2));
}

.course-anchor-copy {
  position: relative;
  z-index: 1;
}

.anchor-figure {
  margin: 0;
  color: var(--white);
  font-size: clamp(48px, 6vw, 72px);
  font-weight: 850;
  line-height: 1;
  letter-spacing: -0.02em;
}

.anchor-figure span {
  color: var(--red-2);
  margin-left: 4px;
}

.anchor-label {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
  line-height: 1.5;
}

.course-brain {
  position: relative;
  z-index: 1;
  width: 100%;
  margin: 0;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #080808;
  border: 1px solid rgba(255, 255, 255, 0.1);
  clip-path: polygon(5% 16%, 72% 0, 96% 22%, 92% 74%, 62% 100%, 13% 88%, 0 48%);
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.34),
    0 0 0 1px rgba(225, 25, 55, 0.12) inset;
}

.course-brain::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(8, 8, 8, 0.18), transparent 34%, rgba(8, 8, 8, 0.3)),
    radial-gradient(circle at 58% 46%, rgba(225, 25, 55, 0.14), transparent 32%);
  mix-blend-mode: screen;
  opacity: 0.72;
}

.course-brain video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.96) contrast(1.06) brightness(0.86);
}

@media (prefers-reduced-motion: reduce) {
  .course-brain video {
    animation: none;
  }
}

@media (max-width: 600px) {
  .course-anchor {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 24px;
  }

  .course-brain {
    min-height: 190px;
    clip-path: polygon(4% 18%, 72% 0, 97% 24%, 92% 78%, 60% 100%, 11% 90%, 0 50%);
  }
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: 24px 0 32px;
  padding: 0;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.trust-item {
  display: grid;
  gap: 6px;
  padding: 20px 24px;
  background: #1b1b1a;
}

.trust-label {
  color: var(--red-2);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.trust-value {
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  font-weight: 650;
}

@media (max-width: 860px) {
  .trust-strip {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .trust-strip {
    grid-template-columns: 1fr;
  }
}

.sticky-cta {
  display: none;
}

@media (max-width: 860px) {
  .sticky-cta {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 16px;
    z-index: 19;
    display: grid;
    place-items: center;
    min-height: 54px;
    padding: 0 24px;
    color: var(--white);
    background: var(--red);
    border: 1px solid rgba(225, 25, 55, 0.78);
    box-shadow: 0 18px 50px rgba(177, 18, 38, 0.32);
    font-size: 13px;
    font-weight: 850;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    transition: background 180ms ease, transform 180ms ease;
  }

  .sticky-cta:hover {
    background: var(--red-2);
    transform: translateY(-2px);
  }

  body.is-menu-open .sticky-cta,
  body.lightbox-open .sticky-cta {
    display: none;
  }
}

.trial-access-body {
  min-height: 100vh;
  color: var(--white);
  background:
    radial-gradient(circle at 22% 0%, rgba(177, 18, 38, 0.22), transparent 30rem),
    linear-gradient(180deg, #070707 0%, #121110 55%, #090909 100%);
  overflow-y: auto;
}

.trial-access-shell {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 84px;
}

.trial-access-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 42px;
}

.trial-access-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-weight: 750;
}

.trial-access-brand img {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 0 28px rgba(225, 25, 55, 0.22);
}

.trial-access-pill {
  padding: 8px 12px;
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.trial-access-hero {
  max-width: 840px;
  padding: clamp(30px, 5vw, 62px) 0 36px;
}

.trial-access-hero h1 {
  max-width: 780px;
  margin: 0;
  color: var(--white);
  font-size: clamp(40px, 7vw, 84px);
  line-height: 0.96;
}

.trial-access-intro {
  display: grid;
  gap: 14px;
  max-width: 720px;
  margin-top: 28px;
}

.trial-access-intro p,
.trial-access-panel p,
.trial-lesson p,
.trial-lesson li {
  color: rgba(255, 255, 255, 0.72);
}

.trial-access-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(260px, 0.75fr);
  gap: clamp(22px, 4vw, 48px);
  margin: 0 0 18px;
  padding: clamp(24px, 4vw, 38px);
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 4px solid var(--red);
}

.trial-access-support {
  display: block;
  max-width: 900px;
  padding: clamp(24px, 4vw, 40px);
  background:
    linear-gradient(135deg, rgba(225, 25, 55, 0.08), transparent 38%),
    rgba(255, 255, 255, 0.05);
}

.trial-access-panel h2,
.trial-access-after h2 {
  margin: 0 0 16px;
  color: var(--white);
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1;
}

.trial-access-support h2 {
  max-width: 720px;
  font-size: clamp(26px, 3.4vw, 38px);
  line-height: 1.06;
}

.trial-access-support > div > p:not(.section-label) {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: 16px;
  line-height: 1.65;
}

.trial-access-support-label {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.trial-access-checklist {
  display: grid;
  gap: 12px;
  max-width: 760px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.trial-access-checklist li {
  position: relative;
  padding-left: 24px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  line-height: 1.45;
}

.trial-access-checklist li::before {
  content: "";
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 7px;
  height: 7px;
  background: var(--red-2);
  transform: rotate(45deg);
}

.trial-access-note {
  max-width: 820px;
  margin: 22px 0 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  line-height: 1.65;
}

.trial-access-lessons {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}

.trial-access-spoiler {
  margin-bottom: 18px;
}

.trial-access-spoiler.trial-access-after {
  margin-top: 28px;
}

.trial-lesson:not(.trial-lesson--demo) + .trial-lesson--demo,
.trial-access-lessons .trial-lesson:nth-last-child(3) {
  margin-top: 26px;
}

.trial-lesson--demo,
.trial-access-lessons .trial-lesson:nth-last-child(-n + 3) {
  position: relative;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(250, 247, 245, 0.96)),
    linear-gradient(90deg, rgba(177, 18, 38, 0.075), transparent 42%);
  border-color: rgba(177, 18, 38, 0.2);
  box-shadow: 0 18px 55px rgba(92, 24, 30, 0.08);
}

.trial-lesson--demo::before,
.trial-access-lessons .trial-lesson:nth-last-child(-n + 3)::before {
  content: "";
  position: absolute;
  inset: -1px;
  border: 1px solid rgba(177, 18, 38, 0.08);
  pointer-events: none;
}

.trial-lesson--demo summary strong,
.trial-access-lessons .trial-lesson:nth-last-child(-n + 3) summary strong {
  color: #111111;
}

.trial-lesson--demo summary span,
.trial-access-lessons .trial-lesson:nth-last-child(-n + 3) summary span {
  color: #9f1527;
}

.trial-instructions {
  margin: 0 0 18px;
  padding: 0;
  background:
    linear-gradient(135deg, rgba(225, 25, 55, 0.12), transparent 42%),
    rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(225, 25, 55, 0.28);
  border-left: 4px solid var(--red-2);
}

.trial-lesson {
  padding: 0;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.trial-instructions[open],
.trial-lesson[open] {
  background: rgba(255, 255, 255, 0.075);
  border-color: rgba(225, 25, 55, 0.32);
  box-shadow: none;
}

.trial-instructions > summary,
.trial-lesson summary {
  position: relative;
  cursor: pointer;
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: 8px 24px;
  padding: 24px clamp(54px, 7vw, 72px) 24px clamp(20px, 4vw, 34px);
  list-style: none;
}

.trial-instructions > summary::after,
.trial-lesson > summary::after {
  content: "+";
  position: absolute;
  top: 24px;
  right: clamp(20px, 4vw, 34px);
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  color: var(--white);
  background: rgba(225, 25, 55, 0.16);
  border: 1px solid rgba(225, 25, 55, 0.3);
  font-size: 20px;
  line-height: 1;
}

.trial-instructions[open] > summary::after,
.trial-lesson[open] > summary::after {
  content: "-";
}

.trial-instructions > summary::-webkit-details-marker,
.trial-lesson summary::-webkit-details-marker {
  display: none;
}

.trial-instructions > summary span,
.trial-lesson summary span {
  color: var(--red-2);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.trial-instructions > summary strong,
.trial-lesson summary strong {
  color: var(--white);
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1;
}

.trial-instructions > summary small,
.trial-lesson summary small {
  grid-column: 2;
  max-width: 720px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
  line-height: 1.5;
}

.trial-instructions-body {
  display: grid;
  gap: 10px;
  padding: 0 clamp(20px, 4vw, 34px) 32px;
}

.trial-instruction-topic {
  padding: 0;
  background: rgba(0, 0, 0, 0.24);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.trial-instruction-topic[open] {
  border-color: rgba(225, 25, 55, 0.22);
  box-shadow: none;
}

.trial-instruction-topic > summary {
  position: relative;
  cursor: pointer;
  display: block;
  padding: 16px 18px;
  padding-right: 52px;
  color: var(--white);
  font-size: 15px;
  font-weight: 750;
  list-style: none;
  transition: color 160ms ease, background 160ms ease;
}

.trial-instruction-topic > summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 18px;
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 17px;
  line-height: 1;
  transform: translateY(-50%);
}

.trial-instruction-topic[open] > summary::after {
  content: "-";
  color: var(--red-2);
  border-color: rgba(225, 25, 55, 0.3);
}

.trial-instruction-topic > summary:hover {
  color: var(--red-2);
  background: rgba(255, 255, 255, 0.035);
}

.trial-instruction-topic > summary::-webkit-details-marker {
  display: none;
}

.trial-instruction-topic > div {
  display: grid;
  gap: 14px;
  padding: 0 18px 18px;
}

.trial-instruction-topic p,
.trial-instruction-topic li {
  color: rgba(255, 255, 255, 0.72);
}

.trial-lesson-body {
  display: grid;
  gap: 22px;
  padding: 0 clamp(20px, 4vw, 34px) 32px;
}

.trial-lesson-body section {
  max-width: 860px;
  padding: 18px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.trial-lesson h3 {
  margin: 0 0 10px;
  color: var(--white);
  font-size: 16px;
}

.trial-lesson h3::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 10px;
  background: var(--red-2);
  box-shadow: 0 0 16px rgba(225, 25, 55, 0.48);
  transform: translateY(-1px) rotate(45deg);
}

.trial-lesson ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 20px;
}

.trial-lesson-body section h3 {
  letter-spacing: 0.02em;
}

.trial-lesson-body section p {
  line-height: 1.65;
}

.trial-lesson-body section li {
  line-height: 1.55;
}

.trial-access-resources {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}

.trial-resource-card {
  display: grid;
  gap: 8px;
  padding: 18px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(225, 25, 55, 0.12), transparent 42%),
    rgba(0, 0, 0, 0.32);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition:
    border-color 180ms ease,
    transform 180ms ease,
    background 180ms ease;
}

.trial-resource-card:hover,
.trial-resource-card:focus-visible {
  border-color: rgba(225, 25, 55, 0.55);
  background:
    linear-gradient(135deg, rgba(225, 25, 55, 0.18), transparent 46%),
    rgba(0, 0, 0, 0.42);
  outline: none;
  transform: translateY(-2px);
}

.trial-resource-card span {
  color: var(--red-2);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.trial-resource-card strong {
  font-size: 18px;
  line-height: 1.15;
}

.trial-resource-card small {
  color: rgba(255, 255, 255, 0.56);
  font-size: 12px;
}

.trial-access-after {
  display: block;
  margin-top: 28px;
}

.trial-access-contact {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.trial-access-contact a {
  display: grid;
  gap: 6px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.trial-access-contact span {
  color: rgba(255, 255, 255, 0.48);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.trial-access-contact strong {
  color: var(--white);
  font-size: 22px;
}

.trial-access-body {
  color: #121212;
  background:
    radial-gradient(circle at 18% -8%, rgba(225, 25, 55, 0.12), transparent 30rem),
    linear-gradient(180deg, #ffffff 0%, #f6f3f1 52%, #ffffff 100%);
}

.trial-access-brand,
.trial-access-hero h1,
.trial-access-panel h2,
.trial-access-after h2,
.trial-instructions > summary strong,
.trial-lesson summary strong,
.trial-instruction-topic > summary,
.trial-lesson h3,
.trial-resource-card,
.trial-access-contact strong {
  color: #111111;
}

.trial-access-pill,
.trial-access-intro p,
.trial-access-panel p,
.trial-lesson p,
.trial-lesson li,
.trial-instruction-topic p,
.trial-instruction-topic li,
.trial-instructions > summary small,
.trial-lesson summary small,
.trial-resource-card small {
  color: rgba(17, 17, 17, 0.68);
}

.trial-access-panel,
.trial-lesson,
.trial-access-contact a {
  background: rgba(255, 255, 255, 0.78);
  border-color: rgba(17, 17, 17, 0.11);
  box-shadow: 0 22px 70px rgba(17, 17, 17, 0.08);
}

.trial-access-support {
  background:
    linear-gradient(135deg, rgba(225, 25, 55, 0.08), transparent 42%),
    rgba(255, 255, 255, 0.86);
}

.trial-instructions,
.trial-instructions[open],
.trial-lesson[open] {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(225, 25, 55, 0.24);
  box-shadow: 0 22px 70px rgba(17, 17, 17, 0.08);
}

.trial-instruction-topic {
  background: rgba(17, 17, 17, 0.035);
  border-color: rgba(17, 17, 17, 0.09);
}

.trial-resource-card {
  background:
    linear-gradient(135deg, rgba(225, 25, 55, 0.1), transparent 44%),
    rgba(255, 255, 255, 0.82);
  border-color: rgba(17, 17, 17, 0.11);
}

.trial-resource-card:hover,
.trial-resource-card:focus-visible {
  background:
    linear-gradient(135deg, rgba(225, 25, 55, 0.14), transparent 46%),
    rgba(255, 255, 255, 0.96);
  border-color: rgba(225, 25, 55, 0.46);
}

.trial-access-note,
.trial-lesson-body section {
  border-color: rgba(17, 17, 17, 0.1);
}

.trial-access-support-label,
.trial-access-contact span {
  color: rgba(17, 17, 17, 0.48);
}

.trial-access-checklist li {
  color: rgba(17, 17, 17, 0.76);
}

.trial-access-body {
  color: #111111;
  background:
    linear-gradient(180deg, #ffffff 0%, #fafafa 42%, #f4f2ef 100%);
}

.trial-access-shell {
  width: min(1080px, calc(100% - 36px));
}

.trial-access-brand img {
  box-shadow: 0 14px 34px rgba(17, 17, 17, 0.12);
}

.trial-access-pill {
  color: rgba(17, 17, 17, 0.56);
  border-color: rgba(17, 17, 17, 0.12);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 12px 34px rgba(17, 17, 17, 0.06);
}

.trial-access-hero {
  padding-top: clamp(34px, 5vw, 66px);
}

.trial-access-hero h1 {
  color: #101010;
}

.section-label,
.trial-instructions > summary span,
.trial-lesson summary span,
.trial-resource-card span {
  color: #9f1527;
}

.trial-access-panel,
.trial-lesson,
.trial-instructions,
.trial-instructions[open],
.trial-lesson[open],
.trial-access-contact a {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(17, 17, 17, 0.1);
  box-shadow: 0 18px 55px rgba(17, 17, 17, 0.07);
}

.trial-access-panel {
  border-left-color: #b11226;
}

.trial-access-support {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(249, 248, 246, 0.96));
}

.trial-instructions,
.trial-lesson[open] {
  border-color: rgba(17, 17, 17, 0.12);
}

.trial-instructions > summary::after,
.trial-lesson > summary::after {
  color: #111111;
  background: rgba(17, 17, 17, 0.04);
  border-color: rgba(17, 17, 17, 0.1);
}

.trial-instructions[open] > summary::after,
.trial-lesson[open] > summary::after {
  color: #b11226;
}

.trial-access-checklist li::before,
.trial-lesson h3::before {
  background: #b11226;
  box-shadow: none;
}

.trial-resource-card {
  background: linear-gradient(180deg, #ffffff, #f8f7f5);
  border-color: rgba(17, 17, 17, 0.1);
}

.trial-resource-card:hover,
.trial-resource-card:focus-visible {
  background: #ffffff;
  border-color: rgba(177, 18, 38, 0.38);
  box-shadow: 0 18px 45px rgba(17, 17, 17, 0.1);
}

.trial-lesson--demo,
.trial-access-lessons .trial-lesson:nth-last-child(-n + 3) {
  background:
    linear-gradient(180deg, rgba(255, 250, 250, 0.98), rgba(253, 244, 244, 0.98));
  border-color: rgba(177, 18, 38, 0.22);
  box-shadow:
    0 18px 55px rgba(92, 24, 30, 0.08),
    0 0 0 1px rgba(177, 18, 38, 0.04) inset;
}

.trial-lesson--demo[open],
.trial-access-lessons .trial-lesson:nth-last-child(-n + 3)[open] {
  background:
    linear-gradient(180deg, rgba(255, 248, 248, 1), rgba(252, 240, 240, 1));
  border-color: rgba(177, 18, 38, 0.28);
}

.trial-lesson--demo summary strong,
.trial-access-lessons .trial-lesson:nth-last-child(-n + 3) summary strong {
  color: #111111;
}

.trial-instructions,
.trial-access-support,
.trial-access-after,
.trial-access-spoiler.trial-access-support,
.trial-access-spoiler.trial-access-after {
  width: 100%;
  max-width: none;
  box-sizing: border-box;
  background:
    linear-gradient(180deg, rgba(42, 42, 42, 0.98), rgba(28, 28, 28, 0.98));
  border-color: rgba(17, 17, 17, 0.24);
  border-left-color: #b11226;
  box-shadow: 0 20px 54px rgba(17, 17, 17, 0.14);
}

.trial-instructions[open],
.trial-access-spoiler.trial-access-support[open],
.trial-access-spoiler.trial-access-after[open] {
  background:
    linear-gradient(180deg, rgba(48, 48, 48, 0.99), rgba(30, 30, 30, 0.99));
  border-color: rgba(177, 18, 38, 0.34);
  box-shadow: 0 22px 60px rgba(17, 17, 17, 0.18);
}

.trial-instructions > summary strong,
.trial-access-support h2,
.trial-access-after h2,
.trial-access-spoiler.trial-access-support summary strong,
.trial-access-spoiler.trial-access-after summary strong,
.trial-instruction-topic > summary,
.trial-instructions > summary::after,
.trial-access-spoiler.trial-access-support > summary::after,
.trial-access-spoiler.trial-access-after > summary::after {
  color: #ffffff;
}

.trial-instructions > summary small,
.trial-access-support p,
.trial-access-after p,
.trial-access-spoiler.trial-access-support summary small,
.trial-access-spoiler.trial-access-after summary small,
.trial-access-spoiler.trial-access-support p,
.trial-access-spoiler.trial-access-after p,
.trial-access-spoiler.trial-access-support li,
.trial-access-spoiler.trial-access-after li,
.trial-instruction-topic p,
.trial-instruction-topic li {
  color: rgba(255, 255, 255, 0.72);
}

.trial-instructions > summary span,
.trial-access-spoiler.trial-access-support summary span,
.trial-access-spoiler.trial-access-after summary span {
  color: #ff4b5f;
}

.trial-instruction-topic {
  background: rgba(255, 255, 255, 0.055);
  border-color: rgba(255, 255, 255, 0.11);
}

.trial-instructions > summary::after,
.trial-access-spoiler.trial-access-support > summary::after,
.trial-access-spoiler.trial-access-after > summary::after {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
}

.trial-access-support .trial-access-checklist li {
  color: rgba(255, 255, 255, 0.84);
}

.trial-access-support .trial-access-note,
.trial-access-spoiler .trial-access-note,
.trial-access-spoiler.trial-access-after .trial-lesson-body section {
  border-color: rgba(255, 255, 255, 0.13);
}

.full-course-shell {
  width: min(1160px, calc(100% - 36px));
}

.full-course-hero {
  max-width: 920px;
}

.full-course-hero h1 {
  max-width: 900px;
}

.full-course-topics {
  margin-bottom: 24px;
}

.full-course-topic-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.full-course-topic-link {
  position: relative;
  display: grid;
  min-height: 58px;
  align-items: center;
  margin: 0;
  padding: 13px 38px 13px 14px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-family: inherit;
  font-size: 13px;
  font-weight: 750;
  line-height: 1.35;
  letter-spacing: 0;
  text-decoration: none;
  cursor: pointer;
  transition:
    color 160ms ease,
    border-color 160ms ease,
    background 160ms ease,
    transform 160ms ease;
}

.full-course-topic-link::after {
  content: "";
  position: absolute;
  right: 15px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  opacity: 0.62;
  transform: translateY(-50%) rotate(45deg);
}

.full-course-topic-link:hover,
.full-course-topic-link:focus-visible {
  color: #ffffff;
  border-color: rgba(255, 75, 95, 0.44);
  background: rgba(255, 75, 95, 0.12);
  outline: none;
  transform: translateY(-1px);
}

.full-course-topic-link:focus-visible {
  box-shadow: 0 0 0 2px rgba(255, 75, 95, 0.2);
}

.full-course-sessions {
  gap: 12px;
}

.full-course-session,
.full-course-sessions .trial-lesson:nth-last-child(-n + 3),
.full-course-sessions .trial-lesson:nth-last-child(-n + 3)[open] {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(250, 249, 247, 0.97));
  border-color: rgba(17, 17, 17, 0.1);
  box-shadow: 0 14px 46px rgba(17, 17, 17, 0.065);
  scroll-margin-top: 96px;
}

.full-course-session::before,
.full-course-sessions .trial-lesson:nth-last-child(-n + 3)::before {
  display: none;
}

.full-course-session summary strong,
.full-course-sessions .trial-lesson:nth-last-child(-n + 3) summary strong {
  color: #101010;
}

.full-course-session summary span,
.full-course-sessions .trial-lesson:nth-last-child(-n + 3) summary span {
  color: #9f1527;
}

.full-course-session summary small {
  max-width: 780px;
}

.full-course-resources {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 24px;
}

.full-course-resource {
  border-left: 3px solid rgba(177, 18, 38, 0.72);
}

.full-course-session .trial-lesson-body section {
  max-width: none;
  padding: 20px 0;
}

.full-course-session .trial-lesson-body section + section {
  border-top: 1px solid rgba(17, 17, 17, 0.1);
}

.full-course-session .trial-lesson-body h3 {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 12px;
  color: #111111;
}

.full-course-session .trial-lesson-body p,
.full-course-session .trial-lesson-body li {
  color: rgba(17, 17, 17, 0.72);
}

.full-course-final {
  margin-top: 28px;
}

@media (max-width: 760px) {
  .trial-access-shell {
    width: min(100% - 24px, 1120px);
    padding-top: 18px;
  }

  .trial-access-header,
  .trial-access-contact {
    grid-template-columns: 1fr;
  }

  .trial-access-header {
    align-items: flex-start;
    flex-direction: column;
    padding-bottom: 22px;
  }

  .trial-access-panel,
  .trial-instructions > summary,
  .trial-lesson summary {
    grid-template-columns: 1fr;
  }

  .trial-instructions > summary small,
  .trial-lesson summary small {
    grid-column: auto;
  }

  .full-course-topic-grid,
  .full-course-resources {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   APPLICATION FORM (replaces the bare Discord-profile button)
   Added in Chunk E. The earlier flex-row .apply styling is
   intentionally overridden into a grid layout.
   ============================================================ */

.apply {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 1.15fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}

.apply-intro h2 {
  margin-bottom: 18px;
}

.apply-intro > p {
  margin-bottom: 28px;
}

.apply-bullets {
  display: grid;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.apply-bullets li {
  position: relative;
  padding-left: 26px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 15px;
  line-height: 1.55;
}

.apply-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  background: var(--red-2);
  box-shadow: 0 0 14px rgba(225, 25, 55, 0.6);
}

.apply-bullets strong {
  color: var(--white);
  font-weight: 750;
}

.apply-form {
  position: relative;
  display: grid;
  gap: 14px;
  padding: clamp(24px, 3vw, 32px);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 3px solid var(--red-2);
}

.apply-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.apply-field {
  display: grid;
  gap: 6px;
}

.apply-field > span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.apply-field input,
.apply-field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.32);
  color: var(--white);
  font: inherit;
  font-size: 15px;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.apply-field textarea {
  resize: vertical;
  min-height: 72px;
  font-family: inherit;
  line-height: 1.5;
}

.apply-field input::placeholder,
.apply-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.32);
}

.apply-field input:focus,
.apply-field textarea:focus {
  outline: none;
  border-color: var(--red-2);
  background: rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 0 3px rgba(225, 25, 55, 0.18);
}

.apply-field.has-error input,
.apply-field.has-error textarea {
  border-color: var(--red-2);
  background: rgba(225, 25, 55, 0.08);
}

.apply-field.has-error > span {
  color: var(--red-2);
}

.apply-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
}

.apply-submit-row {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 6px;
  flex-wrap: wrap;
}

.apply-submit {
  min-height: 52px;
  padding: 14px 32px;
}

.apply-submit:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
}

.apply-status {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.apply-status.is-error {
  color: var(--red-2);
}

.apply-status.is-pending {
  color: rgba(255, 255, 255, 0.78);
}

.apply-fallback {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
}

.apply-fallback a {
  color: rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid rgba(225, 25, 55, 0.5);
  transition:
    color 180ms ease,
    border-color 180ms ease;
}

.apply-fallback a:hover {
  color: var(--red-2);
  border-bottom-color: var(--red-2);
}

.apply-success {
  grid-column: 1 / -1;
  padding: clamp(28px, 4vw, 40px);
  background: rgba(0, 0, 0, 0.32);
  border: 1px solid rgba(225, 25, 55, 0.4);
  border-left: 3px solid var(--red-2);
}

.apply-success .eyebrow {
  margin-bottom: 8px;
}

.apply-success h3 {
  margin-bottom: 14px;
  color: var(--white);
  font-size: clamp(24px, 3vw, 32px);
}

.apply-success p {
  max-width: 560px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
}

.apply-success a {
  color: var(--white);
  border-bottom: 1px solid rgba(225, 25, 55, 0.6);
}

.apply-success a:hover {
  color: var(--red-2);
  border-bottom-color: var(--red-2);
}

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

  .apply-row {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   STANDALONE PRODUCT PAGES (/squid, /bombpot, /cfp)
   Shared shell + page-specific accents.
   ============================================================ */

.product-body {
  background: var(--paper);
}

.product-hero {
  position: relative;
  padding: 168px clamp(18px, 4vw, 56px) 100px;
  color: var(--white);
  background:
    radial-gradient(circle at 78% 32%, rgba(225, 25, 55, 0.32), transparent 36%),
    radial-gradient(circle at 14% 76%, rgba(225, 25, 55, 0.18), transparent 38%),
    linear-gradient(180deg, #0a0a0a, #141414 60%, #1b1b1a);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.product-hero::after {
  content: "";
  position: absolute;
  top: 0;
  right: -10%;
  width: 60%;
  height: 100%;
  background: radial-gradient(ellipse, rgba(225, 25, 55, 0.18), transparent 60%);
  pointer-events: none;
  opacity: 0.7;
}

.product-hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.34;
  filter: grayscale(0.18) contrast(1.18) brightness(0.62);
}

.product-hero-inner {
  position: relative;
  z-index: 1;
  width: min(900px, 100%);
  margin: 0 auto;
}

.bombpot-hero {
  position: relative;
  min-height: 620px;
  display: grid;
  align-items: center;
  padding: 140px 0 100px;
  background:
    radial-gradient(circle at 78% 24%, rgba(225, 25, 55, 0.20), transparent 38%),
    radial-gradient(circle at 18% 84%, rgba(225, 25, 55, 0.10), transparent 32%),
    linear-gradient(180deg, #050505, #0e0c0c 60%, #060606);
  overflow: hidden;
}

.bombpot-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.55), transparent 35%, rgba(0, 0, 0, 0.55));
  pointer-events: none;
  z-index: 1;
}

.bombpot-hero .product-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  align-items: center;
  gap: clamp(36px, 5vw, 80px);
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
}

.bombpot-hero-copy {
  min-width: 0;
}

.bombpot-hero h1 {
  font-size: clamp(40px, 5.2vw, 72px);
  line-height: 0.98;
  letter-spacing: -0.012em;
}

.bombpot-hero .product-subtitle {
  max-width: 580px;
  margin: 0 0 24px;
}

.bombpot-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 30px;
}

.bombpot-hero-tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
}

.bombpot-hero-cover {
  margin: 0;
  width: 100%;
  max-width: 460px;
  justify-self: end;
  aspect-ratio: 4 / 5;
  filter:
    drop-shadow(0 30px 60px rgba(0, 0, 0, 0.55))
    drop-shadow(0 0 24px rgba(225, 25, 55, 0.18));
}

.bombpot-hero-cover img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
}

.product-hero .eyebrow {
  color: var(--red-2);
}

.product-hero h1 {
  margin: 0 0 18px;
  max-width: 760px;
  font-size: clamp(48px, 7vw, 92px);
  line-height: 0.95;
  font-weight: 750;
  letter-spacing: -0.01em;
  overflow-wrap: break-word;
}

.product-subtitle {
  max-width: 660px;
  margin: 0 0 36px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(17px, 1.7vw, 21px);
  line-height: 1.5;
  overflow-wrap: break-word;
}

.product-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.product-overview,
.product-inside,
.product-audience,
.cfp-intro,
.cfp-audience,
.cfp-cta {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: 84px 0;
}

.product-overview .copy-stack p,
.cfp-intro .copy-stack p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.product-overview .copy-stack p:last-child,
.cfp-intro .copy-stack p:last-child {
  margin-bottom: 0;
}

.product-inside {
  border-top: 1px solid var(--line);
}

.product-inside-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.product-inside-card {
  padding: 28px 26px;
  border: 1px solid var(--line);
  background: var(--white);
  transition:
    border-color 220ms ease,
    transform 220ms ease,
    box-shadow 220ms ease;
}

.product-inside-card:hover {
  border-color: rgba(177, 18, 38, 0.45);
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(9, 9, 9, 0.08);
}

.product-inside-card .card-topline {
  color: var(--red);
  margin: 0 0 18px;
  letter-spacing: 0.24em;
}

.product-inside-card h3 {
  margin: 0 0 12px;
  font-size: 22px;
}

.product-inside-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

/* BombPot Preview */
.bombpot-preview {
  padding: 96px 0;
  background: var(--paper);
}

.bombpot-preview-inner {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  display: grid;
  gap: 40px;
}

.bombpot-preview-head {
  text-align: center;
}

.bombpot-preview-head .section-label {
  margin: 0 0 8px;
}

.bombpot-preview-head h2 {
  margin: 0;
}

.bombpot-video {
  position: relative;
  overflow: hidden;
  width: min(880px, 100%);
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  background: var(--black);
  border: 1px solid rgba(9, 9, 9, 0.08);
  box-shadow: 0 32px 80px rgba(9, 9, 9, 0.18);
}

.bombpot-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* BombPot Overview */
.bombpot-overview {
  padding: 96px 0;
  border-top: 1px solid var(--line);
}

.bombpot-overview-inner {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.2fr);
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}

.bombpot-overview-head .section-label {
  margin: 0 0 12px;
}

.bombpot-overview-head h2 {
  margin: 0;
  max-width: 360px;
}

.bombpot-overview-copy p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.bombpot-overview-copy p:last-child {
  margin-bottom: 0;
}

/* BombPot Inside */
.bombpot-inside {
  padding: 96px 0;
  background: var(--paper-2);
  border-top: 1px solid var(--line);
}

.bombpot-inside-inner {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
}

.bombpot-inside-head {
  margin: 0 0 40px;
  text-align: center;
}

.bombpot-inside-head .section-label {
  margin: 0 0 8px;
}

.bombpot-inside-head h2 {
  margin: 0;
}

.bombpot-inside-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.product-pricing {
  padding: 84px clamp(18px, 4vw, 56px);
  background:
    radial-gradient(circle at 50% 0%, rgba(225, 25, 55, 0.18), transparent 38%),
    var(--black);
  color: var(--white);
}

.single-pricing-card {
  width: min(560px, 100%);
  margin: 0 auto;
  padding: clamp(36px, 5vw, 56px);
  border: 1px solid rgba(225, 25, 55, 0.5);
  background:
    linear-gradient(180deg, rgba(225, 25, 55, 0.08), transparent 50%),
    #1b1b1a;
  text-align: center;
}

.single-pricing-card .card-topline {
  color: rgba(255, 255, 255, 0.42);
  letter-spacing: 0.32em;
}

.single-pricing-card h2 {
  margin: 24px 0 28px;
  color: var(--white);
  font-size: clamp(36px, 4.5vw, 56px);
  line-height: 1;
  font-weight: 850;
}

.single-pricing-card .price-row {
  justify-content: center;
  margin: 0 0 22px;
  padding: 22px 0 0;
}

.single-pricing-card .price-row small {
  color: var(--red-2);
  font-size: 26px;
  font-weight: 850;
}

.single-pricing-card .price-row strong {
  font-size: clamp(56px, 6vw, 84px);
  line-height: 0.9;
  font-weight: 850;
}

.single-pricing-card .access-line {
  margin: 0 0 32px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.product-pricing-cta {
  width: 100%;
  min-height: 58px;
  font-size: 13px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.product-pricing-note {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* BombPot Coach */
.bombpot-coach {
  padding: 96px 0;
  border-top: 1px solid var(--line);
}

.bombpot-coach-inner {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.05fr);
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
}

.bombpot-coach-photo {
  margin: 0;
  overflow: hidden;
  background: var(--black);
  border: 1px solid var(--line);
  box-shadow: 0 26px 60px rgba(9, 9, 9, 0.12);
}

.bombpot-coach-photo img {
  display: block;
  width: 100%;
  height: clamp(380px, 44vw, 520px);
  object-fit: cover;
  object-position: 50% 18%;
  filter: grayscale(0.08) contrast(1.04) brightness(0.94);
}

.bombpot-coach-copy {
  min-width: 0;
}

.bombpot-coach-copy .section-label {
  margin: 0 0 12px;
}

.bombpot-coach-copy h2 {
  margin: 0 0 24px;
}

.bombpot-coach-copy .copy-stack p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.bombpot-coach-copy .copy-stack p:last-child {
  margin-bottom: 0;
}

/* BombPot Buy (pricing + close-the-deal in one card) */
.bombpot-buy {
  padding: 104px clamp(18px, 4vw, 56px);
  background:
    radial-gradient(circle at 50% 0%, rgba(225, 25, 55, 0.18), transparent 42%),
    radial-gradient(circle at 14% 110%, rgba(225, 25, 55, 0.10), transparent 32%),
    linear-gradient(180deg, #0a0a0a, #141112 60%, #0a0a0a);
  color: var(--white);
  border-top: 1px solid var(--line);
}

.bombpot-buy-card {
  width: min(580px, 100%);
  margin: 0 auto;
  padding: clamp(40px, 5vw, 60px) clamp(28px, 4vw, 48px);
  text-align: center;
  background:
    linear-gradient(180deg, rgba(225, 25, 55, 0.08), transparent 50%),
    #1b1b1a;
  border: 1px solid rgba(225, 25, 55, 0.42);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.4);
}

.bombpot-guarantee-mark {
  display: grid;
  place-items: center;
  width: 96px;
  height: 96px;
  margin: 0 auto 28px;
  border: 1px solid rgba(225, 25, 55, 0.28);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(225, 25, 55, 0.18), transparent 62%),
    rgba(0, 0, 0, 0.24);
}

.bombpot-guarantee {
  display: block;
  width: 70px;
  height: 70px;
  object-fit: contain;
  opacity: 0.92;
  filter:
    grayscale(1) sepia(0.9) saturate(3) hue-rotate(318deg) brightness(0.9)
    drop-shadow(0 8px 22px rgba(225, 25, 55, 0.22));
}

.bombpot-buy-eyebrow {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.46);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.bombpot-buy-title {
  margin: 0 0 14px;
  font-size: clamp(30px, 3.6vw, 44px);
  line-height: 1.05;
  font-weight: 850;
  color: var(--white);
}

.bombpot-buy-audience {
  margin: 0 auto 28px;
  max-width: 440px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 14px;
  line-height: 1.55;
}

.bombpot-buy-price {
  display: inline-flex;
  align-items: flex-start;
  justify-content: center;
  gap: 4px;
  margin: 0 0 14px;
  color: var(--white);
}

.bombpot-buy-price small {
  margin-top: 8px;
  color: var(--red-2);
  font-size: 26px;
  font-weight: 850;
}

.bombpot-buy-price strong {
  font-size: clamp(56px, 6vw, 84px);
  line-height: 0.92;
  font-weight: 850;
  letter-spacing: -0.02em;
}

.bombpot-buy-access {
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.bombpot-buy-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 58px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.bombpot-buy-secondary {
  display: inline-block;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  letter-spacing: 0.04em;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.bombpot-buy-secondary:hover {
  color: var(--white);
}

.bombpot-buy-note {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  letter-spacing: 0.06em;
}

.bombpot-disclosures {
  display: grid;
  gap: 8px;
  margin: 26px 0 0;
  padding: 22px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  list-style: none;
  text-align: left;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  letter-spacing: 0.02em;
  line-height: 1.55;
}

.bombpot-disclosures li {
  padding-left: 18px;
  position: relative;
}

.bombpot-disclosures li::before {
  content: "--";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--red-2);
}

/* BombPot FAQ */
.bombpot-faq {
  padding: 96px 0;
  border-top: 1px solid var(--line);
}

.bombpot-faq-inner {
  width: min(960px, calc(100% - 36px));
  margin: 0 auto;
}

.bombpot-faq-head {
  margin: 0 0 36px;
  text-align: center;
}

.bombpot-faq-head .section-label {
  margin: 0 0 8px;
}

.bombpot-faq-head h2 {
  margin: 0;
}

.bombpot-faq-list {
  display: grid;
  gap: 14px;
}

.bombpot-faq-list details {
  padding: 22px 28px;
  border: 1px solid var(--line);
  background: var(--white);
  transition: border-color 200ms ease, background 200ms ease;
}

.bombpot-faq-list details[open] {
  border-color: rgba(177, 18, 38, 0.35);
  background: #fffafa;
}

.bombpot-faq-list summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 17px;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.bombpot-faq-list summary::-webkit-details-marker {
  display: none;
}

.bombpot-faq-list summary::after {
  content: "+";
  color: var(--red);
  font-size: 24px;
  font-weight: 400;
  line-height: 1;
  flex-shrink: 0;
  transition: transform 240ms ease;
}

.bombpot-faq-list details[open] summary::after {
  transform: rotate(45deg);
}

.bombpot-faq-list details p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.product-audience {
  border-top: 1px solid var(--line);
}

.product-audience-list,
.cfp-audience-list {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.product-audience-list li,
.cfp-audience-list li {
  position: relative;
  padding: 18px 22px 18px 60px;
  border-left: 3px solid var(--red);
  background: var(--white);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.55;
}

.product-audience-list li::before,
.cfp-audience-list li::before {
  content: "";
  position: absolute;
  left: 24px;
  top: 28px;
  width: 14px;
  height: 2px;
  background: var(--red);
}

/* ---------- CFP-specific ---------- */

.cfp-hero {
  background:
    radial-gradient(circle at 80% 40%, rgba(225, 25, 55, 0.34), transparent 38%),
    radial-gradient(circle at 12% 78%, rgba(225, 25, 55, 0.2), transparent 40%),
    linear-gradient(180deg, #0a0a0a, #141414 60%, #1b1b1a);
}

.cfp-status {
  display: inline-block;
  margin: 0 0 28px;
  padding: 8px 14px;
  border: 1px solid rgba(225, 25, 55, 0.7);
  background: rgba(225, 25, 55, 0.16);
  color: var(--white);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.cfp-intro {
  border-bottom: 1px solid var(--line);
}

.cfp-format {
  background: var(--paper-2);
  width: 100%;
  padding: 84px clamp(18px, 4vw, 56px);
  margin: 0;
}

.cfp-format > * {
  width: min(1120px, 100%);
  margin-left: auto;
  margin-right: auto;
}

.cfp-format .section-heading {
  margin-bottom: 40px;
}

.cfp-format-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.cfp-format-list li {
  position: relative;
  padding: 22px 24px 22px 60px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.55;
}

.cfp-format-list li::before {
  content: "";
  position: absolute;
  left: 24px;
  top: 28px;
  width: 12px;
  height: 12px;
  background: var(--red-2);
  border-radius: 50%;
  box-shadow: 0 0 14px rgba(225, 25, 55, 0.55);
}

.cfp-terms {
  background:
    radial-gradient(circle at 78% 20%, rgba(225, 25, 55, 0.16), transparent 38%),
    #131313;
  color: var(--white);
  width: 100%;
  padding: 96px clamp(18px, 4vw, 56px);
  margin: 0;
}

.cfp-terms > * {
  width: min(1120px, 100%);
  margin-left: auto;
  margin-right: auto;
}

.cfp-terms .section-label {
  color: var(--red-2);
}

.cfp-terms .section-heading h2 {
  color: var(--white);
}

.cfp-terms-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 40px;
}

.cfp-term {
  display: grid;
  gap: 10px;
  padding: 28px 32px;
  background: #1b1b1a;
}

.cfp-term-key {
  margin: 0;
  color: var(--red-2);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.cfp-term-value {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 17px;
  line-height: 1.55;
}

.cfp-audience {
  border-bottom: 1px solid var(--line);
}

.cfp-photo-section {
  width: 100%;
  padding: 0;
  background: var(--black);
}

.cfp-photo {
  margin: 0;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

.cfp-photo img {
  display: block;
  width: 100%;
  height: auto;
  filter: contrast(1.04) brightness(0.92);
}

.cfp-photo figcaption {
  padding: 24px clamp(18px, 4vw, 56px);
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-align: center;
  background: var(--black);
}

.cfp-cta {
  text-align: center;
  background:
    linear-gradient(135deg, rgba(177, 18, 38, 0.28), transparent 50%),
    var(--black);
  color: var(--white);
  width: 100%;
  padding: 96px clamp(18px, 4vw, 56px);
  margin: 0;
}

.cfp-cta-inner {
  width: min(720px, 100%);
  margin: 0 auto;
}

.cfp-cta h2 {
  margin: 0 0 18px;
  font-size: clamp(32px, 4.5vw, 56px);
  color: var(--white);
}

.cfp-cta p {
  margin: 0 0 32px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  line-height: 1.6;
}

.pricing-footnote {
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.42);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-align: center;
}

/* ============================================================
   BLOG -- editorial article layout
   Single-column, centered prose with hero photo, drop cap,
   chapter headings, pull quote, captioned figures, sign-off,
   and a closing CTA back to the funnel.
   ============================================================ */

.blog-body {
  background: var(--paper);
  overflow-x: hidden;
}

.blog {
  width: 100%;
  margin: 0 auto;
  padding: 0;
}

.blog-hero {
  width: min(740px, calc(100% - 36px));
  margin: 0 auto;
  padding: 152px 0 48px;
  text-align: center;
}

.blog-eyebrow {
  margin: 0 0 24px;
  color: var(--red-2);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.blog-title {
  margin: 0 0 24px;
  color: var(--ink);
  font-size: clamp(48px, 6.4vw, 84px);
  line-height: 0.98;
  font-weight: 750;
  letter-spacing: -0.01em;
}

.blog-dateline {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0.08em;
}

.blog-dateline-dot {
  color: rgba(9, 9, 9, 0.28);
}

.blog-cover {
  width: min(1200px, calc(100% - 36px));
  margin: 36px auto 72px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--black);
  border: 1px solid var(--line);
  box-shadow: 0 40px 120px rgba(9, 9, 9, 0.14);
}

.blog-cover img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.04) brightness(0.96);
}

.blog-content {
  width: min(680px, calc(100% - 36px));
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.78;
  color: var(--ink);
}

.blog-content p {
  margin: 0 0 24px;
  color: rgba(9, 9, 9, 0.78);
}

.blog-lede {
  font-size: 21px !important;
  line-height: 1.6 !important;
  color: var(--ink) !important;
  margin-bottom: 32px !important;
}

.blog-dropcap {
  float: left;
  margin: 6px 14px -6px 0;
  color: var(--red);
  font-size: 76px;
  line-height: 0.86;
  font-weight: 850;
  letter-spacing: -0.04em;
}

.blog-h2 {
  margin: 56px 0 22px;
  color: var(--ink);
  font-size: clamp(28px, 3.2vw, 38px);
  line-height: 1.1;
  font-weight: 750;
  letter-spacing: -0.005em;
}

.blog-divider {
  width: 60px;
  height: 0;
  margin: 56px auto;
  border: 0;
  border-top: 1px solid rgba(9, 9, 9, 0.2);
  position: relative;
}

.blog-divider::after {
  content: "\2726";
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0 10px;
  background: var(--paper);
  color: var(--red);
  font-size: 12px;
}

.blog-pullquote {
  position: relative;
  margin: 56px -20px;
  padding: 28px 30px 28px 44px;
  border-left: 3px solid var(--red);
  background: rgba(225, 25, 55, 0.04);
}

.blog-pullquote::before {
  content: "\201C";
  position: absolute;
  top: 4px;
  left: 14px;
  color: var(--red);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 60px;
  line-height: 1;
}

.blog-pullquote p {
  margin: 0;
  color: var(--ink) !important;
  font-size: clamp(20px, 2.4vw, 26px);
  line-height: 1.45;
  font-weight: 650;
  font-style: italic;
  letter-spacing: -0.005em;
}

.blog-figure {
  width: calc(100% + 60px);
  margin: 48px -30px;
  display: grid;
  gap: 14px;
}

.blog-figure--wide {
  width: calc(100% + 200px);
  margin-left: -100px;
  margin-right: -100px;
}

.blog-figure img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 26px 80px rgba(9, 9, 9, 0.1);
}

.blog-figure figcaption {
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0.05em;
  text-align: center;
  font-style: italic;
}

.blog-video {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--black);
  border: 1px solid var(--line);
  box-shadow: 0 26px 80px rgba(9, 9, 9, 0.12);
}

.blog-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.blog-aliases {
  margin: 48px 0 0;
  padding: 22px 26px;
  background: rgba(9, 9, 9, 0.04);
  border-left: 2px solid rgba(9, 9, 9, 0.2);
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
  display: grid;
  gap: 6px;
}

.blog-aliases-label {
  color: var(--ink);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.blog-signoff {
  width: min(900px, calc(100% - 36px));
  margin: 96px auto 0;
  padding: 56px 0 0;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 48px;
  align-items: start;
}

.blog-signoff-portrait {
  margin: 0;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--black);
  border: 1px solid var(--line);
}

.blog-signoff-portrait img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 18%;
  filter: contrast(1.04) brightness(0.96);
}

.blog-signoff-copy {
  padding-top: 8px;
}

.blog-signoff-from {
  margin: 0 0 4px;
  color: var(--red-2);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.blog-signoff-name {
  margin: 0 0 18px;
  color: var(--ink);
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.blog-signoff-bio {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
  max-width: 480px;
}

.blog-signoff-thanks {
  margin: 0;
  color: var(--ink);
  font-size: 15px;
  font-style: italic;
}

.blog-cta {
  width: min(820px, calc(100% - 36px));
  margin: 80px auto 120px;
  padding: clamp(36px, 5vw, 56px);
  text-align: center;
  color: var(--white);
  background:
    radial-gradient(circle at 78% 28%, rgba(225, 25, 55, 0.32), transparent 36%),
    radial-gradient(circle at 14% 78%, rgba(225, 25, 55, 0.2), transparent 38%),
    linear-gradient(180deg, #0a0a0a, #141414 60%, #1b1b1a);
  border: 1px solid rgba(225, 25, 55, 0.32);
  box-shadow: 0 40px 100px rgba(9, 9, 9, 0.16);
}

.blog-cta-eyebrow {
  margin: 0 0 14px;
  color: var(--red-2);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.blog-cta-title {
  margin: 0 0 14px;
  color: var(--white);
  font-size: clamp(28px, 3.6vw, 42px);
  line-height: 1.1;
  font-weight: 750;
}

.blog-cta-copy {
  margin: 0 auto 32px;
  max-width: 520px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  line-height: 1.6;
}

.blog-cta-actions {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

@media (max-width: 860px) {
  .blog-hero {
    padding-top: 124px;
  }

  .blog-cover {
    margin: 28px auto 52px;
  }

  .blog-pullquote {
    margin: 44px 0;
    padding: 22px 22px 22px 32px;
  }

  .blog-figure,
  .blog-figure--wide {
    width: 100%;
    margin: 36px 0;
  }

  .blog-signoff {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .blog-signoff-portrait {
    width: 180px;
    aspect-ratio: 3 / 4;
  }
}

@media (max-width: 520px) {
  .blog-hero {
    padding-top: 116px;
  }

  .blog-title {
    font-size: 40px;
  }

  .blog-dropcap {
    font-size: 62px;
    margin-right: 12px;
  }

  .blog-content {
    font-size: 17px;
  }

  .blog-pullquote {
    padding-left: 24px;
  }

  .blog-pullquote::before {
    font-size: 48px;
    left: 8px;
  }
}

.coach-long a {
  color: var(--red-2);
  font-weight: 750;
  text-decoration: none;
}

.coach-long a:hover {
  text-decoration: underline;
}

/* Explicit highlight for inline red links in coach bios. Set even when the
   link lives outside .coach-long so behavior is predictable. */
.coach-link-red {
  color: var(--red-2);
  font-weight: 750;
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 3px;
}

.coach-link-red:hover {
  color: var(--red);
}

@media (max-width: 860px) {
  .product-inside-grid {
    grid-template-columns: 1fr;
  }

  .cfp-terms-grid,
  .cfp-format-list {
    grid-template-columns: 1fr;
  }

  .product-hero {
    padding-top: 144px;
    padding-bottom: 72px;
  }

  .bombpot-hero {
    min-height: auto;
    padding: 120px 0 72px;
  }

  .bombpot-hero .product-hero-inner {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .bombpot-hero-cover {
    width: 100%;
    max-width: 360px;
    justify-self: start;
  }

  .bombpot-overview-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .bombpot-overview-head h2 {
    max-width: none;
  }

  .bombpot-inside-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bombpot-coach-inner {
    grid-template-columns: 1fr;
  }

  .bombpot-coach-photo {
    justify-self: start;
    width: 100%;
    max-width: 420px;
  }

  .bombpot-preview,
  .bombpot-overview,
  .bombpot-inside,
  .bombpot-coach,
  .bombpot-faq {
    padding: 64px 0;
  }

  .bombpot-buy {
    padding: 72px clamp(18px, 4vw, 28px);
  }

  .product-overview,
  .product-inside,
  .product-audience,
  .cfp-intro,
  .cfp-audience,
  .cfp-cta {
    padding: 64px 0;
  }

  .cfp-format,
  .cfp-terms {
    padding: 64px clamp(18px, 4vw, 28px);
  }

  .blog-hero,
  .blog-proof,
  .blog-closing {
    grid-template-columns: 1fr;
  }

  .blog-video-grid {
    grid-template-columns: 1fr;
  }

  .blog-hero {
    width: min(720px, calc(100% - 32px));
    padding-top: 134px;
    padding-bottom: 72px;
  }

  .blog-proof,
  .blog-closing {
    align-items: start;
    margin-top: 58px;
    padding-top: 58px;
  }

  .blog-article {
    width: min(760px, calc(100% - 36px));
    padding-top: 64px;
  }
}

@media (max-width: 520px) {
  .product-hero {
    padding-left: 18px;
    padding-right: 18px;
  }

  .product-hero h1 {
    font-size: clamp(42px, 13vw, 54px);
  }

  .product-hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .bombpot-hero-cover {
    width: 100%;
    max-width: 320px;
  }

  .bombpot-hero-cover img {
    object-fit: contain;
  }

  .bombpot-inside-grid {
    grid-template-columns: 1fr;
  }

  .bombpot-buy-card {
    padding: 32px 22px;
  }

  .bombpot-faq-list details {
    padding: 20px 22px;
  }

  .single-pricing-card {
    padding: 32px 24px;
  }

  .product-inside-card,
  .cfp-format-list li {
    padding: 22px 20px;
  }

  .blog-hero h1 {
    font-size: clamp(42px, 13vw, 54px);
  }

  .blog-hero,
  .blog-article {
    width: calc(100% - 32px);
    overflow-x: hidden;
  }

  .blog-article {
    padding-left: 0;
    padding-right: 0;
  }

  .blog-prose p,
  .blog-hero p {
    overflow-wrap: break-word;
  }

  .blog-hero {
    padding-top: 120px;
    padding-bottom: 56px;
  }

  .blog-hero-media {
    aspect-ratio: 1.18 / 1;
  }

  .blog-prose p {
    font-size: 16px;
    line-height: 1.68;
  }

  .blog-media {
    padding: 8px;
    margin: 42px auto;
  }

  .blog-video-grid {
    margin: 42px auto;
  }

  .blog-signoff {
    margin: 52px auto;
  }

  .blog-portrait img {
    height: 440px;
  }
}

/* ============================================================
   PREVIEW SECTION (homepage course video)
   Light section breaking the dark Course/Pricing pair.
   ============================================================ */

.preview {
  width: 100%;
  max-width: none;
  padding: 100px clamp(18px, 4vw, 56px);
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.preview-inner {
  width: min(960px, 100%);
  margin: 0 auto;
  text-align: center;
}

.preview-heading {
  margin-bottom: 40px;
}

.preview-heading .section-label {
  display: inline-block;
  margin-bottom: 14px;
}

.preview-heading h2 {
  margin: 0 auto;
  max-width: 720px;
}

.preview-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #050505;
  border: 1px solid rgba(9, 9, 9, 0.12);
  box-shadow:
    0 30px 80px rgba(9, 9, 9, 0.14),
    0 0 0 1px rgba(225, 25, 55, 0.18);
  transition: box-shadow 320ms ease;
}

.preview-frame:hover {
  box-shadow:
    0 38px 100px rgba(9, 9, 9, 0.18),
    0 0 0 1px rgba(225, 25, 55, 0.32);
}

.preview-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.preview-caption {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

/* ============================================================
   PRICING SECTION (homepage -- the second half of the old Course)
   Inherits .course styling; gets a red top border to mark the
   "moment of decision" beat.
   ============================================================ */

.pricing-section {
  position: relative;
  border-top: 3px solid var(--red-2);
}

.pricing-section .section-heading {
  margin-bottom: 36px;
}

.pricing-section .section-label {
  color: var(--red-2);
}

@media (max-width: 860px) {
  .preview {
    padding: 72px clamp(18px, 4vw, 28px);
  }

  .preview-heading {
    margin-bottom: 30px;
  }
}

@media (max-width: 520px) {
  .preview {
    padding: 56px 18px;
  }

  .preview-frame {
    box-shadow:
      0 18px 40px rgba(9, 9, 9, 0.12),
      0 0 0 1px rgba(225, 25, 55, 0.18);
  }
}

/* Manifesto */
.manifesto {
  border-top: 1px solid var(--line);
}

.manifesto-inner {
  display: grid;
  gap: 48px;
}

.manifesto-head {
  display: grid;
  gap: 10px;
  max-width: 760px;
}

.manifesto-head h2 {
  margin: 0;
}

.manifesto-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 64px);
  align-items: start;
}

.manifesto-col h3 {
  margin: 0 0 16px;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red-2);
}

.manifesto-col p {
  margin: 0;
  font-size: 17px;
  line-height: 1.7;
  color: var(--muted);
}

.manifesto-col ul {
  display: grid;
  gap: 16px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.manifesto-col li {
  padding: 4px 0 4px 16px;
  border-left: 2px solid var(--red);
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted);
}

.manifesto-col li strong {
  color: var(--ink);
  font-weight: 600;
}

.manifesto-footnote {
  margin: 0;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  font-size: 14px;
  letter-spacing: 0.01em;
  color: var(--muted);
  max-width: 820px;
}

.manifesto-graph {
  margin: 36px 0 0;
  padding: 0;
  max-width: 520px;
}

.manifesto-graph svg {
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 760px) {
  .manifesto-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}
