:root {
  color-scheme: light;
  --page: #f7f5f0;
  --paper: #fffdf8;
  --paper-strong: #f0ede5;
  --text: #24282c;
  --muted: #60686f;
  --line: #d9d4c8;
  --teal: #1f6f68;
  --teal-dark: #164f4b;
  --slate: #3f5f73;
  --amber: #d2a13e;
  --clay: #bd6b59;
  --white: #ffffff;
  --shadow: 0 20px 60px rgba(36, 40, 44, 0.12);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  max-width: 100%;
  overflow-x: clip;
}

body {
  margin: 0;
  max-width: 100%;
  overflow-x: clip;
  background: var(--page);
  color: var(--text);
  font-family: "Atkinson Hyperlegible", "Source Sans 3", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.55;
}

body::selection {
  background: rgba(31, 111, 104, 0.22);
}

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

body :focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 4px;
  border-radius: 6px;
}

p,
h1,
h2,
h3 {
  margin-top: 0;
  overflow-wrap: break-word;
}

img {
  max-width: 100%;
}

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

p {
  color: var(--muted);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 14px clamp(20px, 4vw, 48px);
  background: rgba(247, 245, 240, 0.92);
  border-bottom: 1px solid rgba(217, 212, 200, 0.8);
  backdrop-filter: blur(14px);
}

.site-header > *,
.site-nav,
.mobile-menu,
.section-inner,
.section-heading,
.hero-content,
.subpage-hero-inner,
.prose,
.learning-card,
.program-card,
.feature-card,
.pricing-card,
.step-card,
.compare-card,
.qualifier-list li {
  min-width: 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  height: 46px;
  min-width: max-content;
  font-family: "Source Sans 3", Arial, sans-serif;
  font-weight: 800;
}

.brand-logo {
  display: block;
  width: clamp(142px, 13vw, 196px);
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 1.6vw, 24px);
  color: #3d464c;
  font-family: "Source Sans 3", Arial, sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
}

.site-nav a,
.nav-dropdown > summary,
.site-footer a {
  border-bottom: 2px solid transparent;
}

.site-nav a,
.nav-dropdown > summary {
  white-space: nowrap;
}

.site-nav a:hover,
.nav-dropdown > summary:hover,
.nav-dropdown[open] > summary,
.site-footer a:hover {
  border-color: var(--amber);
}

.site-nav a[aria-current="page"],
.nav-dropdown-current > summary {
  color: var(--text);
  border-color: var(--amber);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown > summary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  list-style: none;
}

.nav-dropdown > summary::-webkit-details-marker {
  display: none;
}

.nav-dropdown > summary::after {
  content: "";
  width: 7px;
  height: 7px;
  margin-top: -3px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 160ms ease, margin-top 160ms ease;
}

.nav-dropdown[open] > summary::after {
  margin-top: 4px;
  transform: rotate(225deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  z-index: 40;
  display: grid;
  min-width: 230px;
  padding: 8px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 46px rgba(36, 40, 44, 0.16);
  transform: translateX(-50%);
}

.nav-dropdown-menu::before {
  content: "";
  position: absolute;
  top: -7px;
  left: 50%;
  width: 12px;
  height: 12px;
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  transform: translateX(-50%) rotate(45deg);
}

.nav-dropdown-menu a {
  position: relative;
  z-index: 1;
  display: block;
  padding: 10px 12px;
  border: 0;
  border-radius: 6px;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a[aria-current="page"],
.nav-dropdown-menu a:focus-visible {
  color: var(--teal-dark);
  background: #edf5f3;
}

.mobile-menu {
  position: relative;
  display: none;
  justify-self: end;
}

.mobile-menu > summary {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  cursor: pointer;
  list-style: none;
  background: var(--paper);
  border: 1px solid rgba(31, 111, 104, 0.22);
  border-radius: var(--radius);
  box-shadow: 0 10px 24px rgba(36, 40, 44, 0.08);
}

.mobile-menu > summary::-webkit-details-marker {
  display: none;
}

.hamburger-icon,
.hamburger-icon::before,
.hamburger-icon::after {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--teal-dark);
  border-radius: 999px;
  transition:
    transform 160ms ease,
    opacity 160ms ease,
    background 160ms ease;
}

.hamburger-icon {
  position: relative;
}

.hamburger-icon::before,
.hamburger-icon::after {
  position: absolute;
  left: 0;
  content: "";
}

.hamburger-icon::before {
  top: -7px;
}

.hamburger-icon::after {
  top: 7px;
}

.mobile-menu[open] .hamburger-icon {
  background: transparent;
}

.mobile-menu[open] .hamburger-icon::before {
  transform: translateY(7px) rotate(45deg);
}

.mobile-menu[open] .hamburger-icon::after {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 60;
  display: grid;
  width: min(320px, calc(100vw - 32px));
  padding: 8px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 46px rgba(36, 40, 44, 0.18);
}

.mobile-nav a {
  display: block;
  padding: 11px 12px;
  border-radius: 6px;
  font-family: "Source Sans 3", Arial, sans-serif;
  font-weight: 800;
}

.mobile-nav a {
  color: #344047;
}

.mobile-nav a:hover,
.mobile-nav a:focus-visible,
.mobile-nav a[aria-current="page"] {
  color: var(--teal-dark);
  background: #edf5f3;
}

.mobile-nav-cta {
  margin-top: 6px;
  color: var(--white) !important;
  background: var(--teal);
  text-align: center;
}

.mobile-nav-cta:hover,
.mobile-nav-cta:focus-visible {
  color: var(--white) !important;
  background: var(--teal-dark) !important;
}

@media (max-width: 1024px) {
  .site-header {
    grid-template-columns: minmax(0, auto) auto;
    gap: 12px 20px;
    justify-content: space-between;
  }

  .brand {
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
  }

  .header-cta {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
  }

  .site-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    flex-wrap: wrap;
    justify-content: flex-start;
    width: 100%;
    gap: 8px 18px;
    font-size: 0.88rem;
  }

  .nav-dropdown-menu {
    top: calc(100% + 10px);
    left: 0;
    transform: none;
  }

  .nav-dropdown-menu::before {
    left: 24px;
    transform: rotate(45deg);
  }
}

@media (max-width: 760px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
  }

  .brand {
    grid-column: 1;
    grid-row: 1;
  }

  .site-nav,
  .site-header > .header-cta {
    display: none;
  }

  .mobile-menu {
    grid-column: 2;
    grid-row: 1;
    display: block;
  }
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-family: "Source Sans 3", Arial, sans-serif;
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
  overflow-wrap: anywhere;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    border-color 160ms ease,
    background 160ms ease;
}

.header-cta {
  color: var(--white);
  background: var(--teal);
  box-shadow: 0 10px 30px rgba(31, 111, 104, 0.18);
}

.button:hover,
.header-cta:hover {
  transform: translateY(-1px);
}

.button-primary {
  color: var(--white);
  background: var(--teal);
  box-shadow: 0 14px 34px rgba(31, 111, 104, 0.2);
}

.button-secondary {
  color: var(--teal-dark);
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(31, 111, 104, 0.3);
}

.button-secondary.light {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.55);
}

.button-card {
  width: 100%;
  color: var(--teal-dark);
  background: #eef5f3;
  border-color: rgba(31, 111, 104, 0.18);
}

.button-card-featured {
  color: var(--white);
  background: var(--teal);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.76fr);
  gap: clamp(28px, 5vw, 70px);
  min-height: clamp(620px, 72svh, 780px);
  overflow: hidden;
  align-items: center;
  padding: clamp(52px, 8vw, 108px) clamp(20px, 5vw, 72px) clamp(34px, 5vw, 58px);
  background:
    linear-gradient(90deg, rgba(247, 245, 240, 0.96) 0%, rgba(247, 245, 240, 0.88) 54%, rgba(247, 245, 240, 0.72) 100%),
    #d9d4c8;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-backdrop::before {
  position: absolute;
  top: -24%;
  bottom: -24%;
  right: clamp(76px, 11vw, 170px);
  width: clamp(260px, 30vw, 460px);
  background: linear-gradient(
    90deg,
    rgba(63, 95, 115, 0.025) 0%,
    rgba(63, 95, 115, 0.07) 54%,
    rgba(63, 95, 115, 0.035) 100%
  );
  content: "";
  transform: rotate(18deg);
}

.road-line {
  position: absolute;
  top: -24%;
  bottom: -24%;
  z-index: 1;
  width: 2px;
  background: rgba(63, 95, 115, 0.2);
  transform: rotate(18deg);
}

.road-line-one {
  display: none;
  right: clamp(76px, 11vw, 170px);
}

.road-line-two {
  right: clamp(250px, 30vw, 430px);
  background: repeating-linear-gradient(
    to bottom,
    rgba(210, 161, 62, 0.55) 0,
    rgba(210, 161, 62, 0.55) 36px,
    transparent 36px,
    transparent 68px
  );
}

.reference-pin {
  position: absolute;
  z-index: 2;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--clay);
  box-shadow: 0 0 0 8px rgba(189, 107, 89, 0.14);
}

.reference-pin span {
  position: absolute;
  top: 7px;
  right: 18px;
  width: clamp(46px, 4vw, 60px);
  height: 1px;
  background: rgba(189, 107, 89, 0.42);
}

.pin-one {
  top: 30%;
  right: calc(clamp(250px, 30vw, 430px) - 150px);
}

.pin-two {
  display: none;
}

.hero .pin-one {
  top: 11%;
}

.hero-content {
  position: relative;
  z-index: 1;
  align-self: center;
  max-width: 760px;
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--teal-dark);
  font-family: "Source Sans 3", Arial, sans-serif;
  font-size: 0.83rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  color: var(--text);
  font-family: "Source Sans 3", Arial, sans-serif;
  letter-spacing: 0;
  line-height: 1.03;
}

h1 {
  max-width: 720px;
  margin-bottom: 22px;
  font-size: clamp(3rem, 7vw, 6.4rem);
  font-weight: 800;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.65rem);
  font-weight: 800;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.45rem;
  font-weight: 800;
  line-height: 1.12;
}

.hero-copy {
  max-width: 690px;
  margin-bottom: 14px;
  color: #364047;
  font-size: clamp(1.24rem, 2vw, 1.55rem);
  line-height: 1.38;
}

.hero-support {
  max-width: 720px;
  margin-bottom: 30px;
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
}

.availability {
  margin: 0;
  color: #515b61;
  font-size: 0.98rem;
}

.hero-photo {
  position: relative;
  z-index: 1;
  align-self: stretch;
  display: block;
  min-height: 420px;
  max-height: 660px;
  overflow: hidden;
  margin: 0;
  background: #c9c9c5;
  border: 1px solid rgba(36, 40, 44, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-photo img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: 58% 50%;
}

.section-inner {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.section-heading {
  max-width: 780px;
}

.section-intro {
  margin-top: 18px;
  color: #3c464b;
  font-size: 1.12rem;
}

.learning-strip {
  padding: clamp(48px, 7vw, 84px) 0;
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.learning-layout {
  display: grid;
  gap: 34px;
}

.learning-heading {
  max-width: 890px;
}

.learning-comparison {
  display: grid;
  grid-template-columns: minmax(250px, 0.72fr) minmax(0, 1.35fr);
  gap: 18px;
}

.learning-options {
  display: grid;
  gap: 14px;
  align-content: start;
}

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

.learning-card {
  display: grid;
  align-content: start;
  min-height: 100%;
  padding: clamp(22px, 3vw, 30px);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(36, 40, 44, 0.06);
}

.learning-baseline {
  background: #eeece7;
  border-color: #d6d1c8;
  border-top: 4px solid #aaa49a;
  box-shadow: none;
}

.learning-card-enhanced,
.learning-card-brainpath {
  background:
    linear-gradient(180deg, rgba(31, 111, 104, 0.12), rgba(255, 255, 255, 0) 54%),
    var(--paper);
  border-color: rgba(31, 111, 104, 0.24);
  border-top: 4px solid var(--teal);
}

.learning-kicker {
  margin: 0 0 22px;
  color: var(--slate);
  font-family: "Source Sans 3", Arial, sans-serif;
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: uppercase;
}

.learning-baseline .learning-kicker {
  color: #77726b;
}

.learning-baseline h3 {
  color: #5b6064;
}

.learning-baseline p {
  color: #6d7377;
}

.learning-options > .learning-kicker {
  margin-bottom: 4px;
  color: var(--teal-dark);
  font-size: 1.08rem;
}

.learning-card .program-label {
  margin-bottom: 14px;
  color: var(--teal-dark);
}

.learning-card h3 {
  margin-bottom: 8px;
}

.learning-card p {
  margin-bottom: 0;
}

.learning-claim {
  margin: 0;
  color: #3f5658;
  font-weight: 700;
}

.learning-note {
  margin: 18px 0 0;
  color: #3c464b;
  font-weight: 500;
}

.learning-limit {
  margin-top: 20px;
  padding-top: 18px;
  color: #60666a;
  border-top: 1px solid rgba(96, 104, 111, 0.24);
  font-weight: 700;
}

.fit-section {
  padding: clamp(60px, 9vw, 108px) 0;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(260px, 0.74fr) minmax(0, 1fr);
  gap: clamp(32px, 6vw, 86px);
  align-items: start;
}

.sticky-heading {
  position: sticky;
  top: 104px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--teal-dark);
  font-family: "Source Sans 3", Arial, sans-serif;
  font-weight: 800;
  border-bottom: 2px solid var(--amber);
}

.text-link::after {
  content: "->";
  color: var(--clay);
}

.qualifier-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.qualifier-list li {
  position: relative;
  min-height: 72px;
  padding: 20px 22px 20px 58px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 36px rgba(36, 40, 44, 0.05);
}

.qualifier-list li::before {
  content: "\2713";
  position: absolute;
  top: 20px;
  left: 22px;
  width: 18px;
  height: 18px;
  color: var(--teal);
  font-family: "Source Sans 3", Arial, sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  line-height: 1;
}

.programs-section {
  padding: clamp(56px, 8vw, 96px) 0;
  background: #e9ece9;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.programs-heading {
  max-width: 820px;
}

.programs-heading p:last-child {
  margin-bottom: 28px;
}

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

.program-card {
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 460px;
  padding: clamp(24px, 4vw, 36px);
  background: var(--paper);
  border: 1px solid rgba(36, 40, 44, 0.1);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.program-card-featured {
  background:
    linear-gradient(180deg, rgba(31, 111, 104, 0.08), rgba(255, 255, 255, 0) 42%),
    var(--paper);
  border-color: rgba(31, 111, 104, 0.28);
}

.program-icon {
  position: relative;
  width: 84px;
  height: 84px;
  margin-bottom: 54px;
  background: #edf5f3;
  border: 1px solid rgba(31, 111, 104, 0.18);
  border-radius: 50%;
}

.program-icon::before,
.program-icon::after,
.program-icon span {
  content: "";
  position: absolute;
  background: var(--teal);
}

.program-icon::before {
  top: 21px;
  left: 21px;
  width: 42px;
  height: 3px;
}

.program-icon::after {
  top: 40px;
  left: 21px;
  width: 42px;
  height: 3px;
}

.program-icon span {
  top: 58px;
  left: 21px;
  width: 28px;
  height: 3px;
}

.strategy-icon::before {
  top: 18px;
  left: 40px;
  width: 4px;
  height: 48px;
}

.strategy-icon::after {
  top: 40px;
  left: 18px;
  width: 48px;
  height: 4px;
}

.strategy-icon span {
  top: 24px;
  left: 24px;
  width: 36px;
  height: 36px;
  background: transparent;
  border: 3px solid var(--teal);
  border-radius: 50%;
}

.program-label {
  margin-bottom: 12px;
  color: var(--clay);
  font-family: "Source Sans 3", Arial, sans-serif;
  font-weight: 800;
  text-transform: uppercase;
}

.program-content p:last-child {
  margin-bottom: 28px;
}

.explicit-section {
  padding: clamp(58px, 8vw, 100px) 0;
  background: var(--paper);
}

.explicit-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 78px);
  align-items: center;
}

.explicit-photo {
  display: block;
  min-height: 430px;
  overflow: hidden;
  margin: 0;
  background: #5e6768;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.explicit-photo img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: 50% 50%;
}

.road-demo {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  background: #5e6768;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.lane {
  position: absolute;
  top: -10%;
  bottom: -10%;
  width: 2px;
  transform: rotate(14deg);
}

.lane-left {
  left: 32%;
  background: #e3c35b;
  box-shadow: 12px 0 0 #e3c35b;
}

.lane-center {
  left: 62%;
  background: repeating-linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.85) 0,
    rgba(255, 255, 255, 0.85) 38px,
    transparent 38px,
    transparent 76px
  );
}

.car-shape {
  position: absolute;
  right: 24%;
  bottom: 46px;
  width: 118px;
  height: 164px;
  background: #f3f4f0;
  border-radius: 26px 26px 12px 12px;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.28);
}

.car-shape::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 18px;
  right: 18px;
  height: 42px;
  background: #9fb2b4;
  border-radius: 18px 18px 8px 8px;
}

.measurement {
  position: absolute;
  z-index: 2;
  padding: 7px 10px;
  color: var(--text);
  background: var(--paper);
  border-radius: var(--radius);
  font-family: "Source Sans 3", Arial, sans-serif;
  font-size: 0.88rem;
  font-weight: 800;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.16);
}

.measurement-one {
  left: 23%;
  bottom: 154px;
}

.measurement-one::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 100%;
  width: 108px;
  height: 2px;
  background: var(--amber);
}

.measurement-two {
  top: 82px;
  right: 36px;
}

.explicit-copy {
  max-width: 620px;
}

.explicit-copy p {
  font-size: 1.12rem;
}

.story-section {
  padding: clamp(60px, 8vw, 104px) 0;
}

.story-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: stretch;
}

.story-copy {
  max-width: 760px;
}

.story-note {
  display: flex;
  align-items: flex-end;
  min-height: 320px;
  padding: 28px;
  background: var(--slate);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.story-note p {
  margin: 0;
  color: var(--white);
  font-family: "Source Sans 3", Arial, sans-serif;
  font-size: clamp(1.45rem, 3vw, 2.25rem);
  font-weight: 800;
  line-height: 1.12;
}

.story-photo {
  min-height: 320px;
  overflow: hidden;
  margin: 0;
  background: var(--paper-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.story-photo img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: 50% 26%;
}

.closing-cta {
  padding: clamp(48px, 7vw, 76px) 0;
  color: var(--white);
  background: var(--teal-dark);
}

.closing-cta h2,
.closing-cta p,
.closing-cta .eyebrow {
  color: var(--white);
}

.cta-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.58fr);
  gap: clamp(26px, 5vw, 64px);
  align-items: center;
}

.cta-layout p {
  max-width: 700px;
  opacity: 0.88;
}

.cta-actions {
  display: grid;
  gap: 12px;
}

.cta-actions p {
  margin: 8px 0 0;
  font-size: 0.94rem;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 24px clamp(20px, 4vw, 48px);
  background: #1f2528;
}

.site-footer p {
  margin: 0;
  color: var(--white);
  font-family: "Source Sans 3", Arial, sans-serif;
  font-weight: 800;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
}

.footer-logo {
  display: block;
  width: clamp(132px, 12vw, 176px);
  height: auto;
  filter: brightness(0) invert(1);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  justify-content: flex-end;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
}

/* ===========================================================
   Subpages — shared components (BrainPath, future program pages)
   =========================================================== */

.subpage-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(60px, 9vw, 116px) clamp(20px, 5vw, 72px) clamp(46px, 6vw, 78px);
  background:
    linear-gradient(90deg, rgba(247, 245, 240, 0.97) 0%, rgba(247, 245, 240, 0.9) 56%, rgba(247, 245, 240, 0.72) 100%),
    #d9d4c8;
  border-bottom: 1px solid var(--line);
}

.subpage-hero-inner {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.subpage-hero h1 {
  font-size: clamp(2.6rem, 5.6vw, 4.9rem);
}

.subpage-hero .hero-copy {
  margin-top: 8px;
}

.subpage-hero .availability {
  margin-top: 18px;
}

.content-section {
  padding: clamp(56px, 8vw, 100px) 0;
}

.content-section.tint {
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.content-section.tint-strong {
  background: #e9ece9;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-inner.narrow {
  width: min(840px, calc(100% - 40px));
}

.section-heading em {
  color: var(--teal-dark);
  font-style: italic;
}

.section-lead {
  max-width: 720px;
  margin: 14px 0 0;
}

.prose {
  max-width: 680px;
}

.prose p {
  color: #3c464b;
  font-size: 1.08rem;
}

.prose p + p {
  margin-top: 14px;
}

.prose strong {
  color: var(--text);
}

.emphasis {
  max-width: 880px;
  margin: 30px 0 0;
  color: var(--text);
  font-family: "Source Sans 3", Arial, sans-serif;
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
  font-weight: 800;
  line-height: 1.16;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 30px 0 24px;
}

.pricing-card {
  display: grid;
  align-content: center;
  padding: 26px 26px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-top: 2px solid rgba(31, 111, 104, 0.45);
  border-radius: var(--radius);
  box-shadow: 0 8px 22px rgba(36, 40, 44, 0.05);
}

.pricing-card h3 {
  margin: 0 0 16px;
  font-size: 1.35rem;
}

.package-price {
  display: flex;
  align-items: flex-start;
  gap: 4px;
  margin: 0;
  color: var(--text);
  font-family: "Source Sans 3", Arial, sans-serif;
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 0.9;
}

.package-price span:first-child {
  margin-top: 5px;
  font-size: 1.2rem;
  line-height: 1;
}

.package-price span:last-child {
  align-self: flex-end;
  margin-bottom: 4px;
  font-size: 1.7rem;
  line-height: 1;
}

.package-total {
  margin: 14px 0 0;
  color: var(--muted);
  font-family: "Source Sans 3", Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.2;
}

.pricing-note {
  max-width: 760px;
  margin: -2px 0 30px;
  color: #3c464b;
  font-size: 1.02rem;
  font-weight: 700;
}

/* callout note */
.callout {
  margin-top: 26px;
  padding: 22px 24px;
  background: #edf5f3;
  border: 1px solid rgba(31, 111, 104, 0.2);
  border-left: 4px solid var(--teal);
  border-radius: var(--radius);
}

.callout p {
  margin: 0;
  color: #2f4f4b;
  font-size: 1.05rem;
}

.callout strong {
  color: var(--teal-dark);
}

/* feature grid — "what strategy means" */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 30px;
}

.feature-card {
  padding: 26px 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-top: 3px solid var(--teal);
  border-radius: var(--radius);
  box-shadow: 0 12px 32px rgba(36, 40, 44, 0.05);
}

.feature-card h3 {
  margin: 0;
  font-size: 1.18rem;
  line-height: 1.2;
}

.feature-card p {
  margin: 8px 0 0;
  font-size: 0.99rem;
}

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

.thinking-step {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 220px;
  padding: 24px 22px;
  background:
    linear-gradient(180deg, rgba(31, 111, 104, 0.08), rgba(255, 255, 255, 0) 54%),
    var(--paper);
  border: 1px solid rgba(31, 111, 104, 0.22);
  border-top: 4px solid var(--teal);
  border-radius: var(--radius);
  box-shadow: 0 12px 32px rgba(36, 40, 44, 0.05);
}

.thinking-step-label {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: var(--white);
  background: var(--teal);
  border-radius: 50%;
  font-family: "Source Sans 3", Arial, sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
}

.thinking-step h3 {
  margin: 0;
  font-size: 1.35rem;
}

.thinking-step p {
  margin: 0;
  color: #3c464b;
  font-size: 1rem;
}

/* detail grid — auto-flowing cards with descriptions (e.g. "what makes it different") */
.detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  margin-top: 30px;
}

/* inline links inside body copy */
.prose a,
.callout a {
  color: var(--teal-dark);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.prose a:hover,
.callout a:hover {
  color: var(--teal);
}

/* ===========================================================
   Legal / document pages
   =========================================================== */

.page-head {
  padding: clamp(52px, 7vw, 92px) 0 clamp(26px, 4vw, 40px);
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.page-head h1 {
  margin-bottom: 0;
  font-size: clamp(2.3rem, 5vw, 3.6rem);
}

.doc-meta {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.legal-body {
  padding: clamp(40px, 6vw, 72px) 0 clamp(56px, 8vw, 100px);
}

.legal-body h2 {
  margin: 40px 0 12px;
  font-size: 1.5rem;
}

.legal-body h2:first-of-type {
  margin-top: 0;
}

.legal-body h3 {
  margin: 24px 0 8px;
  font-size: 1.14rem;
}

.legal-body p,
.legal-body li {
  color: #3c464b;
  font-size: 1.02rem;
}

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

.legal-body ul {
  display: grid;
  gap: 8px;
  margin: 0 0 16px;
  padding-left: 22px;
}

.legal-body a {
  color: var(--teal-dark);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-body a:hover {
  color: var(--teal);
}

.legal-body strong {
  color: var(--text);
}

.legal-body .callout {
  margin-top: 36px;
}

.legal-body .callout p {
  margin: 0 0 6px;
}

.legal-body .callout p:last-child {
  margin-bottom: 0;
}

/* step grid — Episodes */
.step-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}

.step-card {
  position: relative;
  padding: 24px 22px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 32px rgba(36, 40, 44, 0.05);
}

.step-number {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  color: var(--white);
  background: var(--teal);
  border-radius: 50%;
  font-family: "Source Sans 3", Arial, sans-serif;
  font-size: 0.96rem;
  font-weight: 800;
}

.step-card h3 {
  margin-bottom: 8px;
  font-size: 1.12rem;
}

.step-card p {
  margin: 0;
  font-size: 0.98rem;
}

/* "is / isn't" comparison */
.compare-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 30px;
}

.compare-card {
  padding: clamp(24px, 3vw, 36px);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.compare-card h3 {
  margin-bottom: 18px;
  font-size: 1.35rem;
}

.compare-card ul {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.compare-card li {
  position: relative;
  padding-left: 30px;
  font-weight: 600;
}

.compare-card li::before {
  position: absolute;
  left: 0;
  top: 0;
  font-family: "Source Sans 3", Arial, sans-serif;
  font-weight: 800;
}

.compare-is {
  background:
    linear-gradient(180deg, rgba(31, 111, 104, 0.1), rgba(255, 255, 255, 0) 46%),
    var(--paper);
  border: 1px solid rgba(31, 111, 104, 0.28);
}

.compare-is li {
  color: var(--text);
}

.compare-is li::before {
  content: "\2713";
  color: var(--teal);
}

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

.compare-isnt li {
  color: var(--muted);
}

.compare-isnt li::before {
  content: "\2715";
  color: var(--clay);
}

.promise {
  max-width: 900px;
  margin: 30px auto 0;
  padding: 28px 30px;
  background: var(--slate);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.promise p {
  margin: 0;
  color: var(--white);
  font-size: 1.1rem;
}

.promise strong {
  color: var(--white);
}

/* oversight card */
.oversight-card {
  display: grid;
  gap: 14px;
  padding: clamp(28px, 4vw, 44px);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.oversight-card .program-label {
  margin: 0;
}

.oversight-title {
  margin: 0;
  font-size: clamp(1.6rem, 3vw, 2.3rem);
}

.oversight-card p {
  margin: 0;
  font-size: 1.05rem;
}

.oversight-card strong {
  color: var(--teal-dark);
}

@media (max-width: 980px) {
  .feature-grid,
  .compare-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .step-grid,
  .thinking-sequence {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .step-grid,
  .thinking-sequence {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-photo {
    min-height: 320px;
    max-height: 460px;
  }

  .learning-comparison,
  .learning-grid,
  .program-grid,
  .explicit-layout,
  .story-layout,
  .cta-layout,
  .two-column {
    grid-template-columns: 1fr;
  }

  .sticky-heading {
    position: static;
  }

  .program-card {
    min-height: auto;
  }
}

@media (max-width: 680px) {
  body {
    font-size: 16px;
  }

  .site-header {
    gap: 14px;
    padding: 12px 16px;
  }

  .brand {
    height: 42px;
  }

  .brand-logo {
    width: clamp(120px, 34vw, 152px);
  }

  .site-nav {
    gap: 8px 12px;
    overflow-x: auto;
    padding-bottom: 4px;
    font-size: 0.82rem;
    scrollbar-width: none;
  }

  .site-nav::-webkit-scrollbar {
    display: none;
  }

  .nav-dropdown-menu {
    min-width: min(230px, calc(100vw - 32px));
  }

  .header-cta {
    min-height: 42px;
    padding: 10px 12px;
    font-size: 0.9rem;
  }

  .hero .reference-pin,
  .subpage-hero .reference-pin {
    display: none;
  }

  .subpage-hero .road-line-one {
    right: 12%;
  }

  .subpage-hero .road-line-two {
    right: 6%;
  }

  .hero {
    padding: 42px 18px 28px;
  }

  .hero .road-line {
    opacity: 0.32;
  }

  h1 {
    font-size: clamp(2.35rem, 11vw, 3rem);
  }

  h2 {
    font-size: clamp(1.85rem, 8vw, 2.15rem);
  }

  .hero-actions,
  .cta-actions {
    align-items: stretch;
  }

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

  .section-inner {
    width: min(100% - 32px, var(--max));
  }

  .learning-card,
  .program-card,
  .qualifier-list li {
    padding: 20px;
  }

  .qualifier-list li {
    padding-left: 52px;
  }

  .program-icon {
    margin-bottom: 34px;
  }

  .pricing-card {
    padding: 24px 22px;
  }

  .pricing-card h3 {
    font-size: 1.25rem;
  }

  .package-price {
    font-size: 2.9rem;
  }

  .package-price span:last-child {
    font-size: 1.55rem;
  }

  .explicit-photo,
  .road-demo {
    min-height: 340px;
  }

  .car-shape {
    right: 16%;
    width: 96px;
    height: 132px;
  }

  .measurement-one::after {
    width: 72px;
  }

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

  .site-footer nav {
    justify-content: flex-start;
  }
}

@media (max-width: 520px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .brand {
    grid-column: 1;
    grid-row: 1;
  }

  .mobile-menu {
    grid-column: 2;
    grid-row: 1;
  }
}

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

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