:root {
  --bg: #fff8ed;
  --surface: #fffdf8;
  --card: #fffefa;
  --text: #24302c;
  --muted: #5f6f68;
  --brand: #31584a;
  --brand-strong: #233d34;
  --cta: #b85c38;
  --cta-hover: #98472a;
  --accent: #5f8d74;
  --warm: #fff0d0;
  --warm-strong: #f6c87d;
  --border: #eadfcd;
  --muted-card: #f7efe2;
  --section-cream: #fff8ed;
  --section-ivory: #fffdf8;
  --section-sage: #edf6ef;
  --section-peach: #fff1df;
  --section-muted: #f7efe2;
  --section-line: rgba(142, 111, 75, 0.12);
  --section-inset: inset 0 1px 0 rgba(255, 255, 255, 0.68);
  --shadow: 0 18px 40px rgba(65, 50, 33, 0.08);
  --soft-shadow: 0 10px 24px rgba(65, 50, 33, 0.055);
  --radius: 22px;
  --max-width: 1160px;
  --header-anchor-offset: 80px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-anchor-offset);
  overflow-x: clip;
}

body {
  margin: 0;
  overflow-x: clip;
  background:
    linear-gradient(180deg, #fffdf7 0%, var(--bg) 39rem, #fffaf1 100%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

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

a:hover {
  color: var(--brand);
}

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

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

h1 {
  max-width: 720px;
  font-size: clamp(2.2rem, 4.7vw, 3.45rem);
  line-height: 1.07;
  letter-spacing: 0;
  margin-bottom: 1.3rem;
  color: var(--brand-strong);
  font-weight: 870;
}

h2 {
  font-size: clamp(2rem, 4vw, 2.65rem);
  line-height: 1.12;
  letter-spacing: 0;
  margin-bottom: 1rem;
  color: var(--brand-strong);
  font-weight: 850;
}

h3 {
  font-size: 1.08rem;
  line-height: 1.25;
  margin-bottom: 0.55rem;
  color: var(--brand-strong);
  font-weight: 820;
}

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

.container {
  width: min(100% - 2rem, var(--max-width));
  margin-inline: auto;
}

.section {
  padding: 5rem 0;
  border-top: 1px solid var(--section-line);
  box-shadow: var(--section-inset);
}

.site-header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(234, 223, 205, 0.9);
  background: rgba(255, 253, 248, 0.96);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.72), 0 8px 18px rgba(65, 50, 33, 0.04);
}

.nav {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--text);
  font-weight: 850;
  white-space: nowrap;
}

.brand-mark {
  display: block;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
}

.brand-book-page,
.brand-book-spine {
  fill: none;
  stroke: var(--brand-strong);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.6;
}

.brand-page-line {
  fill: none;
  opacity: 0.34;
  stroke: #d8cbb8;
  stroke-linecap: round;
  stroke-width: 1.7;
}

.brand-growth-line {
  fill: none;
  stroke: var(--cta);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3.1;
}

.brand-growth-dot {
  fill: var(--cta);
}

.brand-copy {
  display: grid;
  gap: 0.02rem;
  line-height: 1.05;
}

.brand-title {
  color: var(--brand-strong);
  font-size: 1.13rem;
  font-weight: 900;
  letter-spacing: 0;
}

.brand-tagline {
  color: var(--muted);
  font-size: 0.73rem;
  font-weight: 720;
  letter-spacing: 0;
}

.brand-tagline span {
  color: var(--cta);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(0.8rem, 2vw, 1.5rem);
  color: var(--muted);
  font-size: 0.95rem;
}

.nav-cta {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(184, 92, 56, 0.32);
  border-radius: 999px;
  padding: 0.65rem 1rem;
  background: rgba(255, 241, 223, 0.88);
  color: var(--cta);
  font-weight: 800;
  white-space: nowrap;
  transition: background-color 160ms ease, transform 160ms ease, box-shadow 160ms ease, color 160ms ease, border-color 160ms ease;
  box-shadow: none;
}

.nav-cta-short {
  display: none;
}

.nav-cta:hover {
  background: var(--cta);
  border-color: var(--cta);
  color: #ffffff;
  transform: translateY(-1px);
}

.nav-cta:focus-visible {
  outline: 3px solid rgba(184, 92, 56, 0.32);
  outline-offset: 3px;
}

.hero {
  padding-top: 4rem;
  padding-bottom: 3rem;
  position: relative;
  overflow: hidden;
  border-top: 0;
  background:
    linear-gradient(180deg, rgba(255, 248, 237, 0.25), rgba(255, 253, 248, 0.65) 56%, rgba(255, 248, 237, 0));
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.58fr);
  gap: clamp(1.6rem, 4vw, 3rem);
  align-items: start;
}

.hero-subhead {
  max-width: 780px;
  font-size: 1.08rem;
  color: #4f6259;
}

.eyebrow {
  margin-bottom: 1rem;
  color: var(--accent);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  line-height: 1.2;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.55rem;
  margin: 1.45rem 0 0;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 0.8rem 1.1rem;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  text-align: center;
  transition: background-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.button.primary {
  background: var(--cta);
  color: white;
  box-shadow: 0 12px 22px rgba(184, 92, 56, 0.2);
  transition: background-color 160ms ease, transform 160ms ease, box-shadow 160ms ease, color 160ms ease, border-color 160ms ease;
}

.button.primary:hover {
  background: var(--cta-hover);
  color: white;
  transform: translateY(-1px);
}

.button.secondary {
  border: 1px solid rgba(184, 92, 56, 0.28);
  background: #fffdfa;
  color: var(--cta-hover);
  box-shadow: none;
}

.button.secondary:hover {
  border-color: rgba(184, 92, 56, 0.42);
  background: var(--warm);
  color: var(--cta-hover);
}

.button:focus-visible,
button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(184, 92, 56, 0.32);
  outline-offset: 3px;
}

.full-width {
  width: 100%;
}

.trust-line,
.fine-print,
.legal-note {
  font-size: 0.9rem;
  line-height: 1.5;
}

.hero-actions .trust-line {
  margin: 0;
}

.hero-reassurance {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.35rem;
  margin-top: 0.45rem;
  max-width: 760px;
}

.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.28rem;
  min-height: 32px;
  border: 1px solid rgba(95, 141, 116, 0.18);
  border-radius: 999px;
  background: rgba(237, 246, 239, 0.64);
  color: #2b433a;
  font-size: 0.82rem;
  font-weight: 760;
  line-height: 1.18;
  padding: 0.34rem 0.62rem;
}

.hero-chip span[aria-hidden="true"] {
  color: rgba(95, 141, 116, 0.92);
  font-size: 0.78rem;
  line-height: 1;
}

.hero-actions .trust-line {
  margin-top: 0.05rem;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.45;
}

.section-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.65rem;
  margin-top: 1.4rem;
}

.section-cta.centered {
  align-items: center;
  margin-top: 1.8rem;
  text-align: center;
}

.section-cta .trust-line {
  margin: 0;
  color: var(--muted);
}

.hero-secondary-cta {
  margin: 0.1rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.hero-secondary-cta .text-link {
  font-size: inherit;
  font-weight: 720;
}

.text-link {
  color: var(--cta-hover);
  font-size: 0.95rem;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.text-link:hover {
  color: var(--brand-strong);
}

.course-list span {
  border: 1px solid rgba(95, 141, 116, 0.2);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.84);
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 760;
  padding: 0.55rem 0.75rem;
  box-shadow: 0 7px 16px rgba(65, 50, 33, 0.04);
}

.hero-side {
  display: grid;
  gap: 1rem;
}

.hero-capability-card {
  align-self: stretch;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.94), rgba(255, 248, 237, 0.94)),
    var(--card);
  box-shadow: var(--soft-shadow);
  min-height: 100%;
  padding: clamp(1.2rem, 3vw, 1.55rem);
}

.hero-capability-card h2 {
  margin-bottom: 1.15rem;
  color: var(--brand-strong);
  font-size: 1.22rem;
}

.capability-group {
  display: grid;
  gap: 0.75rem;
}

.capability-group + .capability-group {
  margin-top: 1.15rem;
  border-top: 1px solid rgba(142, 111, 75, 0.14);
  padding-top: 1.15rem;
}

.capability-group h3 {
  margin: 0;
  color: var(--brand-strong);
  font-size: 0.92rem;
  font-weight: 850;
}

.hero-capability-card ul {
  display: grid;
  gap: 0.7rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-capability-card li {
  display: flex;
  gap: 0.6rem;
  color: var(--text);
  font-weight: 680;
  line-height: 1.32;
}

.hero-capability-card li::before {
  content: "";
  flex: 0 0 auto;
  width: 8px;
  height: 14px;
  margin-top: 0.1rem;
  border: solid var(--cta-hover);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.waitlist-card,
.info-card,
.step-card,
.before-after {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: var(--shadow);
}

.waitlist-card {
  padding: clamp(1.35rem, 3vw, 1.75rem);
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 250, 241, 0.96), rgba(255, 254, 250, 0.98)),
    var(--card);
}

.waitlist-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--warm-strong), var(--cta), var(--accent));
}

.waitlist-card.compact {
  box-shadow: 0 16px 34px rgba(65, 50, 33, 0.09);
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  min-height: 100vh;
  min-height: 100dvh;
  overflow-y: auto;
  background: rgba(49, 88, 74, 0.36);
  padding: 1.25rem;
}

.modal-backdrop[hidden] {
  display: none;
}

.waitlist-modal {
  position: relative;
  z-index: 2001;
  box-sizing: border-box;
  width: min(100%, 600px);
  max-height: calc(100vh - 2.5rem);
  max-height: calc(100dvh - 2.5rem);
  overflow-y: auto;
  border-radius: var(--radius);
  outline: 0;
}

.modal-card {
  position: relative;
  z-index: 2001;
  box-shadow: 0 24px 60px rgba(65, 50, 33, 0.22);
}

.modal-close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  z-index: 2002;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(184, 92, 56, 0.18);
  border-radius: 50%;
  background: #fffdfa;
  color: var(--cta-hover);
  cursor: pointer;
  font-size: 1.5rem;
  line-height: 1;
}

.modal-close:hover {
  color: var(--brand-strong);
}

body.modal-open {
  overflow: hidden;
}

.form-intro h2 {
  font-size: 1.55rem;
}

.form-intro p {
  margin-bottom: 1.35rem;
}

.form-intro[hidden] {
  display: none;
}

.form-note {
  margin-top: -0.75rem;
  margin-bottom: 1.35rem;
  color: var(--cta-hover);
  font-size: 0.9rem;
  font-weight: 750;
}

.waitlist-form {
  display: grid;
  gap: 1rem;
}

.waitlist-form[hidden] {
  display: none;
}

.field {
  display: grid;
  gap: 0.4rem;
}

label,
.field-label {
  color: var(--text);
  font-weight: 750;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #d8cbb8;
  border-radius: 14px;
  background: #fffdfa;
  color: var(--text);
  font: inherit;
  min-height: 46px;
  padding: 0.75rem 0.85rem;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--cta);
  box-shadow: 0 0 0 4px rgba(184, 92, 56, 0.08);
}

textarea {
  min-height: 108px;
  resize: vertical;
}

input[aria-invalid="true"],
select[aria-invalid="true"] {
  border-color: #b91c1c;
}

.grade-options {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.45rem;
}

.grade-pill {
  position: relative;
  display: inline-flex;
  cursor: pointer;
  font-weight: 800;
}

.grade-pill input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: pointer;
}

.grade-pill span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  border: 1px solid #d8cbb8;
  border-radius: 999px;
  background: #fffdfa;
  color: var(--text);
  line-height: 1;
  padding: 0.65rem 0.85rem;
  transition:
    background 150ms ease,
    border-color 150ms ease,
    color 150ms ease,
    box-shadow 150ms ease;
}

.grade-pill input:checked + span {
  border-color: var(--cta);
  background: var(--cta);
  color: #ffffff;
  box-shadow: 0 8px 18px rgba(184, 92, 56, 0.18);
}

.grade-pill input:focus-visible + span {
  outline: 3px solid rgba(184, 92, 56, 0.28);
  outline-offset: 3px;
}

.error-message {
  min-height: 1.1rem;
  margin: 0;
  color: #b91c1c;
  font-size: 0.86rem;
}

.consent-note {
  margin: -0.15rem 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.45;
}

.thank-you {
  display: grid;
  gap: 0.65rem;
  border: 1px solid rgba(95, 141, 116, 0.28);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(237, 246, 239, 0.95), rgba(255, 253, 248, 0.96)),
    var(--card);
  padding: 1.2rem;
}

.modal-card.is-submitted {
  padding: 1rem;
}

.modal-card.is-submitted .thank-you {
  margin-top: 0;
}

.modal-card.is-submitted.is-surveying .thank-you,
.modal-card.is-submitted.is-feedback-complete .thank-you {
  display: block;
  border-color: rgba(95, 141, 116, 0.18);
  background: var(--card);
  padding: 0.85rem;
}

.modal-card.is-submitted.is-surveying .success-icon,
.modal-card.is-submitted.is-surveying .thank-you > h3,
.modal-card.is-submitted.is-surveying .thank-you > p,
.modal-card.is-submitted.is-feedback-complete .success-icon,
.modal-card.is-submitted.is-feedback-complete .thank-you > h3,
.modal-card.is-submitted.is-feedback-complete .thank-you > p {
  display: none;
}

.thank-you[hidden] {
  display: none;
}

.success-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--accent);
  color: #ffffff;
  font-weight: 900;
}

.thank-you h3 {
  margin: 0;
}

.thank-you p {
  margin: 0;
}

.thank-you-support {
  font-size: 0.92rem;
}

.survey-panel {
  display: grid;
  gap: 0.62rem;
}

.survey-panel[hidden],
.survey-step[hidden],
.survey-complete[hidden],
.survey-other-field[hidden],
.survey-contact-field[hidden] {
  display: none;
}

.survey-intro {
  display: grid;
}

.survey-intro h4 {
  margin: 0;
  color: var(--brand-strong);
  font-size: 0.95rem;
}

.survey-intro p {
  color: var(--muted);
  font-size: 0.9rem;
}

.survey-referral-teaser {
  margin: 0.28rem 0 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.35;
}

.modal-card[data-survey-step="1"] .survey-referral-teaser,
.modal-card[data-survey-step="2"] .survey-referral-teaser,
.modal-card[data-survey-step="3"] .survey-referral-teaser {
  display: none;
}

.survey-saved-banner {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0;
  border: 1px solid rgba(95, 141, 116, 0.24);
  border-radius: 14px;
  background: rgba(237, 246, 239, 0.9);
  color: var(--brand-strong);
  font-size: 0.92rem;
  font-weight: 820;
  line-height: 1.25;
  padding: 0.58rem 0.7rem;
}

.modal-card[data-survey-step="1"] .survey-saved-banner,
.modal-card[data-survey-step="2"] .survey-saved-banner,
.modal-card[data-survey-step="3"] .survey-saved-banner {
  gap: 0.32rem;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 780;
  padding: 0;
}

.survey-saved-banner [aria-hidden="true"] {
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--accent);
  color: #ffffff;
  font-size: 0.78rem;
}

.modal-card[data-survey-step="1"] .survey-saved-banner [aria-hidden="true"],
.modal-card[data-survey-step="2"] .survey-saved-banner [aria-hidden="true"],
.modal-card[data-survey-step="3"] .survey-saved-banner [aria-hidden="true"] {
  width: auto;
  height: auto;
  background: transparent;
  color: var(--accent);
  font-size: 0.82rem;
}

.survey-form,
.survey-step {
  display: grid;
  gap: 0.7rem;
}

.survey-form {
  max-height: min(520px, calc(100vh - 13rem));
  max-height: min(520px, calc(100dvh - 13rem));
  grid-template-rows: auto minmax(0, 1fr) auto;
  overflow: hidden;
}

.survey-step {
  min-height: 0;
  overflow: hidden;
}

.survey-step fieldset {
  display: block;
  min-width: 0;
  min-height: 0;
  margin: 0;
  border: 0;
  padding: 0;
}

.survey-step legend {
  display: block;
  margin: 0 0 20px;
  color: var(--text);
  font-weight: 820;
  line-height: 1.2;
  padding: 0;
}

.survey-step legend:has(+ .survey-helper) {
  margin-bottom: 6px;
}

.survey-helper {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 0.82rem;
}

.survey-helper + .survey-options {
  margin-top: 0;
}

.survey-progress {
  display: grid;
  gap: 0.5rem;
  margin-bottom: 0.9rem;
  color: var(--cta-hover);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0;
}

.survey-progress-track {
  display: block;
  height: 6px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(184, 92, 56, 0.12);
}

.survey-progress-bar {
  display: block;
  width: 25%;
  height: 100%;
  border-radius: inherit;
  background: var(--cta);
  transition: width 160ms ease;
}

.survey-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.42rem;
  min-height: 0;
  overflow-y: auto;
  padding-right: 0.1rem;
}

.survey-options label {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  border: 1px solid rgba(216, 203, 184, 0.92);
  border-radius: 12px;
  background: #fffdfa;
  padding: 0.5rem 0.78rem;
  cursor: pointer;
  font-size: 0.9rem;
}

.survey-options input {
  width: auto;
  min-height: auto;
  margin-top: 0.18rem;
  accent-color: var(--cta);
  flex: 0 0 auto;
}

.survey-options span {
  line-height: 1.32;
}

.survey-options-pills {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.35rem;
}

.survey-options-pills label {
  align-items: center;
  border-radius: 999px;
  padding: 0.52rem 0.78rem;
}

.survey-contact-field {
  margin-top: 0.8rem;
}

.survey-actions {
  position: sticky;
  bottom: 0;
  display: flex;
  flex-wrap: nowrap;
  gap: 0.45rem;
  border-top: 1px solid rgba(142, 111, 75, 0.12);
  background: linear-gradient(180deg, rgba(255, 254, 250, 0.84), var(--card) 40%);
  margin-top: 0.75rem;
  padding-top: 0.75rem;
}

.survey-actions .button {
  min-height: 40px;
  flex: 1 1 auto;
  padding: 0.56rem 0.75rem;
}

.survey-actions .button[hidden] {
  display: none;
}

.modal-card[data-survey-step="0"] [data-survey-back] {
  display: none !important;
}

.survey-actions [data-survey-skip] {
  flex: 0 1 auto;
  border-color: transparent;
  background: transparent;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 760;
  box-shadow: none;
  min-height: 38px;
  padding-inline: 0.45rem;
}

.survey-actions [data-survey-skip]:hover {
  background: transparent;
  color: var(--cta-hover);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.survey-actions [data-survey-next] {
  flex: 1 1 130px;
}

.survey-contact-field input {
  min-height: 48px;
  padding-block: 0.66rem;
}

.survey-complete {
  display: grid;
  gap: 0.6rem;
  border: 1px solid rgba(95, 141, 116, 0.28);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(237, 246, 239, 0.95), rgba(255, 253, 248, 0.96)),
    var(--card);
  padding: 1.1rem;
}

.survey-complete h3,
.survey-complete p {
  margin: 0;
}

.referral-block {
  display: grid;
  gap: 0.55rem;
  margin-top: 0.25rem;
  border: 1px solid rgba(216, 203, 184, 0.92);
  border-radius: 16px;
  background: rgba(255, 253, 248, 0.78);
  padding: 0.9rem;
}

.referral-block h4 {
  margin: 0;
  color: var(--brand-strong);
  font-size: 1rem;
  line-height: 1.2;
}

.referral-block p {
  color: var(--text);
  font-size: 0.9rem;
  line-height: 1.45;
}

.referral-block .referral-terms {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.4;
}

.referral-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.62fr);
  gap: 0.5rem;
  margin-top: 0.1rem;
}

.referral-copy-status {
  min-height: 1rem;
  color: var(--brand-strong);
  font-size: 0.82rem;
  font-weight: 750;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.8fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.pain-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(420px, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.pain-lead {
  max-width: 620px;
  font-size: 1.08rem;
}

.pain-bridge {
  max-width: 600px;
  color: var(--brand-strong);
  font-weight: 780;
}

.pain-callout {
  margin-top: 1.75rem;
  border-left: 4px solid var(--accent);
  border-radius: 16px;
  background: rgba(237, 246, 239, 0.72);
  padding: 1.1rem 1.25rem;
  max-width: 680px;
  box-shadow: inset 0 0 0 1px rgba(95, 141, 116, 0.12);
}

.pain-callout strong {
  display: inline;
  font-weight: 850;
}

.stacked-copy p {
  margin-bottom: 0.75rem;
}

.info-card,
.step-card {
  padding: 1.35rem;
  box-shadow: var(--soft-shadow);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.info-card:hover,
.step-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(65, 50, 33, 0.08);
}

.warm-card {
  border-color: var(--border);
  background: var(--card);
}

.calm-card {
  border-color: var(--border);
  background: var(--card);
}

.info-card p,
.step-card p {
  margin-bottom: 0;
}

.muted-section {
  background:
    linear-gradient(180deg, rgba(247, 239, 226, 0.82), var(--section-muted));
}

.pain-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.pain-section {
  background:
    linear-gradient(180deg, #f4fbf4 0%, var(--section-sage) 100%);
}

.pain-card {
  min-height: 100%;
  border-color: var(--border);
  background: var(--card);
}

.pain-card h3 {
  color: var(--brand-strong);
}

.pain-label {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: #fff1df;
  color: var(--cta-hover);
  font-size: 0.78rem;
  font-weight: 850;
  line-height: 1;
  margin-bottom: 0.8rem;
  padding: 0.45rem 0.65rem;
}

.story-grid {
  align-items: center;
}

.story-section {
  background:
    linear-gradient(180deg, var(--section-ivory) 0%, #fffaf1 100%);
}

.story-grid .fine-print {
  margin-top: 1.25rem;
  border-left: 3px solid var(--accent);
  border-radius: 0 14px 14px 0;
  background: rgba(237, 246, 239, 0.45);
  color: var(--muted);
  padding: 0.85rem 1rem;
}

.before-after {
  display: grid;
  gap: 1rem;
  padding: 1.35rem;
  background: var(--card);
}

.story-note {
  justify-self: start;
  margin: 0;
  border: 1px solid rgba(95, 141, 116, 0.22);
  border-radius: 999px;
  background: #edf6ef;
  color: var(--brand-strong);
  font-size: 0.82rem;
  font-weight: 850;
  padding: 0.35rem 0.6rem;
}

.result-block {
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1rem;
  background: var(--card);
}

.result-block.after {
  border-color: rgba(95, 141, 116, 0.3);
  border-left: 4px solid var(--accent);
  background:
    linear-gradient(90deg, rgba(237, 246, 239, 0.42), rgba(255, 253, 248, 0.96)),
    var(--card);
}

.result-label {
  margin-bottom: 0.45rem;
  color: var(--brand);
  font-weight: 850;
}

.result-block p {
  margin-bottom: 0.25rem;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 2rem;
}

.steps {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1rem;
}

.step-card {
  position: relative;
  grid-column: span 2;
  padding-top: 1.35rem;
}

.step-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.step-number {
  position: static;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 14px;
  background: #f6c87d;
  color: var(--brand-strong);
  font-weight: 900;
}

.step-card h3 {
  margin: 0;
}

.step-card p {
  margin-top: 0;
}

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

#how-it-works {
  background:
    linear-gradient(180deg, #fff7e7 0%, var(--section-peach) 100%);
}

.faq-section {
  background:
    linear-gradient(180deg, #fbf4e8 0%, var(--section-muted) 100%);
}

.courses-fold {
  margin-top: 1.4rem;
}

.future-note {
  max-width: 620px;
  margin-top: 0.35rem;
  font-weight: 650;
}

.course-list {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.75rem;
}

.comparison-section {
  background:
    linear-gradient(180deg, var(--section-cream) 0%, var(--section-ivory) 100%);
}

.comparison-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.95);
  box-shadow: var(--soft-shadow);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 980px;
}

.comparison-table th,
.comparison-table td {
  border-bottom: 1px solid rgba(142, 111, 75, 0.14);
  padding: 1rem 1.05rem;
  text-align: left;
  vertical-align: top;
}

.comparison-table th:not(:first-child),
.comparison-table td:not(:first-child) {
  text-align: center;
}

.comparison-table thead th {
  background: #fff1df;
  color: var(--brand-strong);
  font-size: 0.96rem;
  font-weight: 800;
  line-height: 1.35;
  padding-block: 1.1rem;
  vertical-align: middle;
}

.comparison-table th:nth-child(1),
.comparison-table td:nth-child(1) {
  width: 24%;
}

.comparison-table th:nth-child(2),
.comparison-table td:nth-child(2) {
  width: 15.2%;
}

.comparison-table th:nth-child(3),
.comparison-table td:nth-child(3) {
  width: 15.2%;
}

.comparison-table th:nth-child(4),
.comparison-table td:nth-child(4) {
  width: 15.2%;
}

.comparison-table th:nth-child(5),
.comparison-table td:nth-child(5) {
  width: 15.2%;
}

.comparison-table th:nth-child(6),
.comparison-table td:nth-child(6) {
  width: 15.2%;
}

.comparison-feature-col {
  min-width: 220px;
}

.comparison-table tbody th {
  color: var(--text);
  font-weight: 820;
}

.comparison-table td {
  color: var(--muted);
}

.comparison-table strong {
  color: var(--brand-strong);
}

.comparison-table tr:last-child th,
.comparison-table tr:last-child td {
  border-bottom: 0;
}

.comparison-highlight th,
.comparison-highlight td {
  background: rgba(237, 246, 239, 0.72);
}

.comparison-highlight-col {
  background: rgba(237, 246, 239, 0.72);
  color: var(--brand-strong);
  font-weight: 850;
}

.comparison-table td:not(:first-child) .status-badge,
.comparison-table th:not(:first-child) .status-badge {
  margin-inline: auto;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2rem;
  padding: 0.28rem 0.72rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.82rem;
  font-weight: 850;
  line-height: 1.1;
  white-space: nowrap;
}

.status-badge--yes {
  color: #1f5c39;
  background: #e5f4e9;
  border-color: #bfdcc9;
}

.status-badge--limited {
  color: #8f651e;
  background: #fbefd4;
  border-color: #e8d1a0;
}

.status-badge--no {
  color: #8f2f23;
  background: #fde8e3;
  border-color: #e6a79b;
}

.comparison-mobile {
  display: none;
}

.comparison-mobile-card {
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(255, 253, 248, 0.95);
  box-shadow: var(--soft-shadow);
  padding: 1.25rem;
}

.comparison-mobile-matrix {
  display: grid;
  gap: 0.9rem;
}

.comparison-mobile-card h3 {
  margin-bottom: 0;
  color: var(--brand-strong);
  font-size: 1.08rem;
}

.comparison-mobile-grid {
  display: grid;
  gap: 0.55rem;
}

.comparison-mobile-grid div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.75rem;
  align-items: center;
  border: 1px solid rgba(142, 111, 75, 0.12);
  border-radius: 14px;
  background: #fffdfa;
  padding: 0.65rem 0.75rem;
}

.comparison-mobile-grid span {
  color: var(--text);
  font-size: 0.9rem;
  line-height: 1.35;
}

.comparison-mobile-grid strong {
  color: var(--brand-strong);
  font-size: 0.95rem;
  text-align: right;
}

.comparison-mobile-highlight-cell {
  border-color: rgba(95, 141, 116, 0.22);
  background: rgba(237, 246, 239, 0.82);
}

.comparison-mobile-card p {
  margin: 0;
  line-height: 1.5;
}

.comparison-mobile-label {
  display: block;
  margin-top: 1rem;
  margin-bottom: 0.35rem;
  color: var(--brand-strong);
  font-size: 0.82rem;
  font-weight: 850;
}

.comparison-mobile-card h3 + .comparison-mobile-label {
  margin-top: 0;
}

.comparison-mobile-highlight {
  background: rgba(237, 246, 239, 0.72);
}

.comparison-note {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.comparison-legend {
  display: grid;
  gap: 0.3rem;
  margin: 1rem 0 0.45rem;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.comparison-legend p {
  margin: 0;
}

.faq-list {
  display: grid;
  gap: 0.7rem;
}

details {
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--card);
  padding: 0.85rem 1rem;
}

summary {
  cursor: pointer;
  color: var(--text);
  font-weight: 850;
}

details p {
  margin: 0.65rem 0 0;
}

.final-cta {
  padding-top: 3.6rem;
  padding-bottom: 3.6rem;
  background:
    linear-gradient(180deg, #fffaf1 0%, #fff0d0 100%);
}

.final-cta-inner {
  max-width: 840px;
  text-align: center;
}

.final-cta-inner h2,
.final-cta-inner p,
.final-cta-inner .eyebrow,
.final-cta-inner .trust-line {
  color: var(--brand-strong);
}

.final-cta-inner p {
  max-width: 760px;
  margin-inline: auto;
}

.final-cta-inner .button {
  margin-top: 0.4rem;
}

.final-cta-inner .trust-line {
  margin: 0.9rem auto 0;
}

.site-footer {
  border-top: 1px solid rgba(234, 223, 205, 0.9);
  background: #fffdf8;
  padding: 1.6rem 0 1.35rem;
}

.footer-inner {
  display: grid;
  gap: 1rem;
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.3fr) minmax(0, 0.95fr);
  gap: 1.5rem;
  align-items: start;
}

.footer-brand h2 {
  font-size: 1.22rem;
  margin-bottom: 0.3rem;
}

.footer-brand p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.4;
}

.footer-brand p + p {
  margin-top: 0.15rem;
}

.footer-contact-wrap {
  justify-self: end;
  max-width: 18rem;
}

.footer-contact-title {
  margin: 0 0 0.2rem;
  color: var(--brand);
  font-size: 0.88rem;
  font-weight: 750;
  line-height: 1.3;
}

.footer-contact {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.4;
}

.footer-contact a {
  color: var(--brand);
  font-weight: 750;
  overflow-wrap: anywhere;
}

.footer-contact a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-links {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-content: flex-start;
  gap: 0.45rem 0.8rem;
  color: var(--brand);
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.4;
  padding-top: 0.15rem;
}

.footer-links a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-waitlist-link {
  font-weight: 800;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  border-top: 1px solid rgba(142, 111, 75, 0.12);
  padding-top: 0.7rem;
}

.footer-legal {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-end;
  gap: 0.75rem 1rem;
}

.footer-bottom p,
.footer-legal a {
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.45;
}

.footer-legal a:hover {
  color: var(--brand);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-bottom p:first-child {
  max-width: 720px;
}

.privacy-page {
  background: linear-gradient(180deg, #fffdf7 0%, var(--bg) 32rem, #fffaf1 100%);
}

.privacy-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(234, 223, 205, 0.9);
  background: #fffdf8;
}

.privacy-nav {
  min-height: 5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.privacy-back {
  color: var(--brand);
  font-size: 0.92rem;
  font-weight: 750;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.privacy-main {
  padding: clamp(3rem, 7vw, 5.5rem) 0;
}

.privacy-content {
  max-width: 820px;
  margin: 0 auto;
}

.privacy-content h1 {
  max-width: none;
  margin-bottom: 0.75rem;
  font-size: clamp(2.35rem, 5vw, 3.5rem);
}

.privacy-effective {
  margin-bottom: 2.5rem;
  color: var(--muted);
  font-weight: 650;
}

.privacy-content h2 {
  margin-top: 2.5rem;
  margin-bottom: 0.8rem;
  font-size: clamp(1.45rem, 3vw, 1.9rem);
}

.privacy-content p,
.privacy-content li {
  max-width: 78ch;
}

.privacy-content p {
  margin-bottom: 1rem;
}

.privacy-content ul {
  margin: 0.25rem 0 1.25rem;
  padding-left: 1.35rem;
}

.privacy-content li {
  margin-bottom: 0.45rem;
  padding-left: 0.2rem;
}

.privacy-content a {
  color: var(--brand);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.privacy-content a:hover {
  color: var(--cta-hover);
}

@media (max-width: 620px) {
  .privacy-nav {
    min-height: 4.5rem;
  }

  .privacy-nav .brand-copy {
    display: none;
  }

  .privacy-main {
    padding: 2.5rem 0 3.5rem;
  }
}

@media (max-width: 1040px) {
  .steps,
  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .step-card,
  .step-card:nth-child(4),
  .step-card:nth-child(5) {
    grid-column: auto;
  }

  .steps .step-card:last-child {
    grid-column: span 2;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}

@media (max-width: 920px) {
  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-contact-wrap {
    justify-self: start;
    max-width: none;
  }

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

  .footer-legal {
    justify-content: flex-start;
  }
}

@media (max-width: 480px) {
  .container {
    width: min(100% - 1rem, var(--max-width));
  }

  .eyebrow {
    margin-bottom: 0.75rem;
    font-size: 0.92rem;
    letter-spacing: 0.02em;
  }

  .nav {
    gap: 0.55rem;
    padding: 0.62rem 0;
  }

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

  .brand-title {
    font-size: 0.98rem;
  }

  .nav-cta {
    min-height: 38px;
    padding-inline: 0.62rem;
    font-size: 0.8rem;
  }

  .hero {
    padding-top: 1.5rem;
    padding-bottom: 2rem;
  }

  .hero-reassurance {
    gap: 0.28rem;
  }

  h1 {
    font-size: clamp(1.8rem, 8.7vw, 2.15rem);
    line-height: 1.1;
  }

  h2 {
    font-size: clamp(1.55rem, 7vw, 1.95rem);
  }

  .hero-subhead {
    font-size: 1.02rem;
    line-height: 1.52;
  }

  .section {
    padding: 2.65rem 0;
  }

  .hero-capability-card h2 {
    font-size: 1.12rem;
  }

  details {
    padding: 0.8rem 0.9rem;
  }

  summary {
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  .modal-backdrop {
    padding: 0.5rem;
  }

  .waitlist-modal {
    width: calc(100vw - 16px);
    max-height: calc(100vh - 16px);
    max-height: calc(100dvh - 16px);
  }

  .waitlist-modal .waitlist-card,
  .modal-card.is-submitted {
    padding: 0.85rem;
  }

  .waitlist-modal .survey-form {
    max-height: calc(100vh - 8.5rem);
    max-height: calc(100dvh - 8.5rem);
  }

  .waitlist-modal .survey-options {
    gap: 0.28rem;
  }

  .waitlist-modal .survey-options label {
    padding: 0.42rem 0.55rem;
  }

  .waitlist-modal .survey-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .waitlist-modal .survey-actions [data-survey-skip] {
    justify-self: center;
    min-height: 34px;
    order: 2;
  }

  .waitlist-modal .survey-actions [data-survey-back] {
    order: 1;
  }

  .waitlist-modal .survey-actions [data-survey-next] {
    order: 3;
    width: 100%;
  }
}

@media (max-width: 700px) {
  .comparison-table-wrap {
    display: none;
  }

  .comparison-mobile {
    display: grid;
    gap: 1rem;
  }

  .comparison-mobile-card {
    padding: 1rem;
  }

  .comparison-mobile-grid {
    gap: 0.45rem;
  }

  .comparison-mobile-grid div {
    padding: 0.6rem 0.68rem;
  }

  .step-card {
    padding-top: 1.25rem;
  }

  .step-card-header {
    gap: 10px;
    margin-bottom: 12px;
  }

  .step-number {
    width: 32px;
    height: 32px;
  }

}




