:root {
  --cream: #fffaf0;
  --paper: #fffdf8;
  --ink: #122018;
  --green: #063f2a;
  --green-2: #032f20;
  --muted: #5d665f;
  --line: rgba(26, 46, 36, 0.16);
  --soft: #f3ebdf;
  --gold: #c88609;
  --shadow: 0 24px 70px rgba(27, 22, 15, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

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

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

button {
  font: inherit;
}

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: minmax(240px, 1fr) auto minmax(240px, 1fr);
  align-items: center;
  gap: 28px;
  width: min(1510px, calc(100% - 92px));
  margin: 0 auto;
  padding: 26px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  width: max-content;
}

.brand-mark {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background:
    repeating-linear-gradient(155deg, transparent 0 7px, rgba(255, 255, 255, 0.34) 8px 10px),
    radial-gradient(circle at 34% 24%, #2b7854, #063f2a 58%, #021f16);
  box-shadow: inset -8px -11px 18px rgba(0, 0, 0, 0.24);
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.02;
}

.brand strong {
  font-size: 1.55rem;
  font-weight: 950;
}

.brand small {
  color: var(--green);
  font-size: 1.28rem;
  font-weight: 900;
}

.nav {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 1rem;
  font-weight: 850;
}

.nav a + a {
  position: relative;
}

.nav a + a::before {
  position: absolute;
  left: -18px;
  top: 50%;
  width: 1px;
  height: 22px;
  background: rgba(18, 32, 24, 0.38);
  content: "";
  transform: translateY(-50%);
}

.nav-cta,
.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-weight: 950;
}

.nav-cta {
  justify-self: end;
  min-width: 270px;
  min-height: 60px;
  background: var(--green);
  color: #fff;
  font-size: 1.08rem;
  box-shadow: 0 18px 34px rgba(6, 63, 42, 0.18);
}

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

.hero-section {
  position: relative;
  min-height: 960px;
  overflow: hidden;
  isolation: isolate;
}

.hero-photo,
.hero-wash,
.offer-photo,
.offer-wash {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-photo {
  z-index: 0;
  object-fit: cover;
  object-position: center right;
}

.hero-wash {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(255, 250, 240, 0.98) 0%, rgba(255, 250, 240, 0.92) 31%, rgba(255, 250, 240, 0.42) 52%, rgba(255, 250, 240, 0.08) 74%),
    radial-gradient(circle at 26% 80%, rgba(255, 253, 248, 0.86), transparent 34%);
}

.hero-inner {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: minmax(470px, 0.95fr) minmax(270px, 0.6fr);
  gap: 54px;
  width: min(1510px, calc(100% - 92px));
  margin: 0 auto;
  padding-top: 142px;
}

.hero-copy {
  max-width: 720px;
  padding-top: 8px;
}

.offer-pill,
.gold-pill,
.section-kicker {
  display: inline-flex;
  align-items: center;
  width: max-content;
  margin: 0;
  border: 1px solid var(--gold);
  border-radius: 999px;
  padding: 10px 19px;
  color: #a76700;
  background: rgba(255, 250, 240, 0.7);
  font-size: 1rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  color: var(--green-2);
  font-family: Impact, "Arial Narrow", Inter, ui-sans-serif, sans-serif;
  font-weight: 950;
  letter-spacing: 0;
}

h1 {
  max-width: 690px;
  margin-top: 28px;
  font-size: clamp(4.3rem, 6.75vw, 7.4rem);
  line-height: 0.92;
}

.hero-lead {
  max-width: 660px;
  margin: 28px 0 0;
  color: #15211a;
  font-size: 1.45rem;
  line-height: 1.42;
}

.benefit-list {
  display: grid;
  gap: 18px;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
  font-size: 1.13rem;
  font-weight: 900;
}

.benefit-list li {
  position: relative;
  padding-left: 44px;
}

.benefit-list li::before,
.stage-card li::before {
  position: absolute;
  left: 0;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: white;
  content: "✓";
  font-size: 0.82rem;
  font-weight: 950;
}

.benefit-list li::before {
  top: -1px;
  width: 26px;
  height: 26px;
}

.hero-actions {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-top: 40px;
}

.availability-note {
  max-width: 610px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 850;
  line-height: 1.45;
}

.primary-button,
.secondary-button {
  min-height: 76px;
  padding: 0 30px;
  font-size: 1.18rem;
}

.primary-button {
  gap: 24px;
  background: var(--green);
  color: white;
  box-shadow: 0 18px 34px rgba(6, 63, 42, 0.22);
}

.secondary-button {
  gap: 18px;
  border: 2px solid var(--green-2);
  background: rgba(255, 253, 248, 0.72);
  color: var(--green-2);
}

.play-icon {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 2px solid var(--green-2);
  border-radius: 50%;
  font-size: 0.78rem;
}

.batch-widget {
  align-self: start;
  justify-self: start;
  width: min(300px, 100%);
  margin-top: 8px;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 24px 24px 22px;
  background: rgba(255, 253, 248, 0.9);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.widget-top {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.widget-top strong {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
}

.batch-widget h2 {
  color: #101a14;
  font-family: inherit;
  font-size: 1.16rem;
}

.batch-widget > p {
  margin: 8px 0 20px;
  font-size: 1.05rem;
}

.stage-dots {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  align-items: center;
  margin-bottom: 24px;
  border-top: 2px solid rgba(6, 63, 42, 0.18);
}

.stage-dots span,
.stage-dots i {
  width: 14px;
  height: 14px;
  margin-top: -8px;
  border-radius: 50%;
  background: var(--green);
}

.stage-dots i {
  border: 1px solid var(--green);
  background: white;
}

.batch-widget dl,
.stage-card dl {
  display: grid;
  gap: 13px;
  margin: 0;
}

.batch-widget dl div,
.stage-card dl div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

dt,
dd {
  margin: 0;
}

dd {
  font-weight: 850;
}

.next-action {
  margin-top: 24px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.next-action strong {
  text-transform: uppercase;
}

.next-action p {
  margin: 8px 0 0;
  line-height: 1.45;
}

.trust-card,
.bottom-trust {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(760px, calc(100% - 92px));
  margin: 46px auto 0;
  margin-left: max(46px, calc((100% - 1510px) / 2 + 46px));
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 253, 248, 0.86);
  box-shadow: 0 16px 42px rgba(27, 22, 15, 0.12);
  backdrop-filter: blur(10px);
}

.trust-card article,
.bottom-trust article {
  display: flex;
  gap: 17px;
  align-items: center;
  padding: 22px;
}

.trust-card article + article,
.bottom-trust article + article {
  border-left: 1px solid var(--line);
}

.trust-card span,
.bottom-trust span,
.final-trust span {
  display: grid;
  flex: 0 0 auto;
  width: 56px;
  height: 56px;
  place-items: center;
  border: 1px solid rgba(6, 63, 42, 0.28);
  border-radius: 50%;
  color: var(--green);
  font-size: 1.4rem;
}

.trust-card strong,
.trust-card small,
.bottom-trust strong,
.bottom-trust small,
.final-trust strong,
.final-trust small {
  display: block;
}

.trust-card strong,
.bottom-trust strong,
.final-trust strong {
  font-size: 1rem;
  font-weight: 950;
}

.trust-card small,
.bottom-trust small,
.final-trust small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.88rem;
}

.coach-section {
  padding: 76px 46px 88px;
  background:
    radial-gradient(circle at 0 55%, rgba(196, 134, 9, 0.08), transparent 26%),
    linear-gradient(180deg, #fffdf8, #f7f0e5);
}

.section-heading {
  max-width: 1280px;
  margin: 0 auto 28px;
  text-align: center;
}

.section-kicker {
  border: 0;
  border-radius: 0;
  padding: 0;
  background: transparent;
}

.section-heading h2,
.included-section h2,
.faq-section h2 {
  margin: 14px auto 0;
  font-size: clamp(2.5rem, 4vw, 4.9rem);
  line-height: 0.96;
}

.section-heading p {
  max-width: 690px;
  margin: 18px auto 0;
  font-size: 1.25rem;
  line-height: 1.36;
}

.coach-layout {
  display: grid;
  grid-template-columns: minmax(560px, 0.98fr) minmax(420px, 0.8fr);
  gap: 56px;
  align-items: center;
  max-width: 1420px;
  margin: 0 auto;
}

.app-shell {
  display: grid;
  grid-template-columns: 150px 1fr;
  overflow: hidden;
  border: 14px solid #101812;
  border-radius: 30px;
  background: #fffdf8;
  box-shadow: 0 30px 70px rgba(27, 22, 15, 0.22);
}

.app-sidebar {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 24px 18px;
  background: linear-gradient(180deg, #063f2a, #09271d);
  color: white;
  font-size: 0.78rem;
}

.app-sidebar span {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.app-sidebar b {
  border-radius: 8px;
  padding: 9px 10px;
}

.app-sidebar b:first-of-type {
  background: rgba(255, 255, 255, 0.16);
}

.app-main {
  padding: 26px;
}

.app-main small,
.stage-card small {
  color: var(--muted);
}

.app-title-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: start;
  margin-top: 14px;
}

.app-title-row h3 {
  margin: 4px 0 0;
  font-size: 1.9rem;
}

.app-title-row em {
  border-radius: 8px;
  padding: 10px 14px;
  background: #dfead9;
  color: var(--green);
  font-style: normal;
  font-weight: 850;
}

.stage-card {
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  gap: 18px 24px;
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 22px;
}

.stage-card strong {
  display: block;
  margin-top: 4px;
  color: var(--green);
  font-size: 1.42rem;
}

.progress-line {
  grid-column: 1 / -1;
  height: 4px;
  border-radius: 999px;
  background: #d8d4cb;
}

.progress-line span {
  display: block;
  width: 64%;
  height: 100%;
  border-radius: inherit;
  background: var(--green);
}

.stage-card ul {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.stage-card li {
  position: relative;
  padding-left: 28px;
}

.stage-card li::before {
  top: 2px;
  width: 17px;
  height: 17px;
  background: transparent;
  color: var(--muted);
  content: "";
  border: 1px solid rgba(18, 32, 24, 0.38);
}

.stage-card li.done::before {
  background: var(--green);
  color: white;
  content: "✓";
  border: 0;
  font-size: 0.66rem;
}

.photo-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 18px;
}

.photo-row img {
  width: 100%;
  aspect-ratio: 1.12;
  border: 1px solid var(--line);
  border-radius: 8px;
  object-fit: cover;
}

.steps-stack {
  display: grid;
  gap: 18px;
}

.steps-stack article {
  display: grid;
  grid-template-columns: 44% 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.78);
}

.steps-stack img {
  width: 100%;
  height: 100%;
  min-height: 170px;
  object-fit: cover;
}

.steps-stack div {
  padding: 28px 26px;
}

.steps-stack span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: white;
  font-size: 1.25rem;
  font-weight: 950;
}

.steps-stack h3 {
  margin: 26px 0 12px;
  color: var(--green-2);
  font-size: 1.55rem;
}

.steps-stack p {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.45;
}

.outcome-panel {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 32px;
  align-items: center;
  max-width: 1200px;
  margin: 34px auto 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 30px 34px;
  background: rgba(255, 253, 248, 0.86);
  box-shadow: 0 20px 50px rgba(27, 22, 15, 0.12);
}

.outcome-panel h3 {
  margin: 0;
  color: var(--green-2);
  font-size: clamp(2rem, 3vw, 3.15rem);
  line-height: 1.02;
}

.outcome-panel h3 strong {
  color: var(--gold);
}

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

.proof-grid article {
  border-left: 1px solid var(--line);
  padding: 8px 14px;
  text-align: center;
}

.proof-grid span {
  display: grid;
  width: 46px;
  height: 46px;
  margin: 0 auto 12px;
  place-items: center;
  border: 2px solid var(--green);
  border-radius: 50%;
  color: var(--green);
  font-size: 1.18rem;
}

.proof-grid strong,
.proof-grid small {
  display: block;
}

.proof-grid strong {
  font-weight: 950;
}

.proof-grid small {
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.35;
}

.included-section,
.faq-section {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 54px;
  align-items: start;
  padding: 78px max(46px, calc((100% - 1420px) / 2)) 80px;
  background: #fffdf8;
}

.faq-section {
  background: #f6efe3;
}

.included-section h2,
.faq-section h2 {
  margin: 14px 0 0;
}

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

.included-grid article,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8f1e7;
}

.included-grid article {
  min-height: 142px;
  padding: 24px;
}

.included-grid strong,
.included-grid span {
  display: block;
}

.included-grid strong {
  color: var(--green);
  font-size: 1.14rem;
}

.included-grid span {
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.45;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  padding: 18px 20px;
}

.faq-list summary {
  cursor: pointer;
  color: var(--green);
  font-size: 1.02rem;
  font-weight: 950;
}

.faq-list p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.5;
}

.final-offer {
  position: relative;
  min-height: 910px;
  overflow: hidden;
  isolation: isolate;
  background: #fffaf0;
}

.offer-photo {
  z-index: 0;
  object-fit: cover;
  object-position: left center;
}

.offer-wash {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(255, 250, 240, 0.04) 0%, rgba(255, 250, 240, 0.12) 34%, rgba(255, 250, 240, 0.88) 62%, rgba(255, 250, 240, 0.98) 100%),
    linear-gradient(180deg, rgba(255, 250, 240, 0.06), rgba(255, 250, 240, 0.7) 100%);
}

.final-inner {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: minmax(440px, 1fr) minmax(380px, 430px);
  gap: 60px;
  align-items: center;
  width: min(1510px, calc(100% - 92px));
  min-height: 760px;
  margin: 0 auto;
  padding: 74px 0 120px;
}

.final-copy {
  justify-self: center;
  max-width: 560px;
  margin-left: 29%;
}

.gold-pill {
  border: 0;
  background: var(--gold);
  color: white;
}

.final-copy h2 {
  margin-top: 22px;
  font-size: clamp(4rem, 5.8vw, 6.5rem);
  line-height: 0.92;
}

.final-copy > p {
  max-width: 520px;
  margin: 28px 0 0;
  font-size: 1.4rem;
  line-height: 1.35;
}

.final-trust {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
  margin-top: 62px;
}

.final-trust article {
  display: grid;
  gap: 12px;
}

.offer-card {
  overflow: hidden;
  scroll-margin-top: 92px;
  border-radius: 10px;
  background: #fffdf8;
  box-shadow: var(--shadow);
}

.offer-card h3 {
  margin: 0;
  padding: 28px 32px;
  background: linear-gradient(180deg, #063f2a, #043220);
  color: white;
  font-size: 2.05rem;
  line-height: 1.05;
}

.price-block {
  margin: 22px 28px 4px;
  border: 1px solid rgba(200, 134, 9, 0.38);
  border-radius: 10px;
  padding: 20px;
  background: #fff8e9;
  text-align: center;
}

.price-block span,
.price-block small {
  display: block;
}

.price-block span {
  color: #a76700;
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.price-block strong {
  display: block;
  margin-top: 6px;
  color: var(--green-2);
  font-family: Impact, "Arial Narrow", Inter, ui-sans-serif, sans-serif;
  font-size: 4.1rem;
  font-weight: 950;
  letter-spacing: 0;
  line-height: 0.95;
}

.price-block small {
  max-width: 310px;
  margin: 9px auto 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 750;
  line-height: 1.35;
}

.offer-card ul {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 18px 28px 8px;
  list-style: none;
}

.offer-card li {
  position: relative;
  border-bottom: 1px solid var(--line);
  padding: 18px 0 18px 56px;
  font-size: 1.08rem;
}

.offer-card li::before {
  position: absolute;
  left: 0;
  top: 50%;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  background: #edf2e9;
  color: var(--green);
  content: "✓";
  font-weight: 950;
  transform: translateY(-50%);
}

.offer-button {
  width: calc(100% - 56px);
  margin: 22px 28px 0;
}

.checkout-note {
  display: block;
  margin: 12px 28px 0;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
  text-align: center;
}

.offer-card p {
  margin: 20px 36px 28px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.42;
  text-align: center;
}

.bottom-trust {
  position: absolute;
  z-index: 5;
  left: 50%;
  bottom: 36px;
  width: min(1180px, calc(100% - 92px));
  margin: 0;
  transform: translateX(-50%);
}

.complete-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 18% 18%, rgba(200, 134, 9, 0.1), transparent 28%),
    linear-gradient(135deg, #fffaf0, #f5ecdf);
}

.complete-shell {
  width: min(1220px, calc(100% - 56px));
  margin: 0 auto;
  padding: 34px 0 58px;
}

.complete-brand {
  margin-bottom: 34px;
}

.complete-card {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(380px, 0.85fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 253, 248, 0.9);
  box-shadow: var(--shadow);
}

.complete-copy {
  padding: clamp(32px, 5vw, 72px);
}

.complete-copy h1 {
  max-width: 650px;
  margin-top: 22px;
  font-size: clamp(4rem, 6vw, 6.5rem);
  line-height: 0.92;
}

.complete-copy > p {
  max-width: 620px;
  margin: 26px 0 0;
  color: #15211a;
  font-size: 1.26rem;
  line-height: 1.45;
}

.next-steps-card {
  margin-top: 34px;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 24px;
  background: #f8f1e7;
}

.next-steps-card h2 {
  color: var(--green-2);
  font-family: inherit;
  font-size: 1.5rem;
}

.next-steps-card ul {
  display: grid;
  gap: 14px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.next-steps-card li {
  position: relative;
  padding-left: 34px;
  line-height: 1.45;
}

.next-steps-card li::before {
  position: absolute;
  left: 0;
  top: 1px;
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: white;
  content: "✓";
  font-size: 0.72rem;
  font-weight: 950;
}

.complete-button {
  width: max-content;
  margin-top: 34px;
}

.complete-image {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
  object-position: left center;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: center;
  padding: 28px max(46px, calc((100% - 1420px) / 2));
  border-top: 1px solid var(--line);
  background: #fffdf8;
  color: var(--muted);
}

.site-footer strong,
.site-footer span {
  display: block;
}

.site-footer strong {
  color: var(--green-2);
  font-weight: 950;
}

.site-footer span {
  margin-top: 4px;
  font-size: 0.92rem;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.92rem;
  font-weight: 850;
}

.site-footer a {
  color: var(--green);
}

.complete-footer {
  margin-top: 22px;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 22px 24px;
  background: rgba(255, 253, 248, 0.86);
}

.legal-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 18% 12%, rgba(200, 134, 9, 0.1), transparent 26%),
    linear-gradient(135deg, #fffaf0, #f5ecdf);
}

.legal-shell {
  width: min(980px, calc(100% - 56px));
  margin: 0 auto;
  padding: 34px 0 64px;
}

.legal-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: clamp(28px, 5vw, 62px);
  background: rgba(255, 253, 248, 0.92);
  box-shadow: var(--shadow);
}

.legal-card h1 {
  max-width: 780px;
  margin-top: 22px;
  font-size: clamp(3.4rem, 6vw, 5.8rem);
  line-height: 0.94;
}

.legal-card h2 {
  margin-top: 34px;
  color: var(--green-2);
  font-family: inherit;
  font-size: 1.42rem;
  line-height: 1.15;
}

.legal-card p,
.legal-card li {
  color: #26332b;
  font-size: 1.04rem;
  line-height: 1.6;
}

.legal-card p {
  margin: 16px 0 0;
}

.legal-card ul {
  display: grid;
  gap: 10px;
  margin: 16px 0 0;
  padding-left: 24px;
}

.legal-card a {
  color: var(--green);
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-updated {
  color: var(--muted);
  font-weight: 850;
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav {
    display: none;
  }

  .hero-inner,
  .final-inner {
    grid-template-columns: 1fr;
  }

  .batch-widget {
    justify-self: end;
    margin-top: -70px;
  }

  .trust-card {
    margin-left: auto;
  }

  .coach-layout,
  .included-section,
  .faq-section,
  .outcome-panel {
    grid-template-columns: 1fr;
  }

  .final-copy {
    justify-self: end;
    margin-left: 0;
  }

  .complete-card {
    grid-template-columns: 1fr;
  }

  .complete-image {
    min-height: 360px;
    order: -1;
  }
}

@media (max-width: 860px) {
  .site-header,
  .hero-inner,
  .final-inner {
    width: calc(100% - 28px);
  }

  .site-header {
    position: sticky;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    top: 0;
    padding: 12px 0;
    background: rgba(255, 250, 240, 0.94);
    border-bottom: 1px solid rgba(26, 46, 36, 0.08);
    backdrop-filter: blur(14px);
  }

  .brand {
    gap: 10px;
    min-width: 0;
  }

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

  .brand strong {
    font-size: 1.02rem;
  }

  .brand small {
    font-size: 0.88rem;
  }

  .nav-cta {
    justify-self: end;
    min-width: 116px;
    min-height: 43px;
    padding: 0 13px;
    font-size: 0.82rem;
    border-radius: 7px;
    box-shadow: none;
  }

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

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

  .hero-section {
    min-height: auto;
    padding: 18px 0 26px;
  }

  .hero-photo {
    position: absolute;
    height: 100%;
    object-position: 64% top;
  }

  .hero-wash {
    background:
      linear-gradient(180deg, rgba(255, 250, 240, 0.99) 0%, rgba(255, 250, 240, 0.93) 42%, rgba(255, 250, 240, 0.75) 100%),
      linear-gradient(90deg, rgba(255, 250, 240, 0.98), rgba(255, 250, 240, 0.46));
  }

  .hero-inner {
    gap: 24px;
    padding: 0 0 24px;
  }

  .offer-pill,
  .gold-pill,
  .section-kicker {
    padding: 8px 14px;
    font-size: 0.78rem;
    letter-spacing: 0.1em;
  }

  h1 {
    margin-top: 20px;
    font-size: clamp(3.05rem, 12.8vw, 4.65rem);
    line-height: 0.94;
  }

  .hero-lead,
  .final-copy > p {
    margin-top: 20px;
    font-size: 1.05rem;
    line-height: 1.43;
  }

  .benefit-list {
    gap: 11px;
    margin-top: 22px;
    font-size: 0.98rem;
  }

  .benefit-list li {
    padding-left: 34px;
  }

  .benefit-list li::before {
    width: 22px;
    height: 22px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    margin-top: 26px;
  }

  .availability-note {
    margin-top: 13px;
    font-size: 0.92rem;
  }

  .primary-button,
  .secondary-button {
    min-height: 58px;
    padding: 0 18px;
    font-size: 1rem;
  }

  .batch-widget {
    justify-self: stretch;
    width: 100%;
    margin-top: 0;
    padding: 18px;
    border-radius: 14px;
  }

  .batch-widget dl {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .batch-widget dl div {
    display: block;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 250, 240, 0.72);
  }

  .batch-widget dt {
    color: var(--muted);
    font-size: 0.75rem;
  }

  .batch-widget dd {
    margin-top: 4px;
    font-size: 0.86rem;
  }

  .trust-card,
  .bottom-trust,
  .final-trust {
    grid-template-columns: 1fr;
  }

  .trust-card {
    width: calc(100% - 28px);
    margin: 0 auto 28px;
  }

  .trust-card article,
  .bottom-trust article {
    padding: 16px;
  }

  .trust-card span,
  .bottom-trust span,
  .final-trust span {
    width: 44px;
    height: 44px;
    font-size: 1.05rem;
  }

  .trust-card article + article,
  .bottom-trust article + article {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .coach-section,
  .included-section,
  .faq-section {
    padding-inline: 16px;
  }

  .coach-section {
    padding-top: 56px;
    padding-bottom: 62px;
  }

  .section-heading {
    margin-bottom: 22px;
    text-align: left;
  }

  .section-heading h2,
  .included-section h2,
  .faq-section h2 {
    font-size: clamp(2.45rem, 10vw, 3.7rem);
    line-height: 1;
  }

  .section-heading p {
    margin-top: 14px;
    font-size: 1.05rem;
    line-height: 1.42;
  }

  .coach-layout {
    grid-template-columns: 1fr;
  }

  .app-shell {
    grid-template-columns: 1fr;
    border-width: 7px;
    border-radius: 22px;
  }

  .app-sidebar {
    display: none;
  }

  .steps-stack article,
  .included-grid,
  .proof-grid {
    grid-template-columns: 1fr;
  }

  .app-main {
    padding: 18px;
  }

  .app-title-row h3 {
    font-size: 1.6rem;
  }

  .app-title-row em {
    padding: 8px 10px;
    font-size: 0.88rem;
  }

  .stage-card {
    grid-template-columns: 1fr 1fr;
    padding: 16px;
  }

  .stage-card ul,
  .stage-card dl,
  .progress-line {
    grid-column: 1 / -1;
  }

  .stage-card dl {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .stage-card dl div {
    display: block;
    padding: 9px;
    border: 1px solid var(--line);
    border-radius: 8px;
  }

  .stage-card dt {
    color: var(--muted);
    font-size: 0.72rem;
  }

  .stage-card dd {
    margin-top: 4px;
    font-size: 0.82rem;
  }

  .photo-row {
    gap: 8px;
  }

  .photo-row img {
    aspect-ratio: 1;
  }

  .steps-stack img {
    min-height: 0;
    max-height: 230px;
  }

  .steps-stack div {
    padding: 22px;
  }

  .outcome-panel {
    gap: 22px;
    padding: 22px;
  }

  .proof-grid article {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .final-offer {
    min-height: auto;
  }

  .offer-photo {
    position: relative;
    height: 300px;
    object-position: left center;
  }

  .offer-wash {
    background: linear-gradient(180deg, rgba(255, 250, 240, 0.35), rgba(255, 250, 240, 1));
  }

  .final-inner {
    gap: 26px;
    padding: 26px 0 36px;
  }

  .final-copy {
    justify-self: stretch;
  }

  .final-copy h2 {
    font-size: clamp(3rem, 11.8vw, 4.55rem);
    line-height: 0.95;
  }

  .offer-card {
    scroll-margin-top: 82px;
  }

  .offer-card h3 {
    padding: 22px;
    font-size: 1.55rem;
  }

  .price-block {
    margin: 18px 22px 2px;
    padding: 17px;
  }

  .price-block strong {
    font-size: 3.3rem;
  }

  .offer-card ul {
    padding: 14px 22px 6px;
  }

  .offer-card li {
    padding: 14px 0 14px 46px;
    font-size: 0.98rem;
  }

  .offer-card li::before {
    width: 32px;
    height: 32px;
  }

  .offer-button {
    width: calc(100% - 44px);
    margin: 18px 22px 0;
  }

  .checkout-note {
    margin: 10px 22px 0;
    font-size: 0.86rem;
  }

  .offer-card p {
    margin: 16px 24px 22px;
    font-size: 0.96rem;
  }

  .bottom-trust {
    position: relative;
    left: auto;
    bottom: auto;
    width: calc(100% - 28px);
    margin: 0 auto 28px;
    transform: none;
  }

  .complete-shell {
    width: calc(100% - 28px);
    padding: 18px 0 32px;
  }

  .complete-brand {
    margin-bottom: 18px;
  }

  .complete-card {
    border-radius: 10px;
  }

  .complete-copy {
    padding: 24px 18px;
  }

  .complete-copy h1 {
    font-size: clamp(3rem, 12vw, 4.7rem);
  }

  .complete-copy > p {
    font-size: 1.04rem;
  }

  .next-steps-card {
    padding: 20px;
  }

  .complete-button {
    width: 100%;
  }

  .complete-image {
    min-height: 280px;
  }

  .site-footer {
    display: grid;
    padding: 24px 16px;
  }

  .legal-shell {
    width: calc(100% - 28px);
    padding: 18px 0 34px;
  }

  .legal-card {
    border-radius: 10px;
    padding: 24px 18px;
  }

  .legal-card h1 {
    font-size: clamp(3rem, 12vw, 4.7rem);
  }

}

@media (max-width: 420px) {
  .brand strong {
    font-size: 0.92rem;
  }

  .brand small {
    font-size: 0.8rem;
  }

  .nav-cta {
    min-width: 98px;
    padding: 0 10px;
  }

  .nav-cta {
    font-size: 0.78rem;
  }

  h1 {
    font-size: clamp(2.85rem, 15vw, 3.7rem);
  }
}
