:root {
  --green: #123f33;
  --green-deep: #123f33;
  --ink: #20201f;
  --muted: #62605c;
  --soft: #fbfaf8;
  --paper: #ffffff;
  --line: #ded8d0;
  --sage: #879884;
  --sage-soft: #eef2eb;
  --copper: #bd7f55;
  --shadow: 0 18px 45px rgba(28, 28, 24, 0.08);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  line-height: 1.55;
  overflow-x: hidden;
}

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

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

.site-header,
.hero,
.intro-section,
.recognition,
.audience,
.benefits,
.lesson-systems,
.mentor-card,
.learning,
.space-card,
.join {
  width: min(100% - 96px, 1280px);
  margin-left: auto;
  margin-right: auto;
}

.site-header {
  height: 98px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  letter-spacing: 0;
}

.brand-logo {
  display: block;
  width: auto;
  height: 32px;
}

.brand-mark {
  position: relative;
  width: 30px;
  height: 32px;
}

.brand-mark span {
  position: absolute;
  width: 12px;
  height: 19px;
  border-radius: 12px 12px 2px 12px;
  background: var(--green);
  transform-origin: bottom center;
}

.brand-mark span:nth-child(1) {
  left: 9px;
  top: 0;
  transform: rotate(-34deg);
}

.brand-mark span:nth-child(2) {
  left: 5px;
  top: 14px;
  transform: rotate(28deg);
  background: #8e9e84;
}

.brand-mark span:nth-child(3) {
  right: 2px;
  top: 14px;
  transform: rotate(-28deg);
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(28px, 4vw, 64px);
  color: #242321;
  font-size: 14px;
  font-weight: 650;
}

.desktop-nav a,
.header-cta,
.button {
  transition: transform 160ms ease, color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.desktop-nav a:hover,
.desktop-nav a.is-active {
  color: var(--green);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 52px;
  border-radius: 7px;
  font-size: 15px;
  font-weight: 750;
}

.header-cta,
.button-primary {
  color: #fff;
  background: var(--green);
}

.header-cta {
  min-width: 170px;
  padding: 0 24px;
}

.button-primary {
  padding: 0 22px;
}

.header-cta:hover,
.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(13, 72, 56, 0.16);
}

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  justify-items: center;
  min-height: 540px;
  padding: 112px 0 104px;
  text-align: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0 calc(50% - 50vw);
  z-index: -1;
  background: linear-gradient(180deg, #f7f4ee 0%, #fbfaf8 78%, #ffffff 100%);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--copper);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 1120px;
  font-size: clamp(64px, 7.4vw, 118px);
  line-height: 0.98;
}

.hero-lead {
  max-width: 620px;
  margin: 28px 0 20px;
  color: #242321;
  font-size: 22px;
  font-weight: 650;
  line-height: 1.42;
}

.hero-text {
  max-width: 780px;
  margin: 34px auto 34px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.55;
}

.hero-media {
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 1.39 / 1;
  background: #eee7dd;
}

.hero-media img,
.mentor-card img,
.space-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.intro-section,
.recognition,
.audience,
.learning {
  padding-top: 108px;
}

.hero + .intro-section {
  padding-top: 42px;
}

.section-heading {
  display: grid;
  justify-items: center;
  gap: 18px;
  margin-bottom: 42px;
  text-align: center;
}

.section-heading h2 {
  max-width: 760px;
  font-size: clamp(42px, 5vw, 62px);
  line-height: 1.02;
}

.section-heading span {
  width: 82px;
  height: 2px;
  background: var(--copper);
}

.text-panel {
  width: min(100%, 1040px);
  margin: 0 auto;
  padding: 58px 78px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--soft);
  box-shadow: var(--shadow);
}

.text-panel p {
  margin: 0;
  color: #20201f;
  font-size: 19px;
  line-height: 1.55;
}

.text-panel p + p {
  margin-top: 24px;
}

.intro-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1fr);
  gap: 72px;
  align-items: center;
}

.intro-portrait {
  display: flex;
  justify-content: center;
  align-self: end;
}

.intro-portrait img {
  width: min(100%, 260px);
  height: auto;
  display: block;
}

.intro-statement {
  max-width: 720px;
  text-align: left;
}

.intro-statement p {
  margin: 0;
  color: #20201f;
  font-size: 19px;
  line-height: 1.6;
}

.intro-statement p + p {
  margin-top: 30px;
}

.proof-strip {
  width: min(100%, 1120px);
  margin: 0 auto;
}

.proof-lead {
  display: grid;
  grid-template-columns: 0.36fr 1fr;
  gap: 54px;
  align-items: start;
  padding-bottom: 34px;
  border-bottom: 1px solid var(--line);
}

.proof-lead .eyebrow {
  margin-top: 10px;
}

.proof-lead h2 {
  max-width: 860px;
  font-family: var(--serif);
  font-size: clamp(42px, 5vw, 70px);
  line-height: 1.02;
  color: var(--ink);
}

.proof-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  padding: 38px 0 0;
}

.proof-points article {
  display: grid;
  gap: 12px;
}

.proof-points span {
  color: var(--green);
  font-family: var(--serif);
  font-size: clamp(34px, 3.4vw, 48px);
  line-height: 1;
}

.proof-points p,
.proof-close {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.5;
}

.proof-close {
  max-width: 760px;
  margin: 34px auto 0;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  color: #20201f;
  text-align: center;
  font-size: 19px;
}

.audience {
  padding-top: 88px;
}

.recognition {
  padding-top: 88px;
}

.recognition .section-heading {
  margin-bottom: 34px;
}

.recognition-grid {
  display: grid;
  width: min(100%, 1080px);
  margin: 0 auto;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 56px;
  border-top: 1px solid var(--line);
}

.recognition-grid article {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 18px;
  align-items: start;
  min-height: 0;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.recognition-icon {
  display: block;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  color: var(--green);
  line-height: 1;
}

.recognition-icon svg {
  display: none;
}

.recognition-icon::before {
  content: "✓";
  font-size: 18px;
}

.recognition-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.5;
}

.audience-grid {
  width: min(100%, 1000px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 34px;
}

.audience-grid article,
.learning-grid article,
.price-card,
.signup-card,
.mentor-card,
.space-card {
  border: 1px solid var(--line);
  border-radius: 9px;
  background: var(--soft);
  box-shadow: var(--shadow);
}

.audience-grid article {
  min-height: 286px;
  padding: 42px 52px;
}

.audience-grid span {
  display: block;
  margin-bottom: 26px;
  color: var(--sage);
  font-family: var(--serif);
  font-size: 48px;
  line-height: 1;
}

.audience-grid h3 {
  max-width: 430px;
  font-size: 32px;
  line-height: 1.02;
}

.audience-grid p,
.learning-grid p,
.mentor-card p,
.space-copy p,
.price-card p {
  color: var(--muted);
}

.audience-grid p {
  margin: 18px 0 0;
  font-size: 16px;
  line-height: 1.45;
}

.benefits {
  position: relative;
  overflow: hidden;
  margin-top: 78px;
  padding: 62px 64px 78px;
  border-radius: 10px;
  color: white;
  background: var(--green);
}

.section-heading-dark {
  position: relative;
  z-index: 1;
  color: white;
  gap: 12px;
}

.section-heading-dark h2 {
  max-width: 980px;
  color: white;
}

.section-heading-dark p {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
}

.leaf {
  position: absolute;
  width: 190px;
  opacity: 0.24;
  pointer-events: none;
}

.leaf-right {
  right: 32px;
  top: 80px;
}

.leaf-left {
  left: 28px;
  top: 56px;
  transform: scaleX(-1);
}

.benefits-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 44px 56px;
  margin-top: 48px;
}

.benefits-grid article {
  min-height: 172px;
  padding: 28px 34px;
  border-radius: 7px;
  background: var(--soft);
  color: var(--ink);
}

.benefits-grid span {
  width: 54px;
  height: 54px;
  border: 1px solid var(--sage);
  border-radius: 50%;
  color: var(--sage);
  display: grid;
  place-items: center;
  font-size: 18px;
}

.benefits-grid h3 {
  margin-top: 14px;
  color: var(--ink);
  font-size: 29px;
  line-height: 1.1;
}

.benefits-grid p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.45;
}

.lesson-systems {
  padding-top: 112px;
}

.lesson-systems .section-heading {
  margin-bottom: 34px;
}

.lesson-systems .section-heading span {
  display: none;
}

.systems-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 56px;
  width: min(100%, 1080px);
  margin: 0 auto;
  border-top: 1px solid var(--line);
}

.systems-grid article {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 18px;
  align-items: start;
  min-height: 0;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.systems-grid article:nth-child(even) {
  border-color: var(--line);
}

.systems-grid span {
  display: block;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  color: var(--green);
  font-size: 0;
  line-height: 1;
}

.systems-grid span::before {
  content: "✓";
  font-size: 18px;
}

.systems-grid h3 {
  grid-column: 2;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.28;
}

.systems-grid p {
  grid-column: 2;
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
}

.mentor-card {
  margin-top: 112px;
  padding: 84px 80px;
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 88px;
  align-items: center;
}

.mentor-card img {
  aspect-ratio: 1.55 / 1;
  border-radius: 4px;
}

.mentor-card h2 {
  max-width: 670px;
  font-size: clamp(40px, 4.8vw, 62px);
  line-height: 1.02;
}

.mentor-card p:not(.eyebrow) {
  max-width: 660px;
  margin: 14px 0 0;
  font-size: 18px;
  line-height: 1.5;
}

.learning-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  width: min(100%, 1120px);
  margin: 0 auto;
}

.learning-grid article {
  min-height: 250px;
  padding: 48px 42px 42px;
}

.soft-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 42px;
  border-radius: 50%;
  color: var(--green);
  background: var(--sage-soft);
  display: grid;
  place-items: center;
  font-size: 21px;
  font-weight: 800;
}

.learning-grid h3 {
  font-size: 36px;
  line-height: 1.08;
}

.learning-grid p {
  margin: 18px 0 0;
  font-size: 18px;
  line-height: 1.45;
}

.space-card {
  margin-top: 62px;
  padding: 68px 80px;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: center;
}

.space-copy h2 {
  max-width: 440px;
  font-size: clamp(42px, 4.8vw, 62px);
  line-height: 1.02;
}

.space-copy p {
  max-width: 470px;
  margin: 20px 0 0;
  font-size: 18px;
}

.space-media {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: start;
}

.space-media img,
.space-image-secondary {
  height: 230px;
  border-radius: 4px;
}

.space-list {
  margin: 4px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.space-image-secondary {
  width: 100%;
  object-fit: cover;
}

.space-list li,
.price-card li {
  position: relative;
  padding-left: 26px;
  font-size: 17px;
}

.space-list li::before,
.price-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 800;
}

.join {
  padding: 70px 0 112px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 34px;
}

.price-card,
.signup-card {
  padding: 54px 62px;
}

.price-card h2,
.signup-card h2 {
  font-size: 34px;
  line-height: 1.12;
}

.signup-card h2 {
  display: grid;
  justify-items: center;
  gap: 18px;
  color: var(--green);
  text-align: center;
  font-size: clamp(42px, 5vw, 62px);
}

.signup-card h2::after {
  content: "";
  width: 82px;
  height: 2px;
  background: var(--copper);
}

.price-card {
  color: white;
  background: var(--green);
  border-color: transparent;
  text-align: center;
}

.price-card h2,
.price-card strong,
.price-card p,
.price-card li {
  color: white;
}

.price-card li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
  padding-left: 0;
  text-align: left;
}

.price-card strong {
  display: block;
  margin: 0 0 18px;
  font-family: var(--serif);
  font-size: clamp(56px, 5.8vw, 76px);
  line-height: 1;
}

.price-card p {
  max-width: 760px;
  margin: 0 auto;
  font-size: 18px;
}

.price-card ul {
  width: min(100%, 920px);
  margin: 40px auto 32px;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px 36px;
}

.price-card .button {
  min-width: 270px;
}

.price-card li::before {
  position: static;
  color: white;
}

.signup-steps {
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 24px;
}

.signup-steps li {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 16px;
}

.signup-steps li > span {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: white;
  background: var(--green);
  display: grid;
  place-items: center;
  font-size: 16px;
  font-weight: 750;
}

.signup-steps h3 {
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.2;
}

.signup-steps p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.4;
}

.signup-form {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px 20px;
}

.form-row {
  min-width: 0;
}

.form-row-full,
.signup-form button {
  grid-column: 1 / -1;
}

.form-row label {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}

.form-row input {
  width: 100%;
  min-height: 56px;
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 0 16px;
  color: var(--ink);
  background: var(--paper);
  font: 500 16px/1.35 var(--sans);
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.form-row input:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(13, 72, 56, 0.1);
}

.signup-form button {
  width: 100%;
  margin-top: 10px;
  border: 0;
  cursor: pointer;
}

.faq-section {
  position: relative;
  overflow: hidden;
  padding: 72px max(48px, calc((100vw - 1280px) / 2)) 90px;
  color: white;
  background: var(--green);
}

.faq-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: start;
}

.faq-item {
  overflow: hidden;
  border-radius: 6px;
  background: var(--soft);
  color: var(--ink);
}

.faq-item:nth-child(n + 4) {
  grid-column: span 1;
}

.faq-section button {
  width: 100%;
  min-height: 62px;
  padding: 0 24px;
  border: 0;
  background: var(--soft);
  color: var(--ink);
  font: 650 15px/1.35 var(--sans);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  text-align: left;
  cursor: pointer;
}

.faq-section button:focus-visible {
  outline: 2px solid rgba(183, 198, 181, 0.95);
  outline-offset: -2px;
}

.faq-section button span {
  flex: 0 0 auto;
  width: 9px;
  height: 9px;
  border-right: 1.4px solid currentColor;
  border-bottom: 1.4px solid currentColor;
  transform: rotate(45deg);
  transition: transform 160ms ease;
}

.faq-section button.is-open span {
  transform: rotate(225deg);
}

.faq-item p {
  display: none;
  margin: 0;
  padding: 0 24px 22px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.faq-item:has(button.is-open) p {
  display: block;
}

.site-footer {
  position: relative;
  overflow: hidden;
  padding: 38px max(48px, calc((100vw - 1280px) / 2));
  color: white;
  background: var(--green-deep);
}

.site-footer::before,
.site-footer::after {
  content: "";
  position: absolute;
  top: 24px;
  width: 170px;
  height: 210px;
  background: url("assets/leaf-outline.svg") center / contain no-repeat;
  opacity: 0.18;
}

.site-footer::before {
  left: 24px;
  transform: scaleX(-1);
}

.site-footer::after {
  right: 24px;
}

.footer-contact svg,
.footer-social svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-info {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
}

.footer-contact a,
.footer-social a {
  display: inline-flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.9);
}

.footer-contact a {
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
}

.footer-contact svg {
  width: 19px;
  height: 19px;
  stroke-width: 1.8;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-social a {
  width: 42px;
  height: 42px;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
}

.footer-social svg {
  width: 22px;
  height: 22px;
  stroke-width: 1.7;
}

@media (max-width: 1100px) {
  .site-header,
  .hero,
  .intro-section,
  .recognition,
  .audience,
  .benefits,
  .lesson-systems,
  .mentor-card,
  .learning,
  .space-card,
  .join {
    width: min(100% - 48px, 820px);
  }

  .site-header {
    height: auto;
    padding: 26px 0;
    flex-direction: column;
    align-items: flex-start;
  }

  .desktop-nav {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 12px 18px;
    padding-top: 2px;
    font-size: 13px;
  }

  .hero,
  .intro-section,
  .mentor-card,
  .space-card,
  .join {
    grid-template-columns: 1fr;
  }

  .intro-section {
    gap: 34px;
  }

  .intro-portrait {
    align-self: center;
  }

  .intro-portrait img {
    width: min(100%, 250px);
  }

  .intro-statement {
    max-width: none;
  }

  .hero {
    min-height: 0;
    padding: 82px 0 92px;
  }

  .learning-grid,
  .recognition-grid,
  .benefits-grid,
  .faq-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .learning-grid,
  .systems-grid,
  .benefits-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .systems-grid article {
    grid-template-columns: 24px 1fr;
    gap: 18px;
  }

  .systems-grid article:nth-child(even) {
    border-color: var(--line);
  }

  .footer-info {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .benefits,
  .mentor-card,
  .space-card,
  .price-card,
  .signup-card {
    padding-left: 34px;
    padding-right: 34px;
  }
}

@media (max-width: 680px) {
  .site-header,
  .hero,
  .intro-section,
  .recognition,
  .lesson-systems,
  .audience,
  .benefits,
  .mentor-card,
  .learning,
  .space-card,
  .join {
    width: min(100% - 28px, 480px);
  }

  .brand {
    font-size: 31px;
  }

  .brand-logo {
    height: 28px;
  }

  .desktop-nav {
    gap: 10px 14px;
    font-size: 12px;
  }

  .header-cta {
    min-width: 0;
    min-height: 46px;
    padding: 0 16px;
    font-size: 13px;
  }

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

  .hero {
    padding: 58px 0 68px;
  }

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

  .hero-text,
  .text-panel p,
  .intro-statement p,
  .proof-points p,
  .proof-close,
  .systems-grid p,
  .learning-grid p,
  .mentor-card p:not(.eyebrow),
  .space-copy p,
  .price-card p,
  .signup-card p {
    font-size: 16px;
  }

  .intro-section,
  .recognition,
  .lesson-systems,
  .learning {
    padding-top: 78px;
  }

  .hero + .intro-section {
    padding-top: 28px;
  }

  .intro-section {
    gap: 28px;
  }

  .intro-portrait img {
    width: min(76vw, 240px);
  }

  .section-heading h2 {
    font-size: 34px;
  }

  .text-panel,
  .systems-grid article,
  .audience-grid article,
  .learning-grid article,
  .benefits,
  .mentor-card,
  .space-card,
  .price-card,
  .signup-card {
    padding: 30px 24px;
  }

  .proof-lead,
  .proof-points {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .proof-lead {
    padding-bottom: 26px;
  }

  .proof-lead h2 {
    font-size: 36px;
  }

  .proof-points {
    padding-top: 28px;
  }

  .proof-close {
    margin-top: 28px;
    text-align: left;
  }

  .audience-grid,
  .recognition-grid,
  .systems-grid,
  .space-media,
  .space-list,
  .price-card ul,
  .signup-form {
    grid-template-columns: 1fr;
  }

  .systems-grid article,
  .recognition-grid article,
  .systems-grid article:nth-child(even) {
    grid-template-columns: 24px 1fr;
    gap: 16px;
    padding: 22px 0;
  }

  .systems-grid article:nth-child(even) {
    border-color: var(--line);
  }

  .systems-grid span {
    width: 18px;
    height: 18px;
  }

  .audience-grid h3,
  .systems-grid h3,
  .learning-grid h3,
  .price-card h2,
  .signup-card h2 {
    font-size: 28px;
  }

  .benefits-grid {
    gap: 22px;
  }

  .benefits-grid h3 {
    color: var(--ink);
    font-size: 25px;
  }

  .benefits-grid p {
    color: var(--muted);
    font-size: 16px;
  }

  .mentor-card,
  .space-card {
    margin-top: 72px;
    gap: 28px;
  }

  .mentor-card > div {
    display: contents;
  }

  .mentor-card h2 {
    order: 1;
  }

  .mentor-card img {
    order: 2;
  }

  .mentor-card p:not(.eyebrow) {
    order: 3;
  }

  .space-copy {
    order: 1;
  }

  .space-media {
    display: contents;
  }

  .space-media img:first-child {
    order: 2;
  }

  .space-list {
    order: 3;
    gap: 16px;
  }

  .space-image-secondary {
    order: 4;
  }

  .join {
    padding: 48px 0 72px;
  }

  .price-card strong {
    font-size: 48px;
  }

  .faq-section {
    padding: 56px 14px 70px;
  }
}
