:root {
  --green-950: #042514;
  --green-900: #06351d;
  --green-800: #0a4b2b;
  --green-700: #0d693d;
  --green-100: #e8f5ed;
  --orange: #e97822;
  --orange-dark: #c85d14;
  --purple: #6240ad;
  --purple-soft: #f3efff;
  --paper: #ffffff;
  --canvas: #f8faf6;
  --ink: #142017;
  --muted: #637167;
  --line: #dfe8e2;
  --shadow: 0 18px 54px rgba(4, 37, 20, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--canvas);
  color: var(--ink);
  font-family: "Inter", Arial, sans-serif;
  letter-spacing: 0;
}

body.nav-open {
  overflow: hidden;
}

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

button {
  font: inherit;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  min-height: 72px;
  padding: 0 6vw;
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(221, 230, 223, 0.8);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  color: var(--green-950);
  font-weight: 900;
}

.brand-word {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 2px;
  font-size: 1.08rem;
  line-height: 1;
}

.brand-word::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 4px;
  border-radius: 999px;
  content: "";
  background: linear-gradient(90deg, var(--orange), var(--purple));
  opacity: 0.85;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 2.6vw, 36px);
  color: #26382d;
  font-size: 0.84rem;
  font-weight: 800;
}

.site-nav a {
  position: relative;
  padding: 9px 0;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 3px;
  border-radius: 99px;
  content: "";
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  color: var(--green-950);
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.header-cta,
.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 900;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.header-cta {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 14px 30px rgba(244, 123, 32, 0.24);
}

.header-cta:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(244, 123, 32, 0.3);
}

.primary-button {
  background: var(--green-950);
  color: #fff;
  box-shadow: 0 14px 30px rgba(4, 37, 20, 0.22);
}

.primary-button:hover {
  background: var(--green-800);
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(4, 37, 20, 0.28);
}

.secondary-button {
  border: 1px solid rgba(4, 37, 20, 0.14);
  background: #fff;
  color: var(--green-950);
}

.secondary-button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.hero-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.9) 50%, rgba(232, 245, 237, 0.76) 100%),
    var(--paper);
}

.hero-section::before {
  position: absolute;
  inset: 0;
  content: "";
  background-image:
    linear-gradient(rgba(10, 75, 43, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 75, 43, 0.055) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, black 0%, transparent 82%);
}

.hero-section::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 34vw;
  min-width: 360px;
  content: "";
  background:
    linear-gradient(180deg, rgba(244, 123, 32, 0.1), rgba(111, 53, 197, 0.08)),
    rgba(232, 245, 237, 0.52);
  clip-path: polygon(34% 0, 100% 0, 100% 100%, 0 100%);
}

.hero-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(320px, 1.12fr) minmax(280px, 0.58fr);
  gap: clamp(32px, 4.5vw, 64px);
  align-items: center;
  width: min(1180px, 88vw);
  min-height: 590px;
  margin: 0 auto;
  padding: 58px 0 66px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green-700);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-copy h1,
.section-heading h2,
.final-cta h2 {
  margin: 0;
  color: var(--green-950);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.02;
}

.hero-copy h1 {
  max-width: 720px;
  font-size: clamp(2.85rem, 5.8vw, 5.55rem);
}

.hero-lead {
  max-width: 620px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(0.98rem, 1.25vw, 1.12rem);
  line-height: 1.68;
}

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

.hero-panel {
  position: relative;
  justify-self: end;
  width: min(100%, 390px);
  min-height: 360px;
  padding: 18px;
  border: 1px solid rgba(4, 37, 20, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(4, 37, 20, 0.96), rgba(10, 75, 43, 0.94)),
    var(--green-950);
  box-shadow: var(--shadow);
}

.hero-panel::before {
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  content: "";
  pointer-events: none;
}

.countdown-card,
.hero-system-card {
  position: relative;
  z-index: 1;
  border-radius: 8px;
}

.countdown-card {
  padding: 22px;
  background: #fff;
  color: var(--green-950);
}

.panel-eyebrow {
  display: block;
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.countdown-card strong {
  display: block;
  margin-top: 14px;
  color: var(--green-950);
  font-size: clamp(3.4rem, 6vw, 4.9rem);
  line-height: 0.88;
}

.countdown-card small {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 900;
}

.countdown-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 20px;
}

.countdown-grid div {
  padding: 10px 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--canvas);
  text-align: center;
}

.countdown-grid b,
.countdown-grid span {
  display: block;
}

.countdown-grid b {
  color: var(--green-950);
  font-size: 1.08rem;
  line-height: 1;
}

.countdown-grid span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 900;
}

.hero-system-card {
  margin-top: 12px;
  padding: 18px;
  background:
    linear-gradient(135deg, rgba(244, 123, 32, 0.18), rgba(111, 53, 197, 0.16)),
    rgba(255, 255, 255, 0.08);
  color: #fff;
}

.hero-system-card span,
.hero-system-card strong {
  display: block;
}

.hero-system-card span {
  color: #ffd5b7;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-system-card strong {
  margin-top: 10px;
  font-size: clamp(1.25rem, 2.3vw, 1.7rem);
  line-height: 1.12;
}

.hero-system-card p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.92rem;
  line-height: 1.58;
}

.impact-section {
  padding: 42px 0;
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.impact-shell {
  display: grid;
  grid-template-columns: minmax(280px, 0.76fr) minmax(0, 1.24fr);
  gap: 32px;
  align-items: center;
  width: min(1180px, 88vw);
  margin: 0 auto;
}

.impact-copy h2 {
  margin: 0;
  color: var(--green-950);
  font-size: clamp(1.55rem, 2.5vw, 2.55rem);
  font-weight: 900;
  line-height: 1.1;
}

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

.stat-item {
  min-height: 118px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--canvas);
}

.stat-item:nth-child(2) {
  border-color: rgba(244, 123, 32, 0.3);
  background: #fff7f0;
}

.stat-item:nth-child(4) {
  border-color: rgba(111, 53, 197, 0.18);
  background: var(--purple-soft);
}

.stat-item strong {
  display: block;
  color: var(--green-950);
  font-size: clamp(1.55rem, 2.5vw, 2.35rem);
  line-height: 1;
}

.stat-item span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
}

.section-pad {
  width: min(1180px, 88vw);
  margin: 0 auto;
  padding: 82px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(260px, 0.86fr) minmax(320px, 1.14fr);
  gap: 30px;
  align-items: end;
  margin-bottom: 32px;
}

.section-heading.compact {
  display: block;
  max-width: 720px;
}

.section-heading h2,
.final-cta h2 {
  font-size: clamp(1.95rem, 3.25vw, 3.45rem);
}

.section-heading p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.66;
}

.proof-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.72fr);
  gap: 24px;
  align-items: stretch;
}

.proof-card {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border: 1px solid rgba(4, 37, 20, 0.16);
  border-radius: 8px;
  background: var(--green-950);
  box-shadow: var(--shadow);
}

.proof-document {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.proof-document::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(4, 37, 20, 0.94) 0%, rgba(4, 37, 20, 0.72) 46%, rgba(4, 37, 20, 0.28) 100%),
    linear-gradient(0deg, rgba(4, 37, 20, 0.84), rgba(4, 37, 20, 0.1));
}

.proof-document img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  object-position: top center;
  opacity: 0.42;
  filter: saturate(0.75) blur(0.4px);
  transform: scale(1.04);
}

.proof-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 430px;
  max-width: 600px;
  padding: 30px;
  color: #fff;
}

.result-kicker {
  width: fit-content;
  margin: 0;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(244, 123, 32, 0.18);
  color: #ffd5b7;
  font-size: 0.78rem;
  font-weight: 900;
}

.proof-content h3 {
  margin: 22px 0 12px;
  font-size: clamp(1.9rem, 3.4vw, 3rem);
  line-height: 1;
}

.proof-content p:not(.result-kicker),
.proof-side p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.68;
}

.result-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.result-metric {
  display: flex;
  gap: 10px;
  align-items: baseline;
  min-height: 48px;
  padding: 13px 15px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.result-metric span {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 800;
}

.result-metric strong {
  color: #fff;
  font-size: 1.1rem;
}

.proof-side {
  display: flex;
  flex-direction: column;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 56px rgba(4, 37, 20, 0.08);
}

.proof-side h3 {
  margin: 0 0 12px;
  color: var(--green-950);
  font-size: clamp(1.35rem, 2.1vw, 1.9rem);
  line-height: 1.14;
}

.proof-side p {
  color: var(--muted);
}

.mini-proof-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  max-height: 226px;
  margin-top: 24px;
  padding-right: 4px;
  overflow: auto;
}

.mini-proof-card {
  position: relative;
  min-height: 98px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--green-950);
  cursor: pointer;
  text-align: left;
}

.mini-proof-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  opacity: 0.28;
  filter: saturate(0.75) blur(0.35px);
}

.mini-proof-card span {
  position: absolute;
  right: 10px;
  bottom: 10px;
  left: 10px;
  color: #fff;
  font-size: 0.84rem;
  font-weight: 900;
}

.mini-proof-card.is-active {
  border-color: var(--orange);
  box-shadow: inset 0 0 0 2px var(--orange);
}

.result-controls {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: auto;
  padding-top: 24px;
}

.result-controls button {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 8px;
  background: var(--green-950);
  color: #fff;
  cursor: pointer;
  font-size: 1.7rem;
  font-weight: 900;
}

.result-dots {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.result-dots button {
  width: 10px;
  height: 10px;
  min-width: 10px;
  min-height: 10px;
  padding: 0;
  border-radius: 50%;
  background: rgba(4, 37, 20, 0.22);
  font-size: 0;
}

.result-dots button.is-active {
  background: var(--orange);
}

.coaching-section {
  width: 100%;
  max-width: none;
  background: #fff;
}

.coaching-section > .section-heading,
.coaching-section > .feature-grid,
.coaching-section > .coaching-detail-panel {
  width: min(1180px, 88vw);
  margin-right: auto;
  margin-left: auto;
}

.feature-grid,
.package-grid,
.coach-grid,
.testimonial-grid,
.channel-grid {
  display: grid;
  gap: 16px;
}

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

.feature-grid article,
.package-card,
.coach-card,
.testimonial-card,
.channel-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 56px rgba(4, 37, 20, 0.08);
}

.feature-grid article {
  min-height: 214px;
  padding: 22px;
}

.feature-grid span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  font-size: 0.88rem;
  border-radius: 8px;
  background: var(--purple-soft);
  color: var(--purple);
  font-weight: 900;
}

.coaching-detail-panel {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: 26px;
  align-items: start;
  margin-top: 22px;
  padding: 28px;
  border: 1px solid rgba(10, 75, 43, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(232, 245, 237, 0.78), rgba(255, 247, 240, 0.82)),
    #fff;
}

.coaching-detail-panel h3 {
  margin: 0;
  color: var(--green-950);
  font-size: clamp(1.4rem, 2.3vw, 2.15rem);
  line-height: 1.12;
}

.coaching-detail-panel p:not(.eyebrow) {
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.68;
}

.coaching-checklist {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.coaching-checklist li {
  position: relative;
  min-height: 50px;
  padding: 14px 14px 14px 40px;
  font-size: 0.94rem;
  border: 1px solid rgba(4, 37, 20, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  color: #314236;
  font-weight: 700;
  line-height: 1.4;
}

.coaching-checklist li::before {
  position: absolute;
  top: 17px;
  left: 16px;
  width: 12px;
  height: 7px;
  border-bottom: 2px solid var(--orange);
  border-left: 2px solid var(--orange);
  content: "";
  transform: rotate(-45deg);
}

.feature-grid h3,
.package-card h3,
.coach-card h3 {
  margin: 18px 0 10px;
  color: var(--green-950);
  font-size: 1.08rem;
  line-height: 1.25;
}

.feature-grid p,
.package-card p,
.coach-card p,
.testimonial-card p,
.channel-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.6;
}

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

.package-card {
  display: flex;
  flex-direction: column;
  min-height: 690px;
  padding: 24px;
}

.package-card.is-featured {
  border-color: rgba(244, 123, 32, 0.42);
  transform: translateY(-8px);
  box-shadow: 0 22px 60px rgba(233, 120, 34, 0.12);
}

.package-tag {
  width: fit-content;
  margin: 0;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--green-100);
  color: var(--green-800);
  font-size: 0.76rem;
  font-weight: 900;
}

.package-price {
  margin: 18px 0 10px;
  color: var(--green-950);
  font-size: clamp(1.9rem, 3.3vw, 2.85rem);
  font-weight: 900;
  line-height: 1;
}

.package-card ul {
  display: grid;
  gap: 9px;
  margin: 22px 0;
  padding: 0;
  list-style: none;
}

.package-card li {
  position: relative;
  padding-left: 26px;
  color: #314236;
  font-size: 0.94rem;
  line-height: 1.44;
}

.package-card li::before {
  position: absolute;
  top: 5px;
  left: 0;
  width: 12px;
  height: 7px;
  border-bottom: 2px solid var(--green-700);
  border-left: 2px solid var(--green-700);
  content: "";
  transform: rotate(-45deg);
}

.package-card .primary-button {
  width: 100%;
  margin-top: auto;
}

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

.coach-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(132px, 0.42fr) minmax(0, 1fr);
  gap: 18px;
  min-height: 312px;
  padding: 14px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(232, 245, 237, 0.78), rgba(255, 255, 255, 0.96) 42%),
    #fff;
  box-shadow: 0 18px 44px rgba(4, 37, 20, 0.08);
}

.coach-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  content: "";
  background: linear-gradient(90deg, var(--green-800), var(--orange), var(--purple));
}

.coach-media {
  display: grid;
  place-items: center;
  min-height: 284px;
  overflow: hidden;
  border-radius: 7px;
  background:
    linear-gradient(135deg, rgba(10, 75, 43, 0.12), rgba(111, 53, 197, 0.1)),
    #f2f5ef;
}

.coach-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.coach-media .initials-badge {
  display: grid;
  place-items: center;
  width: 86px;
  height: 86px;
  border-radius: 8px;
  background: var(--green-950);
  color: #fff;
  font-size: 1.6rem;
  font-weight: 900;
}

.coach-body {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 10px 8px 10px 0;
}

.coach-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.coach-role,
.coach-achievement {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1;
}

.coach-role {
  background: var(--green-950);
  color: #fff;
}

.coach-achievement {
  max-width: 100%;
  background: rgba(233, 120, 34, 0.11);
  color: var(--orange-dark);
}

.coach-card h3 {
  margin-top: 18px;
  font-size: clamp(1.22rem, 1.6vw, 1.55rem);
}

.coach-quote {
  position: relative;
  margin: 10px 0 0;
  padding: 0 0 0 18px;
  border-left: 3px solid rgba(10, 75, 43, 0.72);
}

.coach-quote p {
  position: relative;
  color: #4d5c52;
  font-size: 0.94rem;
  line-height: 1.68;
}

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

.testimonial-card {
  min-height: 238px;
  padding: 24px;
}

.quote-mark {
  color: var(--orange);
  font-size: 3rem;
  font-weight: 900;
  line-height: 0.8;
}

.testimonial-card p {
  margin-top: 18px;
}

.testimonial-person {
  margin-top: 24px;
}

.testimonial-person strong,
.testimonial-person span {
  display: block;
}

.testimonial-person span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
}

.channels-section {
  padding-top: 40px;
}

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

.channel-card {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  min-height: 146px;
  padding: 24px;
}

.channel-card strong {
  display: block;
  color: var(--green-950);
  font-size: 1.22rem;
}

.channel-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 8px;
  background: var(--green-950);
  color: #fff;
  font-weight: 900;
}

.final-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 30px;
  align-items: center;
  width: min(1180px, 88vw);
  margin: 0 auto 76px;
  padding: 40px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 42%),
    var(--green-950);
  color: #fff;
  box-shadow: var(--shadow);
}

.final-cta h2 {
  color: #fff;
}

.final-cta p:not(.eyebrow) {
  max-width: 720px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.7;
}

.final-cta .eyebrow {
  color: #ffd5b7;
}

.final-cta .primary-button {
  background: var(--orange);
  box-shadow: 0 14px 30px rgba(244, 123, 32, 0.24);
}

.final-cta .primary-button:hover {
  background: var(--orange-dark);
  box-shadow: 0 18px 38px rgba(244, 123, 32, 0.3);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  padding: 30px 6vw;
  background: #fff;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
}

.site-footer p {
  margin: 0;
}

.site-footer a:last-child {
  color: var(--green-800);
  font-weight: 900;
}

@media (max-width: 1060px) {
  .hero-shell,
  .proof-showcase,
  .impact-shell,
  .coaching-detail-panel {
    grid-template-columns: 1fr;
  }

  .hero-shell {
    min-height: auto;
  }

  .hero-panel {
    min-height: auto;
  }

  .impact-grid,
  .feature-grid,
  .package-grid,
  .coach-grid,
  .testimonial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 880px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
    min-height: 74px;
    padding: 0 22px;
  }

  .menu-toggle {
    display: block;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    top: 74px;
    right: 0;
    left: 0;
    display: grid;
    justify-content: stretch;
    gap: 0;
    padding: 16px 22px 22px;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--line);
    transform: translateY(-120%);
    transition: transform 180ms ease;
  }

  .site-nav.is-open {
    transform: translateY(0);
  }

  .site-nav a {
    padding: 15px 0;
    border-bottom: 1px solid var(--line);
  }

  .header-cta {
    display: none;
  }

  .section-heading,
  .final-cta,
  .channel-grid,
  .coaching-checklist {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .brand-word {
    font-size: 0.98rem;
  }

  .hero-shell,
  .section-pad,
  .coaching-section > .section-heading,
  .coaching-section > .feature-grid,
  .coaching-section > .coaching-detail-panel,
  .final-cta {
    width: min(100% - 34px, 1180px);
  }

  .hero-shell {
    padding: 56px 0 64px;
  }

  .hero-copy h1 {
    font-size: clamp(2.35rem, 11.5vw, 3.35rem);
  }

  .hero-actions {
    display: grid;
  }

  .hero-panel,
  .proof-content,
  .proof-side,
  .final-cta {
    padding: 24px;
    border-radius: 8px;
  }

  .impact-grid,
  .feature-grid,
  .package-grid,
  .coach-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .coach-card {
    grid-template-columns: 116px minmax(0, 1fr);
    gap: 14px;
    min-height: 0;
    padding: 12px;
  }

  .coach-media {
    min-height: 210px;
  }

  .coach-body {
    padding: 4px 0;
  }

  .coach-achievement {
    min-height: auto;
    line-height: 1.25;
  }

  .section-pad {
    padding: 66px 0;
  }

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

  .proof-card,
  .proof-content,
  .proof-document img {
    min-height: 420px;
  }

  .package-card.is-featured {
    transform: none;
  }

  .channel-card,
  .site-footer {
    display: grid;
  }
}

@media (max-width: 480px) {
  .coach-card {
    grid-template-columns: 1fr;
  }

  .coach-media {
    min-height: 260px;
  }

  .coach-body {
    padding: 4px 2px 6px;
  }
}
