:root {
  --paper: #fbf6ef;
  --paper-soft: #fffaf4;
  --white: #ffffff;
  --mist: #eef5f1;
  --sage: #e4eee6;
  --line: #e4dcd2;
  --line-dark: rgba(255, 255, 255, 0.16);
  --ink: #2b2621;
  --muted: #6d655f;
  --coral: #c97864;
  --coral-dark: #a96051;
  --teal: #158783;
  --teal-soft: #e0f1ee;
  --gold: #b99055;
  --graphite: #293a36;
  --graphite-deep: #203430;
  --shadow: 0 22px 70px rgba(62, 47, 34, 0.11);
  --shadow-soft: 0 14px 42px rgba(62, 47, 34, 0.07);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.55;
  text-rendering: geometricPrecision;
  overflow-x: clip;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

.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;
}

.container {
  width: 100%;
  max-width: 1228px;
  margin: 0 auto;
  padding: 0 28px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  min-height: 74px;
  padding: 12px 28px;
  border-bottom: 1px solid rgba(37, 35, 33, 0.08);
  background: rgba(251, 246, 239, 0.9);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
  box-shadow: 0 10px 30px rgba(33, 28, 22, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
  font-weight: 760;
}

.brand__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 36px;
  color: var(--white);
  background: linear-gradient(135deg, var(--graphite), #3e5651);
  border-radius: 8px;
}

.brand__text {
  font-size: 1rem;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  color: var(--muted);
  font-size: 0.92rem;
}

.site-nav a {
  padding: 8px 0;
}

.site-nav a:hover {
  color: var(--ink);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
}

.nav-toggle__line {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  border-radius: 2px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 720;
  line-height: 1.2;
  text-align: center;
  overflow-wrap: anywhere;
  white-space: normal;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn--small {
  min-height: 42px;
  padding: 10px 14px;
  font-size: 0.9rem;
}

.btn--primary {
  color: var(--white);
  background: var(--coral);
  box-shadow: 0 14px 28px rgba(201, 120, 100, 0.24);
}

.btn--primary:hover {
  background: var(--coral-dark);
}

.btn--dark {
  color: var(--white);
  background: #314641;
}

.btn--ghost {
  color: var(--graphite);
  background: rgba(255, 255, 255, 0.68);
  border-color: rgba(37, 35, 33, 0.18);
}

.btn--outline {
  color: var(--graphite);
  background: var(--white);
  border-color: rgba(37, 35, 33, 0.18);
}

.btn--light {
  color: var(--graphite);
  background: var(--white);
}

.btn--dark-ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.24);
}

.section {
  padding: 96px 0;
}

.section--muted {
  background: var(--mist);
}

.section--warm {
  background: #f4ece1;
}

.section-header {
  max-width: 850px;
  margin: 0 0 42px;
}

.section-header--light {
  color: var(--white);
}

.section-header--light .lead,
.dark-section .lead,
.dark-section p {
  color: rgba(255, 255, 255, 0.74);
}

.section-note {
  max-width: 790px;
  margin-top: 18px;
  color: var(--muted);
}

.section-note--dark {
  color: rgba(255, 255, 255, 0.68);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--teal);
  font-size: 0.82rem;
  font-weight: 780;
  text-transform: uppercase;
}

.dark-section .eyebrow,
.final-cta .eyebrow {
  color: #82d2cd;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.05;
  font-weight: 790;
  overflow-wrap: anywhere;
}

h1 {
  max-width: 590px;
  font-size: 3.15rem;
}

h2 {
  font-size: 2.7rem;
}

h3 {
  font-size: 1.24rem;
}

p {
  margin: 0;
}

p + p,
p + ul,
ul + p,
.lead + p {
  margin-top: 18px;
}

.lead {
  max-width: 790px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 1.2rem;
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: calc(100svh - 74px);
  padding: 64px 0 54px;
  overflow: hidden;
  background:
    linear-gradient(90deg, #fbf6ef 0%, #fbf6ef 26%, rgba(251, 246, 239, 0.98) 38%, rgba(251, 246, 239, 0.76) 55%, rgba(251, 246, 239, 0.34) 78%, rgba(251, 246, 239, 0.1) 100%),
    #f2e9dc;
}

.hero__media {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 68%;
}

.hero__media::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(251, 246, 239, 0.98) 0%, rgba(251, 246, 239, 0.94) 18%, rgba(251, 246, 239, 0.76) 38%, rgba(251, 246, 239, 0.34) 64%, rgba(251, 246, 239, 0.06) 100%),
    linear-gradient(180deg, rgba(251, 246, 239, 0.02) 0%, rgba(251, 246, 239, 0.28) 100%);
}

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

.hero__content {
  position: relative;
  z-index: 1;
}

.hero__lead {
  max-width: 610px;
  margin-top: 22px;
  color: #5b534c;
  font-size: 1.14rem;
  overflow-wrap: anywhere;
}

.hero__actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.microcopy {
  max-width: 620px;
  margin-top: 16px;
  color: var(--muted);
  font-size: 0.94rem;
  overflow-wrap: anywhere;
}

.microcopy--light {
  color: rgba(255, 255, 255, 0.7);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  max-width: 630px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.proof-grid li {
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(43, 38, 33, 0.1);
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(37, 35, 33, 0.06);
  overflow-wrap: anywhere;
}

.ai-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 620px;
  margin-top: 18px;
}

.ai-pills span {
  padding: 8px 10px;
  color: var(--graphite);
  background: var(--teal-soft);
  border: 1px solid rgba(14, 137, 135, 0.18);
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 700;
}

.grid-2 {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.86fr);
  gap: 54px;
  align-items: start;
}

.grid-2--photo {
  align-items: center;
}

.section-copy {
  max-width: 720px;
}

.check-list,
.card ul,
.artifact-card ul,
.bio-card ul,
.document-stack ul,
.price-card ul,
.inline-list {
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.check-list li,
.card li,
.artifact-card li,
.bio-card li,
.document-stack li,
.price-card li,
.inline-list li {
  position: relative;
  padding-left: 22px;
  margin-top: 10px;
  color: var(--muted);
}

.check-list li::before,
.card li::before,
.artifact-card li::before,
.bio-card li::before,
.document-stack li::before,
.price-card li::before,
.inline-list li::before {
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 8px;
  height: 8px;
  content: "";
  background: var(--teal);
  border-radius: 50%;
}

.strong-line {
  padding: 20px 22px;
  margin-top: 28px;
  color: var(--graphite);
  background: var(--sage);
  border-left: 4px solid var(--teal);
  border-radius: 8px;
  font-weight: 760;
}

.system-flow {
  display: grid;
  gap: 14px;
}

.flow-card,
.card,
.artifact-card,
.case-card,
.bio-card,
.price-card {
  background: var(--white);
  border: 1px solid rgba(37, 35, 33, 0.1);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.flow-card {
  padding: 22px;
}

.flow-card span,
.artifact-card span,
.case-card > span,
.timeline-item span,
.card__icon,
.price-card__label {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--teal);
  font-size: 0.84rem;
  font-weight: 780;
}

.flow-card p,
.card p,
.artifact-card p,
.case-card p,
.bio-card p,
.price-card p {
  margin-top: 10px;
  color: var(--muted);
}

.flow-card.is-muted {
  background: #f4efe7;
}

.flow-card.is-accent {
  color: var(--graphite);
  background: #e8f2ed;
  border-color: rgba(21, 135, 131, 0.2);
}

.flow-card.is-accent span,
.flow-card.is-accent p {
  color: var(--muted);
}

.webinar {
  background: #f6ede3;
}

.webinar__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(480px, 1.18fr);
  gap: 58px;
  align-items: center;
}

.webinar__copy h2 {
  max-width: 590px;
}

.webinar__copy .lead {
  font-size: 1.12rem;
}

.webinar__media {
  min-width: 0;
}

.webinar__stage {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #eadfd3;
  border: 1px solid rgba(37, 35, 33, 0.12);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.webinar__video {
  display: block;
  width: 100%;
  height: 100%;
  background: #16201e;
  border: 0;
  object-fit: cover;
  object-position: center 36%;
}

.webinar__fallback {
  display: inline-flex;
  margin-top: 14px;
  color: var(--teal);
  border-bottom: 1px solid rgba(21, 135, 131, 0.32);
  font-weight: 720;
}

.webinar__fallback:hover {
  color: var(--graphite);
  border-color: currentColor;
}

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

.card {
  padding: 26px;
}

.card h3,
.artifact-card h3,
.case-card h3,
.bio-card h3,
.price-card h3 {
  margin-bottom: 8px;
}

.dark-section {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(86, 158, 149, 0.22), rgba(201, 120, 100, 0.12)),
    var(--graphite-deep);
}

.dark-section::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.75), transparent 80%);
}

.dark-section > .container {
  position: relative;
  z-index: 1;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.dark-card {
  min-height: 190px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid var(--line-dark);
  border-radius: 8px;
}

.dark-card h3 {
  color: var(--white);
  font-size: 1.08rem;
}

.dark-card p {
  margin-top: 12px;
  font-size: 0.95rem;
}

.compare-box {
  margin-top: 32px;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
}

.compare-row {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: 0;
  border-top: 1px solid var(--line-dark);
}

.compare-row:first-child {
  border-top: 0;
}

.compare-row span,
.compare-row strong {
  padding: 18px 20px;
}

.compare-row span {
  color: rgba(255, 255, 255, 0.7);
  border-right: 1px solid var(--line-dark);
}

.compare-row strong {
  color: var(--white);
  font-weight: 720;
}

.compare-row--head {
  background: rgba(255, 255, 255, 0.08);
  font-weight: 760;
}

.compare-row--head span {
  color: var(--white);
}

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

.artifact-card {
  padding: 24px;
}

.artifact-card--wide {
  grid-column: span 2;
  background: #f3faf8;
  border-color: rgba(14, 137, 135, 0.18);
}

.assistant-examples {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding-top: 18px;
}

.assistant-examples strong {
  display: block;
  color: var(--graphite);
}

.route-note,
.payment-note,
.prepare-box,
.safety-box,
.method-box,
.honest-box {
  padding: 28px;
  margin-top: 28px;
  background: var(--white);
  border: 1px solid rgba(37, 35, 33, 0.1);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.route-note {
  background: #fff7ef;
  border-color: rgba(200, 107, 85, 0.24);
}

.route-note p,
.payment-note p,
.prepare-box p,
.safety-box p,
.method-box p {
  margin-top: 8px;
  color: var(--muted);
}

.b2b-proof {
  padding: 18px 20px;
  margin-top: 22px;
  background: #fffaf4;
  border: 1px solid rgba(201, 120, 100, 0.22);
  border-left: 4px solid var(--coral);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.b2b-proof strong {
  display: block;
  color: var(--graphite);
  font-size: 1rem;
}

.b2b-proof p {
  margin-top: 8px;
  color: var(--muted);
}

.levels-box {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.levels-box article {
  padding: 26px;
  background: #f6fbfa;
  border: 1px solid rgba(14, 137, 135, 0.18);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.levels-box span {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--teal);
  font-size: 0.84rem;
  font-weight: 780;
}

.levels-box p {
  margin-top: 10px;
  color: var(--muted);
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.timeline-item {
  position: relative;
  min-height: 235px;
  padding: 24px;
  background: var(--white);
  border: 1px solid rgba(37, 35, 33, 0.1);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.timeline-item p {
  margin-top: 10px;
  color: var(--muted);
}

.program-expand {
  margin-top: 34px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(37, 35, 33, 0.1);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.program-expand__header {
  max-width: 780px;
  margin-bottom: 20px;
}

.program-expand__header h3 {
  margin-top: 6px;
  font-size: 1.75rem;
}

.program-expand__header p:last-child {
  margin-top: 8px;
  color: var(--muted);
}

.program-accordion {
  display: grid;
  gap: 10px;
}

.program-accordion details {
  background: var(--paper-soft);
  box-shadow: none;
}

.program-accordion summary {
  display: grid;
  grid-template-columns: 116px minmax(180px, 0.9fr) minmax(0, 1.35fr) 30px;
  gap: 16px;
  align-items: center;
  padding: 18px 20px;
}

.program-accordion summary::after {
  grid-column: 4;
  justify-self: end;
  float: none;
  margin-left: 0;
}

.program-detail__step {
  color: var(--teal);
  font-size: 0.82rem;
  font-weight: 780;
}

.program-accordion summary strong {
  color: var(--graphite);
  line-height: 1.18;
}

.program-accordion summary em {
  color: var(--muted);
  font-style: normal;
  line-height: 1.45;
}

.program-detail__body {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  gap: 20px;
  padding: 0 20px 22px;
}

.program-detail__body h4 {
  margin: 0 0 10px;
  color: var(--teal);
  font-size: 0.78rem;
  line-height: 1.2;
  text-transform: uppercase;
}

.program-detail__body ul {
  margin: 0;
  padding-left: 19px;
  color: var(--muted);
}

.program-detail__body li + li {
  margin-top: 8px;
}

.program-accordion details p {
  padding: 0;
  color: var(--muted);
}

.program-detail__body > div:nth-child(2),
.program-detail__body > div:nth-child(3) {
  padding-left: 16px;
  border-left: 2px solid rgba(14, 137, 135, 0.2);
}

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

.entry-flow {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  margin-top: 28px;
}

.entry-flow div {
  min-height: 120px;
  padding: 16px;
  background: #f6fbfa;
  border: 1px solid rgba(14, 137, 135, 0.16);
  border-radius: 8px;
  color: var(--graphite);
  font-weight: 700;
}

.entry-flow span {
  display: block;
  margin-bottom: 12px;
  color: var(--teal);
  font-size: 0.82rem;
}

.inline-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}

.inline-list li {
  margin-top: 0;
}

.photo-panel {
  position: relative;
}

.photo-panel img,
.authors-photos img {
  width: 100%;
  border-radius: 8px;
  box-shadow: var(--shadow);
  object-fit: cover;
}

.photo-panel img {
  aspect-ratio: 4 / 3;
  object-position: center;
}

.document-stack {
  position: relative;
  width: 86%;
  margin: -64px auto 0;
  padding: 22px;
  background: var(--white);
  border: 1px solid rgba(37, 35, 33, 0.1);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

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

.case-card {
  padding: 26px;
}

blockquote {
  margin: 20px 0 0;
  padding: 18px;
  color: var(--graphite);
  background: #f6f1e9;
  border-left: 4px solid var(--coral);
  border-radius: 8px;
  font-weight: 650;
}

.case-card blockquote + blockquote {
  margin-top: 12px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 20px;
}

.reviews-grid blockquote {
  margin: 0;
  font-size: 0.95rem;
}

.authors-layout {
  display: grid;
  grid-template-columns: minmax(360px, 0.84fr) minmax(0, 1fr);
  gap: 42px;
  align-items: center;
}

.authors-photos {
  position: relative;
}

.authors-photos__main {
  height: 560px;
  object-position: center;
}

.authors-photos__secondary {
  display: none;
}

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

.bio-card {
  padding: 26px;
}

.method-box {
  background: #fffbf5;
}

.not-for-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 22px;
}

.not-for-grid p {
  display: flex;
  min-height: 178px;
  padding: 20px;
  color: var(--muted);
  background: #f8f4ee;
  border: 1px solid rgba(37, 35, 33, 0.1);
  border-radius: 8px;
}

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

.season-points div {
  min-height: 132px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--line-dark);
  border-radius: 8px;
}

.season-points div:last-child {
  grid-column: span 2;
}

.season-points strong {
  display: block;
  color: var(--white);
  font-size: 2rem;
  line-height: 1;
}

.season-points span {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.72);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 28px;
}

.price-card h3 {
  margin-bottom: 12px;
  font-size: 2.1rem;
}

.price-card ul {
  flex: 1;
  margin-bottom: 26px;
}

.price-card--featured {
  border-color: rgba(200, 107, 85, 0.42);
  box-shadow: 0 28px 80px rgba(200, 107, 85, 0.18);
}

.price-card__badge {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 8px 10px;
  color: var(--white);
  background: var(--coral);
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 760;
}

.alumni-offer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin-top: 18px;
  padding: 28px;
  background: #fffaf4;
  border: 1px solid rgba(201, 120, 100, 0.32);
  border-left: 5px solid var(--coral);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.alumni-offer__label {
  margin: 0 0 8px;
  color: var(--teal);
  font-size: 0.82rem;
  font-weight: 840;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.alumni-offer h3 {
  margin: 0 0 10px;
  font-size: 1.38rem;
  line-height: 1.18;
}

.alumni-offer p:not(.alumni-offer__label) {
  max-width: 780px;
  margin: 0;
  color: var(--muted);
}

.payment-note {
  background: #f6fbfa;
}

.faq-list {
  display: grid;
  gap: 10px;
  width: 100%;
}

details {
  background: var(--white);
  border: 1px solid rgba(37, 35, 33, 0.1);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

summary {
  cursor: pointer;
  padding: 20px 22px;
  color: var(--graphite);
  font-weight: 760;
  list-style: none;
}

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

summary::after {
  float: right;
  width: 28px;
  height: 28px;
  margin-left: 18px;
  content: "+";
  color: var(--teal);
  text-align: center;
  border: 1px solid rgba(14, 137, 135, 0.2);
  border-radius: 8px;
}

details[open] summary::after {
  content: "-";
}

details p {
  padding: 0 22px 22px;
  color: var(--muted);
}

.final-cta {
  position: relative;
  min-height: 680px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--graphite-deep);
}

.final-cta__media {
  position: absolute;
  inset: 0;
}

.final-cta__media::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(32, 52, 48, 0.96), rgba(32, 52, 48, 0.74) 48%, rgba(32, 52, 48, 0.28)),
    linear-gradient(180deg, rgba(32, 52, 48, 0.12), rgba(32, 52, 48, 0.8));
}

.final-cta__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
  opacity: 0.84;
}

.final-cta__content {
  position: relative;
  z-index: 1;
}

.final-cta h2 {
  max-width: 760px;
}

.final-cta p {
  max-width: 700px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.15rem;
}

.site-footer {
  color: rgba(255, 255, 255, 0.78);
  background: #1b2d29;
}

.footer-claim {
  padding: 62px 0 54px;
  color: var(--white);
  text-align: center;
  background:
    linear-gradient(135deg, rgba(14, 137, 135, 0.14), rgba(189, 111, 93, 0.1)),
    #203430;
}

.footer-claim .container {
  display: grid;
  justify-items: center;
}

.footer-claim__line {
  width: 112px;
  height: 1px;
  margin: 0 auto 26px;
  background: var(--coral);
}

.footer-claim__line:last-child {
  margin: 28px auto 0;
}

.footer-claim p {
  margin: 0;
  font-size: 1.65rem;
  line-height: 1.22;
  font-weight: 780;
}

.footer-claim h2 {
  max-width: 880px;
  margin-top: 8px;
  font-size: 2rem;
}

.footer-legal {
  padding: 32px 0 28px;
  background: #172622;
}

.footer-legal__inner {
  display: grid;
  justify-items: center;
  gap: 16px;
  text-align: center;
}

.brand--footer {
  color: var(--white);
}

.brand--footer .brand__mark {
  color: var(--graphite);
  background: var(--white);
}

.footer-contact {
  display: grid;
  justify-items: center;
  gap: 2px;
  color: var(--white);
  font-weight: 760;
  line-height: 1.25;
}

.footer-contact span {
  color: rgba(255, 255, 255, 0.84);
}

.footer-contact__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px 8px;
}

.footer-contact__links a {
  color: var(--white);
}

.footer-contact__email {
  margin-top: 8px;
  color: #a7d9d6;
  font-weight: 760;
}

.footer-contact__mail-button {
  width: min(100%, 320px);
  margin-top: 10px;
  min-height: 54px;
}

.footer-contact__links a:hover,
.footer-contact__email:hover,
.footer-links a:hover {
  color: #a7d9d6;
}

.footer-company {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
  line-height: 1.45;
}

.footer-company p + p {
  margin-top: 2px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.86rem;
}

.footer-links [data-link-pending] {
  color: #8ac9c6;
}

@media (max-width: 1160px) {
  .site-header {
    grid-template-columns: auto auto auto;
  }

  .site-nav {
    position: fixed;
    top: 74px;
    left: 16px;
    right: 16px;
    display: grid;
    justify-content: stretch;
    gap: 0;
    padding: 12px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
    transform: translateY(-18px);
    opacity: 0;
    pointer-events: none;
  }

  .nav-open .site-nav {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    padding: 13px 12px;
    border-bottom: 1px solid rgba(37, 35, 33, 0.08);
  }

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

  .nav-toggle {
    display: block;
    justify-self: end;
  }

  .header-cta {
    justify-self: end;
  }

  h1 {
    font-size: 3.3rem;
  }

  h2 {
    font-size: 2.35rem;
  }

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

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

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

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

@media (max-width: 920px) {
  .section {
    padding: 76px 0;
  }

  .grid-2,
  .webinar__layout,
  .authors-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .webinar__copy {
    max-width: 780px;
  }

  .webinar__media {
    max-width: 780px;
  }

  .cards-3,
  .case-grid,
  .pricing-grid,
  .levels-box {
    grid-template-columns: 1fr;
  }

  .program-accordion summary {
    grid-template-columns: minmax(0, 1fr) 30px;
    gap: 6px 14px;
  }

  .program-accordion summary::after {
    grid-column: 2;
    grid-row: 1 / span 3;
  }

  .alumni-offer {
    grid-template-columns: 1fr;
  }

  .alumni-offer .btn {
    width: 100%;
  }

  .program-detail__step,
  .program-accordion summary strong,
  .program-accordion summary em {
    grid-column: 1;
  }

  .program-detail__body {
    grid-template-columns: 1fr;
  }

  .program-detail__body > div:nth-child(2),
  .program-detail__body > div:nth-child(3) {
    padding-left: 14px;
  }

  .hero {
    display: block;
    min-height: auto;
    padding: 58px 0 0;
  }

  .hero__media {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    height: 440px;
    margin-top: 26px;
  }

  .hero__media::after {
    background: linear-gradient(180deg, rgba(251, 246, 239, 0.04), rgba(251, 246, 239, 0.18));
  }

  .hero__media img {
    object-position: 48% center;
  }

  .proof-grid,
  .assistant-examples,
  .authors-copy {
    grid-template-columns: 1fr;
  }

  .photo-panel {
    max-width: 680px;
  }

  .authors-photos {
    min-height: auto;
  }

  .authors-photos__main {
    height: auto;
  }

  .authors-photos__secondary {
    position: relative;
    right: auto;
    bottom: auto;
    width: 72%;
    height: auto;
    margin: -70px 0 0 auto;
  }

}

@media (max-width: 720px) {
  .container {
    padding: 0 18px;
  }

  .site-header {
    grid-template-columns: 1fr auto;
    min-height: 66px;
    padding: 10px 18px;
  }

  .brand__mark {
    width: 38px;
    height: 34px;
  }

  .brand__text {
    font-size: 0.95rem;
  }

  .header-cta {
    display: none;
  }

  .site-nav {
    top: 66px;
  }

  h1 {
    font-size: 1.95rem;
    line-height: 1.12;
  }

  h2 {
    font-size: 2rem;
  }

  .lead,
  .hero__lead,
  .final-cta p {
    font-size: 1rem;
  }

  .hero__actions,
  .button-row {
    display: grid;
  }

  .btn {
    width: 100%;
    min-width: 0;
    padding-right: 12px;
    padding-left: 12px;
    font-size: 0.96rem;
  }

  .hero__media {
    height: 330px;
  }

  .feature-grid,
  .artifact-grid,
  .timeline,
  .format-grid,
  .entry-flow,
  .reviews-grid,
  .not-for-grid,
  .season-points {
    grid-template-columns: 1fr;
  }

  .artifact-card--wide,
  .season-points div:last-child {
    grid-column: auto;
  }

  .program-accordion summary {
    padding: 16px;
  }

  .alumni-offer {
    padding: 20px;
  }

  .program-accordion summary em {
    display: none;
  }

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

  .compare-row span {
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .compare-row--head {
    display: none;
  }

  .document-stack {
    width: 94%;
    margin-top: -36px;
  }

  .price-card__badge {
    position: static;
    width: max-content;
    margin-bottom: 14px;
  }

  .final-cta {
    min-height: auto;
    padding: 84px 0;
  }

  .final-cta__media::after {
    background: rgba(32, 52, 48, 0.8);
  }

  .footer-claim {
    padding: 48px 0 42px;
  }

  .footer-claim p {
    font-size: 1.34rem;
  }

  .footer-claim h2 {
    font-size: 1.48rem;
  }

  .footer-contact__links,
  .footer-links {
    display: grid;
    gap: 8px;
  }
}

@media (max-width: 430px) {
  h1 {
    font-size: 1.82rem;
    line-height: 1.12;
  }

  h2 {
    font-size: 1.76rem;
  }

  h3 {
    font-size: 1.12rem;
  }

  .section {
    padding: 62px 0;
  }

  .hero {
    padding-top: 42px;
  }

  .hero__media {
    height: 292px;
  }

  .card,
  .artifact-card,
  .case-card,
  .bio-card,
  .price-card,
  .route-note,
  .payment-note,
  .b2b-proof,
  .program-expand,
  .prepare-box,
  .safety-box,
  .method-box,
  .honest-box {
    padding: 20px;
  }

  .proof-grid li,
  .dark-card,
  .timeline-item,
  .season-points div {
    padding: 18px;
  }
}
