:root {
  --paper: #f7f4ee;
  --paper-deep: #eee9df;
  --white: #fffdf9;
  --ink: #1f2926;
  --ink-soft: #53605b;
  --forest: #173d35;
  --forest-light: #285b50;
  --sage: #78988a;
  --sage-pale: #dbe5dc;
  --gold: #d5a85f;
  --peach: #e8c3a6;
  --line: rgba(31, 41, 38, .13);
  --shadow: 0 24px 70px rgba(27, 54, 47, .12);
  --radius: 28px;
  --serif: "Manrope", sans-serif;
  --sans: "DM Sans", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
}

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

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

.container {
  width: min(1160px, calc(100% - 48px));
  margin-inline: auto;
}

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

.skip-link {
  position: fixed;
  top: -100px;
  left: 24px;
  z-index: 1000;
  padding: 10px 16px;
  border-radius: 8px;
  background: var(--ink);
  color: white;
  text-decoration: none;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  padding: 20px 0;
  transition: .25s ease;
}

.site-header.scrolled,
.site-header.inner-header {
  padding: 12px 0;
  background: rgba(247, 244, 238, .92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--forest);
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1.05;
  text-decoration: none;
}

.brand em {
  display: block;
  font-style: normal;
  font-weight: 500;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(23, 61, 53, .24);
  border-radius: 13px;
}

.brand-mark svg {
  width: 30px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.3;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.main-nav > a {
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.main-nav > a:not(.button):hover {
  color: var(--forest);
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 13px;
  padding: 14px 25px;
  border: 0;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}

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

.button svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.button-small {
  min-height: 42px;
  padding: 11px 19px;
  font-size: 13px;
}

.button-dark {
  background: var(--forest);
  color: white !important;
  box-shadow: 0 8px 22px rgba(23, 61, 53, .18);
}

.button-primary {
  background: var(--gold);
  color: #1e2a25;
  box-shadow: 0 14px 32px rgba(168, 119, 42, .22);
}

.button-primary:hover {
  background: #dfb770;
  box-shadow: 0 17px 38px rgba(168, 119, 42, .29);
}

.button-full {
  width: 100%;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  background: var(--ink);
  transition: .2s;
}

.hero {
  position: relative;
  min-height: 830px;
  overflow: hidden;
  padding: 154px 0 0;
  background:
    radial-gradient(circle at 50% 25%, rgba(255, 255, 255, .75), transparent 36%),
    var(--paper);
}

.hero::after {
  position: absolute;
  right: -14%;
  bottom: 78px;
  width: 58%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(23, 61, 53, .18));
  content: "";
  transform: rotate(-12deg);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
}

.hero-glow-one {
  top: 80px;
  right: 4%;
  width: 470px;
  height: 470px;
  background: rgba(209, 222, 208, .55);
}

.hero-glow-two {
  top: 305px;
  right: -4%;
  width: 330px;
  height: 330px;
  border: 1px solid rgba(23, 61, 53, .13);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.03fr .97fr;
  align-items: center;
  gap: 66px;
}

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

.eyebrow > span {
  width: 24px;
  height: 1px;
  background: var(--gold);
}

.hero h1,
.section-heading h2,
.curriculum-copy h2,
.audience-copy h2,
.offer-copy h2,
.faq-heading h2,
.legal-hero h1,
.legal-content h2,
.support-inner h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -.055em;
  line-height: 1.08;
}

.hero h1 {
  max-width: 640px;
  font-size: clamp(52px, 5.55vw, 78px);
}

h1 em,
h2 em {
  color: var(--forest-light);
  font-style: normal;
}

.hero-lead {
  max-width: 610px;
  margin: 30px 0 0;
  color: var(--ink-soft);
  font-size: 19px;
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-top: 38px;
}

.text-link {
  color: var(--forest);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.text-link span {
  margin-left: 6px;
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin: 34px 0 0;
  padding: 0;
  color: var(--ink-soft);
  font-size: 13px;
  list-style: none;
}

.trust-list li {
  display: flex;
  align-items: center;
  gap: 7px;
}

.trust-list svg {
  width: 17px;
  height: 17px;
  padding: 3px;
  border: 1px solid rgba(23, 61, 53, .3);
  border-radius: 50%;
  fill: none;
  stroke: var(--forest);
  stroke-width: 2;
}

.hero-visual {
  position: relative;
  min-height: 570px;
  display: grid;
  place-items: center;
}

.visual-orbit {
  position: absolute;
  border: 1px solid rgba(23, 61, 53, .15);
  border-radius: 42px;
}

.orbit-one {
  width: 500px;
  height: 500px;
  transform: rotate(-7deg);
}

.orbit-two {
  width: 390px;
  height: 390px;
  border-style: dashed;
  transform: rotate(10deg);
}

.course-card {
  position: relative;
  z-index: 2;
  display: flex;
  width: 340px;
  min-height: 450px;
  flex-direction: column;
  justify-content: space-between;
  padding: 27px 30px 34px;
  overflow: hidden;
  border: 7px solid rgba(255, 255, 255, .75);
  border-radius: 14px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .13), transparent 40%),
    var(--forest);
  color: white;
  box-shadow: 0 35px 75px rgba(23, 61, 53, .27);
  transform: rotate(3deg);
}

.course-card::before {
  position: absolute;
  inset: auto -70px -95px auto;
  width: 230px;
  height: 230px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 48px;
  content: "";
  transform: rotate(18deg);
}

.course-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mini-brand {
  display: grid;
  width: 35px;
  height: 35px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .45);
  border-radius: 10px;
  font-size: 10px;
  letter-spacing: .07em;
}

.mini-brand svg {
  width: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.4;
}

.course-type {
  color: rgba(255, 255, 255, .65);
  font-size: 10px;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.course-symbol {
  position: relative;
  display: grid;
  place-items: center;
  margin: 10px auto;
}

.course-symbol svg {
  width: 190px;
  fill: none;
  stroke: rgba(228, 201, 151, .75);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1;
}

.course-kicker {
  display: block;
  margin-bottom: 2px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.course-card strong {
  font-family: var(--serif);
  font-size: 33px;
  font-weight: 500;
  letter-spacing: -.04em;
}

.course-card p {
  margin: 5px 0 0;
  color: rgba(255, 255, 255, .62);
  font-size: 11px;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.floating-note {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 190px;
  padding: 13px 16px;
  border: 1px solid rgba(255, 255, 255, .85);
  border-radius: 15px;
  background: rgba(255, 253, 249, .82);
  box-shadow: 0 16px 40px rgba(23, 61, 53, .12);
  color: var(--forest);
  font-size: 12px;
  font-weight: 700;
  backdrop-filter: blur(12px);
}

.floating-note small {
  display: block;
  color: var(--ink-soft);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.note-icon {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: var(--forest);
  color: white;
  font-size: 9px;
}

.note-icon-light {
  background: var(--gold);
  color: var(--forest);
  font-size: 14px;
}

.note-one {
  top: 104px;
  left: -30px;
}

.note-two {
  right: -30px;
  bottom: 92px;
}

.statement-row {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  height: 88px;
  align-items: center;
  justify-content: center;
  gap: 44px;
  border-top: 1px solid var(--line);
  color: var(--forest);
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .02em;
}

.statement-row i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
}

.section {
  padding: 118px 0;
}

.section-heading.centered {
  max-width: 820px;
  margin: 0 auto 62px;
  text-align: center;
}

.section-heading.centered .eyebrow {
  justify-content: center;
}

.section-heading h2 {
  font-size: clamp(38px, 4.4vw, 60px);
}

.section-heading > p:last-child {
  max-width: 700px;
  margin: 25px auto 0;
  color: var(--ink-soft);
  font-size: 17px;
}

.intro-section {
  background: var(--white);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-card {
  position: relative;
  min-height: 330px;
  padding: 34px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbf9f4;
}

.feature-card::after {
  position: absolute;
  right: -56px;
  bottom: -77px;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(23, 61, 53, .08);
  border-radius: 50%;
  content: "";
}

.feature-card-accent {
  background: var(--sage-pale);
  transform: translateY(20px);
}

.feature-number {
  position: absolute;
  top: 31px;
  right: 31px;
  color: var(--sage);
  font-family: var(--serif);
  font-size: 13px;
  font-weight: 700;
}

.feature-icon {
  display: grid;
  width: 58px;
  height: 58px;
  margin-bottom: 70px;
  place-items: center;
  border-radius: 50%;
  background: var(--white);
  color: var(--forest);
  box-shadow: 0 10px 28px rgba(23, 61, 53, .07);
}

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

.feature-card h3 {
  margin: 0 0 11px;
  font-family: var(--serif);
  font-size: 22px;
  letter-spacing: -.03em;
}

.feature-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.75;
}

.curriculum-section {
  position: relative;
  overflow: hidden;
  background: var(--forest);
  color: white;
}

.curriculum-section::before {
  position: absolute;
  top: -280px;
  left: -230px;
  width: 600px;
  height: 600px;
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: 50%;
  content: "";
}

.curriculum-grid {
  position: relative;
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 100px;
}

.eyebrow-light {
  color: #c7d8d0;
}

.curriculum-copy h2 {
  font-size: clamp(38px, 4vw, 54px);
}

.curriculum-copy > p:not(.eyebrow) {
  margin: 25px 0 0;
  color: rgba(255, 255, 255, .64);
  font-size: 16px;
}

.quote-card {
  margin-top: 50px;
  padding: 25px 27px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 20px;
  background: rgba(255, 255, 255, .045);
}

.quote-card svg {
  width: 25px;
  margin-bottom: 12px;
  fill: var(--gold);
}

.quote-card p {
  margin: 0;
  color: rgba(255, 255, 255, .78);
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.65;
}

.module-list {
  border-top: 1px solid rgba(255, 255, 255, .13);
}

.module-item {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .13);
}

.module-item > span {
  display: grid;
  width: 39px;
  height: 39px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 50%;
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
}

.module-item h3 {
  margin: 0 0 3px;
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -.02em;
}

.module-item p {
  margin: 0;
  color: rgba(255, 255, 255, .52);
  font-size: 13px;
}

.module-item i {
  color: var(--gold);
  font-size: 18px;
  font-style: normal;
}

.how-section {
  background: var(--white);
}

.split-heading {
  display: grid;
  grid-template-columns: 1fr .8fr;
  align-items: end;
  gap: 100px;
}

.split-heading h2 {
  font-size: clamp(40px, 4.6vw, 60px);
}

.split-heading > p {
  margin: 0 0 6px;
  color: var(--ink-soft);
  font-size: 16px;
}

.steps {
  display: grid;
  grid-template-columns: 1fr 70px 1fr 70px 1fr;
  align-items: center;
  margin-top: 74px;
}

.step {
  align-self: stretch;
}

.step-top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
}

.step-top > span {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 50%;
  background: var(--forest);
  color: white;
  font-size: 11px;
  font-weight: 700;
}

.step-top svg {
  width: 40px;
  fill: none;
  stroke: var(--sage);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.4;
}

.step h3 {
  margin: 0 0 9px;
  font-family: var(--serif);
  font-size: 20px;
  letter-spacing: -.025em;
}

.step p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.step-line {
  height: 1px;
  margin: 0 15px;
  background: repeating-linear-gradient(90deg, var(--sage) 0 4px, transparent 4px 10px);
}

.transparency-note {
  display: flex;
  gap: 16px;
  margin-top: 72px;
  padding: 21px 25px;
  border: 1px solid rgba(23, 61, 53, .11);
  border-radius: 17px;
  background: #f5f3ed;
}

.transparency-note svg {
  width: 24px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--forest);
  stroke-linecap: round;
  stroke-width: 1.5;
}

.transparency-note p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 13px;
}

.audience-section {
  background: var(--paper-deep);
}

.audience-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: center;
  gap: 100px;
}

.audience-art {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: 36px;
  background: #cad9cf;
}

.arch {
  position: absolute;
  border: 1px solid rgba(23, 61, 53, .15);
  border-radius: 36px;
}

.arch-one {
  inset: 55px 45px 100px;
  transform: rotate(-8deg);
}

.arch-two {
  inset: 95px 85px 135px;
  background: rgba(255, 255, 255, .23);
  transform: rotate(9deg);
}

.arch-center {
  position: absolute;
  top: 160px;
  left: 50%;
  display: grid;
  width: 125px;
  height: 125px;
  place-items: center;
  border-radius: 30px;
  background: var(--forest);
  box-shadow: 0 24px 60px rgba(23, 61, 53, .2);
  transform: translateX(-50%);
}

.arch-center svg {
  width: 65px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.4;
}

.art-label {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 28px;
  background: rgba(23, 61, 53, .92);
  color: white;
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 500;
  line-height: 1.35;
  text-align: center;
}

.audience-copy h2 {
  font-size: clamp(37px, 4.1vw, 54px);
}

.check-list {
  display: grid;
  gap: 15px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 15px;
}

.check-list span {
  display: grid;
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--forest);
  color: white;
  font-size: 11px;
}

.audience-footnote {
  margin: 24px 0 0;
  padding-left: 16px;
  border-left: 2px solid var(--gold);
  color: var(--ink-soft);
  font-size: 13px;
}

.offer-section {
  position: relative;
  overflow: hidden;
  background: #193c35;
  color: white;
}

.offer-glow {
  position: absolute;
  top: -180px;
  right: -130px;
  width: 570px;
  height: 570px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 50%;
}

.offer-glow::after {
  position: absolute;
  inset: 80px;
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: 50%;
  content: "";
}

.offer-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 460px;
  align-items: center;
  gap: 110px;
}

.offer-copy h2 {
  max-width: 630px;
  font-size: clamp(42px, 5vw, 64px);
}

.offer-copy > p:not(.eyebrow) {
  max-width: 610px;
  margin: 25px 0 0;
  color: rgba(255, 255, 255, .66);
  font-size: 17px;
}

.guarantee-box {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
  padding: 20px 22px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 19px;
  background: rgba(255, 255, 255, .045);
}

.guarantee-badge {
  display: grid;
  width: 69px;
  height: 69px;
  flex: 0 0 auto;
  place-content: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  text-align: center;
}

.guarantee-badge strong {
  color: var(--gold);
  font-size: 22px;
  line-height: 1;
}

.guarantee-badge span {
  color: rgba(255, 255, 255, .72);
  font-size: 9px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.guarantee-box h3 {
  margin: 0 0 4px;
  font-family: var(--serif);
  font-size: 17px;
}

.guarantee-box p {
  margin: 0;
  color: rgba(255, 255, 255, .59);
  font-size: 12px;
}

.guarantee-box a {
  color: var(--gold);
}

.price-card {
  padding: 38px;
  border-radius: 27px;
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 35px 85px rgba(0, 0, 0, .18);
}

.price-label {
  color: var(--forest-light);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.price-card h3 {
  margin: 6px 0 22px;
  font-family: var(--serif);
  font-size: 25px;
  letter-spacing: -.03em;
}

.price {
  display: flex;
  align-items: flex-start;
  padding: 20px 0;
  border-block: 1px solid var(--line);
}

.price > span {
  margin-top: 10px;
  color: var(--forest);
  font-size: 20px;
  font-weight: 700;
}

.price strong {
  color: var(--forest);
  font-family: var(--serif);
  font-size: 68px;
  font-weight: 600;
  letter-spacing: -.07em;
  line-height: 1;
}

.price small {
  align-self: flex-end;
  margin: 0 0 8px 12px;
  color: var(--ink-soft);
  font-size: 11px;
}

.price-card ul {
  display: grid;
  gap: 11px;
  margin: 24px 0 27px;
  padding: 0;
  list-style: none;
}

.price-card li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink-soft);
  font-size: 13px;
}

.price-card li span {
  display: grid;
  width: 19px;
  height: 19px;
  place-items: center;
  border-radius: 50%;
  background: var(--sage-pale);
  color: var(--forest);
  font-size: 9px;
  font-weight: 700;
}

.secure-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin: 13px 0 0;
  color: #7a817e;
  font-size: 10px;
}

.secure-note svg {
  width: 15px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.faq-section {
  background: var(--white);
}

.faq-grid {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  align-items: start;
  gap: 100px;
}

.faq-heading {
  position: sticky;
  top: 120px;
}

.faq-heading h2 {
  font-size: clamp(37px, 4vw, 52px);
}

.faq-heading > p:last-child {
  margin: 26px 0 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.faq-heading a {
  color: var(--forest);
  font-weight: 700;
}

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

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

.accordion-item h3 {
  margin: 0;
}

.accordion-item button {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 25px 0;
  border: 0;
  background: none;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
}

.accordion-item button span {
  position: relative;
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.accordion-item button span::before,
.accordion-item button span::after {
  position: absolute;
  top: 12px;
  left: 7px;
  width: 11px;
  height: 1px;
  background: var(--forest);
  content: "";
}

.accordion-item button span::after {
  transform: rotate(90deg);
  transition: transform .2s ease;
}

.accordion-item button[aria-expanded="true"] span::after {
  transform: rotate(0);
}

.accordion-panel {
  padding: 0 48px 24px 0;
}

.accordion-panel p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.accordion-panel a {
  color: var(--forest);
  font-weight: 700;
}

.support-strip {
  padding: 58px 0;
  background: #d9e3da;
}

.support-inner {
  display: grid;
  grid-template-columns: auto .8fr 1.2fr;
  align-items: center;
  gap: 28px;
}

.support-icon {
  display: grid;
  width: 68px;
  height: 68px;
  place-items: center;
  border-radius: 50%;
  background: var(--forest);
  color: white;
}

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

.support-inner .eyebrow {
  margin-bottom: 6px;
  font-size: 9px;
}

.support-inner h2 {
  font-size: 28px;
}

.support-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 30px;
}

.support-links > a:not(.circle-link) {
  color: var(--forest);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.support-links small {
  display: block;
  color: var(--ink-soft);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.circle-link {
  display: grid;
  width: 47px;
  height: 47px;
  place-items: center;
  border-radius: 50%;
  background: var(--gold);
  color: var(--forest);
  font-size: 20px;
  text-decoration: none;
}

.site-footer {
  padding: 72px 0 25px;
  background: #122c27;
  color: white;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr .75fr 1fr;
  gap: 70px;
  padding-bottom: 52px;
}

.brand-light {
  color: white;
}

.brand-light .brand-mark {
  border-color: rgba(255, 255, 255, .22);
}

.footer-brand p {
  max-width: 350px;
  margin: 23px 0 0;
  color: rgba(255, 255, 255, .5);
  font-size: 13px;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-column h2 {
  margin: 0 0 8px;
  color: var(--gold);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.footer-column a {
  color: rgba(255, 255, 255, .67);
  font-size: 13px;
  text-decoration: none;
}

.footer-column a:hover {
  color: white;
}

.company-info {
  padding-block: 20px;
  border-block: 1px solid rgba(255, 255, 255, .1);
  color: rgba(255, 255, 255, .58);
  font-size: 11px;
  line-height: 1.7;
}

.company-info p {
  margin: 0;
}

.company-info strong {
  color: rgba(255, 255, 255, .78);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 22px;
  color: rgba(255, 255, 255, .4);
  font-size: 10px;
}

.footer-bottom p {
  margin: 0;
}

/* Legal and support pages */
.inner-page {
  background: var(--white);
}

.legal-hero {
  padding: 170px 0 82px;
  background:
    radial-gradient(circle at 80% 20%, rgba(202, 217, 207, .65), transparent 28%),
    var(--paper);
  border-bottom: 1px solid var(--line);
}

.legal-hero .container {
  max-width: 900px;
}

.breadcrumbs {
  margin-bottom: 28px;
  color: var(--ink-soft);
  font-size: 12px;
}

.breadcrumbs a {
  color: var(--forest);
  font-weight: 700;
  text-decoration: none;
}

.legal-hero h1 {
  max-width: 800px;
  font-size: clamp(43px, 6vw, 68px);
}

.legal-hero > .container > p:last-child {
  max-width: 670px;
  margin: 25px 0 0;
  color: var(--ink-soft);
  font-size: 17px;
}

.last-updated {
  display: inline-flex;
  margin-top: 26px;
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--sage-pale);
  color: var(--forest);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.legal-layout {
  display: grid;
  grid-template-columns: 235px minmax(0, 720px);
  gap: 80px;
  padding-block: 80px 110px;
}

.legal-nav {
  position: sticky;
  top: 110px;
  align-self: start;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--paper);
}

.legal-nav h2 {
  margin: 0 0 14px;
  color: var(--forest);
  font-size: 10px;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.legal-nav a {
  display: block;
  padding: 8px 0;
  color: var(--ink-soft);
  font-size: 12px;
  text-decoration: none;
}

.legal-nav a:hover {
  color: var(--forest);
}

.legal-content {
  min-width: 0;
}

.legal-content section {
  scroll-margin-top: 110px;
  padding: 0 0 38px;
}

.legal-content section + section {
  padding-top: 38px;
  border-top: 1px solid var(--line);
}

.legal-content h2 {
  margin-bottom: 18px;
  font-size: 28px;
}

.legal-content h3 {
  margin: 24px 0 8px;
  font-family: var(--serif);
  font-size: 18px;
  letter-spacing: -.02em;
}

.legal-content p,
.legal-content li {
  color: var(--ink-soft);
  font-size: 14px;
}

.legal-content p {
  margin: 0 0 14px;
}

.legal-content ul,
.legal-content ol {
  display: grid;
  gap: 8px;
  margin: 14px 0 18px;
  padding-left: 22px;
}

.legal-content a {
  color: var(--forest);
  font-weight: 700;
}

.info-box {
  margin: 20px 0;
  padding: 20px 22px;
  border-left: 3px solid var(--gold);
  border-radius: 0 13px 13px 0;
  background: var(--paper);
}

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

.contact-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 24px 0;
}

.contact-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--paper);
  text-decoration: none;
  transition: transform .2s, border-color .2s;
}

.contact-card:hover {
  border-color: var(--sage);
  transform: translateY(-2px);
}

.contact-card svg {
  width: 30px;
  margin-bottom: 18px;
  fill: none;
  stroke: var(--forest);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.4;
}

.contact-card small {
  display: block;
  margin-bottom: 3px;
  color: var(--ink-soft);
  font-size: 9px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.contact-card strong {
  color: var(--forest);
  font-size: 13px;
}

.response-box {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  margin-top: 24px;
  padding: 20px;
  border-radius: 16px;
  background: var(--sage-pale);
}

.response-box > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: var(--forest);
  color: white;
  font-size: 15px;
  font-weight: 700;
}

.response-box strong {
  display: block;
  color: var(--forest);
  font-size: 13px;
}

.response-box p {
  margin: 3px 0 0;
  font-size: 12px;
}

@media (max-width: 1050px) {
  .main-nav {
    gap: 18px;
  }

  .hero-grid {
    grid-template-columns: 1fr 420px;
    gap: 30px;
  }

  .hero h1 {
    font-size: 57px;
  }

  .orbit-one {
    width: 440px;
    height: 440px;
  }

  .orbit-two {
    width: 340px;
    height: 340px;
  }

  .course-card {
    width: 310px;
    min-height: 420px;
  }

  .note-one {
    left: -15px;
  }

  .note-two {
    right: -10px;
  }

  .curriculum-grid,
  .offer-grid {
    gap: 60px;
  }

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

  .support-inner {
    grid-template-columns: auto .7fr 1.3fr;
  }

  .support-links {
    gap: 18px;
  }
}

@media (max-width: 860px) {
  .container {
    width: min(100% - 36px, 680px);
  }

  .menu-toggle {
    position: relative;
    z-index: 3;
    display: block;
  }

  .menu-toggle[aria-expanded="true"] span:not(.sr-only):first-child {
    transform: translateY(3px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:not(.sr-only):nth-child(2) {
    transform: translateY(-3px) rotate(-45deg);
  }

  .main-nav {
    position: fixed;
    inset: 0;
    z-index: 2;
    display: flex;
    visibility: hidden;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 22px;
    padding: 90px 32px;
    background: var(--paper);
    opacity: 0;
    transition: opacity .2s, visibility .2s;
  }

  .main-nav.open {
    visibility: visible;
    opacity: 1;
  }

  .main-nav > a {
    font-family: var(--serif);
    font-size: 27px;
  }

  .main-nav .button {
    margin-top: 15px;
    font-family: var(--sans);
    font-size: 14px;
  }

  .hero {
    min-height: auto;
    padding: 140px 0 110px;
  }

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

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

  .hero .eyebrow,
  .trust-list,
  .hero-actions {
    justify-content: center;
  }

  .hero h1,
  .hero-lead {
    margin-inline: auto;
  }

  .hero-visual {
    min-height: 590px;
    margin-top: 35px;
  }

  .statement-row {
    position: absolute;
    height: 76px;
    gap: 20px;
    font-size: 12px;
  }

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

  .feature-card {
    min-height: 270px;
  }

  .feature-card-accent {
    transform: none;
  }

  .feature-icon {
    margin-bottom: 40px;
  }

  .curriculum-grid,
  .split-heading,
  .audience-grid,
  .offer-grid,
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .steps {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .step-line {
    display: none;
  }

  .audience-art {
    min-height: 470px;
  }

  .offer-grid {
    max-width: 620px;
  }

  .price-card {
    max-width: 500px;
  }

  .faq-heading {
    position: static;
  }

  .support-inner {
    grid-template-columns: auto 1fr;
  }

  .support-links {
    grid-column: 1 / -1;
    justify-content: flex-start;
    margin-top: 15px;
  }

  .footer-top {
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 35px;
  }

  .legal-layout {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .legal-nav {
    position: static;
  }
}

@media (max-width: 590px) {
  .container {
    width: calc(100% - 30px);
  }

  .site-header {
    padding: 12px 0;
  }

  .brand {
    font-size: 13px;
  }

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

  .hero {
    padding-top: 120px;
  }

  .hero h1 {
    font-size: clamp(43px, 13vw, 58px);
  }

  .hero-lead {
    font-size: 16px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .trust-list {
    gap: 7px 13px;
    font-size: 11px;
  }

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

  .orbit-one {
    width: 350px;
    height: 350px;
  }

  .orbit-two {
    width: 290px;
    height: 290px;
  }

  .course-card {
    width: 265px;
    min-height: 370px;
    padding: 22px 23px 28px;
  }

  .course-symbol svg {
    width: 150px;
  }

  .course-card strong {
    font-size: 28px;
  }

  .floating-note {
    min-width: 162px;
    padding: 10px 12px;
    font-size: 10px;
  }

  .note-one {
    top: 65px;
    left: -2px;
  }

  .note-two {
    right: -2px;
    bottom: 68px;
  }

  .statement-row {
    gap: 9px;
    font-size: 9px;
  }

  .statement-row i {
    width: 3px;
    height: 3px;
  }

  .section {
    padding: 82px 0;
  }

  .section-heading.centered {
    margin-bottom: 42px;
  }

  .section-heading h2,
  .curriculum-copy h2,
  .audience-copy h2,
  .offer-copy h2,
  .faq-heading h2 {
    font-size: 38px;
  }

  .feature-card {
    padding: 28px;
  }

  .curriculum-grid {
    gap: 42px;
  }

  .module-item {
    grid-template-columns: 38px 1fr;
  }

  .module-item i {
    display: none;
  }

  .module-item h3 {
    font-size: 17px;
  }

  .split-heading {
    gap: 25px;
  }

  .audience-art {
    min-height: 400px;
  }

  .arch-center {
    top: 120px;
  }

  .guarantee-box {
    align-items: flex-start;
  }

  .price-card {
    padding: 28px 22px;
  }

  .price strong {
    font-size: 60px;
  }

  .support-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .support-icon {
    margin-inline: auto;
  }

  .support-inner .eyebrow {
    justify-content: center;
  }

  .support-links {
    grid-column: auto;
    flex-direction: column;
    justify-content: center;
    gap: 18px;
  }

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

  .footer-bottom {
    flex-direction: column;
  }

  .legal-hero {
    padding: 130px 0 62px;
  }

  .legal-hero h1 {
    font-size: 43px;
  }

  .legal-layout {
    padding-block: 55px 80px;
  }

  .contact-cards {
    grid-template-columns: 1fr;
  }
}

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

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