:root {
  --green: #116b3a;
  --green-2: #17864b;
  --green-3: #0a4e2f;
  --amber: #f7b500;
  --amber-2: #ffc83d;
  --ink: #153629;
  --muted: #64756d;
  --line: #dfe8e3;
  --paper: #f7f8f6;
  --white: #ffffff;
  --blue: #286d9d;
  --shadow: 0 24px 60px rgba(14, 60, 40, 0.14);
  --radius: 8px;
  --container: min(1120px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(17, 107, 58, 0.035) 1px, transparent 1px) 0 0 / 44px 44px,
    var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

svg {
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.scroll-meter {
  position: fixed;
  inset: 0 0 auto;
  z-index: 80;
  height: 4px;
  background: rgba(17, 107, 58, 0.08);
}

.scroll-meter span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--green), var(--amber));
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.section-band {
  position: relative;
  overflow: hidden;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, calc(100% - 28px));
  min-height: 76px;
  margin: 12px auto 0;
  padding: 12px 16px;
  background: rgba(247, 248, 246, 0.86);
  border: 1px solid rgba(17, 107, 58, 0.13);
  border-radius: var(--radius);
  backdrop-filter: blur(16px);
  box-shadow: 0 14px 38px rgba(25, 55, 39, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand-mark {
  position: relative;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 8px solid var(--amber);
  border-left-color: transparent;
  border-radius: 999px;
  flex: 0 0 auto;
}

.brand-play {
  position: absolute;
  left: -7px;
  width: 0;
  height: 0;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  border-left: 22px solid var(--green);
}

.brand-text {
  display: grid;
  gap: 0;
  line-height: 0.9;
  font-weight: 900;
  letter-spacing: 0;
}

.brand-text strong {
  color: var(--amber);
  font-size: 17px;
}

.brand-text span {
  color: var(--green);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 900;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 3vw, 34px);
  color: #244b38;
  font-size: 15px;
  font-weight: 700;
}

.main-nav a {
  position: relative;
}

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

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

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

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  border-radius: 999px;
}

.hero {
  isolation: isolate;
  min-height: min(720px, 80svh);
  margin-top: -88px;
  padding: 130px 0 38px;
  background:
    linear-gradient(90deg, rgba(247, 248, 246, 0.99) 0%, rgba(247, 248, 246, 0.94) 52%, rgba(247, 248, 246, 0.58) 100%),
    url("assets/course-cover.jpg") right 4vw center / min(46vw, 500px) auto no-repeat,
    var(--paper);
}

.hero::before {
  position: absolute;
  inset: 88px auto auto -130px;
  z-index: 0;
  width: min(54vw, 640px);
  height: 42px;
  content: "";
  border: 12px solid var(--amber);
  border-right-width: 18px;
  border-radius: 0 999px 999px 0;
  box-shadow: inset 0 0 0 6px var(--green);
  opacity: 0.92;
}

.hero::after,
.inside::after,
.audience::after {
  position: absolute;
  right: -12%;
  bottom: -12%;
  width: 68%;
  height: 34%;
  min-height: 180px;
  content: "";
  background:
    repeating-radial-gradient(ellipse at 50% 100%, rgba(17, 107, 58, 0.33) 0 1px, transparent 1px 7px);
  transform: rotate(-4deg);
  opacity: 0.46;
  pointer-events: none;
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: var(--container);
  margin-inline: auto;
  padding-top: clamp(42px, 6vw, 68px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  color: var(--green);
  font-size: 15px;
  font-weight: 900;
}

.eyebrow::after {
  display: inline-block;
  width: 34px;
  height: 3px;
  content: "";
  background: var(--amber);
  border-radius: 999px;
}

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

h1,
h2,
h3 {
  margin: 0;
  color: var(--green);
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 690px;
  font-size: clamp(42px, 5.3vw, 66px);
}

h2 {
  font-size: clamp(28px, 3.8vw, 46px);
}

h3 {
  font-size: 18px;
  line-height: 1.2;
}

.hero-copy {
  max-width: 610px;
  margin: 18px 0 0;
  color: #30483c;
  font-size: clamp(17px, 1.8vw, 20px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 54px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 900;
  text-align: center;
  white-space: nowrap;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn:focus-visible,
.main-nav a:focus-visible,
.menu-toggle:focus-visible,
.faq-item button:focus-visible {
  outline: 3px solid rgba(247, 181, 0, 0.58);
  outline-offset: 3px;
}

.btn svg {
  width: 22px;
  height: 22px;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--green), var(--green-2));
  box-shadow: 0 12px 0 var(--amber), 0 20px 35px rgba(17, 107, 58, 0.2);
}

.btn-soft {
  color: var(--green);
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(17, 107, 58, 0.16);
}

.btn.full {
  width: 100%;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(96px, 1fr));
  max-width: 520px;
  gap: 1px;
  margin: 34px 0 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(17, 107, 58, 0.16);
  border-radius: var(--radius);
  background: rgba(17, 107, 58, 0.12);
}

.hero-stats div {
  padding: 18px;
  background: rgba(255, 255, 255, 0.82);
}

.hero-stats dt {
  color: var(--amber);
  font-size: 34px;
  font-weight: 950;
  line-height: 1;
}

.hero-stats dd {
  margin: 7px 0 0;
  color: var(--green);
  font-size: 14px;
  font-weight: 800;
}

.problem,
.system,
.inside,
.how,
.results,
.audience,
.program,
.proof,
.order,
.faq {
  padding: clamp(56px, 7vw, 88px) 0;
  background: var(--paper);
}

.problem,
.inside,
.results,
.program,
.order {
  background: var(--white);
}

.two-column,
.inside-grid,
.audience-grid,
.proof-grid,
.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(30px, 6vw, 76px);
  align-items: start;
}

.section-heading {
  position: relative;
  z-index: 1;
}

.section-heading.center {
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
}

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

.section-heading p:not(.eyebrow) {
  max-width: 620px;
  margin: 16px auto 0;
  color: var(--muted);
  font-size: 17px;
}

.step-dot {
  display: inline-grid;
  width: 38px;
  height: 38px;
  margin-bottom: 20px;
  place-items: center;
  color: var(--white);
  background: var(--amber);
  border: 4px solid rgba(255, 255, 255, 0.82);
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(247, 181, 0, 0.34);
  font-size: 14px;
  font-weight: 950;
}

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

.signal {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px;
  align-items: center;
  min-height: 116px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfcfb;
}

.signal-icon {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  color: var(--green);
  border: 1px solid rgba(17, 107, 58, 0.18);
  border-radius: 999px;
  background: var(--white);
}

.signal-icon svg {
  width: 28px;
  height: 28px;
}

.signal p {
  grid-column: 2;
  margin: -2px 0 0;
  color: var(--muted);
}

.system-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 5vw, 42px);
  margin-top: 36px;
}

.flow-item {
  display: grid;
  width: min(33vw, 210px);
  min-width: 150px;
  aspect-ratio: 1 / 1;
  place-items: center;
  border: 1px solid rgba(17, 107, 58, 0.15);
  border-radius: 999px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.flow-item span {
  display: grid;
  width: 68px;
  height: 68px;
  place-items: center;
  color: var(--green);
  background: rgba(17, 107, 58, 0.08);
  border-radius: var(--radius);
}

.flow-item svg {
  width: 40px;
  height: 40px;
}

.flow-item strong {
  color: var(--green);
  font-size: 18px;
}

.flow-item.amber span,
.flow-item.amber strong {
  color: var(--amber);
}

.system-flow b {
  color: var(--green);
  font-size: 44px;
  line-height: 1;
}

.inside-grid {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  grid-template-rows: auto auto;
  align-items: center;
}

.inside .section-heading,
.inside-points {
  grid-column: 1;
}

.inside-points {
  margin-top: 8px;
}

.preview-stack {
  grid-column: 2;
  grid-row: 1 / span 2;
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  min-height: 32px;
  padding-left: 43px;
  color: #243f33;
  font-weight: 800;
}

.check-list li::before {
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  content: "✓";
  color: var(--white);
  background: var(--green-2);
  border-radius: 999px;
  font-weight: 950;
}

.preview-stack {
  position: relative;
  z-index: 1;
  min-height: 390px;
  margin: 0;
}

.preview-stack img {
  position: absolute;
  border: 8px solid var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.preview-stack img:first-child {
  right: 2%;
  bottom: 0;
  width: min(48%, 230px);
  transform: rotate(-6deg);
}

.preview-stack img:last-child {
  top: 0;
  left: 4%;
  width: min(76%, 390px);
  transform: rotate(3deg);
}

.timeline {
  position: relative;
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.timeline::before {
  position: absolute;
  top: 24px;
  bottom: 24px;
  left: 20px;
  width: 2px;
  content: "";
  background: repeating-linear-gradient(to bottom, var(--amber) 0 10px, transparent 10px 18px);
}

.timeline li {
  position: relative;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
  align-items: center;
}

.timeline span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--white);
  background: var(--green-2);
  border: 5px solid var(--paper);
  border-radius: 999px;
  font-weight: 950;
}

.timeline p {
  margin: 0;
  padding: 18px 20px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 850;
}

.result-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 36px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.result-item {
  display: grid;
  min-height: 180px;
  place-items: center;
  gap: 14px;
  padding: 24px;
  text-align: center;
  background: var(--white);
}

.result-item span {
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  color: var(--green);
  background: rgba(17, 107, 58, 0.08);
  border-radius: var(--radius);
}

.result-item svg {
  width: 34px;
  height: 34px;
}

.result-item h3 {
  max-width: 210px;
  color: var(--ink);
  font-size: 18px;
}

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

.audience-list article {
  display: grid;
  align-content: start;
  min-height: 172px;
  gap: 10px;
  padding: 22px;
  border: 1px solid rgba(17, 107, 58, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.74);
}

.audience-list span {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  color: var(--green);
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  font-weight: 950;
}

.audience-list p {
  margin: 0;
  color: var(--muted);
}

.program-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(310px, 0.65fr);
  gap: clamp(28px, 5vw, 58px);
  align-items: start;
  margin-top: 36px;
}

.module-list {
  display: grid;
  gap: 8px;
}

.module-list article {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 16px;
  align-items: center;
  min-height: 54px;
  padding: 10px 14px 10px 10px;
  border: 1px solid rgba(40, 109, 157, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(40, 109, 157, 0.06), rgba(255, 255, 255, 0));
}

.module-list span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--blue);
  background: rgba(40, 109, 157, 0.09);
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 950;
}

.module-list strong {
  color: #244235;
  line-height: 1.25;
}

.program-images {
  position: sticky;
  top: 105px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.program-images img {
  height: 390px;
  width: 100%;
  object-fit: cover;
  object-position: top;
  border: 8px solid var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

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

.page-preview {
  margin: 0;
}

.page-preview img {
  width: min(520px, 100%);
  margin-left: auto;
  border: 10px solid var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.order {
  padding-block: clamp(62px, 8vw, 98px);
}

.order-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(310px, 430px);
  gap: clamp(28px, 5vw, 62px);
  align-items: center;
  padding: clamp(26px, 5vw, 58px);
  border: 1px solid rgba(17, 107, 58, 0.15);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(17, 107, 58, 0.08), rgba(247, 181, 0, 0.08)),
    var(--white);
  box-shadow: var(--shadow);
}

.order-copy p:not(.eyebrow) {
  max-width: 620px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.price-box {
  padding: 26px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.price-box > p {
  margin: 0 0 4px;
  color: var(--green);
  font-weight: 900;
}

.price-box > strong {
  display: block;
  margin-bottom: 18px;
  color: var(--amber);
  font-size: clamp(42px, 6vw, 60px);
  line-height: 1;
}

.check-list.compact {
  margin-bottom: 24px;
  gap: 10px;
}

.check-list.compact li {
  min-height: 26px;
  padding-left: 34px;
  font-size: 15px;
}

.check-list.compact li::before {
  width: 24px;
  height: 24px;
  font-size: 13px;
}

.faq-grid {
  grid-template-columns: minmax(0, 0.65fr) minmax(0, 1fr);
}

.accordion {
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.faq-item button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 68px;
  padding: 0 20px;
  color: var(--green);
  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: left;
  font-weight: 950;
  line-height: 1.2;
}

.faq-item button svg {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  transition: transform 180ms ease;
}

.faq-item button[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 20px 20px;
  color: var(--muted);
}

.faq-answer p {
  margin: 0;
}

.site-footer {
  padding: 26px 0;
  background: var(--green-3);
  color: var(--white);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.site-footer .brand-text span,
.site-footer .brand-text strong {
  color: var(--white);
}

.site-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-weight: 700;
}

.site-footer a:not(.brand) {
  color: var(--amber-2);
  font-weight: 900;
}

/* Modern sales pass */
.nav-buy {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 0 16px;
  color: var(--white);
  background: var(--green);
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(17, 107, 58, 0.18);
}

.main-nav .nav-buy::after {
  display: none;
}

.hero {
  min-height: min(680px, 82svh);
  padding: 96px 0 34px;
  background:
    linear-gradient(90deg, rgba(247, 248, 246, 0.98) 0%, rgba(247, 248, 246, 0.96) 48%, rgba(247, 248, 246, 0.82) 100%),
    linear-gradient(135deg, rgba(17, 107, 58, 0.08), rgba(247, 181, 0, 0.05)),
    var(--paper);
}

.hero::before {
  top: 94px;
  width: min(45vw, 520px);
  opacity: 0.74;
}

.modern-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.82fr);
  gap: clamp(28px, 4.2vw, 52px);
  align-items: center;
  padding-top: clamp(24px, 3vw, 38px);
}

.hero-content {
  max-width: 720px;
}

.modern-hero h1 {
  max-width: 680px;
  padding-bottom: 0.08em;
  font-size: clamp(40px, 4vw, 52px);
  line-height: 1.03;
}

.modern-hero .hero-copy {
  max-width: 610px;
  color: #2f473b;
  font-size: clamp(16px, 1.45vw, 18px);
}

.hero-checks {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.hero-checks li {
  position: relative;
  min-height: 58px;
  padding: 10px 10px 10px 36px;
  color: #213d31;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(17, 107, 58, 0.12);
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.28;
}

.hero-checks li::before {
  position: absolute;
  top: 10px;
  left: 10px;
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  content: "✓";
  color: var(--white);
  background: var(--green-2);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 950;
}

.hero-note {
  margin: 14px 0 0;
  color: #52675d;
  font-size: 14px;
  font-weight: 750;
}

.hero-product {
  position: relative;
  min-height: 420px;
  z-index: 2;
}

.product-window {
  position: absolute;
  top: 0;
  right: 0;
  left: 6px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(17, 107, 58, 0.12);
  border-radius: var(--radius);
  box-shadow: 0 28px 70px rgba(14, 60, 40, 0.17);
}

.product-window-bar {
  display: flex;
  gap: 6px;
  align-items: center;
  height: 34px;
  padding: 0 12px;
  background: #f1f5f2;
  border-bottom: 1px solid rgba(17, 107, 58, 0.09);
}

.product-window-bar span {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #c6d5cc;
}

.product-window-bar span:first-child {
  background: var(--amber);
}

.product-window-bar span:last-child {
  background: var(--green-2);
}

.product-window img {
  width: 100%;
  aspect-ratio: 16 / 10.2;
  object-fit: cover;
  object-position: center;
}

.product-summary {
  position: absolute;
  right: 12px;
  bottom: 0;
  z-index: 2;
  width: min(70%, 300px);
  padding: 20px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(17, 107, 58, 0.14);
  border-radius: var(--radius);
  box-shadow: 0 24px 54px rgba(14, 60, 40, 0.16);
  backdrop-filter: blur(12px);
}

.product-summary p {
  margin: 0 0 4px;
  color: var(--green);
  font-size: 14px;
  font-weight: 950;
}

.product-summary strong {
  display: block;
  color: var(--amber);
  font-size: 38px;
  line-height: 1;
}

.product-summary ul {
  display: grid;
  gap: 7px;
  margin: 16px 0 0;
  padding: 0;
  color: #274235;
  font-size: 14px;
  font-weight: 850;
  list-style: none;
}

.product-summary li::before {
  content: "✓ ";
  color: var(--green-2);
  font-weight: 950;
}

.product-cover {
  position: absolute;
  bottom: 0;
  left: 0;
  width: min(33%, 154px);
  border: 8px solid var(--white);
  border-radius: var(--radius);
  box-shadow: 0 24px 50px rgba(14, 60, 40, 0.18);
  transform: rotate(-7deg);
}

.value-strip {
  position: relative;
  z-index: 3;
  padding: 0 0 clamp(40px, 6vw, 70px);
  margin-top: -34px;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  background: rgba(17, 107, 58, 0.14);
  border: 1px solid rgba(17, 107, 58, 0.14);
  border-radius: var(--radius);
  box-shadow: 0 20px 52px rgba(14, 60, 40, 0.12);
}

.value-grid article {
  display: grid;
  gap: 8px;
  min-height: 150px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.93);
}

.value-grid span {
  color: var(--amber);
  font-size: 13px;
  font-weight: 950;
}

.value-grid strong {
  color: var(--green);
  font-size: 18px;
  line-height: 1.15;
}

.value-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.transformation {
  padding: clamp(56px, 7vw, 88px) 0;
  background: var(--paper);
}

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

.compare-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.compare-panel article {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.compare-panel .after {
  color: var(--white);
  background: linear-gradient(135deg, var(--green), var(--green-2));
  border-color: transparent;
  box-shadow: 0 24px 56px rgba(17, 107, 58, 0.2);
}

.compare-panel p {
  margin: 0 0 16px;
  color: var(--green);
  font-size: 15px;
  font-weight: 950;
}

.compare-panel .after p {
  color: var(--amber-2);
}

.compare-panel ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.compare-panel li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
  font-weight: 750;
}

.compare-panel .after li {
  color: rgba(255, 255, 255, 0.88);
}

.compare-panel li::before {
  position: absolute;
  left: 0;
  content: "–";
  color: var(--amber);
  font-weight: 950;
}

.compare-panel .after li::before {
  content: "✓";
  color: var(--amber-2);
}

.trust {
  padding: clamp(56px, 7vw, 88px) 0;
  background: var(--paper);
}

.trust-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(30px, 5vw, 70px);
  align-items: start;
}

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

.trust-list article {
  padding: 22px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(17, 107, 58, 0.13);
  border-radius: var(--radius);
}

.trust-list strong {
  display: block;
  color: var(--green);
  font-size: 19px;
  line-height: 1.2;
}

.trust-list p {
  margin: 10px 0 0;
  color: var(--muted);
}

.order-panel {
  border: 0;
  background: transparent;
  box-shadow: none;
}

.order-copy {
  max-width: 650px;
}

.price-box {
  box-shadow: 0 28px 68px rgba(14, 60, 40, 0.16);
}

.mobile-sticky-buy {
  display: none;
}

@media (max-width: 980px) {
  .hero {
    background:
      linear-gradient(90deg, rgba(247, 248, 246, 0.99) 0%, rgba(247, 248, 246, 0.94) 66%, rgba(247, 248, 246, 0.72) 100%),
      url("assets/course-cover.jpg") right 8% top 52% / 340px auto no-repeat,
      var(--paper);
  }

  .two-column,
  .inside-grid,
  .audience-grid,
  .proof-grid,
  .faq-grid,
  .order-panel,
  .program-layout {
    grid-template-columns: 1fr;
  }

  .inside-grid {
    align-items: start;
  }

  .inside .section-heading,
  .inside-points,
  .preview-stack {
    grid-column: 1;
    grid-row: auto;
  }

  .preview-stack {
    min-height: 400px;
    max-width: 620px;
  }

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

  .program-images {
    position: static;
  }

  .program-images img {
    height: 340px;
  }

  .page-preview img {
    margin-inline: 0;
  }
}

@media (max-height: 760px) and (min-width: 761px) {
  .hero {
    min-height: 74svh;
    padding-bottom: 34px;
  }

  .hero-inner {
    padding-top: 34px;
  }

  .hero-copy {
    max-width: 640px;
    margin-top: 16px;
  }

  .hero-actions {
    margin-top: 24px;
  }

  .hero-stats {
    display: none;
  }
}

@media (max-width: 760px) {
  :root {
    --container: min(100% - 28px, 1120px);
  }

  html {
    scroll-padding-top: 84px;
  }

  body.nav-open .site-header {
    background: var(--paper);
  }

  .site-header {
    width: calc(100% - 18px);
    min-height: 66px;
    margin-top: 8px;
    padding: 10px;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
    border-width: 7px;
  }

  .brand-play {
    border-top-width: 11px;
    border-bottom-width: 11px;
    border-left-width: 19px;
  }

  .brand-text strong {
    font-size: 14px;
  }

  .brand-text span {
    font-size: 20px;
  }

  .menu-toggle {
    display: grid;
    place-items: center;
  }

  .main-nav {
    position: fixed;
    top: 86px;
    right: 9px;
    left: 9px;
    display: grid;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .main-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .main-nav a {
    padding: 14px 12px;
    border-radius: var(--radius);
  }

  .main-nav a:hover,
  .main-nav a:focus-visible {
    background: rgba(17, 107, 58, 0.07);
  }

  .main-nav a::after {
    display: none;
  }

  .hero {
    min-height: auto;
    margin-top: -74px;
    padding: 128px 0 42px;
    background:
      linear-gradient(180deg, rgba(247, 248, 246, 0.97) 0%, rgba(247, 248, 246, 0.9) 58%, rgba(247, 248, 246, 0.78) 100%),
      url("assets/course-cover.jpg") right -42px bottom 18px / 230px auto no-repeat,
      var(--paper);
  }

  .hero::before {
    inset: 78px auto auto -150px;
    width: 500px;
    height: 40px;
    border-width: 12px;
    box-shadow: inset 0 0 0 6px var(--green);
  }

  .hero::after,
  .inside::after,
  .audience::after {
    width: 120%;
    right: -45%;
    bottom: -8%;
  }

  h1 {
    max-width: 10.8ch;
    line-height: 1.06;
  }

  .hero-copy {
    max-width: min(100%, 340px);
    margin-top: 18px;
  }

  .hero-actions {
    display: grid;
    max-width: 100%;
    margin-top: 26px;
  }

  .btn {
    min-height: 52px;
    padding: 0 18px;
  }

  .hero-stats {
    display: none;
  }

  .problem,
  .system,
  .inside,
  .how,
  .results,
  .audience,
  .program,
  .proof,
  .order,
  .faq {
    padding: 48px 0;
  }

  .signal {
    grid-template-columns: 48px 1fr;
    min-height: auto;
    padding: 16px;
  }

  .signal-icon {
    width: 48px;
    height: 48px;
  }

  .signal p {
    grid-column: 1 / -1;
  }

  .system-flow {
    flex-direction: column;
  }

  .flow-item {
    width: min(76vw, 240px);
  }

  .system-flow b {
    transform: rotate(90deg);
  }

  .preview-stack {
    min-height: 320px;
  }

  .preview-stack img:first-child {
    right: 0;
    width: 46%;
  }

  .preview-stack img:last-child {
    left: 0;
    width: 76%;
  }

  .result-grid,
  .audience-list,
  .program-images {
    grid-template-columns: 1fr;
  }

  .result-item {
    min-height: 132px;
  }

  .audience-list article {
    min-height: auto;
  }

  .program-images img {
    height: 300px;
  }

  .order-panel {
    padding: 18px;
  }

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

@media (max-width: 420px) {
  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 28px;
  }

  .hero {
    background:
      linear-gradient(180deg, rgba(247, 248, 246, 0.98) 0%, rgba(247, 248, 246, 0.94) 62%, rgba(247, 248, 246, 0.82) 100%),
      url("assets/course-cover.jpg") right -64px bottom 18px / 202px auto no-repeat,
      var(--paper);
  }

  .program-images img {
    height: 280px;
  }

  .price-box {
    padding: 18px;
  }
}

@media (max-width: 980px) {
  .modern-hero {
    grid-template-columns: 1fr;
    gap: 34px;
    padding-top: 46px;
  }

  .modern-hero h1 {
    max-width: 760px;
    font-size: clamp(42px, 8vw, 66px);
  }

  .hero {
    min-height: auto;
    background:
      linear-gradient(180deg, rgba(247, 248, 246, 0.98), rgba(247, 248, 246, 0.92)),
      linear-gradient(135deg, rgba(17, 107, 58, 0.08), rgba(247, 181, 0, 0.05)),
      var(--paper);
  }

  .hero-product {
    min-height: 500px;
    max-width: 720px;
  }

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

  .transformation-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  body {
    padding-bottom: 78px;
  }

  .site-header {
    box-shadow: 0 12px 34px rgba(25, 55, 39, 0.1);
  }

  .nav-buy {
    justify-content: center;
    color: var(--white);
    background: var(--green);
  }

  .hero {
    padding: 108px 0 38px;
    background:
      linear-gradient(180deg, rgba(247, 248, 246, 0.99), rgba(247, 248, 246, 0.92)),
      linear-gradient(135deg, rgba(17, 107, 58, 0.08), rgba(247, 181, 0, 0.05)),
      var(--paper);
  }

  .hero::before {
    width: 430px;
    opacity: 0.58;
  }

  .modern-hero {
    gap: 24px;
    padding-top: 20px;
  }

  .modern-hero h1 {
    max-width: 100%;
    font-size: clamp(36px, 10vw, 45px);
    line-height: 1.04;
  }

  .modern-hero .hero-copy {
    max-width: 100%;
    font-size: 17px;
  }

  .hero-checks {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 18px;
  }

  .hero-checks li {
    min-height: 54px;
    padding-block: 12px;
  }

  .hero-actions {
    gap: 10px;
    margin-top: 18px;
  }

  .hero-note {
    margin-top: 16px;
  }

  .hero-product {
    min-height: 390px;
    margin-top: 8px;
  }

  .product-window {
    top: 0;
    right: 0;
    left: 0;
  }

  .product-summary {
    right: 0;
    bottom: 0;
    width: min(82%, 300px);
    padding: 18px;
  }

  .product-summary strong {
    font-size: 36px;
  }

  .product-cover {
    width: min(36%, 136px);
    border-width: 6px;
  }

  .value-strip {
    margin-top: 0;
    padding-top: 16px;
  }

  .value-grid,
  .compare-panel {
    grid-template-columns: 1fr;
  }

  .value-grid article {
    min-height: auto;
    padding: 18px;
  }

  .compare-panel article,
  .trust-list article {
    padding: 18px;
  }

  .transformation,
  .trust {
    padding: 48px 0;
  }

  .order-panel {
    padding: 0;
  }

  .price-box {
    padding: 20px;
  }

  .mobile-sticky-buy {
    position: fixed;
    right: 12px;
    bottom: 12px;
    left: 12px;
    z-index: 70;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 56px;
    padding: 0 16px;
    color: var(--white);
    background: linear-gradient(135deg, var(--green), var(--green-2));
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius);
    box-shadow: 0 12px 0 var(--amber), 0 18px 44px rgba(14, 60, 40, 0.26);
    font-weight: 950;
  }

  .mobile-sticky-buy span {
    font-size: 14px;
    opacity: 0.86;
  }

  .mobile-sticky-buy strong {
    font-size: 19px;
  }
}

@media (max-width: 420px) {
  .hero {
    background:
      linear-gradient(180deg, rgba(247, 248, 246, 0.99), rgba(247, 248, 246, 0.92)),
      linear-gradient(135deg, rgba(17, 107, 58, 0.08), rgba(247, 181, 0, 0.05)),
      var(--paper);
  }

  .modern-hero h1 {
    font-size: 34px;
  }

  .hero-actions .btn-primary {
    display: none;
  }

  .hero-product {
    min-height: 360px;
  }

  .product-summary {
    width: min(86%, 286px);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
