:root {
  --ink: #18211d;
  --ink-soft: #45514b;
  --paper: #f6f2e9;
  --paper-deep: #ece5d7;
  --card: #fffdf8;
  --line: rgba(24, 33, 29, 0.14);
  --green: #176b50;
  --green-dark: #0d4937;
  --mint: #c9f1df;
  --lime: #d9f36c;
  --coral: #ed765e;
  --white: #ffffff;
  --shadow-sm: 0 10px 30px rgba(31, 49, 39, 0.08);
  --shadow-lg: 0 28px 80px rgba(31, 49, 39, 0.14);
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 38px;
  --max-width: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  z-index: -2;
  inset: 0;
  background-image:
    linear-gradient(rgba(24, 33, 29, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(24, 33, 29, 0.026) 1px, transparent 1px);
  background-size: 32px 32px;
  content: "";
  pointer-events: none;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  text-decoration-thickness: 2px;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

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

:focus-visible {
  outline: 3px solid var(--coral);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 10px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-150%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

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

.narrow {
  width: min(calc(100% - 40px), 820px);
  margin-inline: auto;
}

.site-header {
  position: relative;
  z-index: 100;
  padding-top: 18px;
}

.nav-shell {
  display: flex;
  min-height: 68px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 10px 12px 10px 20px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 253, 248, 0.88);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 760;
  letter-spacing: -0.025em;
  text-decoration: none;
}

.brand em {
  color: var(--green);
  font-style: normal;
}

.brand-mark {
  position: relative;
  display: grid;
  width: 35px;
  height: 35px;
  place-items: center;
  overflow: hidden;
  border-radius: 11px 11px 11px 3px;
  background: var(--green);
}

.brand-mark::before,
.brand-mark::after {
  position: absolute;
  border-radius: 999px;
  content: "";
}

.brand-mark::before {
  width: 17px;
  height: 17px;
  background: var(--lime);
}

.brand-mark::after {
  width: 5px;
  height: 5px;
  background: var(--green);
  box-shadow: 8px 0 var(--green), -8px 0 var(--green);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav a {
  padding: 10px 12px;
  border-radius: 11px;
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 640;
  text-decoration: none;
  transition: color 160ms ease, background 160ms ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--ink);
  background: var(--paper-deep);
}

.site-nav .nav-cta {
  margin-left: 4px;
  padding-inline: 17px;
  color: var(--white);
  background: var(--green);
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta[aria-current="page"] {
  color: var(--white);
  background: var(--green-dark);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 0;
  border-radius: 12px;
  color: var(--ink);
  background: var(--paper-deep);
  cursor: pointer;
}

.nav-toggle-lines,
.nav-toggle-lines::before,
.nav-toggle-lines::after {
  display: block;
  width: 19px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle-lines {
  position: relative;
}

.nav-toggle-lines::before,
.nav-toggle-lines::after {
  position: absolute;
  left: 0;
  content: "";
}

.nav-toggle-lines::before {
  top: -6px;
}

.nav-toggle-lines::after {
  top: 6px;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines::after {
  top: 0;
  transform: rotate(-45deg);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 92px 0 88px;
}

.hero::after {
  position: absolute;
  z-index: -1;
  top: 4%;
  right: -9%;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 241, 223, 0.8), rgba(201, 241, 223, 0) 68%);
  content: "";
}

.hero-grid {
  display: grid;
  align-items: center;
  gap: 78px;
  grid-template-columns: minmax(0, 1.03fr) minmax(380px, 0.72fr);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 20px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 780;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 2px;
  border-radius: 3px;
  background: currentColor;
  content: "";
}

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

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -0.047em;
}

h1 {
  max-width: 760px;
  margin-bottom: 25px;
  font-size: clamp(3.35rem, 7vw, 6.6rem);
  line-height: 0.96;
}

h1 .marker,
h2 .marker {
  position: relative;
  z-index: 0;
  white-space: nowrap;
}

h1 .marker::after,
h2 .marker::after {
  position: absolute;
  z-index: -1;
  right: -0.04em;
  bottom: 0.08em;
  left: -0.04em;
  height: 0.22em;
  border-radius: 999px;
  background: var(--lime);
  content: "";
  transform: rotate(-1deg);
}

.hero-copy > p:not(.eyebrow) {
  max-width: 610px;
  margin-bottom: 32px;
  color: var(--ink-soft);
  font-size: clamp(1.04rem, 2vw, 1.22rem);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 21px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-size: 0.94rem;
  font-weight: 750;
  line-height: 1.2;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
  text-decoration: none;
}

.button-primary {
  color: var(--white);
  background: var(--green);
  box-shadow: 0 12px 26px rgba(23, 107, 80, 0.22);
}

.button-primary:hover {
  background: var(--green-dark);
  box-shadow: 0 15px 30px rgba(23, 107, 80, 0.28);
}

.button-secondary {
  border-color: var(--line);
  background: rgba(255, 253, 248, 0.7);
}

.button-secondary:hover {
  background: var(--card);
  box-shadow: var(--shadow-sm);
}

.button svg {
  width: 18px;
  height: 18px;
}

.fine-print {
  margin: 16px 0 0;
  color: var(--ink-soft);
  font-size: 0.78rem;
}

.phone-stage {
  position: relative;
}

.phone-stage::before {
  position: absolute;
  z-index: -1;
  top: 9%;
  right: -12%;
  width: 82%;
  height: 84%;
  border-radius: 50%;
  background: var(--lime);
  content: "";
  opacity: 0.54;
  transform: rotate(8deg);
}

.phone-stage::after {
  position: absolute;
  z-index: 2;
  right: -18px;
  bottom: 54px;
  width: 76px;
  height: 76px;
  border: 1px solid rgba(24, 33, 29, 0.13);
  border-radius: 50%;
  background: var(--coral);
  box-shadow: var(--shadow-sm);
  content: "↗";
  font-family: Georgia, serif;
  font-size: 2.35rem;
  line-height: 76px;
  text-align: center;
  transform: rotate(8deg);
}

.phone {
  width: min(100%, 420px);
  margin-inline: auto;
  overflow: hidden;
  border: 9px solid var(--ink);
  border-radius: 42px;
  background: #eef5f1;
  box-shadow: var(--shadow-lg);
  transform: rotate(1.6deg);
}

.phone-top {
  display: grid;
  grid-template-columns: 38px 1fr 38px;
  align-items: center;
  padding: 22px 18px 15px;
  border-bottom: 1px solid rgba(24, 33, 29, 0.09);
  background: rgba(255, 255, 255, 0.74);
}

.phone-back {
  font-size: 1.2rem;
}

.phone-contact {
  text-align: center;
}

.phone-avatar {
  display: grid;
  width: 38px;
  height: 38px;
  margin: 0 auto 4px;
  place-items: center;
  border-radius: 50%;
  color: var(--lime);
  background: var(--green);
  font-weight: 800;
}

.phone-contact strong {
  display: block;
  font-size: 0.78rem;
  line-height: 1.2;
}

.phone-contact small {
  color: var(--ink-soft);
  font-size: 0.65rem;
}

.phone-messages {
  display: flex;
  min-height: 484px;
  flex-direction: column;
  gap: 10px;
  padding: 24px 15px 25px;
}

.message-time {
  margin: 0 auto 2px;
  color: #69746f;
  font-size: 0.66rem;
  font-weight: 650;
}

.bubble {
  width: fit-content;
  max-width: 83%;
  margin: 0;
  padding: 10px 13px;
  border-radius: 17px;
  font-size: 0.76rem;
  line-height: 1.45;
}

.bubble-in {
  align-self: flex-start;
  border-bottom-left-radius: 5px;
  background: var(--white);
  box-shadow: 0 4px 14px rgba(24, 33, 29, 0.07);
}

.bubble-out {
  align-self: flex-end;
  border-bottom-right-radius: 5px;
  color: var(--white);
  background: var(--green);
}

.bubble-label {
  display: block;
  margin-bottom: 3px;
  color: var(--green);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.phone-input {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding: 9px 12px;
  border: 1px solid rgba(24, 33, 29, 0.12);
  border-radius: 999px;
  color: #78827d;
  background: rgba(255, 255, 255, 0.82);
  font-size: 0.7rem;
}

.send-dot {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--green);
  font-size: 0.8rem;
}

.trust-strip {
  padding-bottom: 28px;
}

.trust-list {
  display: grid;
  margin: 0;
  padding: 18px 26px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 253, 248, 0.62);
  list-style: none;
  grid-template-columns: repeat(4, 1fr);
}

.trust-list li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  color: var(--ink-soft);
  font-size: 0.83rem;
  font-weight: 700;
}

.trust-list li + li {
  border-left: 1px solid var(--line);
}

.trust-list span {
  color: var(--green);
}

.section {
  padding: 108px 0;
}

.section-tight {
  padding: 78px 0;
}

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

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

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 48px;
}

.section-heading h2,
.center-heading h2 {
  max-width: 720px;
  margin-bottom: 0;
  font-size: clamp(2.5rem, 5vw, 4.6rem);
  line-height: 1.02;
}

.section-heading > p {
  max-width: 380px;
  margin-bottom: 4px;
  color: var(--ink-soft);
}

.section-dark .section-heading > p,
.section-green .section-heading > p {
  color: rgba(255, 255, 255, 0.67);
}

.center-heading {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
}

.center-heading .eyebrow {
  justify-content: center;
}

.center-heading p:last-child {
  max-width: 620px;
  margin: 20px auto 0;
  color: var(--ink-soft);
}

.center-heading p.on-dark {
  color: rgba(255, 255, 255, 0.68);
}

.center-actions {
  justify-content: center;
}

.step-grid,
.card-grid,
.question-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, 1fr);
}

.step-card,
.info-card,
.question-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--card);
}

.step-card {
  min-height: 290px;
  padding: 26px;
}

.step-number {
  display: grid;
  width: 44px;
  height: 44px;
  margin-bottom: 58px;
  place-items: center;
  border-radius: 50%;
  color: var(--green);
  background: var(--mint);
  font-size: 0.76rem;
  font-weight: 850;
}

.step-card h3,
.info-card h3,
.question-card h3 {
  margin-bottom: 9px;
  font-size: 1.16rem;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.step-card p,
.info-card p,
.question-card p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.step-card::after {
  position: absolute;
  right: -28px;
  bottom: -34px;
  width: 112px;
  height: 112px;
  border: 20px solid var(--paper-deep);
  border-radius: 50%;
  content: "";
}

.question-card {
  min-height: 250px;
  padding: 30px;
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.055);
}

.question-card p {
  color: rgba(255, 255, 255, 0.68);
}

.question-icon {
  display: grid;
  width: 50px;
  height: 50px;
  margin-bottom: 55px;
  place-items: center;
  border-radius: 16px;
  color: var(--lime);
  background: rgba(217, 243, 108, 0.12);
  font-family: Georgia, serif;
  font-size: 1.55rem;
}

.boundary-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 26px;
  padding: 20px 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(0, 0, 0, 0.12);
  font-size: 0.85rem;
}

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

.split-feature {
  display: grid;
  align-items: stretch;
  gap: 18px;
  grid-template-columns: 0.86fr 1.14fr;
}

.feature-panel {
  padding: clamp(32px, 5vw, 64px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--card);
}

.feature-panel-accent {
  display: flex;
  min-height: 490px;
  flex-direction: column;
  justify-content: space-between;
  color: var(--white);
  background: var(--green);
}

.feature-panel h2 {
  margin-bottom: 22px;
  font-size: clamp(2.4rem, 4vw, 4rem);
  line-height: 1.04;
}

.feature-panel > p {
  max-width: 570px;
  color: var(--ink-soft);
}

.feature-panel-accent > p {
  color: rgba(255, 255, 255, 0.72);
}

.big-quote {
  margin: 0;
  font-family: Georgia, serif;
  font-size: clamp(2rem, 4.2vw, 3.8rem);
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.principle-list {
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
}

.principle-list li {
  display: grid;
  gap: 13px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  grid-template-columns: 32px 1fr;
}

.principle-list strong {
  display: block;
  margin-bottom: 3px;
}

.principle-list p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.check {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border-radius: 50%;
  color: var(--green);
  background: var(--mint);
  font-size: 0.74rem;
  font-weight: 850;
}

.cta-band {
  padding: 86px 0;
}

.cta-shell {
  position: relative;
  display: grid;
  overflow: hidden;
  align-items: center;
  gap: 36px;
  padding: clamp(38px, 7vw, 78px);
  border-radius: var(--radius-lg);
  color: var(--white);
  background: var(--green);
  grid-template-columns: 1fr auto;
}

.cta-shell::after {
  position: absolute;
  right: -80px;
  bottom: -130px;
  width: 340px;
  height: 340px;
  border: 52px solid rgba(217, 243, 108, 0.16);
  border-radius: 50%;
  content: "";
}

.cta-shell > * {
  position: relative;
  z-index: 1;
}

.cta-shell h2 {
  max-width: 700px;
  margin-bottom: 14px;
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  line-height: 1;
}

.cta-shell p {
  max-width: 620px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
}

.cta-shell .button {
  color: var(--ink);
  background: var(--lime);
  box-shadow: none;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 112px 0 88px;
}

.page-hero::after {
  position: absolute;
  z-index: -1;
  top: 5%;
  left: 62%;
  width: 430px;
  height: 430px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(217, 243, 108, 0.48), transparent 68%);
  content: "";
}

.page-hero h1 {
  max-width: 880px;
  font-size: clamp(3.4rem, 7.7vw, 7rem);
}

.page-hero .lead {
  max-width: 700px;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.about-intro {
  display: grid;
  gap: 70px;
  grid-template-columns: 1.1fr 0.9fr;
}

.about-intro h2 {
  font-size: clamp(2.7rem, 5vw, 4.6rem);
  line-height: 1.04;
}

.about-copy p {
  color: var(--ink-soft);
  font-size: 1.04rem;
}

.fact-card {
  align-self: start;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--card);
  box-shadow: var(--shadow-sm);
}

.fact-card-title {
  margin: 0;
  padding: 22px 26px;
  color: var(--white);
  background: var(--green);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.fact-list {
  margin: 0;
  padding: 6px 26px;
}

.fact-list div {
  display: grid;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 0.8fr 1.2fr;
}

.fact-list div:last-child {
  border-bottom: 0;
}

.fact-list dt {
  color: var(--ink-soft);
  font-size: 0.82rem;
}

.fact-list dd {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 720;
}

.info-card {
  min-height: 280px;
  padding: 30px;
}

.info-card .card-number {
  display: block;
  margin-bottom: 64px;
  color: var(--coral);
  font-family: Georgia, serif;
  font-size: 2.6rem;
  line-height: 1;
}

.contact-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, 1fr);
}

.contact-card {
  display: flex;
  min-height: 390px;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(30px, 5vw, 52px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--card);
}

.contact-card-accent {
  color: var(--white);
  background: var(--green);
}

.contact-icon {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border-radius: 17px;
  color: var(--green);
  background: var(--mint);
  font-size: 1.35rem;
}

.contact-card-accent .contact-icon {
  color: var(--ink);
  background: var(--lime);
}

.contact-card h2 {
  margin: 28px 0 10px;
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.contact-card p {
  max-width: 430px;
  color: var(--ink-soft);
}

.contact-card-accent p {
  color: rgba(255, 255, 255, 0.72);
}

.contact-link {
  display: inline-block;
  overflow-wrap: anywhere;
  color: var(--green);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 760;
}

.contact-card-accent .contact-link {
  color: var(--lime);
}

.notice {
  display: flex;
  gap: 14px;
  margin-top: 28px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 15px;
  color: var(--ink-soft);
  background: rgba(255, 253, 248, 0.66);
  font-size: 0.86rem;
}

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

.program-hero {
  padding-bottom: 64px;
}

.opt-in-card {
  position: relative;
  overflow: hidden;
  padding: clamp(30px, 6vw, 72px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--card);
  box-shadow: var(--shadow-lg);
}

.opt-in-card::after {
  position: absolute;
  top: -120px;
  right: -110px;
  width: 320px;
  height: 320px;
  border: 48px solid var(--mint);
  border-radius: 50%;
  content: "";
  opacity: 0.55;
}

.opt-in-card > * {
  position: relative;
  z-index: 1;
}

.program-label {
  display: inline-flex;
  margin-bottom: 28px;
  padding: 7px 11px;
  border-radius: 8px;
  color: var(--green);
  background: var(--mint);
  font-size: 0.72rem;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.opt-in-card h2 {
  max-width: 770px;
  margin-bottom: 25px;
  font-size: clamp(2.7rem, 6vw, 5.4rem);
  line-height: 0.98;
}

.disclosure {
  max-width: 860px;
  margin: 0 0 28px;
  color: var(--ink-soft);
  font-size: clamp(1.04rem, 2.2vw, 1.3rem);
}

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

.policy-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin: 18px 0 0;
  font-size: 0.86rem;
  font-weight: 720;
}

.policy-links a {
  color: var(--green);
}

.sample-list {
  display: grid;
  gap: 15px;
}

.sample-message {
  display: grid;
  gap: 22px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--card);
  grid-template-columns: 135px 1fr;
}

.sample-message h3 {
  margin: 2px 0 0;
  color: var(--green);
  font-size: 0.77rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sample-message p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.91rem;
}

.program-facts {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--line);
  grid-template-columns: repeat(2, 1fr);
}

.program-fact {
  padding: 26px;
  background: var(--card);
}

.program-fact span {
  display: block;
  margin-bottom: 4px;
  color: var(--ink-soft);
  font-size: 0.76rem;
  font-weight: 650;
}

.program-fact strong {
  font-size: 1rem;
}

.legal-hero {
  padding-bottom: 58px;
}

.legal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px 20px;
  margin-top: 28px;
  color: var(--ink-soft);
  font-size: 0.83rem;
}

.legal-grid {
  display: grid;
  align-items: start;
  gap: 72px;
  grid-template-columns: 230px minmax(0, 720px);
}

.legal-toc {
  position: sticky;
  top: 24px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 253, 248, 0.7);
}

.legal-toc strong {
  display: block;
  margin-bottom: 10px;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-toc a {
  display: block;
  padding: 5px 0;
  color: var(--ink-soft);
  font-size: 0.8rem;
  text-decoration: none;
}

.legal-toc a:hover {
  color: var(--green);
}

.legal-content section {
  scroll-margin-top: 32px;
  padding: 0 0 42px;
}

.legal-content h2 {
  margin-bottom: 17px;
  font-family: inherit;
  font-size: clamp(1.4rem, 3vw, 1.75rem);
  font-weight: 760;
  letter-spacing: -0.03em;
}

.legal-content h3 {
  margin: 26px 0 8px;
  font-size: 1rem;
}

.legal-content p,
.legal-content li {
  color: var(--ink-soft);
}

.legal-content ul {
  padding-left: 20px;
}

.legal-content a {
  color: var(--green);
}

.legal-callout {
  margin-bottom: 38px;
  padding: 22px 24px;
  border-left: 4px solid var(--green);
  border-radius: 0 14px 14px 0;
  background: var(--card);
}

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

.site-footer {
  padding: 72px 0 32px;
  color: var(--white);
  background: var(--ink);
}

.footer-grid {
  display: grid;
  gap: 60px;
  padding-bottom: 55px;
  grid-template-columns: 1.25fr 0.75fr 0.75fr;
}

.site-footer .brand {
  color: var(--white);
}

.footer-brand p {
  max-width: 390px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.89rem;
}

.footer-column strong {
  display: block;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-column a {
  display: block;
  width: fit-content;
  margin: 8px 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.88rem;
  text-decoration: none;
}

.footer-column a:hover {
  color: var(--lime);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.76rem;
}

.footer-bottom p {
  margin: 0;
}

@media (max-width: 980px) {
  .nav-toggle {
    display: grid;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 9px);
    right: 20px;
    left: 20px;
    display: none;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--card);
    box-shadow: var(--shadow-lg);
  }

  .site-nav[data-open="true"] {
    display: grid;
  }

  .site-nav a {
    padding: 13px 14px;
  }

  .site-nav .nav-cta {
    margin: 4px 0 0;
    text-align: center;
  }

  .hero-grid {
    gap: 60px;
    grid-template-columns: 1fr;
  }

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

  .phone-stage {
    width: min(100%, 520px);
    margin-inline: auto;
  }

  .step-grid,
  .card-grid,
  .question-grid {
    grid-template-columns: 1fr 1fr;
  }

  .step-card:last-child,
  .question-card:last-child,
  .info-card:last-child {
    grid-column: 1 / -1;
  }

  .split-feature,
  .about-intro {
    gap: 30px;
    grid-template-columns: 1fr;
  }

  .feature-panel-accent {
    min-height: 390px;
  }

  .cta-shell {
    grid-template-columns: 1fr;
  }

  .cta-shell .button {
    width: fit-content;
  }

  .legal-grid {
    gap: 36px;
    grid-template-columns: 1fr;
  }

  .legal-toc {
    position: static;
    display: flex;
    flex-wrap: wrap;
    gap: 2px 18px;
  }

  .legal-toc strong {
    width: 100%;
  }
}

@media (max-width: 700px) {
  .container,
  .narrow {
    width: min(calc(100% - 28px), var(--max-width));
  }

  .site-header {
    padding-top: 10px;
  }

  .nav-shell {
    min-height: 62px;
    padding: 8px 9px 8px 14px;
    border-radius: 18px;
  }

  .site-nav {
    right: 14px;
    left: 14px;
  }

  .hero {
    padding: 72px 0 70px;
  }

  h1 {
    font-size: clamp(3.05rem, 16vw, 4.7rem);
  }

  .phone {
    width: calc(100% - 12px);
  }

  .phone-stage::after {
    right: -1px;
    width: 62px;
    height: 62px;
    font-size: 1.9rem;
    line-height: 62px;
  }

  .trust-list {
    gap: 14px 0;
    padding: 18px;
    grid-template-columns: 1fr 1fr;
  }

  .trust-list li {
    justify-content: flex-start;
  }

  .trust-list li + li {
    border-left: 0;
  }

  .section,
  .section-tight {
    padding: 76px 0;
  }

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

  .section-heading > p {
    margin-top: 18px;
  }

  .step-grid,
  .card-grid,
  .question-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .step-card:last-child,
  .question-card:last-child,
  .info-card:last-child {
    grid-column: auto;
  }

  .feature-panel,
  .cta-shell,
  .contact-card,
  .opt-in-card {
    border-radius: var(--radius-md);
  }

  .feature-panel-accent {
    min-height: 330px;
  }

  .page-hero {
    padding: 80px 0 66px;
  }

  .contact-card {
    min-height: 340px;
  }

  .sample-message {
    gap: 8px;
    grid-template-columns: 1fr;
  }

  .program-facts {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    gap: 36px;
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    display: block;
  }

  .footer-bottom p + p {
    margin-top: 5px;
  }
}

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

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