:root {
  --navy-950: #071225;
  --navy-900: #101c33;
  --navy-800: #172744;
  --navy-700: #253b61;
  --gold: #c9a84c;
  --gold-bright: #e1bc57;
  --gold-soft: #f4ead0;
  --brand-navy: #041e41;
  --brand-gold: #ffb819;
  --ink: #14213a;
  --muted: #5f697a;
  --line: #d8dde5;
  --paper: #f6f3ed;
  --white: #ffffff;
  --green: #2e7d32;
  --danger: #c62828;
  --shell: 1240px;
  --section-space: clamp(5rem, 9vw, 8.5rem);
  --shadow: 0 24px 70px rgba(7, 18, 37, 0.14);
  --font: "Geist", "Avenir Next", "Segoe UI", Arial, sans-serif;
}

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

html {
  overflow-x: clip;
  scroll-behavior: smooth;
  scroll-padding-top: 9rem;
}

body {
  margin: 0;
  overflow-x: hidden;
  overflow-x: clip;
  background: var(--white);
  color: var(--ink);
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.modal-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--gold-bright);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 9999;
  padding: 0.7rem 1rem;
  transform: translateY(-160%);
  background: var(--white);
  color: var(--navy-950);
  font-weight: 700;
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.shell {
  width: min(calc(100% - 3rem), var(--shell));
  margin-inline: auto;
}

.section {
  padding-block: var(--section-space);
}

.eyebrow {
  margin: 0 0 1.15rem;
  color: var(--navy-700);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow--gold {
  color: var(--gold-bright);
}

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

h1,
h2,
h3 {
  color: var(--navy-950);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.03;
}

h1 {
  max-width: 850px;
  margin-bottom: 1.6rem;
  font-size: clamp(3.15rem, 4.5vw, 4.5rem);
}

h2 {
  margin-bottom: 1.5rem;
  font-size: clamp(2.4rem, 4.25vw, 4.3rem);
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.7rem);
}

.section-lead {
  color: var(--ink);
  font-size: clamp(1.1rem, 1.45vw, 1.28rem);
  line-height: 1.65;
}

.button {
  display: inline-flex;
  min-height: 3.55rem;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold);
  border-radius: 4px;
  padding: 0.85rem 1.35rem;
  background: var(--gold);
  color: var(--navy-950);
  cursor: pointer;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.button:hover {
  border-color: var(--gold-bright);
  background: var(--gold-bright);
  transform: translateY(-2px);
}

.button--small {
  min-height: 2.75rem;
  padding: 0.65rem 1rem;
  font-size: 0.9rem;
}

.button--full {
  width: 100%;
}

.text-link {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  gap: 0.55rem;
  color: var(--navy-900);
  font-weight: 700;
  text-decoration: none;
}

.text-link span {
  color: var(--gold);
  font-size: 1.35em;
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translate(3px, 3px);
}

/* Live cohort and navigation */

.cohort-strip {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: 2.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: var(--navy-950);
  color: var(--white);
}

.cohort-strip__inner {
  display: flex;
  min-height: 2.75rem;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.76rem;
  letter-spacing: 0.01em;
}

.live-dot {
  width: 0.5rem;
  height: 0.5rem;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #50bf72;
  box-shadow: 0 0 0 5px rgba(80, 191, 114, 0.13);
}

.cohort-strip__times {
  overflow: hidden;
  color: #c8d0dd;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.cohort-strip__link {
  margin-left: auto;
  color: var(--gold-bright);
  font-weight: 800;
  white-space: nowrap;
}

.site-nav {
  position: sticky;
  top: 2.75rem;
  z-index: 90;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.98);
}

.site-nav__inner {
  display: grid;
  min-height: 4.75rem;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  text-decoration: none;
}

.brand__mark-image {
  width: 2.05rem;
  height: 2.5rem;
  flex: 0 0 auto;
  object-fit: contain;
}

.brand__copy {
  display: grid;
  gap: 0.08rem;
  line-height: 1.05;
}

.brand__text {
  color: var(--navy-950);
}

.brand__byline {
  color: var(--muted);
  font-size: 0.59rem;
  font-weight: 650;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.nav-links a {
  color: #465268;
  font-size: 0.9rem;
  font-weight: 650;
  text-decoration: none;
}

.nav-links a:hover {
  color: var(--navy-950);
}

.nav-toggle {
  display: none;
}

/* Hero */

.hero {
  position: relative;
  padding-block: clamp(4rem, 7vw, 7.5rem);
  background: var(--paper);
}

.hero::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: min(6vw, 5rem);
  background: var(--gold);
  content: "";
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 7.35fr) minmax(360px, 4.65fr);
  align-items: center;
  gap: clamp(2rem, 4vw, 4rem);
}

.hero__copy {
  position: relative;
  z-index: 1;
  padding-left: clamp(1.5rem, 3vw, 3.5rem);
}

.hero__lead {
  max-width: 42rem;
  margin-bottom: 1rem;
  color: var(--navy-700);
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  font-weight: 650;
  letter-spacing: -0.02em;
  line-height: 1.35;
}

.hero__body {
  max-width: 45rem;
  margin-bottom: 2rem;
  color: #4c586a;
  font-size: 1.08rem;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

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

.proof-line {
  display: flex;
  margin-top: 2.1rem;
  align-items: center;
  gap: 0.75rem;
  color: #4c586a;
  font-size: 0.82rem;
  line-height: 1.4;
}

.proof-line__stars {
  color: var(--gold);
  letter-spacing: 0.07em;
}

.proof-line__divider {
  width: 1px;
  height: 1.5rem;
  background: var(--line);
}

.hero__visual {
  position: relative;
  z-index: 1;
  margin: 0;
  box-shadow: var(--shadow);
}

.hero__visual::before {
  position: absolute;
  top: -1rem;
  right: -1rem;
  width: 35%;
  height: 42%;
  border-top: 3px solid var(--gold);
  border-right: 3px solid var(--gold);
  content: "";
  pointer-events: none;
}

.hero__visual picture {
  display: block;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--navy-800);
}

.hero__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 48% center;
}

.hero__visual figcaption {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding: 1rem 1.15rem;
  background: var(--navy-950);
  color: #dce3ee;
  font-size: 0.78rem;
  line-height: 1.45;
}

.hero__visual figcaption strong {
  color: var(--white);
  font-size: 0.88rem;
}

.figcaption__number {
  color: var(--gold-bright);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

/* Audience ribbon and fit */

.audience-marquee {
  overflow: hidden;
  border-block: 1px solid #2a3a55;
  background: var(--navy-900);
  color: var(--white);
}

.audience-marquee__track {
  display: flex;
  width: max-content;
  animation: marquee 32s linear infinite;
}

.audience-marquee__group {
  display: flex;
  min-width: max-content;
  align-items: center;
}

.audience-marquee span {
  padding: 1.15rem 1.5rem;
  font-size: 0.74rem;
  font-weight: 750;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.audience-marquee i {
  width: 0.3rem;
  height: 0.3rem;
  border-radius: 50%;
  background: var(--gold);
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

.audience__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(380px, 0.96fr);
  align-items: start;
  gap: clamp(3rem, 8vw, 7rem);
}

.audience__grid > div > p:last-child {
  max-width: 42rem;
  margin-bottom: 0;
  color: var(--muted);
}

.time-panel {
  border-top: 5px solid var(--gold);
  padding: clamp(1.7rem, 3vw, 2.5rem);
  background: var(--navy-950);
  color: #dce3ee;
}

.time-panel__date {
  margin-bottom: 1.75rem;
  color: var(--white);
  font-size: 1.45rem;
  font-weight: 750;
  letter-spacing: -0.02em;
}

.time-panel__group {
  padding-block: 1.15rem;
  border-top: 1px solid #30415d;
}

.time-panel__group h3 {
  margin-bottom: 0.5rem;
  color: var(--gold-bright);
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.time-panel__group p {
  margin-bottom: 0.25rem;
  font-size: 0.92rem;
}

.time-panel__note {
  margin: 1.2rem 0 0;
  padding-top: 1.2rem;
  border-top: 1px solid #30415d;
  color: #aeb9ca;
  font-size: 0.8rem;
}

/* Live story */

.live-story {
  background: var(--navy-950);
  color: #cfd7e4;
}

.live-story h2,
.live-story h3 {
  color: var(--white);
}

.live-story__grid {
  display: grid;
  grid-template-columns: minmax(320px, 4.6fr) minmax(0, 7.4fr);
  align-items: start;
  gap: clamp(3rem, 7vw, 7rem);
}

.live-story__intro > p:not(.eyebrow) {
  max-width: 35rem;
  color: #aeb9ca;
}

.method-steps {
  margin: 3rem 0 0;
  padding: 0;
  list-style: none;
}

.method-steps li {
  display: grid;
  grid-template-columns: 2.25rem 1fr;
  gap: 1rem;
  padding: 1.25rem 0;
  border-top: 1px solid #2a3a55;
}

.method-steps li:last-child {
  border-bottom: 1px solid #2a3a55;
}

.method-steps li > span {
  color: var(--gold-bright);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.method-steps strong {
  color: var(--white);
  font-size: 1rem;
  text-transform: uppercase;
}

.method-steps p {
  margin: 0.3rem 0 0;
  color: #9eabba;
  font-size: 0.85rem;
}

.live-story__media {
  display: grid;
  gap: 1.5rem;
}

.media-card {
  margin: 0;
  overflow: hidden;
  border: 1px solid #2a3a55;
  background: var(--navy-900);
}

.media-card picture {
  display: block;
  overflow: hidden;
}

.media-card--wide picture {
  aspect-ratio: 16 / 9;
}

.media-card--zoom {
  width: 82%;
  margin-left: auto;
}

.media-card--zoom picture {
  aspect-ratio: 3 / 2;
}

.media-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-card figcaption {
  display: grid;
  grid-template-columns: 10rem 1fr;
  gap: 1rem;
  padding: 1.1rem 1.3rem;
  line-height: 1.45;
}

.media-card figcaption span {
  color: var(--gold-bright);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.media-card figcaption strong {
  color: var(--white);
  font-size: 0.9rem;
}

.imagery-note {
  max-width: 44rem;
  margin: 0.25rem 0 0 auto;
  color: #8997aa;
  font-size: 0.76rem;
  text-align: right;
}

/* Curriculum */

.curriculum {
  background: var(--paper);
}

.section-heading {
  display: grid;
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  align-items: end;
  gap: 4rem;
}

.section-heading h2 {
  max-width: 50rem;
  margin-bottom: 0;
}

.section-heading > p {
  margin: 0 0 0.4rem;
  color: var(--muted);
}

.curriculum-rail {
  display: flex;
  min-height: 28rem;
  overflow: hidden;
  border: 1px solid #cdd3dc;
  background: var(--white);
}

.curriculum-stage {
  display: flex;
  min-width: 0;
  flex: 1 1 0;
  flex-direction: column;
  border-right: 1px solid #cdd3dc;
  transition: flex-grow 320ms ease, background-color 220ms ease;
}

.curriculum-stage:last-child {
  border-right: 0;
}

.curriculum-stage.is-active {
  flex-grow: 2.35;
  background: var(--navy-900);
}

.curriculum-stage button {
  display: grid;
  width: 100%;
  min-height: 11rem;
  grid-template-columns: 1fr;
  align-content: start;
  gap: 0.8rem;
  border: 0;
  padding: 1.5rem;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
}

.curriculum-stage.is-active button {
  color: var(--white);
}

.curriculum-stage__number {
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.curriculum-stage__title {
  max-width: 15rem;
  font-size: clamp(1.15rem, 1.7vw, 1.55rem);
  font-weight: 750;
  letter-spacing: -0.025em;
  line-height: 1.15;
}

.curriculum-stage__time {
  color: var(--muted);
  font-size: 0.75rem;
}

.curriculum-stage.is-active .curriculum-stage__time {
  color: #aeb9ca;
}

.curriculum-stage__content {
  display: none;
  margin-top: auto;
  padding: 1.5rem 2rem 2rem;
}

.curriculum-stage.is-active .curriculum-stage__content {
  display: block;
}

.curriculum-stage__content > p {
  max-width: 32rem;
  margin-bottom: 1.4rem;
  color: #dce3ee;
  font-size: 1.08rem;
}

.curriculum-stage__content ul {
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem 1.5rem;
  list-style: none;
}

.curriculum-stage__content li {
  position: relative;
  padding-left: 1.2rem;
  color: #aeb9ca;
  font-size: 0.86rem;
}

.curriculum-stage__content li::before {
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 0.36rem;
  height: 0.36rem;
  background: var(--gold);
  content: "";
}

.curriculum-outcome {
  display: grid;
  grid-template-columns: 12rem 1fr;
  gap: 1rem;
  padding: 1.5rem 2rem;
  border-right: 1px solid #cdd3dc;
  border-bottom: 1px solid #cdd3dc;
  border-left: 1px solid #cdd3dc;
  background: var(--white);
}

.curriculum-outcome span {
  color: var(--navy-700);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.curriculum-outcome p {
  margin: 0;
  font-weight: 650;
}

/* Reviews */

.reviews {
  background: var(--navy-900);
  color: #dce3ee;
}

.reviews__grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  align-items: stretch;
  gap: clamp(3rem, 8vw, 7rem);
}

.reviews__summary {
  padding: 0.5rem 0;
}

.reviews__score {
  margin: 0 0 0.3rem;
  color: var(--white);
  font-size: clamp(4.6rem, 8vw, 7rem);
  font-weight: 750;
  letter-spacing: -0.07em;
  line-height: 0.95;
}

.reviews__score span {
  color: #aeb9ca;
  font-size: 0.28em;
  letter-spacing: -0.03em;
}

.reviews__stars {
  margin-bottom: 1.25rem;
  color: var(--gold-bright);
  letter-spacing: 0.12em;
}

.reviews__summary > p:not(.eyebrow):not(.reviews__score) {
  max-width: 20rem;
  color: #aeb9ca;
}

.reviews__summary a {
  color: var(--white);
  font-size: 0.86rem;
  font-weight: 650;
}

.review-carousel {
  display: flex;
  min-height: 30rem;
  flex-direction: column;
  border-left: 1px solid #40506a;
  padding-left: clamp(2rem, 5vw, 5rem);
}

.review-carousel__viewport {
  position: relative;
  flex: 1;
}

.review {
  display: none;
}

.review.is-active {
  display: block;
}

.review__quote {
  max-width: 48rem;
  margin-bottom: 2.75rem;
  color: var(--white);
  font-size: clamp(1.75rem, 3.25vw, 3.35rem);
  font-weight: 520;
  letter-spacing: -0.035em;
  line-height: 1.25;
}

.review__author {
  display: flex;
  flex-direction: column;
  margin-bottom: 0;
  color: var(--white);
}

.review__author span {
  color: #9eabba;
  font-size: 0.82rem;
}

.review-carousel__controls {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding-top: 1.5rem;
  border-top: 1px solid #40506a;
}

.review-carousel__controls button {
  display: grid;
  width: 3rem;
  height: 3rem;
  place-items: center;
  border: 1px solid #62718a;
  border-radius: 50%;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  font-size: 1.15rem;
}

.review-carousel__controls button:hover {
  border-color: var(--gold);
  color: var(--gold-bright);
}

.review-carousel__controls span {
  color: #9eabba;
  font-size: 0.82rem;
}

.review-context {
  max-width: 42rem;
  margin: 1.2rem 0 0;
  color: #8997aa;
  font-size: 0.75rem;
}

/* Instructor */

.instructor__grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.86fr) minmax(0, 1.14fr);
  align-items: center;
  gap: clamp(3rem, 9vw, 8.5rem);
}

.instructor__portrait {
  position: relative;
  margin: 0;
}

.instructor__portrait::after {
  position: absolute;
  right: -1.25rem;
  bottom: 3.5rem;
  z-index: -1;
  width: 46%;
  height: 42%;
  background: var(--gold);
  content: "";
}

.instructor__portrait picture {
  display: block;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--paper);
}

.instructor__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.instructor__portrait figcaption {
  padding: 1rem 0 0;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.035em;
}

.instructor__copy blockquote {
  margin: 2.25rem 0;
  padding-left: 1.5rem;
  border-left: 4px solid var(--gold);
  color: var(--navy-800);
  font-size: clamp(1.3rem, 2vw, 1.75rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.45;
}

.instructor__copy > p:not(.eyebrow) {
  max-width: 42rem;
  color: var(--muted);
}

/* Resources */

.resources {
  border-block: 1px solid var(--line);
  background: var(--paper);
}

.resource-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid #c8cfd9;
  border-left: 1px solid #c8cfd9;
}

.resource-list article {
  min-height: 15rem;
  border-right: 1px solid #c8cfd9;
  border-bottom: 1px solid #c8cfd9;
  padding: 1.6rem;
  background: rgba(255, 255, 255, 0.48);
}

.resource-list article > span {
  display: block;
  margin-bottom: 2.2rem;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.resource-list h3 {
  margin-bottom: 0.75rem;
  font-size: 1.14rem;
  letter-spacing: -0.02em;
}

.resource-list p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

/* Enrolment */

.enrolment {
  background: var(--navy-950);
  color: #cfd7e4;
}

.enrolment h2,
.enrolment h3 {
  color: var(--white);
}

.enrolment__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
  align-items: start;
  gap: clamp(3rem, 9vw, 8rem);
}

.enrolment__copy > p:not(.eyebrow) {
  max-width: 40rem;
  color: #aeb9ca;
  font-size: 1.08rem;
}

.course-facts {
  margin: 3rem 0 0;
  border-top: 1px solid #31415d;
}

.course-facts div {
  display: grid;
  grid-template-columns: 9rem 1fr;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid #31415d;
}

.course-facts dt {
  color: #8190a5;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.course-facts dd {
  margin: 0;
  color: var(--white);
  font-size: 0.92rem;
}

.price-card {
  border-top: 6px solid var(--gold);
  padding: clamp(1.75rem, 4vw, 3rem);
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
}

.price-card__label {
  margin-bottom: 1.5rem;
  color: var(--navy-700);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.price-card__amount {
  color: var(--navy-950);
  font-size: clamp(4.8rem, 8vw, 7.25rem);
  font-weight: 760;
  letter-spacing: -0.08em;
  line-height: 0.9;
}

.price-card__amount > span {
  margin-right: 0.1em;
  font-size: 0.32em;
  vertical-align: top;
}

.price-card__amount small {
  font-size: 0.18em;
  letter-spacing: 0.02em;
}

.price-card__once {
  margin: 0.8rem 0 1.75rem;
  color: var(--muted);
  font-size: 0.82rem;
}

.price-card ul {
  margin: 0 0 2rem;
  padding: 0;
  list-style: none;
}

.price-card li {
  position: relative;
  padding: 0.75rem 0 0.75rem 1.5rem;
  border-top: 1px solid var(--line);
  font-size: 0.9rem;
}

.price-card li:last-child {
  border-bottom: 1px solid var(--line);
}

.price-card li::before {
  position: absolute;
  top: 1.15rem;
  left: 0;
  width: 0.5rem;
  height: 0.5rem;
  background: var(--green);
  content: "";
}

.secure-note {
  margin: 0.9rem 0 0;
  color: var(--muted);
  font-size: 0.72rem;
  text-align: center;
}

.upgrade-card {
  display: grid;
  margin-top: 4.5rem;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 4rem;
  padding: 2rem;
  border: 1px solid #3b4b65;
}

.upgrade-card h3 {
  margin: 0;
  font-size: 1.65rem;
}

.upgrade-card p:last-child {
  margin: 0;
  color: #aeb9ca;
}

.upgrade-card a {
  color: var(--white);
}

.after-enrol {
  display: grid;
  margin-top: 2rem;
  grid-template-columns: 11rem 1fr;
  gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #31415d;
}

.after-enrol > p {
  color: var(--white);
}

.after-enrol ol {
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  list-style: none;
}

.after-enrol li {
  color: #aeb9ca;
  font-size: 0.8rem;
}

.after-enrol li span {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--gold-bright);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* FAQ */

.faq__grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  align-items: start;
  gap: clamp(3rem, 9vw, 8rem);
}

.faq__intro {
  position: sticky;
  top: 9.5rem;
}

.faq__intro a {
  color: var(--navy-700);
  font-weight: 700;
}

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

.faq details {
  border-bottom: 1px solid var(--line);
}

.faq summary {
  position: relative;
  padding: 1.55rem 3.25rem 1.55rem 0;
  color: var(--navy-950);
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 700;
  list-style: none;
}

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

.faq summary::after {
  position: absolute;
  top: 1.35rem;
  right: 0;
  display: grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
  border: 1px solid var(--line);
  color: var(--navy-700);
  content: "+";
  font-size: 1.2rem;
  font-weight: 450;
}

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

.faq details p {
  max-width: 48rem;
  margin: -0.3rem 0 1.7rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.faq details a {
  color: var(--navy-700);
  font-weight: 650;
}

/* Footer */

.site-footer {
  padding-block: 4rem 2rem;
  border-top: 1px solid #2a3a55;
  background: var(--navy-950);
  color: #98a5b8;
}

.site-footer__top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 2rem;
  padding-bottom: 3rem;
}

.brand--footer {
  display: inline-block;
}

.brand__wordmark {
  width: min(15rem, 72vw);
  height: auto;
}

.site-footer__top > div:first-child p {
  margin: 1rem 0 0;
  font-size: 0.85rem;
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.site-footer__links a,
.site-footer__link-button {
  color: #cfd7e4;
  font-size: 0.82rem;
}

.site-footer__link-button {
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
  font-family: inherit;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

.site-footer__link-button:hover {
  color: var(--white);
}

.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid #2a3a55;
}

.site-footer__bottom p {
  margin: 0;
  font-size: 0.7rem;
}

.site-footer__bottom a {
  color: var(--gold-bright);
  font-weight: 700;
}

/* Checkout modal and fixed actions */

.mobile-cta {
  display: none;
}

.mobile-lead-offer {
  display: none;
}

.whatsapp {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 70;
  display: grid;
  width: 3.35rem;
  height: 3.35rem;
  place-items: center;
  border: 2px solid var(--white);
  border-radius: 50%;
  background: #1f9f54;
  color: var(--white);
  box-shadow: 0 10px 30px rgba(7, 18, 37, 0.24);
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  place-items: center;
  padding: 1.25rem;
}

.modal.is-open {
  display: grid;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 18, 37, 0.8);
}

.modal__card {
  position: relative;
  z-index: 1;
  width: min(100%, 34rem);
  max-height: calc(100vh - 2.5rem);
  max-height: calc(100dvh - 2.5rem);
  overflow-y: auto;
  overscroll-behavior: contain;
  border-top: 6px solid var(--gold);
  padding: clamp(1.5rem, 5vw, 3rem);
  background: var(--white);
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.35);
}

.modal__card--lead {
  width: min(100%, 36rem);
}

.modal__brand {
  display: flex;
  margin: 0 3.25rem 1.5rem 0;
  align-items: center;
  gap: 0.65rem;
  color: var(--brand-navy);
  font-size: 0.79rem;
  font-weight: 800;
  letter-spacing: -0.015em;
}

.modal__brand img {
  width: 1.75rem;
  height: 2.15rem;
  object-fit: contain;
}

.modal__card h2 {
  margin-bottom: 1rem;
  font-size: clamp(1.8rem, 4vw, 2.55rem);
}

.modal__card > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 0.9rem;
}

.modal__card > .modal__order-summary {
  display: grid;
  margin: 1.25rem 0 0;
  gap: 0.15rem;
  border-left: 3px solid var(--gold);
  padding: 0.75rem 0.9rem;
  background: var(--cream);
  color: var(--navy-950);
}

.modal__order-summary strong {
  color: var(--navy-950);
  font-size: 0.82rem;
}

.modal__order-summary span {
  color: var(--muted);
  font-size: 0.76rem;
}

[data-lead-step] > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 0.9rem;
}

.modal__close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  display: grid;
  width: 2.75rem;
  height: 2.75rem;
  place-items: center;
  border: 0;
  background: transparent;
  color: var(--navy-700);
  cursor: pointer;
  font-size: 1.8rem;
  line-height: 1;
}

.modal form {
  display: grid;
  margin-top: 1.75rem;
  gap: 0.55rem;
}

.modal form > label:not(.consent) {
  margin-top: 0.6rem;
  color: var(--navy-900);
  font-size: 0.8rem;
  font-weight: 750;
}

.modal input[type="text"],
.modal input[type="email"],
.modal select {
  width: 100%;
  min-height: 3.25rem;
  border: 1px solid #b9c1ce;
  border-radius: 2px;
  padding: 0.75rem 0.9rem;
  background: var(--white);
  color: var(--ink);
}

.modal select {
  appearance: auto;
}

.modal input:focus,
.modal select:focus {
  border-color: var(--navy-700);
  outline: 3px solid rgba(201, 168, 76, 0.25);
}

.modal input[aria-invalid="true"],
.modal select[aria-invalid="true"] {
  border-color: var(--danger);
}

.consent {
  display: grid;
  margin: 0.8rem 0 1rem;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 0.65rem;
  color: var(--muted);
  font-size: 0.75rem;
  line-height: 1.45;
}

.consent input {
  width: 1.1rem;
  height: 1.1rem;
  margin: 0.12rem 0 0;
  accent-color: var(--navy-800);
}

.modal__privacy,
.modal__legal {
  margin: 0.1rem 0 0.8rem;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.5;
}

.modal__privacy a,
.modal__legal a {
  color: var(--navy-700);
  font-weight: 700;
}

.modal__actions {
  display: grid;
  margin-top: 0.85rem;
  gap: 0.65rem;
}

.button--quiet {
  border-color: var(--line);
  background: transparent;
  color: var(--navy-900);
}

.button--quiet:hover {
  border-color: var(--navy-700);
  background: var(--paper);
}

.lead-download {
  margin: 0.75rem 0 1.25rem;
}

.honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

[data-lead-step][hidden] {
  display: none !important;
}

.form-status {
  min-height: 1.4rem;
  margin: 0.4rem 0 0;
  color: var(--navy-700);
  font-size: 0.78rem;
  text-align: center;
}

.form-status.is-error {
  color: var(--danger);
}

.form-status.is-success {
  color: var(--green);
}

/* Tablet */

@media (max-width: 1050px) {
  .site-nav__inner {
    grid-template-columns: auto auto 1fr;
  }

  .nav-links {
    justify-content: flex-end;
    gap: 1.2rem;
  }

  .nav-enrol {
    display: none;
  }

  .hero__grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    gap: 2.5rem;
  }

  h1 {
    font-size: clamp(3.15rem, 7.2vw, 4.85rem);
  }

  .hero__copy {
    padding-left: 1rem;
  }

  .proof-line {
    flex-wrap: wrap;
  }

  .audience__grid,
  .live-story__grid,
  .instructor__grid,
  .enrolment__grid {
    gap: 3.5rem;
  }

  .curriculum-stage.is-active {
    flex-grow: 2.8;
  }

  .curriculum-stage__content ul {
    grid-template-columns: 1fr;
  }

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

/* Mobile */

@media (max-width: 760px) {
  :root {
    --section-space: 4.75rem;
  }

  html {
    scroll-padding-top: 7.5rem;
  }

  body {
    padding-bottom: calc(5rem + env(safe-area-inset-bottom));
  }

  .shell {
    width: min(calc(100% - 2.5rem), var(--shell));
  }

  .cohort-strip__inner {
    min-height: 2.5rem;
    gap: 0.55rem;
    font-size: 0.68rem;
  }

  .cohort-strip__times {
    display: none;
  }

  .cohort-strip__link {
    font-size: 0.66rem;
  }

  .site-nav {
    top: 2.5rem;
  }

  .site-nav__inner {
    min-height: 4.25rem;
    grid-template-columns: 1fr auto;
    gap: 1rem;
  }

  .brand__mark-image {
    width: 1.85rem;
    height: 2.25rem;
  }

  .nav-toggle {
    display: grid;
    width: 2.75rem;
    height: 2.75rem;
    place-content: center;
    gap: 0.4rem;
    border: 0;
    background: transparent;
    cursor: pointer;
  }

  .nav-toggle span:not(.sr-only) {
    display: block;
    width: 1.4rem;
    height: 2px;
    background: var(--navy-950);
    transition: transform 180ms ease;
  }

  .nav-toggle[aria-expanded="true"] span:nth-last-child(2) {
    transform: translateY(4px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .nav-links {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 0.5rem 1.25rem 1rem;
    background: var(--white);
    box-shadow: 0 16px 30px rgba(7, 18, 37, 0.1);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    padding: 0.75rem 0;
    border-bottom: 1px solid #edf0f4;
  }

  .hero {
    padding-block: 3.75rem 4.5rem;
  }

  .hero::before {
    width: 0.4rem;
  }

  .hero__grid,
  .audience__grid,
  .live-story__grid,
  .instructor__grid,
  .enrolment__grid,
  .reviews__grid,
  .faq__grid {
    grid-template-columns: 1fr;
  }

  .hero__grid {
    display: flex;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
  }

  .hero__copy {
    display: contents;
    padding-left: 0;
  }

  h1 {
    order: 2;
    font-size: clamp(2.85rem, 13vw, 4.1rem);
  }

  .hero__copy .eyebrow {
    order: 1;
  }

  .hero__lead {
    order: 3;
  }

  .hero__visual {
    order: 4;
    margin: 1.35rem 0 2rem;
  }

  .hero__body {
    order: 5;
  }

  .hero__actions {
    order: 6;
  }

  .hero__microcopy {
    order: 7;
  }

  .proof-line {
    order: 8;
  }

  h2 {
    font-size: clamp(2.25rem, 10vw, 3.2rem);
  }

  .hero__body {
    font-size: 1rem;
  }

  .hero__actions {
    align-items: stretch;
    flex-direction: column;
    gap: 0.8rem;
  }

  .hero__actions .text-link {
    justify-content: center;
  }

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

  .proof-line__divider {
    display: none;
  }

  .hero__visual picture {
    aspect-ratio: 4 / 3;
  }

  .hero__visual img {
    object-position: center top;
  }

  .hero__visual::before {
    top: -0.65rem;
    right: -0.65rem;
  }

  .audience-marquee span {
    padding: 0.9rem 1rem;
    font-size: 0.66rem;
  }

  .audience__grid,
  .live-story__grid,
  .instructor__grid,
  .enrolment__grid,
  .reviews__grid,
  .faq__grid {
    gap: 2.75rem;
  }

  .time-panel {
    padding: 1.5rem;
  }

  .media-card--zoom {
    width: 100%;
  }

  .media-card figcaption {
    grid-template-columns: 1fr;
    gap: 0.45rem;
  }

  .imagery-note {
    text-align: left;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .curriculum-rail {
    min-height: 0;
    flex-direction: column;
  }

  .curriculum-stage {
    border-right: 0;
    border-bottom: 1px solid #cdd3dc;
  }

  .curriculum-stage:last-child {
    border-bottom: 0;
  }

  .curriculum-stage button {
    min-height: 0;
    padding: 1.4rem;
  }

  .curriculum-stage__content {
    padding: 0 1.4rem 1.5rem;
  }

  .curriculum-stage__content ul {
    grid-template-columns: 1fr;
  }

  .curriculum-outcome {
    grid-template-columns: 1fr;
    padding: 1.4rem;
  }

  .reviews__score {
    font-size: 5.5rem;
  }

  .review-carousel {
    min-height: 29rem;
    border-top: 1px solid #40506a;
    border-left: 0;
    padding-top: 2.5rem;
    padding-left: 0;
  }

  .review__quote {
    font-size: 1.8rem;
  }

  .instructor__grid {
    grid-template-areas: "copy" "portrait";
  }

  .instructor__portrait {
    grid-area: portrait;
  }

  .instructor__copy {
    grid-area: copy;
  }

  .resource-list {
    grid-template-columns: 1fr;
  }

  .resource-list article {
    min-height: 0;
  }

  .resource-list article > span {
    margin-bottom: 1.35rem;
  }

  .price-card__amount {
    font-size: 5.25rem;
  }

  .upgrade-card,
  .after-enrol {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .after-enrol ol {
    grid-template-columns: 1fr;
  }

  .faq__intro {
    position: static;
  }

  .site-footer {
    padding-bottom: 3rem;
  }

  .site-footer__top,
  .site-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer__bottom {
    gap: 0.75rem;
  }

  .mobile-lead-offer {
    display: block;
    padding-block: 4.5rem;
    border-block: 1px solid var(--line);
    background: var(--paper);
  }

  .mobile-lead-offer__inner {
    display: grid;
    gap: 1.5rem;
  }

  .mobile-lead-offer h2 {
    margin-bottom: 1rem;
    font-size: clamp(2.15rem, 10vw, 3rem);
  }

  .mobile-lead-offer p:last-child {
    margin-bottom: 0;
    color: var(--muted);
  }

  .mobile-lead-offer .button {
    width: 100%;
  }

  .mobile-cta {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 80;
    display: flex;
    min-height: 4.75rem;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    border-top: 1px solid #33435d;
    padding: 0.65rem 1rem calc(0.65rem + env(safe-area-inset-bottom));
    background: var(--navy-950);
    color: var(--white);
  }

  .mobile-cta > span {
    display: flex;
    flex-direction: column;
    font-size: 0.78rem;
    line-height: 1.3;
  }

  .mobile-cta small {
    color: #aeb9ca;
    font-size: 0.65rem;
  }

  .mobile-cta .button {
    min-height: 3.1rem;
    padding-inline: 1rem;
    font-size: 0.78rem;
  }

  .whatsapp {
    right: 1rem;
    bottom: calc(5.75rem + env(safe-area-inset-bottom));
    width: 3rem;
    height: 3rem;
  }

  .modal {
    place-items: end center;
    padding: 0.75rem 0.75rem max(0.75rem, env(safe-area-inset-bottom));
  }

  .modal__card {
    width: 100%;
    max-height: calc(100dvh - 1.5rem);
    border-radius: 0.5rem 0.5rem 0 0;
  }
}

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

  .brand__text {
    font-size: 0.92rem;
  }

  .brand__byline {
    display: none;
  }

  h1 {
    font-size: 2.55rem;
  }

  .cohort-strip__link {
    display: none;
  }

  .mobile-cta .button {
    font-size: 0.73rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .audience-marquee__track {
    animation: none;
  }
}
