/* ------------------------------------------------------------------ */
/* Self-hosted fonts                                                  */
/* ------------------------------------------------------------------ */
@font-face {
  font-family: "Bebas Neue";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("assets/fonts/bebas-neue.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("assets/fonts/inter.woff2") format("woff2");
}

/* ------------------------------------------------------------------ */
/* Theme tokens - burgundy / oxblood premium tier                     */
/* ------------------------------------------------------------------ */
:root {
  --color-bg-deep: #0a0507;
  --color-bg-mid: #15090d;
  --color-bg-elev: #1d0e13;
  --color-text: #ececec;
  --color-text-strong: #ffffff;
  --color-text-mute: rgba(236, 236, 236, 0.6);

  --color-accent: #a23843;
  --color-accent-bright: #c4505e;
  --color-accent-deep: #6e1f29;
  --color-accent-rose: #d97583;
  --color-accent-glow: rgba(162, 56, 67, 0.35);
  --color-divider: rgba(196, 80, 94, 0.18);

  --font-display: "Bebas Neue", "Oswald", "Impact", -apple-system, sans-serif;
  --font-ui: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --space-1: 4px;
  --space-2: 8px;
  --space-3: 16px;
  --space-4: 24px;
  --space-5: 32px;
  --space-6: 48px;
  --space-7: 64px;
  --space-8: 96px;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;

  --max-w: 1100px;
}

/* ------------------------------------------------------------------ */
/* Reset                                                              */
/* ------------------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--color-bg-deep);
  color: var(--color-text);
  font-family: var(--font-ui);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, video, audio { max-width: 100%; display: block; }
a { color: var(--color-accent-rose); text-decoration: none; }
button { font: inherit; }

/* ------------------------------------------------------------------ */
/* Layout                                                             */
/* ------------------------------------------------------------------ */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--space-4); }

/* ------------------------------------------------------------------ */
/* Typography                                                         */
/* ------------------------------------------------------------------ */
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.5px;
  color: var(--color-text-strong);
  line-height: 1.05;
  margin: 0;
}
.eyebrow {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-accent-rose);
  margin: 0 0 var(--space-3) 0;
}
.section-heading {
  font-size: clamp(28px, 4vw, 44px);
  margin: 0 0 var(--space-5) 0;
  max-width: 22ch;
}
.section-heading em {
  color: var(--color-accent-rose);
  font-style: normal;
}

/* ------------------------------------------------------------------ */
/* Buttons                                                            */
/* ------------------------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 47px;
  padding: 0 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 15px;
  line-height: 1;
  letter-spacing: 0.4px;
  cursor: pointer;
  box-sizing: border-box;
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
}
.btn--primary {
  background: linear-gradient(180deg, var(--color-accent) 0%, var(--color-accent-deep) 100%);
  color: #fff;
  box-shadow: 0 6px 20px rgba(162, 56, 67, 0.35);
  border: 1px solid rgba(217, 117, 131, 0.25);
}
.btn--primary:hover {
  transform: translateY(-1px);
  filter: brightness(1.08);
  box-shadow: 0 10px 28px rgba(162, 56, 67, 0.5);
}
.btn--large { height: 55px; padding: 0 36px; font-size: 17px; }

.cta-cluster { display: flex; align-items: center; gap: var(--space-3); flex-wrap: wrap; }
.cta-cluster--center { justify-content: center; margin-top: var(--space-5); }

.cta-cluster--methods { align-items: flex-start; gap: var(--space-5); }
.cta-method { display: flex; flex-direction: column; gap: 8px; min-width: 220px; }
.cta-method__label {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--color-text-mute);
}
.paypal-btn-container { min-height: 48px; width: 100%; max-width: 320px; }
@media (max-width: 600px) {
  .cta-cluster--methods { gap: var(--space-4); }
  .cta-method { min-width: 0; width: 100%; }
  .paypal-btn-container { max-width: none; }
}

.cta-note {
  font-size: 13px;
  font-style: italic;
  color: var(--color-text-mute);
  margin: var(--space-3) 0 0 0;
  max-width: 56ch;
  line-height: 1.5;
}

/* ------------------------------------------------------------------ */
/* Seat counter pill                                                  */
/* ------------------------------------------------------------------ */
.seats-line {
  margin: var(--space-3) 0 var(--space-4) 0;
}
.seats-line--center { text-align: center; }
.seats-line__pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 16px 7px 14px;
  background: rgba(162, 56, 67, 0.12);
  border: 1px solid rgba(217, 117, 131, 0.32);
  border-radius: 999px;
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--color-text);
}
.seats-line__pill strong {
  color: var(--color-accent-rose);
  font-weight: 700;
}
.seats-line__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-accent-rose);
  box-shadow: 0 0 12px rgba(217, 117, 131, 0.85);
  animation: seatsPulse 2.4s ease-in-out infinite;
}
@keyframes seatsPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.55; transform: scale(0.85); }
}
.seats-line.is-low .seats-line__dot { background: #ffb84d; box-shadow: 0 0 12px rgba(255, 184, 77, 0.85); }
.seats-line.is-low .seats-line__pill strong { color: #ffb84d; }
.seats-line.is-critical .seats-line__dot { background: #ff5a6a; box-shadow: 0 0 14px rgba(255, 90, 106, 0.95); }
.seats-line.is-critical .seats-line__pill strong { color: #ff5a6a; }

/* ------------------------------------------------------------------ */
/* Sold-out notice                                                    */
/* ------------------------------------------------------------------ */
.sold-out-notice {
  background: rgba(162, 56, 67, 0.10);
  border: 1px solid rgba(217, 117, 131, 0.28);
  border-radius: var(--radius-md);
  padding: var(--space-4);
  font-size: 15px;
  line-height: 1.55;
  color: var(--color-text);
  max-width: 56ch;
  margin: var(--space-3) 0 0 0;
}
.sold-out-notice--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.sold-out-notice strong { color: var(--color-accent-rose); font-weight: 600; }

/* ------------------------------------------------------------------ */
/* Section spacing                                                    */
/* ------------------------------------------------------------------ */
section { padding: var(--space-8) 0; }
@media (max-width: 720px) { section { padding: var(--space-7) 0; } }

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

/* ------------------------------------------------------------------ */
/* HERO                                                               */
/* ------------------------------------------------------------------ */
.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero__bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}
.hero__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 5, 7, 0.55) 0%, transparent 25%, transparent 65%, rgba(10, 5, 7, 0.95) 100%),
    linear-gradient(90deg, rgba(10, 5, 7, 0.95) 0%, rgba(10, 5, 7, 0.82) 30%, rgba(10, 5, 7, 0.35) 65%, transparent 100%),
    radial-gradient(ellipse at 15% 95%, rgba(162, 56, 67, 0.32) 0%, rgba(110, 31, 41, 0.12) 35%, transparent 60%),
    linear-gradient(rgba(20, 8, 12, 0.42), rgba(20, 8, 12, 0.42));
  pointer-events: none;
}
.hero__inner {
  position: relative; z-index: 1;
  max-width: var(--max-w);
  width: 100%;
  margin: 0 auto;
  padding: var(--space-7) var(--space-4);
}
.hero__headline {
  font-size: clamp(40px, 6vw, 72px);
  max-width: 22ch;
  margin: 0 0 var(--space-4) 0;
  letter-spacing: 1px;
  line-height: 1.05;
}
.hero__headline em {
  color: var(--color-accent-rose);
  font-style: normal;
}
.hero__sub {
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.55;
  max-width: 64ch;
  color: var(--color-text);
  margin: 0 0 var(--space-5) 0;
}
@media (max-width: 720px) {
  .hero__overlay {
    background:
      linear-gradient(180deg, rgba(10, 5, 7, 0.55) 0%, rgba(10, 5, 7, 0.55) 50%, rgba(10, 5, 7, 0.95) 100%),
      radial-gradient(ellipse at 50% 100%, rgba(162, 56, 67, 0.25) 0%, transparent 60%),
      linear-gradient(rgba(20, 8, 12, 0.45), rgba(20, 8, 12, 0.45));
  }
}

/* ------------------------------------------------------------------ */
/* NICK PHOENIX MARQUEE                                               */
/* ------------------------------------------------------------------ */
.phoenix {
  background: var(--color-bg-deep);
  padding: var(--space-7) 0;
  border-top: 1px solid var(--color-divider);
  border-bottom: 1px solid var(--color-divider);
}
.phoenix__inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: var(--space-6);
  align-items: center;
}
.phoenix__photo img {
  width: 100%;
  display: block;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-divider);
}
.phoenix__copy { text-align: left; }
.phoenix__quote {
  font-family: var(--font-display);
  font-size: clamp(48px, 7.5vw, 96px);
  letter-spacing: 1px;
  color: var(--color-text-strong);
  margin: 0 0 var(--space-3) 0;
  line-height: 0.95;
}
.phoenix__cite {
  font-family: var(--font-ui);
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-accent-rose);
  margin: 0;
  line-height: 1.7;
}
.phoenix__cite span {
  color: var(--color-text-mute);
  letter-spacing: 2px;
  font-weight: 400;
}
@media (max-width: 720px) {
  .phoenix__inner {
    grid-template-columns: 1fr;
    gap: var(--space-4);
    text-align: center;
  }
  .phoenix__photo {
    max-width: 200px;
    margin: 0 auto;
  }
  .phoenix__copy { text-align: center; }
}

/* ------------------------------------------------------------------ */
/* TESTIMONIALS (Jeff Rona video + student wall)                      */
/* ------------------------------------------------------------------ */
.testimonials {
  background: linear-gradient(180deg, var(--color-bg-mid) 0%, var(--color-bg-deep) 100%);
  text-align: center;
}
.testimonials .section-heading {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.testimonials__lead {
  max-width: 64ch;
  margin: 0 auto var(--space-6);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text-mute);
}
.testimonials__lead em {
  font-style: italic;
  color: var(--color-text);
}

.rona-wrap {
  max-width: 800px;
  margin: 0 auto var(--space-7);
  text-align: center;
}
.rona-wrap__heading {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 32px);
  letter-spacing: 1px;
  color: var(--color-text-strong);
  margin: 0 0 var(--space-4) 0;
}

.video-wrap {
  max-width: 800px;
  margin: 0 auto var(--space-4);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
  aspect-ratio: 16 / 9;
  background: #000;
}
.video-poster {
  position: relative;
  aspect-ratio: 16 / 9;
  cursor: pointer;
  background: #000;
}
.video-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: filter 0.2s ease;
}
.video-poster:hover img,
.video-poster:focus-visible img { filter: brightness(1.06); }
.video-poster__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--color-accent-rose) 0%, var(--color-accent-deep) 100%);
  color: #fff;
  font-size: 28px;
  display: grid;
  place-items: center;
  padding-left: 6px;
  box-shadow: 0 8px 28px rgba(162, 56, 67, 0.5);
  transition: transform 0.2s ease;
}
.video-poster:hover .video-poster__play,
.video-poster:focus-visible .video-poster__play {
  transform: translate(-50%, -50%) scale(1.06);
}
.video-poster:focus-visible {
  outline: 2px solid var(--color-accent-rose);
  outline-offset: 4px;
}
@media (max-width: 720px) {
  .video-poster__play { width: 64px; height: 64px; font-size: 22px; }
}

.rona__quote {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.rona__quote p {
  font-family: var(--font-ui);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.6;
  color: var(--color-text-strong);
  margin: 0 0 var(--space-3) 0;
}
.rona__quote cite {
  font-size: 14px;
  color: var(--color-text-mute);
  font-style: normal;
}

.students__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
  max-width: 1100px;
  margin: 0 auto;
  text-align: left;
}
.testimonial {
  background: var(--color-bg-mid);
  border: 1px solid var(--color-divider);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  position: relative;
  transition: border-color 0.3s ease, transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.testimonial:hover {
  border-color: rgba(217, 117, 131, 0.4);
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.4);
}
.testimonial p {
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
  color: var(--color-text);
}
.testimonial cite {
  font-size: 13px;
  color: var(--color-text-mute);
  margin-top: auto;
  padding-top: var(--space-2);
  border-top: 1px solid var(--color-divider);
  font-style: normal;
}
.testimonial cite strong {
  color: var(--color-text-strong);
  font-weight: 600;
  display: block;
  margin-bottom: 2px;
}
@media (max-width: 1024px) {
  .students__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .students__grid { grid-template-columns: 1fr; }
}

/* ------------------------------------------------------------------ */
/* PROBLEM                                                            */
/* ------------------------------------------------------------------ */
.problem {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(162, 56, 67, 0.08) 0%, transparent 60%),
    var(--color-bg-mid);
  border-top: 1px solid var(--color-divider);
  border-bottom: 1px solid var(--color-divider);
  text-align: center;
}
.problem .section-heading {
  text-align: center;
  max-width: 22ch;
  margin-left: auto;
  margin-right: auto;
}
.problem__copy { max-width: 64ch; margin: 0 auto; text-align: left; }
.problem__copy p {
  margin: 0 0 var(--space-3) 0;
  font-size: 17px;
  line-height: 1.7;
  color: var(--color-text);
}
.problem__copy p:last-child { margin-bottom: 0; }
.problem__close {
  text-align: center !important;
  margin-top: var(--space-5) !important;
  padding-top: var(--space-4);
  border-top: 1px solid var(--color-divider);
  color: var(--color-accent-rose) !important;
  font-size: 18px !important;
}
.problem__close em {
  font-style: italic;
  color: var(--color-accent-rose);
}

/* ------------------------------------------------------------------ */
/* DIFFERENT                                                          */
/* ------------------------------------------------------------------ */
.different {
  background: var(--color-bg-deep);
  text-align: center;
}
.different .section-heading {
  text-align: center;
  max-width: none;
  margin-left: auto; margin-right: auto;
}
.different__copy { max-width: 64ch; margin: 0 auto; text-align: left; }
.different__copy p {
  margin: 0 0 var(--space-3) 0;
  font-size: 17px;
  line-height: 1.7;
  color: var(--color-text);
}
.different__copy strong { color: var(--color-text-strong); font-weight: 600; }
.different__close {
  text-align: center !important;
  margin-top: var(--space-5) !important;
  padding-top: var(--space-4);
  border-top: 1px solid var(--color-divider);
  font-size: 19px !important;
  color: var(--color-accent-rose) !important;
  font-style: italic;
}

/* ------------------------------------------------------------------ */
/* WEEKS                                                              */
/* ------------------------------------------------------------------ */
.weeks {
  background: linear-gradient(180deg, var(--color-bg-deep) 0%, var(--color-bg-mid) 100%);
  text-align: center;
}
.weeks .section-heading {
  text-align: center;
  max-width: none;
  margin-left: auto; margin-right: auto;
  margin-bottom: var(--space-3);
}
.weeks__lead {
  text-align: center;
  max-width: 60ch;
  margin: 0 auto var(--space-6);
  color: var(--color-text-mute);
  font-size: 17px;
  line-height: 1.6;
}
.weeks__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: var(--space-3);
  text-align: left;
}
.week {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: var(--space-4);
  align-items: start;
  padding: var(--space-4);
  background: var(--color-bg-mid);
  border: 1px solid var(--color-divider);
  border-radius: var(--radius-md);
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.week:hover {
  border-color: rgba(217, 117, 131, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}
.week__num {
  font-family: var(--font-display);
  font-size: 56px;
  line-height: 1;
  color: var(--color-accent);
  font-weight: 400;
  letter-spacing: 1px;
  text-align: center;
}
.week__body h3 {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 1px;
  color: var(--color-text-strong);
  margin: 6px 0 8px 0;
}
.week__body p {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--color-text);
}
.weeks__footer {
  text-align: center;
  max-width: 56ch;
  margin: var(--space-6) auto 0;
  padding: var(--space-3) var(--space-4);
  border-top: 1px solid var(--color-divider);
  border-bottom: 1px solid var(--color-divider);
  font-size: 17px;
  color: var(--color-accent-rose);
}
.weeks__footer strong { color: var(--color-accent-rose); font-weight: 600; }
@media (max-width: 600px) {
  .week { grid-template-columns: 56px 1fr; gap: var(--space-3); padding: var(--space-3); }
  .week__num { font-size: 40px; }
  .week__body h3 { font-size: 19px; }
}

/* ------------------------------------------------------------------ */
/* WHY                                                                */
/* ------------------------------------------------------------------ */
.why { background: var(--color-bg-deep); text-align: center; }
.why .section-heading {
  text-align: center;
  max-width: none;
  margin-left: auto; margin-right: auto;
}
.why__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4);
  text-align: left;
  max-width: 880px;
  margin: 0 auto;
}
.why-card {
  background: var(--color-bg-mid);
  border: 1px solid var(--color-divider);
  border-radius: var(--radius-md);
  padding: var(--space-4) var(--space-5);
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.why-card:hover {
  border-color: rgba(217, 117, 131, 0.4);
  transform: translateY(-3px);
}
.why-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 1px;
  color: var(--color-text-strong);
  margin: 0 0 10px 0;
}
.why-card p {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--color-text);
}
@media (max-width: 720px) { .why__grid { grid-template-columns: 1fr; } }

/* ------------------------------------------------------------------ */
/* WHAT YOU WALK AWAY WITH                                            */
/* ------------------------------------------------------------------ */
.walkaway {
  background: var(--color-bg-mid);
  border-top: 1px solid var(--color-divider);
  border-bottom: 1px solid var(--color-divider);
  text-align: center;
}
.walkaway .section-heading {
  text-align: center;
  margin-left: auto; margin-right: auto;
}
.walkaway__list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 56ch;
  text-align: left;
  font-size: 17px;
  line-height: 1.65;
}
.walkaway__list li {
  padding: 12px 0 12px 32px;
  position: relative;
  border-bottom: 1px solid var(--color-divider);
}
.walkaway__list li:last-child { border-bottom: 0; }
.walkaway__list li::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 18px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--color-accent-rose) 0%, var(--color-accent) 60%, var(--color-accent-deep) 100%);
  box-shadow: 0 0 10px rgba(217, 117, 131, 0.45);
}
.walkaway__list strong { color: var(--color-text-strong); font-weight: 600; }

/* ------------------------------------------------------------------ */
/* FOR / NOT FOR                                                      */
/* ------------------------------------------------------------------ */
.forwho { background: var(--color-bg-deep); text-align: center; }
.forwho .section-heading {
  text-align: center;
  margin-left: auto; margin-right: auto;
}
.forwho__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4);
  text-align: left;
  max-width: 880px;
  margin: 0 auto;
}
.forwho__col {
  background: var(--color-bg-mid);
  border: 1px solid var(--color-divider);
  border-radius: var(--radius-md);
  padding: var(--space-5);
}
.forwho__col h3 {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 1px;
  margin: 0 0 var(--space-3) 0;
  color: var(--color-text-strong);
}
.forwho__col--yes h3 { color: var(--color-accent-rose); }
.forwho__col--no h3 { color: var(--color-text-mute); }
.forwho__col ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.forwho__col li {
  padding: 8px 0 8px 28px;
  position: relative;
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--color-text);
}
.forwho__col--yes li::before {
  content: "\2713";
  position: absolute; left: 0; top: 8px;
  color: var(--color-accent-rose);
  font-weight: 700;
}
.forwho__col--no li::before {
  content: "\00D7";
  position: absolute; left: 0; top: 6px;
  color: var(--color-text-mute);
  font-size: 19px;
  font-weight: 700;
}
@media (max-width: 720px) { .forwho__grid { grid-template-columns: 1fr; } }

/* ------------------------------------------------------------------ */
/* VS RISE                                                            */
/* ------------------------------------------------------------------ */
.vsrise {
  background: var(--color-bg-mid);
  border-top: 1px solid var(--color-divider);
  border-bottom: 1px solid var(--color-divider);
  text-align: center;
}
.vsrise .section-heading {
  text-align: center;
  margin-left: auto; margin-right: auto;
}
.vsrise__copy { max-width: 64ch; margin: 0 auto; text-align: left; }
.vsrise__copy p {
  margin: 0 0 var(--space-3) 0;
  font-size: 17px;
  line-height: 1.7;
  color: var(--color-text);
}
.vsrise__copy strong { color: var(--color-accent-rose); font-weight: 600; }

/* ------------------------------------------------------------------ */
/* COHORT / PRICING                                                   */
/* ------------------------------------------------------------------ */
.cohort {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(162, 56, 67, 0.18) 0%, transparent 65%),
    var(--color-bg-deep);
  text-align: center;
}
.cohort .section-heading {
  text-align: center;
  margin-left: auto; margin-right: auto;
  margin-bottom: var(--space-3);
}
.cohort__lead {
  text-align: center;
  max-width: 60ch;
  margin: 0 auto var(--space-5);
  color: var(--color-text-mute);
  font-size: 17px;
  line-height: 1.6;
}
.cohort__bullets {
  list-style: none;
  padding: 0;
  margin: 0 auto var(--space-5);
  max-width: 56ch;
  text-align: left;
}
.cohort__bullets li {
  padding: 12px 0 12px 32px;
  position: relative;
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  border-bottom: 1px solid var(--color-divider);
}
.cohort__bullets li:last-child { border-bottom: 0; }
.cohort__bullets li::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 20px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--color-accent);
  box-shadow: 0 0 10px rgba(196, 80, 94, 0.5);
}
.cohort__bullets strong { color: var(--color-text-strong); font-weight: 600; }
.cohort__pricing {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: var(--space-5) 0 var(--space-3) 0;
}
.cohort__price-now {
  font-family: var(--font-display);
  font-size: clamp(56px, 9vw, 96px);
  line-height: 0.95;
  color: var(--color-accent-rose);
  margin: 0;
  letter-spacing: 2px;
  text-shadow: 0 4px 32px rgba(162, 56, 67, 0.4);
}
.cohort__price-note {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-text-mute);
  margin: var(--space-2) 0 0 0;
}

/* ------------------------------------------------------------------ */
/* PROMISE                                                            */
/* ------------------------------------------------------------------ */
.promise {
  background: var(--color-bg-mid);
  border-top: 1px solid var(--color-divider);
  border-bottom: 1px solid var(--color-divider);
  text-align: center;
}
.promise .section-heading {
  text-align: center;
  margin-left: auto; margin-right: auto;
}
.promise__copy {
  max-width: 60ch;
  margin: 0 auto;
  font-size: 17px;
  line-height: 1.7;
  color: var(--color-text);
}

/* ------------------------------------------------------------------ */
/* BIO                                                                */
/* ------------------------------------------------------------------ */
.bio { background: linear-gradient(180deg, var(--color-bg-mid) 0%, var(--color-bg-deep) 100%); }
.bio__inner { display: grid; grid-template-columns: 320px 1fr; gap: var(--space-6); align-items: center; }
.bio__photo img {
  width: 100%;
  border-radius: var(--radius-lg);
  border: 2px solid var(--color-divider);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}
.bio__copy .section-heading {
  margin-bottom: var(--space-2);
  font-size: 12px;
  color: var(--color-accent-rose);
  font-family: var(--font-ui);
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
}
.bio__name {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  margin: 0 0 var(--space-3) 0;
  letter-spacing: 2px;
}
.bio__copy p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--color-text);
  margin: 0;
}
.bio__copy p em { font-style: italic; color: var(--color-text-strong); }
@media (max-width: 820px) {
  .bio__inner { grid-template-columns: 1fr; gap: var(--space-4); text-align: center; }
  .bio__photo { max-width: 240px; margin: 0 auto; }
}

/* ------------------------------------------------------------------ */
/* FAQ + FINAL CTA                                                    */
/* ------------------------------------------------------------------ */
.faq { background: var(--color-bg-deep); }
.faq .section-heading {
  text-align: center;
  margin-left: auto; margin-right: auto;
}
.faq__list { max-width: 720px; margin: 0 auto; display: grid; gap: var(--space-3); }
.faq__item {
  background: var(--color-bg-mid);
  border: 1px solid var(--color-divider);
  border-radius: var(--radius-md);
  padding: 0;
  overflow: hidden;
  transition: border-color 0.2s ease;
}
.faq__item[open] { border-color: rgba(217, 117, 131, 0.4); }
.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: var(--space-4) var(--space-5);
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 16px;
  color: var(--color-text-strong);
  position: relative;
  padding-right: 56px;
  transition: color 0.2s ease;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+";
  position: absolute;
  right: var(--space-5);
  top: 50%;
  transform: translateY(-50%);
  font-size: 26px;
  color: var(--color-accent-rose);
  font-weight: 300;
  transition: transform 0.2s ease;
  line-height: 1;
}
.faq__item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq__item p {
  margin: 0;
  padding: 0 var(--space-5) var(--space-4) var(--space-5);
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--color-text);
}

.final-cta {
  text-align: center;
  margin-top: var(--space-8);
  padding-top: var(--space-7);
  border-top: 1px solid var(--color-divider);
}
.final-cta__heading {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 56px);
  margin: 0 0 var(--space-5) 0;
  max-width: 22ch;
  margin-left: auto;
  margin-right: auto;
  color: var(--color-text-strong);
}
.final-cta__heading em { color: var(--color-accent-rose); font-style: normal; }

/* ------------------------------------------------------------------ */
/* FOOTER                                                             */
/* ------------------------------------------------------------------ */
.footer { padding: var(--space-5) 0; background: var(--color-bg-deep); text-align: center; border-top: 1px solid var(--color-divider); }
.footer p { margin: 0; font-size: 13px; color: var(--color-text-mute); letter-spacing: 0.4px; }
.footer__links {
  margin-top: var(--space-2);
  display: flex;
  gap: var(--space-2);
  justify-content: center;
  align-items: center;
  font-size: 12px;
  color: var(--color-text-mute);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.footer__link {
  background: transparent;
  border: 0;
  padding: 0;
  color: var(--color-text-mute);
  font-family: var(--font-ui);
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 0.15s ease;
}
.footer__link:hover, .footer__link:focus-visible { color: var(--color-accent-rose); }

/* ------------------------------------------------------------------ */
/* STICKY MOBILE CTA                                                  */
/* ------------------------------------------------------------------ */
.sticky-cta {
  position: fixed;
  left: 16px; right: 16px; bottom: 16px;
  background: linear-gradient(180deg, var(--color-accent) 0%, var(--color-accent-deep) 100%);
  color: #fff;
  text-align: center;
  padding: 14px 20px;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 16px;
  border-radius: var(--radius-md);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(217, 117, 131, 0.25) inset;
  z-index: 50;
  display: none;
  text-decoration: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.sticky-cta.is-hidden { opacity: 0; transform: translateY(20px); pointer-events: none; }
@media (max-width: 720px) {
  .sticky-cta { display: block; }
  body { padding-bottom: 80px; }
}

/* ------------------------------------------------------------------ */
/* A11y / focus                                                       */
/* ------------------------------------------------------------------ */
:focus-visible { outline: 2px solid var(--color-accent-rose); outline-offset: 3px; border-radius: 4px; }

/* ------------------------------------------------------------------ */
/* MOTION - hero entrance + reveal                                    */
/* ------------------------------------------------------------------ */
.hero__inner > * {
  opacity: 0;
  transform: translateY(24px);
  animation: heroIn 0.9s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}
.hero__inner .eyebrow      { animation-delay: 0.15s; }
.hero__inner .hero__headline { animation-delay: 0.30s; }
.hero__inner .hero__sub    { animation-delay: 0.50s; }
.hero__inner .seats-line   { animation-delay: 0.65s; }
.hero__inner .cta-cluster  { animation-delay: 0.80s; }
.hero__inner .cta-note     { animation-delay: 0.95s; }
@keyframes heroIn {
  to { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.75s cubic-bezier(0.2, 0.8, 0.2, 1);
  transition-delay: var(--reveal-delay, 0s);
  will-change: opacity, transform;
}
.reveal.is-revealed { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .hero__inner > * { opacity: 1 !important; transform: none !important; animation: none !important; }
}

/* ------------------------------------------------------------------ */
/* MODAL                                                              */
/* ------------------------------------------------------------------ */
.modal {
  position: fixed; inset: 0; z-index: 100;
  display: grid; place-items: center;
  padding: var(--space-3);
  animation: modalIn 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.modal[hidden] { display: none; }
@keyframes modalIn { from { opacity: 0; } to { opacity: 1; } }
.modal__backdrop {
  position: absolute; inset: 0;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.modal__panel {
  position: relative;
  width: 100%;
  max-width: 720px;
  max-height: calc(100vh - var(--space-5));
  background: var(--color-bg-mid);
  border: 1px solid var(--color-divider);
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  animation: modalPanelIn 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}
@keyframes modalPanelIn {
  from { opacity: 0; transform: translateY(20px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.modal__close {
  position: absolute; top: 12px; right: 12px;
  width: 36px; height: 36px;
  border: 0;
  background: transparent;
  color: var(--color-text-mute);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  border-radius: 50%;
  z-index: 1;
  transition: color 0.15s ease, background 0.15s ease;
}
.modal__close:hover, .modal__close:focus-visible {
  color: var(--color-accent-rose);
  background: rgba(255, 255, 255, 0.05);
}
.modal__body { padding: var(--space-6) var(--space-5) var(--space-5); overflow-y: auto; -webkit-overflow-scrolling: touch; }
.modal__body h2 { font-size: clamp(28px, 4vw, 38px); letter-spacing: 1px; margin: 0 0 var(--space-3) 0; }
.modal__body h3 {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-accent-rose);
  margin: var(--space-5) 0 var(--space-2) 0;
}
.modal__body p { font-size: 14px; line-height: 1.7; color: var(--color-text); margin: 0 0 var(--space-3) 0; }
.modal__body a { color: var(--color-accent-rose); border-bottom: 1px solid rgba(217, 117, 131, 0.4); }
.modal__body a:hover { border-bottom-color: var(--color-accent-rose); }
.modal__lead { color: var(--color-text-mute) !important; font-style: italic; }
.modal__small { font-size: 12px !important; color: var(--color-text-mute) !important; margin-top: var(--space-5) !important; }
@media (max-width: 720px) {
  .modal__body { padding: var(--space-5) var(--space-4) var(--space-4); }
  .modal__body h2 { margin-top: var(--space-2); }
}
body.modal-open { overflow: hidden; }
