:root {
  --ink: #17211f;
  --ink-soft: #46524f;
  --paper: #fbfaf5;
  --white: #ffffff;
  --forest: #17483d;
  --forest-deep: #0d2f2a;
  --mint: #dceee6;
  --mint-strong: #89c7ad;
  --gold: #c89335;
  --gold-soft: #f1d99d;
  --clay: #aa6048;
  --line: rgba(23, 33, 31, 0.14);
  --shadow: 0 20px 60px rgba(10, 31, 26, 0.14);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

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

body.locked {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
input,
select {
  font: inherit;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 30;
  transform: translateY(-150%);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--forest);
  padding: 10px 14px;
  text-decoration: none;
  box-shadow: var(--shadow);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 54px);
  color: var(--white);
  background: rgba(9, 31, 27, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
  transition:
    background 180ms ease,
    box-shadow 180ms ease;
}

.site-header.scrolled {
  background: rgba(9, 31, 27, 0.94);
  box-shadow: 0 12px 32px rgba(10, 31, 26, 0.18);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 230px;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--gold-soft);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-copy {
  display: grid;
  gap: 1px;
}

.brand-copy strong {
  font-size: clamp(0.92rem, 1.8vw, 1.02rem);
  line-height: 1.1;
}

.brand-copy small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.76rem;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(10px, 2vw, 24px);
  flex-wrap: wrap;
  font-size: 0.9rem;
}

.site-nav a {
  color: rgba(255, 255, 255, 0.86);
  text-decoration: none;
}

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

.site-nav .nav-cta {
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  padding: 9px 14px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.menu-toggle,
.mobile-menu,
.mobile-brand-title {
  display: none;
}

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  align-items: center;
  min-height: 86svh;
  margin-top: -76px;
  padding: 128px clamp(18px, 5vw, 72px) 74px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(8, 24, 22, 0.92) 0%, rgba(8, 24, 22, 0.7) 38%, rgba(8, 24, 22, 0.16) 74%),
    linear-gradient(0deg, rgba(8, 24, 22, 0.12), rgba(8, 24, 22, 0.12)),
    url("assets/wellness-hero.jpg") center right / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 28%;
  z-index: -1;
  background: linear-gradient(0deg, rgba(8, 24, 22, 0.45), rgba(8, 24, 22, 0));
}

.hero-content {
  width: min(760px, 100%);
  padding-top: 28px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--gold-soft);
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.04;
  letter-spacing: 0;
}

h1 {
  max-width: 780px;
  font-size: clamp(3.3rem, 8vw, 7rem);
  font-weight: 850;
}

h2 {
  font-size: clamp(2rem, 4.6vw, 4.35rem);
  font-weight: 820;
}

h3 {
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  font-weight: 780;
}

.hero-lede {
  max-width: 650px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.06rem, 2.1vw, 1.35rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 13px 20px;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  color: #12201c;
  background: var(--gold-soft);
  box-shadow: 0 18px 32px rgba(200, 147, 53, 0.2);
}

.button-primary:hover {
  background: #f5dfaa;
}

.button-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.1);
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(650px, 100%);
  margin: 44px 0 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
}

.hero-proof div {
  padding: 18px;
}

.hero-proof dt {
  color: var(--gold-soft);
  font-size: clamp(1.35rem, 3vw, 2.2rem);
  font-weight: 850;
  line-height: 1;
}

.hero-proof dd {
  margin: 7px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.86rem;
}

.section-shell {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
}

.capture-section {
  position: relative;
  z-index: 2;
  padding: 28px 0 42px;
  background: var(--forest-deep);
  color: var(--white);
}

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

.capture-copy p:not(.eyebrow) {
  max-width: 560px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.05rem;
}

.lead-form {
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 22px 42px rgba(0, 0, 0, 0.16);
}

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

label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.83rem;
  font-weight: 750;
}

input,
select {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius);
  padding: 0 13px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  outline: none;
}

input:focus,
select:focus {
  border-color: var(--gold-soft);
  box-shadow: 0 0 0 4px rgba(241, 217, 157, 0.22);
}

.form-submit {
  width: 100%;
  margin-top: 16px;
}

.form-legal,
.form-status {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
  line-height: 1.45;
}

.form-status:not(:empty) {
  color: var(--gold-soft);
  font-weight: 750;
}

.section {
  padding: clamp(72px, 9vw, 124px) 0;
}

.section-heading {
  width: min(760px, 100%);
  margin-bottom: 34px;
}

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

.section-heading p:not(.eyebrow) {
  margin: 18px 0 0;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.8vw, 1.18rem);
}

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

.insight-card,
.path-grid article,
.offer-list article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 30px rgba(23, 33, 31, 0.06);
}

.insight-card {
  padding: clamp(22px, 3vw, 30px);
}

.card-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-bottom: 22px;
  border-radius: 50%;
  color: var(--forest);
  background: var(--mint);
  font-size: 0.82rem;
  font-weight: 850;
}

.insight-card p,
.path-grid p,
.offer-list p,
.story-copy p,
.final-cta p,
.contact-panel p {
  margin: 14px 0 0;
  color: var(--ink-soft);
}

.contrast-section {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(23, 72, 61, 0.94), rgba(13, 47, 42, 1)),
    var(--forest-deep);
}

.contrast-section .eyebrow,
.contrast-section .section-heading p {
  color: var(--gold-soft);
}

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

.path-grid article {
  padding: 20px;
  color: var(--ink);
}

.path-grid span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  border-radius: 50%;
  color: var(--white);
  background: var(--clay);
  font-weight: 850;
}

.offer-section {
  background: linear-gradient(180deg, var(--paper), #eef5ef);
}

.offer-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.offer-grid > div:first-child p:not(.eyebrow) {
  margin: 18px 0 0;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.offer-list {
  display: grid;
  gap: 14px;
}

.offer-list article {
  padding: 24px;
}

.fast-track-section {
  background:
    linear-gradient(180deg, var(--white) 0%, #f3f7f2 46%, var(--white) 100%);
}

.scenario-panel {
  border: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: #f8f6ef;
  box-shadow: var(--shadow);
}

.scenario-topline {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  padding: clamp(18px, 3vw, 28px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(23, 72, 61, 0.98), rgba(13, 47, 42, 1)),
    var(--forest-deep);
}

.scenario-topline p {
  max-width: 680px;
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.tab-controls {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  white-space: nowrap;
}

.scenario-tab {
  min-height: 38px;
  border: 0;
  border-radius: 999px;
  padding: 0 13px;
  color: rgba(255, 255, 255, 0.76);
  background: transparent;
  font-size: 0.85rem;
  font-weight: 800;
  cursor: pointer;
}

.scenario-tab.active {
  color: var(--ink);
  background: var(--gold-soft);
}

.dashboard-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(260px, 0.55fr);
  gap: 16px;
  padding: clamp(16px, 3vw, 28px);
}

.metric-strip {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.metric-strip article,
.growth-card,
.rank-ladder {
  border: 1px solid rgba(23, 33, 31, 0.1);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 28px rgba(23, 33, 31, 0.07);
}

.metric-strip article {
  padding: 18px;
}

.metric-strip span,
.mini-eyebrow {
  display: block;
  color: var(--clay);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.metric-strip strong {
  display: block;
  margin-top: 7px;
  color: var(--forest-deep);
  font-size: clamp(1.65rem, 4vw, 3.2rem);
  line-height: 1;
}

.metric-strip small {
  display: block;
  margin-top: 8px;
  color: var(--ink-soft);
  font-size: 0.82rem;
}

.growth-card {
  min-width: 0;
  padding: clamp(18px, 3vw, 26px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(13, 47, 42, 0.98), rgba(23, 72, 61, 0.96)),
    var(--forest-deep);
}

.chart-heading {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 18px;
}

.chart-heading h3 {
  max-width: 560px;
}

.growth-card .mini-eyebrow {
  margin: 0 0 8px;
  color: var(--gold-soft);
}

.chart-legend {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 14px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.78rem;
  font-weight: 750;
  white-space: nowrap;
}

.chart-legend span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.chart-legend i {
  display: inline-block;
  width: 18px;
  height: 8px;
  border-radius: 999px;
}

.legend-bar {
  background: var(--gold-soft);
}

.legend-line {
  background: var(--mint-strong);
}

.growth-chart {
  width: 100%;
  height: auto;
  overflow: visible;
}

.chart-grid line {
  stroke: rgba(255, 255, 255, 0.12);
  stroke-width: 1;
}

.chart-grid text,
.chart-labels text {
  fill: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  font-weight: 750;
}

.chart-bars rect {
  fill: url("#barGradient");
  filter: drop-shadow(0 12px 18px rgba(200, 147, 53, 0.18));
}

.chart-bars text {
  fill: var(--white);
  font-size: 14px;
  font-weight: 850;
}

.chart-line-path {
  fill: none;
  stroke: var(--mint-strong);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 5;
  filter: url("#softGlow");
}

.chart-dots circle {
  fill: var(--mint-strong);
  stroke: var(--forest-deep);
  stroke-width: 5;
}

.chart-dots text {
  fill: var(--mint);
  font-size: 13px;
  font-weight: 850;
}

.rank-ladder {
  padding: 22px;
}

.rank-ladder .mini-eyebrow {
  margin-bottom: 8px;
}

.rank-steps {
  position: relative;
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.rank-steps::before {
  content: "";
  position: absolute;
  top: 16px;
  bottom: 16px;
  left: 16px;
  width: 2px;
  background: linear-gradient(180deg, var(--gold), var(--mint-strong));
}

.rank-steps article {
  position: relative;
  display: grid;
  gap: 3px;
  min-height: 52px;
  padding: 10px 12px 10px 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfaf5;
}

.rank-steps article::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 13px;
  width: 20px;
  height: 20px;
  border: 4px solid var(--white);
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 1px rgba(200, 147, 53, 0.38);
}

.rank-steps span {
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 750;
}

.rank-steps strong {
  color: var(--forest-deep);
  font-size: 1.05rem;
}

.table-wrap {
  overflow-x: auto;
}

.scenario-table {
  width: 100%;
  min-width: 820px;
  border-collapse: collapse;
  background: var(--white);
}

.scenario-table caption {
  height: 1px;
  overflow: hidden;
  position: absolute;
  width: 1px;
}

.scenario-table th,
.scenario-table td {
  padding: 16px 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: middle;
}

.scenario-table th {
  color: var(--forest);
  background: #f4f1e7;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.scenario-table td:nth-child(2),
.scenario-table td:nth-child(3),
.scenario-table td:nth-child(4),
.scenario-table td:nth-child(6),
.scenario-table td:nth-child(7) {
  font-weight: 800;
}

.scenario-note {
  margin: 0;
  padding: 16px clamp(18px, 3vw, 28px) 22px;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.86rem;
}

.story-section {
  background: linear-gradient(180deg, #f7f5ee, var(--paper));
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
}

.story-copy p:not(.eyebrow) {
  font-size: 1.08rem;
}

blockquote {
  margin: 0;
  padding: clamp(28px, 4vw, 42px);
  border-left: 6px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  color: var(--white);
  background: var(--forest);
  box-shadow: var(--shadow);
}

blockquote p {
  margin: 0;
  font-size: clamp(1.35rem, 3vw, 2.1rem);
  font-weight: 780;
  line-height: 1.18;
}

blockquote cite {
  display: block;
  margin-top: 20px;
  color: var(--gold-soft);
  font-style: normal;
  font-weight: 800;
}

.final-cta {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(23, 72, 61, 0.92), rgba(13, 47, 42, 0.98)),
    var(--forest-deep);
}

.final-cta .eyebrow {
  color: var(--gold-soft);
}

.final-cta p {
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.08rem;
}

.final-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
}

.contact-panel {
  display: grid;
  gap: 10px;
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.contact-panel p {
  margin-bottom: 8px;
}

.contact-panel a:not(.button) {
  color: var(--gold-soft);
  font-weight: 800;
  text-decoration: none;
}

.contact-panel .button {
  margin-top: 8px;
}

.site-footer {
  padding: 26px 0;
  color: rgba(255, 255, 255, 0.72);
  background: #071a17;
  font-size: 0.78rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 0.55fr 1.45fr;
  gap: 24px;
}

.footer-grid p {
  margin: 0;
}

@media (max-width: 980px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    min-height: 108px;
  }

  .site-nav {
    justify-content: flex-start;
  }

  .hero {
    margin-top: -108px;
    min-height: 84svh;
    padding-top: 158px;
    background-position: 64% center;
  }

  .capture-grid,
  .offer-grid,
  .story-grid,
  .final-grid {
    grid-template-columns: 1fr;
  }

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

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

  .scenario-topline {
    flex-direction: column;
  }

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

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

  .chart-heading {
    flex-direction: column;
  }

  .chart-legend {
    justify-content: flex-start;
  }
}

@media (max-width: 700px) {
  html {
    scroll-padding-top: 18px;
  }

  .site-header {
    position: relative;
    top: auto;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 0;
    padding: 10px 14px;
    text-align: left;
    background: var(--forest-deep);
    box-shadow: none;
    backdrop-filter: none;
  }

  .site-header.scrolled {
    background: var(--forest-deep);
    box-shadow: none;
  }

  .brand {
    justify-content: flex-start;
    min-width: 0;
    width: auto;
    flex: 0 0 auto;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
    font-size: 0.76rem;
  }

  .brand-copy {
    display: none;
  }

  .mobile-brand-title {
    display: block;
    flex: 1 1 auto;
    min-width: 0;
    color: var(--gold-soft);
    font-size: clamp(0.78rem, 3.3vw, 0.95rem);
    font-weight: 900;
    letter-spacing: 0.06em;
    line-height: 1;
    text-align: center;
    text-transform: uppercase;
    white-space: nowrap;
  }

  .site-nav {
    display: none;
  }

  .menu-toggle {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 50%;
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
    cursor: pointer;
  }

  .menu-toggle span {
    position: absolute;
    left: 50%;
    top: 50%;
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: var(--gold-soft);
    transform: translate(-50%, -50%);
    transition:
      opacity 160ms ease,
      transform 160ms ease;
  }

  .menu-toggle span:nth-child(1) {
    transform: translate(-50%, calc(-50% - 6px));
  }

  .menu-toggle span:nth-child(3) {
    transform: translate(-50%, calc(-50% + 6px));
  }

  .site-header.menu-open .menu-toggle span:nth-child(1) {
    transform: translate(-50%, -50%) rotate(45deg);
  }

  .site-header.menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .site-header.menu-open .menu-toggle span:nth-child(3) {
    transform: translate(-50%, -50%) rotate(-45deg);
  }

  .mobile-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 14px;
    z-index: 25;
    display: grid;
    min-width: min(240px, calc(100vw - 28px));
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius);
    background: rgba(13, 47, 42, 0.98);
    box-shadow: 0 20px 48px rgba(7, 26, 23, 0.34);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition:
      opacity 160ms ease,
      transform 160ms ease;
  }

  .site-header.menu-open .mobile-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-menu a {
    border-radius: 6px;
    padding: 12px 13px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.95rem;
    font-weight: 800;
    text-decoration: none;
  }

  .mobile-menu a:hover,
  .mobile-menu a:focus {
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    outline: none;
  }

  .mobile-menu .mobile-menu-cta {
    margin-top: 3px;
    color: var(--ink);
    background: var(--gold-soft);
    text-align: center;
  }

  .hero {
    margin-top: 0;
    min-height: calc(100svh - 64px);
    padding-right: 18px;
    padding-top: 54px;
    padding-bottom: 48px;
    background:
      linear-gradient(90deg, rgba(8, 24, 22, 0.93) 0%, rgba(8, 24, 22, 0.78) 60%, rgba(8, 24, 22, 0.34) 100%),
      url("assets/wellness-hero.jpg") 64% center / cover no-repeat;
  }

  h1 {
    font-size: clamp(3rem, 16vw, 4.9rem);
  }

  .hero-actions,
  .button {
    width: 100%;
  }

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

  .hero-proof div {
    padding: 14px 16px;
  }

  .field-grid,
  .path-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section-shell {
    width: min(100% - 28px, var(--max));
  }

  .section {
    padding: 64px 0;
  }

  .tab-controls {
    width: 100%;
    white-space: normal;
  }

  .scenario-tab {
    flex: 1;
  }

  .dashboard-grid {
    padding: 14px;
  }

  .metric-strip {
    grid-template-columns: 1fr;
  }

  .metric-strip article {
    padding: 16px;
  }

  .growth-card,
  .rank-ladder {
    padding: 16px;
  }

  .growth-card h3 {
    font-size: 1.15rem;
  }

  .growth-chart {
    min-width: 560px;
  }

  .growth-card {
    overflow-x: auto;
  }

  .table-wrap {
    overflow: visible;
  }

  .scenario-table {
    min-width: 0;
    border-collapse: separate;
    border-spacing: 0 12px;
    background: transparent;
  }

  .scenario-table thead {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }

  .scenario-table tbody,
  .scenario-table tr,
  .scenario-table td {
    display: block;
  }

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

  .scenario-table td {
    display: grid;
    grid-template-columns: minmax(105px, 0.85fr) minmax(0, 1.15fr);
    gap: 12px;
    padding: 11px 14px;
    border-bottom: 1px solid var(--line);
    text-align: right;
  }

  .scenario-table td::before {
    content: attr(data-label);
    color: var(--forest);
    font-size: 0.72rem;
    font-weight: 850;
    letter-spacing: 0.04em;
    text-align: left;
    text-transform: uppercase;
  }

  .scenario-table td:last-child {
    border-bottom: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
