:root {
  color-scheme: light;
  --ink: #17201c;
  --muted: #5a665f;
  --line: #d9dfd6;
  --paper: #f7f8f2;
  --white: #ffffff;
  --green: #1f6f54;
  --green-dark: #0f4b38;
  --blue: #255a85;
  --gold: #f0b84e;
  --coral: #e77256;
  --shadow: 0 20px 60px rgba(23, 32, 28, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 5vw, 64px);
  background: rgba(247, 248, 242, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  text-decoration: none;
}

.brand-logo {
  display: block;
  width: clamp(132px, 16vw, 178px);
  height: 48px;
  object-fit: contain;
  object-position: left center;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: var(--ink);
  color: var(--gold);
  letter-spacing: 0;
}

.nav {
  display: flex;
  gap: 18px;
  color: var(--muted);
  font-size: 0.95rem;
}

.nav a {
  text-decoration: none;
}

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

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  gap: clamp(24px, 5vw, 64px);
  min-height: calc(100vh - 72px);
  align-items: center;
  padding: clamp(48px, 8vw, 96px) clamp(18px, 5vw, 64px);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 82% 18%, rgba(240, 184, 78, 0.2), transparent 22%),
    linear-gradient(135deg, rgba(31, 111, 84, 0.08), transparent 38%);
}

.workbook-hero {
  padding: clamp(48px, 8vw, 92px) clamp(18px, 5vw, 64px);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(240, 184, 78, 0.22), transparent 34%),
    linear-gradient(315deg, rgba(37, 90, 133, 0.14), transparent 32%),
    var(--paper);
}

.workbook-hero h1 {
  max-width: 1080px;
}

.hero-copy {
  max-width: 890px;
}

.eyebrow,
.tag {
  margin: 0 0 12px;
  color: var(--green-dark);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 980px;
  margin-bottom: 24px;
  font-size: clamp(2.65rem, 7vw, 6.2rem);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.22rem;
  line-height: 1.18;
}

.hero-text {
  max-width: 770px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.32rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 8px;
  border: 1px solid var(--ink);
  font-weight: 800;
  text-decoration: none;
}

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

.button.secondary {
  background: transparent;
}

.trust-note {
  max-width: 650px;
  color: var(--muted);
}

.mission-panel,
.workbook,
.lesson-detail {
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.lemon-badge {
  width: 84px;
  height: 64px;
  margin-bottom: 20px;
  background: url("assets/lemup-lemon-icon.png") center / contain no-repeat;
}

.mission-panel h2 {
  font-size: 1.55rem;
}

.mission-panel ul,
.case-card ul,
.workbook ol {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.mission-panel li + li,
.case-card li + li,
.workbook li + li {
  margin-top: 10px;
}

.section {
  padding: clamp(56px, 8vw, 92px) clamp(18px, 5vw, 64px);
  border-bottom: 1px solid var(--line);
}

.section-heading {
  max-width: 860px;
  margin-bottom: 34px;
}

.section-heading p {
  color: var(--muted);
  font-size: 1.05rem;
}

.section-heading.compact {
  margin-bottom: 0;
}

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

.stage-card,
.case-card,
.safety-grid p,
.module-card,
.curriculum-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 260px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.stage-card {
  position: relative;
  overflow: hidden;
}

.mini-lemon {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 38px;
  height: 30px;
  background: url("assets/lemup-lemon-icon.png") center / contain no-repeat;
  opacity: 0.9;
}

.stage-card:nth-child(2) {
  border-top: 6px solid var(--blue);
}

.stage-card:nth-child(3) {
  border-top: 6px solid var(--gold);
}

.stage-card:nth-child(4) {
  border-top: 6px solid var(--coral);
}

.stage-number {
  color: var(--green);
  font-size: 0.85rem;
  font-weight: 900;
}

.stage-card p,
.case-card p,
.safety-grid p,
.module-card p,
.curriculum-card p {
  color: var(--muted);
}

.stage-card strong {
  margin-top: 22px;
  color: var(--green-dark);
}

.foundations {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(20px, 4vw, 44px);
  align-items: start;
}

.mba-preview {
  background: #fffaf0;
}

.module-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-bottom: 24px;
}

.module-card {
  min-height: 280px;
  border-top: 6px solid var(--gold);
}

.curriculum {
  display: grid;
  gap: 18px;
}

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

.curriculum-card.featured {
  border-color: rgba(31, 111, 84, 0.35);
  background: #eef7f0;
}

.mba-hero {
  background:
    linear-gradient(135deg, rgba(231, 114, 86, 0.2), transparent 34%),
    linear-gradient(315deg, rgba(31, 111, 84, 0.16), transparent 32%),
    var(--paper);
}

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

.lesson-expansion {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.lesson-expansion ul {
  margin: 0 0 12px;
  padding-left: 20px;
  color: var(--muted);
}

.lesson-expansion li + li {
  margin-top: 8px;
}

.toolkit-grid,
.prompt-library {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.tool-card,
.prompt-card {
  min-height: 180px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.tool-card p,
.prompt-card p {
  color: var(--muted);
}

.prompt-card {
  border-left: 6px solid var(--blue);
}

.access-note {
  padding: 14px 16px;
  border-left: 5px solid var(--green);
  background: #eef7f0;
  color: var(--ink) !important;
  font-weight: 750;
}

.pricing-preview {
  background: var(--ink);
  color: var(--white);
}

.pricing-preview .eyebrow {
  color: var(--gold);
}

.pricing-preview .section-heading p {
  color: rgba(255, 255, 255, 0.78);
}

.pricing-preview .button.primary {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--ink);
}

.home-funnel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 24px 0;
}

.home-funnel article {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.home-funnel span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.home-funnel strong {
  display: block;
  margin-top: 8px;
  color: var(--white);
}

.home-funnel p {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.76);
}

.pricing-hero {
  background:
    linear-gradient(135deg, rgba(37, 90, 133, 0.14), transparent 34%),
    linear-gradient(315deg, rgba(240, 184, 78, 0.24), transparent 32%),
    var(--paper);
}

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

.recommendation-card,
.price-card {
  min-height: 330px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.recommendation-card p,
.price-card p {
  color: var(--muted);
}

.recommendation-card.preferred,
.featured-price {
  border-color: rgba(31, 111, 84, 0.4);
  box-shadow: var(--shadow);
}

.price-card strong {
  display: block;
  margin: 14px 0;
  font-size: 1.45rem;
}

.price-card ul {
  margin: 0 0 16px;
  padding-left: 20px;
  color: var(--muted);
}

.price-card li + li {
  margin-top: 8px;
}

.save-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 24px;
}

.save-tools span {
  color: var(--muted);
  font-weight: 750;
}

.save-tools .button {
  background: var(--white);
}

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

.roadmap-item,
.week-card {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.roadmap-item span {
  color: var(--green);
  font-weight: 900;
}

.roadmap-item p,
.week-card ul {
  color: var(--muted);
}

.roadmap-item strong {
  color: var(--green-dark);
}

.week-card ul {
  margin: 0;
  padding-left: 20px;
}

.week-card li + li {
  margin-top: 7px;
}

.comparison-table {
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--white);
}

.comparison-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.comparison-row span {
  padding: 16px;
  border-bottom: 1px solid var(--line);
}

.comparison-row span + span {
  border-left: 1px solid var(--line);
}

.header-row {
  background: var(--ink);
  color: var(--white);
  font-weight: 850;
}

.library-preview {
  background: #eef7f0;
}

.dual-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

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

.study-card,
.kit-card {
  min-height: 330px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.study-card p,
.kit-card p {
  color: var(--muted);
}

.study-card strong,
.kit-card strong {
  color: var(--ink);
}

.parent-preview {
  background: #fffaf0;
}

.parent-hero,
.starter-hero {
  background:
    linear-gradient(135deg, rgba(31, 111, 84, 0.14), transparent 34%),
    linear-gradient(315deg, rgba(231, 114, 86, 0.16), transparent 32%),
    var(--paper);
}

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

.parent-card,
.starter-card {
  min-height: 210px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.parent-card p,
.starter-card p {
  color: var(--muted);
}

.starter-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  max-width: 900px;
}

.starter-form label {
  display: grid;
  gap: 7px;
  font-weight: 800;
}

.starter-form select,
.starter-form input {
  min-height: 46px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
}

.starter-form button {
  align-self: end;
}

.path-hero {
  background:
    linear-gradient(135deg, rgba(240, 184, 78, 0.22), transparent 34%),
    linear-gradient(315deg, rgba(31, 111, 84, 0.16), transparent 32%),
    var(--paper);
}

.path-timeline {
  display: grid;
  gap: 14px;
}

.path-step {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.path-step span {
  display: inline-grid;
  place-items: center;
  min-height: 38px;
  border-radius: 8px;
  font-weight: 900;
}

.free-step span {
  background: #eef7f0;
  color: var(--green-dark);
}

.paid-step span {
  background: #fff0ce;
  color: #7a4a00;
}

.path-step h3 {
  margin-bottom: 4px;
}

.path-step p {
  margin-bottom: 0;
  color: var(--muted);
}

.path-step a {
  font-weight: 850;
  color: var(--green-dark);
}

.template-hero {
  background:
    linear-gradient(135deg, rgba(37, 90, 133, 0.14), transparent 34%),
    linear-gradient(315deg, rgba(231, 114, 86, 0.16), transparent 32%),
    var(--paper);
}

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

.template-card {
  display: grid;
  gap: 10px;
  min-height: 360px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.template-card p {
  color: var(--muted);
}

.template-box {
  align-self: end;
  padding: 14px;
  border-left: 5px solid var(--gold);
  background: #fff7e3;
}

.template-box p {
  margin-bottom: 8px;
  color: var(--ink);
}

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

.script-stack {
  display: grid;
  gap: 16px;
}

.script-card {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.script-card pre {
  overflow-x: auto;
  margin: 14px 0 0;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f6f4ed;
  color: var(--ink);
  font: 0.93rem/1.55 "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  white-space: pre-wrap;
}

.tools-preview {
  background: #eef7f0;
}

.tools-hero,
.help-hero,
.business-hero,
.challenge-hero,
.legal-hero {
  background:
    linear-gradient(135deg, rgba(37, 90, 133, 0.16), transparent 34%),
    linear-gradient(315deg, rgba(31, 111, 84, 0.16), transparent 32%),
    var(--paper);
}

.tool-directory-grid,
.faq-grid,
.course-grid,
.foundation-track,
.resource-grid,
.outcome-grid,
.included-grid,
.policy-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.tool-listing,
.faq-card,
.course-card,
.foundation-module,
.resource-card,
.outcome-card,
.included-card,
.fit-card,
.challenge-week,
.policy-card {
  min-height: 260px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.tool-listing p,
.faq-card p,
.course-card p,
.foundation-module p,
.resource-card p,
.outcome-card p,
.included-card p,
.challenge-week p,
.policy-card p {
  color: var(--muted);
}

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

.policy-card ul {
  margin: 14px 0 0;
  padding-left: 20px;
  color: var(--muted);
}

.policy-card li + li {
  margin-top: 8px;
}

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

.fit-card ul {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.fit-card li + li {
  margin-top: 8px;
}

.good-fit {
  border-color: rgba(31, 111, 84, 0.35);
  box-shadow: var(--shadow);
}

.challenge-week strong {
  color: var(--green-dark);
}

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

.daily-card {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.daily-card ol {
  margin: 14px 0 0;
  padding-left: 20px;
  color: var(--muted);
}

.daily-card li + li {
  margin-top: 8px;
}

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

.foundation-module ul,
.resource-card ul {
  margin: 14px 0 0;
  padding-left: 20px;
  color: var(--muted);
}

.foundation-module li + li,
.resource-card li + li {
  margin-top: 8px;
}

.mastery-box {
  display: grid;
  gap: 5px;
  margin-top: 16px;
  padding: 14px;
  border-left: 5px solid var(--gold);
  background: #fff7e3;
}

.mastery-box span {
  color: var(--muted);
}

.resource-card a {
  color: var(--green-dark);
  font-weight: 800;
}

.lesson-mini {
  display: grid;
  gap: 5px;
  margin-top: 16px;
  padding: 14px;
  border-left: 5px solid var(--gold);
  background: #fff7e3;
}

.lesson-mini span {
  color: var(--muted);
}

.tool-listing ul {
  margin: 14px 0 0;
  padding-left: 20px;
  color: var(--muted);
}

.tool-listing li + li {
  margin-top: 8px;
}

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

.tool-profile {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.tool-profile p {
  color: var(--muted);
}

.tool-profile dl {
  display: grid;
  gap: 7px;
  margin: 16px 0 0;
}

.tool-profile dt {
  color: var(--ink);
  font-weight: 850;
}

.tool-profile dd {
  margin: 0 0 8px;
  color: var(--muted);
}

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

.flow-card,
.playbook-card {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.flow-card span {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: var(--gold);
  color: var(--green-dark);
  font-weight: 900;
}

.flow-card h3,
.playbook-card h3 {
  margin-top: 12px;
}

.flow-card p,
.playbook-card li {
  color: var(--muted);
}

.flow-card a {
  display: inline-block;
  margin-top: 10px;
  color: var(--green-dark);
  font-weight: 850;
}

.playbook-card ol {
  margin: 14px 0 0;
  padding-left: 20px;
}

.playbook-card li + li {
  margin-top: 8px;
}

.foundations .section-heading {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.lesson-list {
  display: grid;
  gap: 8px;
}

button {
  font: inherit;
}

.lesson,
.filter {
  min-height: 44px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--muted);
  text-align: left;
  cursor: pointer;
}

.lesson.active,
.filter.active {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}

.prompt-box {
  display: grid;
  gap: 6px;
  margin-top: 20px;
  padding: 16px;
  border-left: 5px solid var(--gold);
  background: #fff7e3;
  color: var(--ink);
}

.prompt-box span {
  color: var(--muted);
}

.case-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.filter {
  text-align: center;
}

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

.case-card {
  min-height: 330px;
}

.case-card[hidden] {
  display: none;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1.15fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
}

.builder {
  background: #eaf2ed;
}

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

.checklist label {
  display: flex;
  gap: 10px;
  min-height: 82px;
  align-items: flex-start;
  padding: 18px;
  border: 1px solid rgba(31, 111, 84, 0.26);
  border-radius: 8px;
  background: var(--white);
  font-weight: 750;
}

.checklist input {
  width: 18px;
  height: 18px;
  accent-color: var(--green);
}

.safety-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.safety-grid p {
  min-height: 150px;
  margin: 0;
}

.next-step {
  background: var(--ink);
  color: var(--white);
}

.next-step .eyebrow {
  color: var(--gold);
}

.next-step .section-heading p {
  color: rgba(255, 255, 255, 0.78);
}

.next-step .button.primary {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--ink);
}

.challenge {
  margin-bottom: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  overflow: hidden;
}

.challenge-header {
  padding: 22px 24px 8px;
}

.challenge-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(340px, 1.18fr);
  gap: 24px;
  padding: 0 24px 24px;
}

h4 {
  margin: 18px 0 8px;
  font-size: 0.95rem;
}

.challenge-grid p {
  color: var(--muted);
}

.student-output,
.worksheet,
.launch-card {
  display: grid;
  gap: 14px;
}

.student-output label,
.worksheet label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-weight: 760;
}

textarea,
input[type="text"] {
  width: 100%;
  min-height: 74px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcf8;
  color: var(--ink);
  font: inherit;
  resize: vertical;
}

input[type="text"] {
  min-height: 46px;
}

textarea:focus,
input[type="text"]:focus {
  outline: 3px solid rgba(240, 184, 78, 0.38);
  border-color: var(--gold);
}

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

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

.launch-card {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.launch-card p {
  color: var(--muted);
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(18px, 5vw, 64px);
  color: var(--muted);
}

.footer strong {
  color: var(--ink);
}

@media (max-width: 980px) {
  .hero,
  .foundations,
  .split,
  .challenge-grid {
    grid-template-columns: 1fr;
  }

  .stage-grid,
  .case-grid,
  .checklist,
  .safety-grid,
  .worksheet,
  .launch-grid,
  .module-grid,
  .case-method-grid,
  .toolkit-grid,
  .prompt-library,
  .recommendation-grid,
  .pricing-grid,
  .lesson-roadmap,
  .week-grid,
  .case-study-grid,
  .kit-grid,
  .parent-grid,
  .starter-grid,
  .starter-form,
  .path-step,
  .home-funnel,
  .template-grid,
  .tool-directory-grid,
  .tool-shelf,
  .answer-flow,
  .playbook-grid,
  .faq-grid,
  .course-grid,
  .foundation-track,
  .resource-grid,
  .outcome-grid,
  .included-grid,
  .policy-grid,
  .fit-grid,
  .daily-roadmap,
  .challenge-weeks {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .path-step {
    align-items: start;
  }

  .section-heading.compact {
    margin-bottom: 22px;
  }
}

@media (max-width: 680px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero {
    min-height: auto;
  }

  h1 {
    font-size: clamp(2.4rem, 13vw, 4rem);
  }

  .stage-grid,
  .case-grid,
  .checklist,
  .safety-grid,
  .worksheet,
  .launch-grid,
  .module-grid,
  .case-method-grid,
  .toolkit-grid,
  .prompt-library,
  .recommendation-grid,
  .pricing-grid,
  .lesson-roadmap,
  .week-grid,
  .case-study-grid,
  .kit-grid,
  .parent-grid,
  .starter-grid,
  .starter-form,
  .path-step,
  .home-funnel,
  .template-grid,
  .tool-directory-grid,
  .tool-shelf,
  .answer-flow,
  .playbook-grid,
  .faq-grid,
  .course-grid,
  .foundation-track,
  .resource-grid,
  .outcome-grid,
  .included-grid,
  .policy-grid,
  .fit-grid,
  .daily-roadmap,
  .challenge-weeks {
    grid-template-columns: 1fr;
  }

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

  .comparison-row span + span {
    border-left: 0;
  }

  .stage-card,
  .case-card,
  .safety-grid p {
    min-height: auto;
  }

  .footer {
    flex-direction: column;
  }
}
