:root {
  --white: #ffffff;
  --paper: #f5f6f4;
  --ink: #121715;
  --muted: #5a625e;
  --soft: #e8ece9;
  --line: #d9dfdb;
  --teal: #087f70;
  --teal-bright: #27b49f;
  --teal-pale: #e5f3ef;
  --dark: #151a18;
  --dark-soft: #202724;
  --container: min(100% - 48px, 1180px);
  --shadow: 0 24px 65px rgba(18, 23, 21, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

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

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

:focus-visible {
  outline: 3px solid rgba(39, 180, 159, 0.5);
  outline-offset: 4px;
}

.site-header {
  position: relative;
  z-index: 30;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
}

.brand-row {
  width: var(--container);
  min-height: 88px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
}

.brand,
.footer-brand {
  display: flex;
  align-items: center;
  gap: 13px;
}

.brand {
  flex: 0 0 auto;
  font-size: 17px;
  font-weight: 780;
  letter-spacing: 0;
}

.brand img {
  width: 42px;
  height: 42px;
}

.footer-brand img {
  width: 40px;
  height: 40px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 28px;
}

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

.main-nav a {
  position: relative;
  padding: 10px 0;
  color: #4d5651;
  font-size: 13px;
  font-weight: 700;
}

.main-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 2px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible,
.main-nav a.active {
  color: var(--ink);
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after,
.main-nav a.active::after {
  transform: scaleX(1);
}

.header-cta {
  min-height: 42px;
  padding: 0 18px;
  border-radius: 5px;
  background: var(--dark);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 780;
  transition: background 180ms ease, transform 180ms ease;
}

.header-cta:hover,
.header-cta:focus-visible {
  background: var(--teal);
  transform: translateY(-1px);
}

.course-bar {
  min-height: 40px;
  padding: 9px max(24px, calc((100vw - 1360px) / 2));
  background: var(--dark);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-size: 10px;
  font-weight: 780;
  letter-spacing: 0.16em;
  line-height: 1.45;
  text-transform: uppercase;
}

.course-bar p {
  margin: 0;
}

.course-bar p:first-child {
  color: var(--teal-bright);
}

.course-bar span {
  margin: 0 8px;
}

.hero {
  position: relative;
  min-height: 690px;
  background: var(--dark);
  display: grid;
  place-items: center;
  overflow: hidden;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center 54%;
}

.hero-shade {
  background:
    linear-gradient(180deg, rgba(8, 12, 10, 0.35), rgba(8, 12, 10, 0.72)),
    linear-gradient(90deg, rgba(8, 12, 10, 0.32), rgba(8, 12, 10, 0.06));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(100% - 40px, 970px);
  padding: 88px 0 82px;
  color: var(--white);
  text-align: center;
}

.eyebrow,
.section-label {
  margin: 0 0 18px;
  color: var(--teal);
  font-size: 11px;
  font-weight: 820;
  letter-spacing: 0.2em;
  line-height: 1.4;
  text-transform: uppercase;
}

.hero .eyebrow,
.dark-band .section-label,
.final-cta .section-label {
  color: var(--teal-bright);
}

.hero h1 {
  max-width: 900px;
  margin: 0 auto;
  font-size: clamp(56px, 6.4vw, 88px);
  line-height: 0.98;
  font-weight: 620;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero h1 em,
.display-heading em,
.final-cta h2 em {
  font-weight: 350;
}

.hero-intro {
  max-width: 820px;
  margin: 30px auto 34px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 17px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.button {
  min-height: 52px;
  padding: 0 25px;
  border-radius: 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 780;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover,
.button:focus-visible,
.plan-button:hover,
.plan-button:focus-visible {
  transform: translateY(-2px);
}

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

.button-accent:hover,
.button-accent:focus-visible {
  background: #096f63;
}

.button-outline {
  border: 1px solid rgba(255, 255, 255, 0.68);
  color: var(--white);
}

.button-outline:hover,
.button-outline:focus-visible {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.button-dark {
  background: var(--dark);
  color: var(--white);
}

.button-dark:hover,
.button-dark:focus-visible {
  background: var(--teal);
}

.trust-line {
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.04em;
}

.trust-line strong {
  margin-right: 10px;
  color: var(--white);
  letter-spacing: 0.1em;
}

.proof-rail {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.proof-grid {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.proof-item {
  min-height: 116px;
  padding: 25px 28px;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.proof-item:first-child {
  border-left: 1px solid var(--line);
}

.proof-item strong {
  margin-bottom: 6px;
  font-size: 24px;
  line-height: 1;
}

.proof-item span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.section {
  width: var(--container);
  margin: 0 auto;
  padding: 108px 0;
}

.display-heading,
.page-hero h1,
.final-cta h2 {
  margin: 0;
  font-size: clamp(40px, 4.8vw, 66px);
  line-height: 1.02;
  font-weight: 620;
  letter-spacing: 0;
  text-wrap: balance;
}

.about {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(52px, 7vw, 96px);
  align-items: center;
}

.media-frame {
  position: relative;
}

.media-frame::before {
  content: "";
  position: absolute;
  inset: 22px -22px -22px 22px;
  z-index: 0;
  background: var(--teal-pale);
}

.media-frame img {
  position: relative;
  z-index: 1;
  height: 540px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.about-copy > p:not(.section-label),
.curriculum-heading > p:not(.section-label),
.resources-copy > p:not(.section-label),
.plans-heading > p:not(.section-label),
.faq-heading > p:not(.section-label),
.pricing-detail p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.72;
}

.arrow-list {
  margin: 26px 0 30px;
  padding: 0;
  list-style: none;
}

.arrow-list li {
  position: relative;
  padding: 8px 0 8px 27px;
  font-size: 15px;
  line-height: 1.45;
}

.arrow-list li::before {
  content: "->";
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 800;
}

.dark-band {
  padding: 102px 24px;
  background: var(--dark);
  color: var(--white);
}

.dark-band-inner {
  width: min(100%, 1180px);
  margin: 0 auto;
}

.dark-band .display-heading {
  max-width: 800px;
  margin-bottom: 50px;
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #39403c;
  border-bottom: 1px solid #39403c;
}

.pillar-grid article {
  min-height: 270px;
  padding: 36px 34px 38px;
  border-right: 1px solid #39403c;
}

.pillar-grid article:last-child {
  border-right: 0;
}

.card-number {
  color: var(--teal-bright);
  font-size: 12px;
  font-weight: 800;
}

.pillar-grid h3 {
  margin: 36px 0 18px;
  font-size: 23px;
  line-height: 1.15;
}

.pillar-grid p {
  margin: 0;
  color: #c7cfcb;
  font-size: 15px;
  line-height: 1.68;
}

.curriculum {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(54px, 8vw, 110px);
}

.curriculum-heading {
  position: sticky;
  top: 32px;
  align-self: start;
}

.curriculum-heading .button {
  margin-top: 18px;
}

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

.module-list article {
  display: grid;
  grid-template-columns: 52px 1fr auto;
  gap: 22px;
  padding: 27px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}

.module-list > article > span {
  color: var(--teal);
  font-size: 12px;
  font-weight: 820;
}

.module-list p {
  margin: 0 0 7px;
  color: var(--teal);
  font-size: 10px;
  font-weight: 820;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.module-list h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.35;
}

.module-time {
  color: var(--muted);
  font-size: 12px;
  white-space: nowrap;
}

.resources {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  min-height: 620px;
  background: var(--paper);
}

.resources-image img {
  height: 100%;
  object-fit: cover;
}

.resources-copy {
  padding: 88px max(40px, calc((100vw - 1180px) / 2));
  padding-left: clamp(46px, 7vw, 112px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.resource-list {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.resource-list li {
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-size: 14px;
  font-weight: 720;
}

.resource-list span {
  color: var(--teal);
  font-size: 11px;
  font-weight: 820;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.plans {
  background: var(--white);
}

.plans-heading,
.faq-heading {
  max-width: 750px;
  margin: 0 auto 52px;
  text-align: center;
}

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

.plan-card {
  min-height: 500px;
  padding: 32px 28px 28px;
  border: 1px solid var(--line);
  background: var(--white);
  display: flex;
  flex-direction: column;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.plan-card:hover {
  transform: translateY(-4px);
  border-color: #b9c5bf;
  box-shadow: var(--shadow);
}

.plan-card.featured {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
}

.plan-tag {
  min-height: 18px;
  margin: 0 0 34px;
  color: var(--teal);
  font-size: 11px;
  font-weight: 780;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.featured .plan-tag {
  color: var(--teal-bright);
}

.plan-card h3 {
  min-height: 54px;
  margin: 0 0 14px;
  font-size: 22px;
  line-height: 1.15;
}

.plan-card strong {
  font-size: 44px;
  line-height: 1;
  font-weight: 520;
}

.plan-summary {
  margin: 29px 0 18px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.featured .plan-summary {
  color: #bfc8c3;
}

.plan-card ul {
  flex: 1;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.plan-card li {
  position: relative;
  padding: 7px 0 7px 22px;
  color: #38403c;
  font-size: 14px;
  line-height: 1.4;
}

.featured li {
  color: #e2e7e4;
}

.plan-card li::before {
  content: "";
  position: absolute;
  top: 13px;
  left: 0;
  width: 7px;
  height: 7px;
  border: 2px solid var(--teal);
  border-radius: 50%;
}

.plan-button {
  min-height: 48px;
  padding: 0 16px;
  border-radius: 5px;
  background: var(--dark);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 780;
  transition: transform 180ms ease, background 180ms ease;
}

.featured .plan-button,
.plan-button.accent {
  background: var(--teal);
}

.plan-note {
  max-width: 860px;
  margin: 36px auto 0;
  color: var(--muted);
  text-align: center;
  font-size: 12px;
  line-height: 1.6;
}

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

.faq-layout {
  width: var(--container);
  margin: 0 auto;
  padding: 104px 0;
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(52px, 8vw, 108px);
}

.faq-heading {
  margin: 0;
  text-align: left;
}

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

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

.faq-list summary {
  position: relative;
  padding: 22px 42px 22px 0;
  cursor: pointer;
  list-style: none;
  font-size: 16px;
  font-weight: 760;
  line-height: 1.35;
}

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

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 20px;
  right: 4px;
  color: var(--teal);
  font-size: 22px;
  font-weight: 500;
}

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

.faq-list details p {
  max-width: 650px;
  margin: -4px 0 22px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.final-cta {
  position: relative;
  min-height: 500px;
  background: var(--dark);
  display: grid;
  place-items: center;
  overflow: hidden;
}

.final-cta > img,
.final-cta > div {
  position: absolute;
  inset: 0;
  height: 100%;
}

.final-cta > img {
  object-fit: cover;
  object-position: center;
}

.final-cta > div {
  background: rgba(9, 13, 11, 0.7);
}

.final-cta article {
  position: relative;
  z-index: 1;
  width: min(100% - 40px, 790px);
  padding: 72px 0;
  color: var(--white);
  text-align: center;
}

.final-cta .button {
  margin-top: 30px;
}

.footer-shell {
  background: var(--dark);
  color: var(--white);
}

.footer {
  width: var(--container);
  margin: 0 auto;
  padding: 64px 0 46px;
  display: grid;
  grid-template-columns: 1.35fr 0.7fr 0.85fr 0.8fr;
  gap: 50px;
  align-items: start;
}

.footer h2 {
  margin: 0 0 7px;
  font-size: 18px;
}

.footer p,
.footer address,
.footer-contact {
  margin: 0;
  color: #adb8b2;
  font-size: 13px;
  line-height: 1.65;
  font-style: normal;
}

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

.footer-contact a,
.footer-links a {
  color: #d8dfdb;
  font-size: 13px;
  line-height: 1.4;
  overflow-wrap: anywhere;
}

.footer-contact a:hover,
.footer-contact a:focus-visible,
.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--teal-bright);
}

.footer-links-title {
  margin: 0 0 10px;
  color: var(--white);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-bottom {
  width: var(--container);
  margin: 0 auto;
  padding: 20px 0 28px;
  border-top: 1px solid #303734;
  color: #7f8b85;
  font-size: 11px;
}

.page-hero {
  padding: 88px 24px 82px;
  background: var(--dark);
  color: var(--white);
  text-align: center;
}

.page-hero .section-label {
  color: var(--teal-bright);
}

.page-hero h1 {
  max-width: 920px;
  margin: 0 auto;
}

.page-hero > p:last-child {
  max-width: 720px;
  margin: 24px auto 0;
  color: #c2cbc6;
  font-size: 16px;
  line-height: 1.7;
}

.pricing-page {
  width: var(--container);
  margin: 0 auto;
  padding: 90px 0 108px;
}

.pricing-page .plan-grid {
  margin-top: 0;
}

.pricing-detail {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 72px;
  margin-top: 90px;
  padding-top: 80px;
  border-top: 1px solid var(--line);
}

.pricing-detail ul {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.pricing-detail li {
  padding: 19px 0;
  border-bottom: 1px solid var(--line);
  color: #3c4540;
  font-size: 15px;
  line-height: 1.5;
}

.pricing-callout {
  margin-top: 76px;
  padding: 42px;
  background: var(--teal-pale);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
}

.pricing-callout h2 {
  margin: 0 0 8px;
  font-size: 28px;
}

.pricing-callout p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.document-layout {
  width: min(100% - 48px, 1120px);
  margin: 0 auto;
  padding: 84px 0 108px;
  display: grid;
  grid-template-columns: 230px minmax(0, 760px);
  gap: 72px;
  justify-content: center;
}

.document-nav {
  position: sticky;
  top: 28px;
  align-self: start;
  padding-top: 4px;
}

.document-nav p {
  margin: 0 0 14px;
  color: var(--teal);
  font-size: 10px;
  font-weight: 820;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.document-nav a {
  display: block;
  padding: 7px 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.document-nav a:hover,
.document-nav a:focus-visible {
  color: var(--teal);
}

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

.legal-notice {
  margin-bottom: 34px;
  padding: 20px 22px;
  border-left: 3px solid var(--teal);
  background: var(--paper);
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.legal-section {
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 24px;
}

.legal-section:first-of-type {
  padding-top: 0;
}

.legal-section h2 {
  margin: 0 0 14px;
  font-size: 25px;
  line-height: 1.2;
}

.legal-section h3 {
  margin: 22px 0 9px;
  font-size: 18px;
}

.legal-section p,
.legal-section li {
  color: #3f4743;
  font-size: 15px;
  line-height: 1.75;
}

.legal-section p {
  margin: 0 0 13px;
}

.legal-section ul,
.legal-section ol {
  margin: 10px 0 0;
  padding-left: 22px;
}

.legal-section a {
  color: var(--teal);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

@media (max-width: 980px) {
  .header-actions {
    gap: 18px;
  }

  .main-nav {
    gap: 18px;
  }

  .about,
  .curriculum,
  .resources,
  .pricing-detail,
  .faq-layout,
  .footer {
    grid-template-columns: 1fr;
  }

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

  .proof-item:nth-child(3) {
    border-left: 1px solid var(--line);
  }

  .proof-item:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .curriculum-heading,
  .document-nav {
    position: static;
  }

  .pillar-grid,
  .plan-grid {
    grid-template-columns: 1fr;
  }

  .pillar-grid article {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid #39403c;
  }

  .pillar-grid article:last-child {
    border-bottom: 0;
  }

  .resources-image {
    min-height: 460px;
  }

  .resources-copy {
    padding: 72px 36px;
  }

  .plan-card {
    min-height: 0;
  }

  .plan-card h3 {
    min-height: 0;
  }

  .faq-heading {
    text-align: left;
  }

  .document-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .document-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 4px 18px;
    border-bottom: 1px solid var(--line);
    padding-bottom: 20px;
  }

  .document-nav p {
    width: 100%;
  }
}

@media (max-width: 720px) {
  :root {
    --container: min(100% - 28px, 1180px);
  }

  .brand-row {
    min-height: 0;
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
    padding: 14px 0 16px;
  }

  .brand {
    font-size: 16px;
  }

  .brand img {
    width: 38px;
    height: 38px;
  }

  .header-actions {
    width: 100%;
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .main-nav {
    width: 100%;
    flex-wrap: wrap;
    gap: 4px 22px;
  }

  .main-nav a {
    padding: 5px 0;
    font-size: 12px;
  }

  .main-nav a::after {
    bottom: 0;
  }

  .header-cta {
    display: none;
  }

  .course-bar {
    min-height: 52px;
    padding: 10px 16px;
    justify-content: center;
    font-size: 8px;
    letter-spacing: 0.11em;
    text-align: center;
  }

  .course-bar p:last-child {
    display: none;
  }

  .course-bar p:first-child {
    max-width: 310px;
  }

  .hero {
    min-height: 690px;
  }

  .hero-image {
    object-position: 59% center;
  }

  .hero-content {
    width: min(100% - 56px, 970px);
    padding: 72px 0 68px;
  }

  .hero h1 {
    max-width: 330px;
    font-size: clamp(40px, 11vw, 44px);
    line-height: 1.02;
  }

  .hero .eyebrow {
    font-size: 10px;
    letter-spacing: 0.14em;
  }

  .hero-intro {
    max-width: 310px;
    margin-top: 24px;
    font-size: 14px;
    line-height: 1.7;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .trust-line strong,
  .trust-line span {
    display: block;
  }

  .trust-line {
    max-width: 310px;
    margin-right: auto;
    margin-left: auto;
  }

  .trust-line span {
    margin-top: 8px;
  }

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

  .proof-item,
  .proof-item:first-child,
  .proof-item:nth-child(3) {
    min-height: 0;
    padding: 20px 0;
    border-right: 0;
    border-left: 0;
    border-bottom: 1px solid var(--line);
  }

  .section,
  .faq-layout {
    padding-top: 74px;
    padding-bottom: 74px;
  }

  .display-heading,
  .page-hero h1,
  .final-cta h2 {
    font-size: 39px;
  }

  .media-frame::before {
    inset: 14px -10px -14px 14px;
  }

  .media-frame img {
    height: 350px;
  }

  .dark-band {
    padding: 74px 14px;
  }

  .pillar-grid article {
    padding: 28px 22px;
  }

  .pillar-grid h3 {
    margin-top: 24px;
  }

  .module-list article {
    grid-template-columns: 36px 1fr;
    gap: 12px;
  }

  .module-time {
    display: none;
  }

  .resources-image {
    min-height: 330px;
  }

  .resources-copy {
    padding: 66px 20px;
  }

  .pricing-callout {
    padding: 30px 24px;
    grid-template-columns: 1fr;
  }

  .pricing-callout .button {
    width: 100%;
  }

  .final-cta {
    min-height: 470px;
  }

  .footer {
    gap: 34px;
  }

  .footer-bottom {
    line-height: 1.5;
  }

  .page-hero {
    padding: 68px 18px 62px;
  }

  .page-hero > p:last-child {
    font-size: 15px;
  }

  .pricing-page {
    padding-top: 70px;
    padding-bottom: 80px;
  }

  .document-layout {
    width: min(100% - 28px, 1120px);
    padding-top: 64px;
    padding-bottom: 82px;
  }
}

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

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