:root {
  --navy-950: #04122f;
  --navy-900: #071b46;
  --navy-800: #0b285d;
  --navy-700: #123d78;
  --blue-400: #78b6db;
  --cream: #f6f2eb;
  --cream-2: #eee7dc;
  --paper: #fcfaf6;
  --ink: #10203d;
  --muted: #5c6472;
  --gold: #a66d18;
  --gold-light: #d7ac62;
  --gold-pale: #ead7af;
  --line: rgba(7, 27, 70, 0.16);
  --serif: "Bodoni 72", Didot, "Iowan Old Style", Georgia, serif;
  --sans: Montserrat, "Avenir Next", Avenir, "Helvetica Neue", Arial, sans-serif;
  --shadow: 0 28px 80px rgba(3, 16, 44, 0.18);
  --radius: 4px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: clip;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
}

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: white;
  background: var(--navy-950);
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

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

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 50%;
  display: flex;
  width: min(1180px, calc(100% - 64px));
  min-height: 88px;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  transform: translateX(-50%);
}

.header-identities {
  display: flex;
  flex: 1 1 auto;
  min-width: 0;
  align-items: center;
  gap: 22px;
}

.brand,
.footer-brand {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  position: relative;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 25px;
  letter-spacing: -4px;
  line-height: 1;
}

.brand-mark::after {
  position: absolute;
  right: -2px;
  width: 1px;
  height: 30px;
  background: var(--gold-light);
  content: "";
}

.brand-copy,
.footer-brand > span:last-child {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
  white-space: nowrap;
}

.brand-copy {
  white-space: nowrap;
}

.brand-copy strong,
.footer-brand strong {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.brand-copy small,
.footer-brand small {
  color: var(--gold-light);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.header-partner {
  display: flex;
  flex: 0 0 auto;
  margin-left: 0;
  align-items: center;
  gap: 6px;
  padding-left: 22px;
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.header-partner span {
  min-width: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.09em;
  line-height: 1.35;
  text-transform: uppercase;
  white-space: nowrap;
}

.header-partner img {
  width: 94px;
  height: auto;
  flex: 0 0 auto;
}

.desktop-nav {
  display: flex;
  flex: 0 0 auto;
  margin-left: auto;
  align-items: center;
  gap: 26px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}

.desktop-nav a {
  text-decoration: none;
  white-space: nowrap;
}

.desktop-nav > a:not(.nav-cta) {
  opacity: 0.78;
  transition: opacity 0.2s ease;
}

.desktop-nav > a:not(.nav-cta):hover {
  opacity: 1;
}

.nav-cta {
  min-height: 46px;
  padding: 12px 18px;
  color: #fff;
  border: 1px solid rgba(211, 165, 90, 0.75);
  border-radius: 999px;
  font-size: 13px;
  white-space: nowrap;
}

.hero {
  position: relative;
  display: grid;
  min-height: 840px;
  grid-template-columns: minmax(0, 1.12fr) minmax(380px, 0.88fr);
  grid-template-rows: 1fr;
  gap: 30px 50px;
  overflow: hidden;
  padding: 118px max(5vw, calc((100vw - 1180px) / 2)) 0;
  color: #fff;
  background:
    radial-gradient(circle at 78% 25%, rgba(39, 105, 161, 0.45), transparent 34%),
    radial-gradient(circle at 12% 76%, rgba(166, 109, 24, 0.14), transparent 26%),
    linear-gradient(125deg, var(--navy-950) 0%, var(--navy-900) 58%, #0b315d 100%);
}

.hero::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(255, 255, 255, 0.22) 0.8px, transparent 0.8px);
  background-size: 28px 28px;
  content: "";
  opacity: 0.2;
  mask-image: linear-gradient(90deg, transparent, black 45%, black 100%);
}

.hero::after {
  position: absolute;
  top: 23%;
  right: -8%;
  width: 470px;
  height: 470px;
  border: 1px solid rgba(215, 172, 98, 0.2);
  border-radius: 50%;
  content: "";
}

.hero-orbit {
  position: absolute;
  z-index: 0;
  border: 1px solid rgba(120, 182, 219, 0.18);
  border-radius: 50%;
  pointer-events: none;
}

.orbit-one {
  top: 29%;
  right: 1%;
  width: 330px;
  height: 330px;
}

.orbit-two {
  top: 42%;
  right: 9%;
  width: 150px;
  height: 150px;
  border-color: rgba(215, 172, 98, 0.28);
}

.hero-copy,
.hero-visual {
  position: relative;
  z-index: 2;
}

.hero-copy {
  align-self: start;
  padding-bottom: 20px;
}

.eyebrow {
  display: flex;
  margin: 0 0 18px;
  align-items: center;
  gap: 12px;
  color: var(--gold-light);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.22em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow > span {
  display: inline-block;
  width: 52px;
  height: 1px;
  background: currentColor;
}

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

.workshop-label {
  margin: 0 0 14px 4px;
  color: var(--gold-light);
  font-size: clamp(16px, 2vw, 25px);
  font-weight: 600;
  letter-spacing: 0.44em;
  line-height: 1;
  text-transform: uppercase;
  transform: none;
}

.hero h1 {
  margin: 0;
  color: #fff;
  font-family: var(--serif);
  font-size: clamp(53px, 5.8vw, 91px);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.92;
  text-transform: uppercase;
}

.title-kicker {
  margin: 3px 0 22px 5px;
  color: #f7f2e9;
  font-size: clamp(13px, 1.25vw, 19px);
  font-weight: 500;
  letter-spacing: 0.46em;
  line-height: 1.35;
  text-transform: uppercase;
}

.hero h2 {
  max-width: 650px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(30px, 3.2vw, 48px);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.08;
}

.hero-question {
  margin: 8px 0 10px;
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: clamp(22px, 2.2vw, 32px);
  font-style: italic;
  line-height: 1.2;
}

.hero-description {
  max-width: 620px;
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 18px;
  line-height: 1.55;
}

.hero-meta {
  display: flex;
  margin: 0 0 14px;
  gap: 35px;
}

.hero-meta > div {
  display: flex;
  align-items: center;
  gap: 11px;
}

.hero-meta > div + div {
  padding-left: 30px;
  border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-meta span:not(.meta-icon) {
  display: flex;
  flex-direction: column;
}

.hero-meta strong {
  font-size: 16px;
  letter-spacing: 0.06em;
  line-height: 1.3;
  text-transform: uppercase;
}

.hero-meta small {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  letter-spacing: 0.04em;
}

.meta-icon {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  color: var(--gold-light);
}

.meta-icon svg {
  width: 32px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.button {
  display: inline-flex;
  min-height: 66px;
  padding: 0 32px;
  align-items: center;
  justify-content: center;
  gap: 24px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.11em;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button > span {
  flex: 0 0 auto;
}

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

.button:focus-visible,
.desktop-nav a:focus-visible,
.text-link:focus-visible,
.mobile-sticky:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 4px;
}

.button-gold {
  color: #fff;
  background: linear-gradient(135deg, #8f5910, #b97c22 55%, #cb9643);
  box-shadow: 0 16px 35px rgba(116, 70, 9, 0.3);
}

.button-gold:hover {
  box-shadow: 0 20px 42px rgba(116, 70, 9, 0.42);
}

.button-note {
  margin: 10px 0 0 5px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-visual {
  display: flex;
  min-height: 640px;
  align-items: start;
  justify-content: center;
}

.portrait-frame {
  position: relative;
  width: min(100%, 485px);
  height: 650px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 0;
  border-radius: 245px 245px 0 0;
  background:
    radial-gradient(circle at 52% 35%, rgba(119, 186, 218, 0.62), transparent 40%),
    linear-gradient(160deg, #cce0e7 0%, #83b5c9 36%, #17517e 69%, #071b46 100%);
  box-shadow: var(--shadow);
}

.portrait-frame::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.5) 0.7px, transparent 0.8px);
  background-size: 22px 22px;
  content: "";
  opacity: 0.22;
}

.portrait-frame > img {
  position: absolute;
  z-index: 2;
  bottom: -2px;
  left: 50%;
  width: 101%;
  max-width: none;
  transform: translateX(-50%);
  filter: drop-shadow(0 20px 35px rgba(4, 18, 47, 0.2));
}

.portrait-frame > img.hero-art {
  top: 0;
  right: 0;
  bottom: auto;
  left: auto;
  width: auto;
  height: 160%;
  transform: none;
  filter: saturate(0.95) contrast(1.02);
}

.portrait-halo {
  position: absolute;
  z-index: 1;
  top: 70px;
  left: 50%;
  width: 330px;
  height: 330px;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 50%;
  transform: translateX(-50%);
}

.portrait-halo::before,
.portrait-halo::after {
  position: absolute;
  border: 1px solid rgba(215, 172, 98, 0.58);
  border-radius: 50%;
  content: "";
}

.portrait-halo::before {
  inset: 34px;
}

.portrait-halo::after {
  inset: 90px;
}

.portrait-name {
  position: absolute;
  z-index: 4;
  right: 20px;
  bottom: 22px;
  left: 20px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(4, 18, 47, 0.82);
  box-shadow: 0 15px 30px rgba(3, 15, 40, 0.25);
  backdrop-filter: blur(12px);
}

.portrait-name span,
.portrait-name strong,
.portrait-name small {
  display: block;
}

.portrait-name span {
  color: var(--gold-light);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.portrait-name strong {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
  line-height: 1.25;
}

.portrait-name small {
  color: rgba(255, 255, 255, 0.65);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.science-card {
  position: absolute;
  z-index: 5;
  top: 52%;
  right: -16px;
  width: 150px;
  padding: 15px 17px 16px 38px;
  color: var(--navy-900);
  background: rgba(252, 250, 246, 0.94);
  box-shadow: 0 15px 40px rgba(3, 16, 44, 0.2);
}

.science-card p,
.science-card strong {
  display: block;
  margin: 0;
  font-size: 9px;
  letter-spacing: 0.1em;
  line-height: 1.5;
  text-transform: uppercase;
}

.science-dot {
  position: absolute;
  top: 22px;
  left: 16px;
  width: 8px;
  height: 8px;
  border: 2px solid var(--gold);
  border-radius: 50%;
}

.hero-benefits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 64px);
  max-width: 650px;
  margin: 0 0 14px;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(215, 172, 98, 0.24);
  background: linear-gradient(90deg, rgba(215, 172, 98, 0.08), transparent 90%);
}

.hero-benefit {
  display: grid;
  min-height: 0;
  grid-template-columns: max-content 118px;
  align-items: center;
  justify-content: start;
  justify-items: start;
  gap: 8px;
  padding: 8px 18px;
  text-align: left;
}

.hero-benefit:first-child {
  padding-left: 18px;
}

.hero-benefit + .hero-benefit {
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-benefit:nth-child(3) {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-left: 0;
}

.hero-benefit:nth-child(4) {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-benefit > strong {
  justify-self: start;
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 400;
  line-height: 1;
}

.hero-benefit > span:not(.medal-icon) {
  justify-self: start;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.09em;
  line-height: 1.4;
  text-transform: uppercase;
}

.hero-benefit b {
  color: var(--gold-pale);
  font-weight: 800;
}

.medal-icon {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  color: #f1c56f;
  border: 1px solid rgba(241, 197, 111, 0.52);
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, rgba(255, 232, 166, 0.28), rgba(166, 109, 24, 0.16));
  box-shadow: 0 0 22px rgba(215, 172, 98, 0.2);
  justify-self: start;
}

.medal-icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.section-pad {
  padding: 120px max(5vw, calc((100vw - 1180px) / 2));
}

.context-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, transparent 0 49.95%, rgba(7, 27, 70, 0.08) 50%, transparent 50.05%),
    var(--cream);
}

.context-section::after {
  position: absolute;
  top: -230px;
  right: -220px;
  width: 480px;
  height: 480px;
  border: 1px solid rgba(166, 109, 24, 0.2);
  border-radius: 50%;
  content: "";
}

.section-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
}

.section-heading h2,
.audience-title h2,
.offer-copy h2 {
  margin: 0;
  color: var(--navy-900);
  font-family: var(--serif);
  font-size: clamp(45px, 5vw, 74px);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 0.98;
}

.display-accent {
  margin: 12px 0 0;
  color: var(--gold);
  font-family: var(--serif);
  font-size: clamp(25px, 3vw, 38px);
  font-style: italic;
  line-height: 1.18;
}

.context-copy {
  max-width: 540px;
  color: var(--muted);
  font-size: 18px;
}

.context-copy p {
  margin: 0 0 19px;
}

.context-copy .lead {
  margin-bottom: 23px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 28px;
  line-height: 1.25;
}

.context-copy strong {
  color: var(--navy-900);
}

.text-link {
  display: inline-flex;
  margin-top: 11px;
  align-items: center;
  gap: 20px;
  color: var(--gold);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-decoration: none;
  text-transform: uppercase;
}

.program-section {
  color: #fff;
  background:
    radial-gradient(circle at 15% 2%, rgba(45, 113, 165, 0.35), transparent 30%),
    var(--navy-950);
}

.program-intro {
  display: grid;
  grid-template-columns: 1.45fr 0.55fr;
  margin-bottom: 58px;
  align-items: end;
  gap: 70px;
}

.program-intro .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -33px;
}

.program-intro h2 {
  max-width: 780px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(42px, 4.7vw, 70px);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1;
}

.program-intro > p:last-child {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 18px;
}

.lesson-list {
  display: grid;
  gap: 18px;
}

.lesson-card {
  position: relative;
  display: grid;
  min-height: 250px;
  grid-template-columns: 120px 1fr;
  align-items: stretch;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
}

.lesson-number {
  position: relative;
  z-index: 2;
  display: flex;
  padding: 28px 20px;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid currentColor;
  color: rgba(255, 255, 255, 0.22);
}

.lesson-number span {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.lesson-number strong {
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 53px;
  font-weight: 400;
  line-height: 1;
}

.lesson-content {
  position: relative;
  z-index: 2;
  display: flex;
  padding: 28px 38px;
  flex-direction: column;
  justify-content: center;
}

.lesson-date {
  margin: 0 0 8px;
  color: var(--gold-light);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.lesson-date span {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
}

.lesson-content h3 {
  max-width: 850px;
  margin: 0 0 8px;
  font-family: var(--serif);
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1;
}

.lesson-content h3 em {
  color: var(--gold-light);
  font-style: italic;
  font-weight: 400;
}

.lesson-content > p:not(.lesson-date) {
  max-width: 680px;
  margin: 0 0 20px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
}

.lesson-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.lesson-tags span {
  padding: 6px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.lesson-symbol {
  position: absolute;
  z-index: 0;
  top: -34px;
  right: 15px;
  color: rgba(255, 255, 255, 0.035);
  font-family: var(--serif);
  font-size: 220px;
  line-height: 1;
}

.lesson-blue {
  background: linear-gradient(110deg, rgba(15, 55, 109, 0.85), rgba(7, 27, 70, 0.5));
}

.lesson-light {
  background: linear-gradient(110deg, rgba(33, 91, 132, 0.48), rgba(9, 31, 66, 0.7));
}

.lesson-warm {
  background: linear-gradient(110deg, rgba(112, 67, 17, 0.38), rgba(7, 27, 70, 0.68));
}

.authority-section {
  display: grid;
  min-height: 760px;
  grid-template-columns: minmax(360px, 0.92fr) minmax(420px, 1.08fr);
  color: #fff;
  background: var(--navy-900);
}

.authority-portrait {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  background:
    radial-gradient(circle at 26% 18%, rgba(255, 255, 255, 0.92) 0%, rgba(255, 252, 247, 0.52) 32%, transparent 62%),
    linear-gradient(145deg, #fbf7f1 0%, #eee3da 56%, #d9c6bc 100%);
}

.authority-portrait::after {
  position: absolute;
  right: -110px;
  bottom: -80px;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  content: "";
}

.portrait-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.09) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: 0;
  mask-image: linear-gradient(to bottom, transparent, black 30%, black);
}

.authority-portrait img {
  position: absolute;
  z-index: 2;
  right: auto;
  bottom: -5.3%;
  left: 50%;
  width: auto;
  height: 100%;
  max-width: none;
  object-fit: contain;
  object-position: center bottom;
  transform: translateX(-48%);
}

.monogram {
  position: absolute;
  z-index: 3;
  top: 28px;
  bottom: auto;
  left: 30px;
  color: rgba(7, 27, 70, 0.22);
  font-family: var(--serif);
  font-size: 58px;
  letter-spacing: -8px;
}

.authority-copy {
  display: flex;
  max-width: 720px;
  padding: 100px clamp(55px, 7vw, 120px);
  flex-direction: column;
  justify-content: center;
}

.authority-copy h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(60px, 7vw, 104px);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 0.78;
}

.authority-copy h2 em {
  color: var(--gold-light);
  font-weight: 400;
}

.credentials {
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.gold-rule {
  width: 74px;
  height: 2px;
  margin: 30px 0;
  background: var(--gold-light);
}

.authority-copy > p:not(.eyebrow):not(.credentials) {
  max-width: 570px;
  margin: 0 0 17px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
}

.authority-copy strong {
  color: #fff;
  font-weight: 600;
}

.authority-copy blockquote {
  max-width: 530px;
  margin: 20px 0 0;
  padding: 16px 0 0 23px;
  color: var(--gold-pale);
  border-left: 1px solid var(--gold-light);
  font-family: var(--serif);
  font-size: 20px;
  font-style: italic;
  line-height: 1.4;
}

.audience-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(450px, 1.1fr);
  gap: 110px;
  background: var(--paper);
}

.audience-title h2 {
  font-size: clamp(42px, 4.5vw, 66px);
}

.audience-title > p:last-child {
  max-width: 500px;
  margin: 25px 0 0;
  color: var(--muted);
  font-size: 18px;
}

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

.benefit-list article {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 22px;
  padding: 27px 0;
  border-bottom: 1px solid var(--line);
}

.benefit-list article > span {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 24px;
}

.benefit-list h3 {
  margin: 0 0 5px;
  color: var(--navy-900);
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  line-height: 1.2;
}

.benefit-list p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.offer-section {
  position: relative;
  display: grid;
  min-height: 680px;
  grid-template-columns: minmax(0, 1fr) minmax(470px, 0.78fr);
  align-items: center;
  gap: 80px;
  overflow: hidden;
  padding: 100px max(5vw, calc((100vw - 1180px) / 2));
  color: #fff;
  background:
    radial-gradient(circle at 15% 80%, rgba(24, 91, 143, 0.5), transparent 32%),
    linear-gradient(125deg, var(--navy-950), var(--navy-900) 70%, #0f3c6b);
}

.offer-section::before {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.23) 0.7px, transparent 0.7px);
  background-size: 29px 29px;
  content: "";
  opacity: 0.12;
}

.offer-section::after {
  position: absolute;
  top: -220px;
  left: 34%;
  width: 590px;
  height: 590px;
  border: 1px solid rgba(215, 172, 98, 0.17);
  border-radius: 50%;
  content: "";
}

.offer-glow {
  position: absolute;
  right: 1%;
  bottom: -210px;
  width: 500px;
  height: 500px;
  border: 1px solid rgba(120, 182, 219, 0.22);
  border-radius: 50%;
}

.offer-copy,
.offer-card {
  position: relative;
  z-index: 2;
}

.offer-copy h2 {
  color: #fff;
  font-size: clamp(45px, 5vw, 72px);
}

.offer-copy > p:last-child {
  max-width: 590px;
  margin: 25px 0 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 18px;
}

.offer-card {
  padding: 42px 36px;
  color: var(--ink);
  border-top: 4px solid var(--gold);
  background: var(--paper);
  box-shadow: 0 34px 80px rgba(1, 9, 25, 0.38);
}

.offer-label {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.offer-card h3 {
  margin: 0;
  color: var(--navy-900);
  font-family: var(--serif);
  font-size: 43px;
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 0.98;
}

.offer-card ul {
  margin: 28px 0 30px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  list-style: none;
}

.offer-card li {
  display: flex;
  margin: 12px 0;
  align-items: center;
  gap: 10px;
  color: #3d485b;
  font-size: 17px;
}

.offer-card li > span:not(.medal-icon) {
  color: var(--gold);
  font-weight: 900;
}

.offer-card .certificate-row {
  margin-top: 16px;
  padding: 12px 14px;
  color: var(--navy-900);
  border: 1px solid rgba(166, 109, 24, 0.24);
  background: linear-gradient(90deg, rgba(234, 215, 175, 0.42), rgba(252, 250, 246, 0));
}

.medal-icon-small {
  width: 40px;
  height: 40px;
  color: #a66d18;
  border-color: rgba(166, 109, 24, 0.38);
  background: radial-gradient(circle at 35% 30%, #fff3d7, #e2b35d);
  box-shadow: 0 8px 18px rgba(166, 109, 24, 0.18);
}

.medal-icon-small svg {
  width: 22px;
  height: 22px;
}

.button-full {
  width: 100%;
  white-space: nowrap;
}

.secure-note,
.checkout-message {
  margin: 12px 0 0;
  color: #7a7f88;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-align: center;
  text-transform: uppercase;
}

.checkout-message {
  padding: 9px;
  color: var(--navy-900);
  background: var(--gold-pale);
  text-transform: none;
}

.site-footer {
  padding: 0 32px;
  color: rgba(255, 255, 255, 0.55);
  background: #020d24;
}

.site-footer-inner {
  display: grid;
  width: min(1180px, 100%);
  min-height: 96px;
  margin: 0 auto;
  grid-template-columns: max-content minmax(0, 1fr);
  align-items: center;
  justify-content: start;
  gap: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-identities {
  display: flex;
  flex: 0 0 auto;
  min-width: 0;
  align-items: center;
  gap: 22px;
}

.footer-brand .brand-mark {
  color: var(--gold-light);
}

.footer-brand strong {
  color: #fff;
}

.site-footer-inner > p {
  margin: 0;
  max-width: none;
  font-size: 11px;
  line-height: 1.6;
  text-wrap: pretty;
  orphans: 2;
  widows: 2;
}

.footer-partner {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 10px;
  padding-left: 22px;
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.footer-partner span {
  min-width: 112px;
  max-width: none;
  color: rgba(255, 255, 255, 0.62);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.09em;
  line-height: 1.35;
  text-transform: uppercase;
  white-space: nowrap;
}

.footer-partner img {
  width: 94px;
  height: auto;
  flex: 0 0 auto;
}

.mobile-sticky {
  display: none;
  white-space: nowrap;
}

@media (max-width: 1240px) {
  .site-header {
    gap: 28px;
  }

  .desktop-nav {
    gap: 0;
  }

  .desktop-nav > a:not(.nav-cta) {
    display: none;
  }

  .site-footer-inner {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 24px 0;
  }
}

@media (min-width: 921px) {
  .hero-copy {
    transform: none;
  }
}

@media (max-width: 1100px) {
  .desktop-nav {
    gap: 0;
  }

  .desktop-nav > a:not(.nav-cta) {
    display: none;
  }

  .hero {
    grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.75fr);
    gap: 35px;
  }

  .science-card {
    right: -5px;
  }

  .section-grid,
  .audience-section {
    gap: 65px;
  }

  .offer-section {
    gap: 60px;
  }

  .authority-portrait img {
    bottom: -4.7%;
    height: 89%;
  }
}

@media (max-width: 920px) {
  .site-header {
    width: calc(100% - 40px);
  }

  .desktop-nav > a:not(.nav-cta) {
    display: none;
  }

  .nav-cta {
    min-height: 46px;
    padding: 12px 15px;
    font-size: 13px;
  }

  .header-identities {
    gap: 18px;
  }

  .header-partner {
    padding-left: 18px;
  }

  .header-partner img {
    width: 88px;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    padding-right: 32px;
    padding-left: 32px;
  }

  .hero-copy {
    padding-bottom: 0;
  }

  .hero-visual {
    min-height: 600px;
  }

  .portrait-frame {
    height: 600px;
  }

  .section-grid,
  .audience-section,
  .offer-section {
    grid-template-columns: 1fr;
  }

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

  .program-intro {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .program-intro .eyebrow {
    margin-bottom: 0;
  }

  .authority-section {
    grid-template-columns: 1fr;
  }

  .authority-portrait {
    min-height: 700px;
  }

  .authority-portrait img {
    bottom: -5.3%;
    height: 100%;
  }

  .authority-copy {
    padding: 75px 45px;
  }

  .authority-copy h2 {
    font-size: 68px;
  }

  .audience-section,
  .offer-section {
    gap: 65px;
  }

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

  .site-footer-inner > p {
    max-width: 720px;
  }

  .site-footer {
    padding-right: 20px;
    padding-left: 20px;
  }
}

@media (max-width: 960px) {
  .desktop-nav {
    display: none;
  }

  .header-identities {
    width: 100%;
  }
}

@media (max-width: 660px) {
  body {
    padding-bottom: 70px;
  }

  .site-header {
    width: calc(100% - 32px);
    min-height: 142px;
  }

  .header-identities {
    display: grid;
    grid-template-columns: 1fr;
    justify-content: stretch;
    gap: 12px;
    padding: 14px 0;
  }

  .brand {
    gap: 10px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
    font-size: 22px;
  }

  .brand-mark::after {
    height: 27px;
  }

  .brand-copy strong {
    font-size: 16px;
  }

  .brand-copy small {
    font-size: 7px;
  }

  .header-partner {
    width: 100%;
    margin-left: 0;
    padding-top: 10px;
    padding-left: 0;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 4px;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    border-left: 0;
  }

  .header-partner span {
    max-width: 155px;
    font-size: 9px;
    letter-spacing: 0.07em;
    line-height: 1.3;
    text-align: left;
  }

  .header-partner img {
    width: 90px;
  }

  .desktop-nav {
    display: none;
  }

  .hero {
    padding: 168px 20px 0;
    background:
      radial-gradient(circle at 86% 35%, rgba(39, 105, 161, 0.4), transparent 35%),
      linear-gradient(150deg, var(--navy-950), var(--navy-900) 65%, #0b315d);
  }

  .hero::after,
  .hero-orbit {
    opacity: 0.55;
  }

  .hero-copy {
    text-align: left;
  }

  .eyebrow {
    margin-bottom: 14px;
    font-size: 12px;
    letter-spacing: 0.17em;
  }

  .eyebrow > span {
    width: 34px;
  }

  .workshop-label {
    margin-bottom: 10px;
    font-size: 13px;
    transform: none;
  }

  .hero h1 {
    font-size: clamp(39px, 12.2vw, 54px);
  }

  .title-kicker {
    margin-bottom: 28px;
    font-size: 10px;
    letter-spacing: 0.35em;
  }

  .hero h2 {
    font-size: 34px;
  }

  .hero-question {
    font-size: 24px;
  }

  .hero-description {
    font-size: 17px;
  }

  .hero-meta {
    flex-direction: column;
    gap: 12px;
  }

  .hero-meta > div + div {
    padding-top: 12px;
    padding-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.13);
    border-left: 0;
  }

  .hero-benefits {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 76px);
    width: 100vw;
    margin-bottom: 22px;
    margin-left: -20px;
    padding: 0;
  }

  .hero-benefit {
    min-height: 0;
    grid-template-columns: max-content 92px;
    gap: 6px;
    padding: 6px 3px;
  }

  .hero-benefit:first-child {
    padding-left: 3px;
  }

  .hero-benefit:nth-child(3) {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-left: 0;
  }

  .hero-benefit:nth-child(4) {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .hero-benefit > strong {
    font-size: 24px;
  }

  .hero-benefit > span:not(.medal-icon) {
    font-size: 12px;
    letter-spacing: 0.02em;
  }

  .hero-benefit .medal-icon {
    width: 38px;
    height: 38px;
  }

  .button {
    width: 100%;
    min-height: 66px;
    padding: 0 8px;
    gap: 8px;
    font-size: 13px;
    letter-spacing: 0.045em;
  }

  .button-note {
    text-align: center;
  }

  .hero-visual {
    min-height: 465px;
    margin-top: 12px;
  }

  .portrait-frame {
    width: 100%;
    height: 465px;
    border-radius: 200px 200px 0 0;
  }

  .portrait-frame > img {
    width: 107%;
  }

  .portrait-frame > img.hero-art {
    top: 0;
    right: 0;
    bottom: auto;
    width: auto;
    height: 160%;
  }

  .portrait-halo {
    top: 50px;
    width: 245px;
    height: 245px;
  }

  .portrait-name {
    right: 12px;
    bottom: 12px;
    left: 12px;
  }

  .science-card {
    top: 47%;
    right: -9px;
    width: 126px;
    padding-right: 10px;
    padding-left: 34px;
  }

  .section-pad {
    padding: 78px 20px;
  }

  .section-grid {
    gap: 42px;
  }

  .section-heading h2,
  .audience-title h2,
  .offer-copy h2 {
    font-size: 46px;
  }

  .display-accent {
    font-size: 26px;
  }

  .context-copy .lead {
    font-size: 24px;
  }

  .program-intro {
    margin-bottom: 38px;
  }

  .program-intro h2 {
    font-size: 44px;
  }

  .lesson-card {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .lesson-number {
    display: flex;
    padding: 15px 18px;
    flex-direction: row;
    align-items: center;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .lesson-number strong {
    font-size: 32px;
  }

  .lesson-content {
    padding: 24px 18px 28px;
  }

  .lesson-content h3 {
    font-size: 38px;
    line-height: 1.04;
  }

  .lesson-symbol {
    top: 65px;
    right: -5px;
    font-size: 150px;
  }

  .authority-section {
    grid-template-columns: 1fr;
  }

  .authority-portrait {
    min-height: 520px;
  }

  .authority-portrait img {
    bottom: -25px;
    height: min(500px, 160vw);
  }

  .monogram {
    top: 20px;
    left: 20px;
    font-size: 48px;
  }

  .authority-copy {
    padding: 72px 20px;
  }

  .authority-copy h2 {
    font-size: 70px;
  }

  .authority-copy blockquote {
    font-size: 18px;
  }

  .audience-section,
  .offer-section {
    gap: 45px;
  }

  .benefit-list article {
    gap: 14px;
  }

  .offer-section {
    min-height: auto;
    padding: 78px 20px;
  }

  .offer-card {
    padding: 30px 12px;
  }

  .offer-card .button {
    padding-right: 4px;
    padding-left: 4px;
    gap: 6px;
    letter-spacing: 0.01em;
  }

  .offer-card h3 {
    font-size: 38px;
  }

  .site-footer {
    padding: 0 20px;
  }

  .site-footer-inner {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 30px 0;
  }

  .footer-identities {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .footer-partner {
    width: 100%;
    padding-top: 18px;
    padding-left: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    border-left: 0;
  }

  .footer-partner img {
    width: 94px;
  }

  .mobile-sticky {
    position: fixed;
    z-index: 50;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    min-height: 70px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #fff;
    background: linear-gradient(90deg, #8c560f, #b87920, #c99442);
    box-shadow: 0 -8px 24px rgba(3, 16, 44, 0.22);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
    white-space: nowrap;
    text-decoration: none;
    text-transform: uppercase;
  }
}

@media (max-width: 359px) {
  .hero-benefit {
    grid-template-columns: max-content 84px;
    gap: 5px;
    padding-right: 2px;
    padding-left: 2px;
  }

  .hero-benefit:first-child {
    padding-left: 2px;
  }

  .hero-benefit > strong {
    font-size: 21px;
  }

  .hero-benefit > span:not(.medal-icon) {
    font-size: 10.5px;
  }

  .hero-benefit .medal-icon {
    width: 34px;
    height: 34px;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
