:root {
  --ink: #0a0b0e;
  --paper: #f4f0e8;
  --white: #fff;
  --muted: #65666b;
  --line: #d8d1c5;
  --red: #ef3826;
  --red-dark: #b51e12;
  --yellow: #ffce47;
  --soft: #e9e3d8;
  --radius: 20px;
  --max: 1180px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  max-width: 100%;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
body {
  margin: 0;
  max-width: 100%;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, Arial, Helvetica, sans-serif;
  line-height: 1.55;
}
@supports (overflow: clip) {
  html,
  body {
    overflow-x: clip;
  }
}
img,
video,
svg {
  max-width: 100%;
}
a {
  color: inherit;
}
.skip-link {
  position: absolute;
  left: -999px;
  top: 8px;
  background: #fff;
  padding: 10px;
  z-index: 99;
}
.skip-link:focus {
  left: 8px;
}
.site-header {
  height: 82px;
  max-width: var(--max);
  margin: auto;
  padding: 0 26px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid var(--line);
}
.brand img {
  display: block;
  width: 64px;
  height: 64px;
  object-fit: contain;
}
.header-proof {
  text-align: center;
  display: flex;
  gap: 12px;
  font-size: 0.78rem;
}
.header-proof span {
  color: var(--muted);
}
.header-cta {
  justify-self: end;
  background: var(--ink);
  color: #fff;
  text-decoration: none;
  font-weight: 900;
  padding: 11px 17px;
  border-radius: 6px;
}
.section {
  max-width: var(--max);
  margin: auto;
  padding: 100px 26px;
}
.eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  font-weight: 1000;
  color: var(--red);
  margin: 0 0 18px;
}
.section h2,
.hero h1 {
  font-family:
    Arial Black,
    Arial,
    sans-serif;
  letter-spacing: -0.052em;
  line-height: 0.98;
  text-wrap: balance;
  margin: 0;
}
.section h2 {
  font-size: clamp(2.35rem, 4.6vw, 4.6rem);
}
.hero {
  min-height: 760px;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 62px;
  align-items: center;
}
.hero h1 {
  font-size: clamp(3.5rem, 6.5vw, 6.6rem);
}
.hero h1 span {
  color: var(--red);
}
.hero-lead {
  font-size: 1.17rem;
  max-width: 720px;
  margin: 26px 0;
  color: #36373b;
}
.hero-checks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 20px;
}
.hero-checks span {
  font-weight: 850;
  font-size: 0.92rem;
}
.hero-checks span:before {
  content: "✓";
  color: var(--red);
  margin-right: 8px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--red);
  color: #fff;
  text-decoration: none;
  padding: 16px 22px;
  border-radius: 7px;
  font-weight: 1000;
  box-shadow: 0 7px 0 var(--red-dark);
  transition: 0.15s;
}
.button:hover {
  transform: translateY(2px);
  box-shadow: 0 5px 0 var(--red-dark);
}
.button-light {
  background: #fff;
  color: #111;
  box-shadow: 0 7px 0 #b5b5b5;
}
.text-link {
  font-weight: 900;
  text-underline-offset: 5px;
}
.price-note {
  font-size: 0.85rem;
  font-weight: 750;
}
.simple-guarantee {
  border-left: 4px solid var(--red);
  padding: 12px 15px;
  background: #fff;
  display: grid;
  gap: 3px;
  font-size: 0.82rem;
  max-width: 650px;
}
.simple-guarantee b {
  font-size: 0.92rem;
}
.simple-guarantee span {
  color: #4b4c50;
}
.hero-media {
  position: relative;
}
.video-play-note {
  margin: 0 0 10px;
  color: #4b4c50;
  font-size: 0.82rem;
  font-weight: 850;
  text-align: center;
}
.vsl-shell {
  aspect-ratio: 16 / 9;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  background: #111;
  box-shadow: 0 30px 80px #28180f35;
}
.vsl-shell video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #050505;
}
.vsl-shell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% center;
  filter: saturate(0.7) contrast(1.08);
}
.vsl-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 20%, #070707eb);
}
.vsl-copy {
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 38px;
  color: #fff;
  display: grid;
  gap: 4px;
}
.vsl-copy strong {
  font-size: 1.55rem;
  line-height: 1.1;
}
.vsl-copy small {
  color: #c4c5c8;
}
.play-mark {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  background: var(--red);
  border-radius: 50%;
  margin-bottom: 12px;
}
.hero-result-card {
  background: #fff;
  position: relative;
  width: 87%;
  margin: 16px auto 0;
  padding: 19px 20px;
  border-radius: 13px;
  display: grid;
  box-shadow: 0 16px 35px #15100d24;
}
.hero-result-card span {
  font-size: 0.65rem;
  color: var(--red);
  font-weight: 1000;
  letter-spacing: 0.14em;
}
.hero-result-card strong {
  font-size: 1.1rem;
}
.hero-result-card small {
  color: var(--muted);
}
.trust-band {
  max-width: none;
  background: var(--ink);
  color: #fff;
  padding: 25px max(26px, calc((100vw - 1128px) / 2));
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
}
.trust-band div {
  padding: 5px 24px;
  border-left: 1px solid #33343a;
  display: grid;
}
.trust-band div:last-child {
  border-right: 1px solid #33343a;
}
.trust-band strong {
  font-size: 0.95rem;
}
.trust-band span {
  font-size: 0.75rem;
  color: #aaaeb6;
}
.section-heading {
  max-width: 900px;
  margin-bottom: 44px;
}
.section-heading.centered {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.review-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  gap: 18px;
}
.review-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 26px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  min-height: 335px;
}
.review-card.featured-review {
  background: var(--ink);
  color: #fff;
  transform: translateY(-10px);
}
.review-card img {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border-radius: 50%;
  background: #fff;
  padding: 3px;
}
.stars {
  color: #ffb323;
  letter-spacing: 0.06em;
  margin: 16px 0 4px;
}
.review-card blockquote {
  font-size: 1.12rem;
  font-weight: 750;
  line-height: 1.4;
  margin: 12px 0 auto;
}
.review-card strong {
  margin-top: 22px;
}
.review-card > span {
  font-size: 0.72rem;
  color: #777982;
}
.featured-review > span {
  color: #aeb0b7;
}
.proof-line {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 35px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.proof-line div {
  padding: 20px;
  border-right: 1px solid var(--line);
  display: grid;
}
.proof-line div:last-child {
  border-right: 0;
}
.proof-line b {
  color: var(--red);
  text-transform: uppercase;
}
.proof-line span {
  font-size: 0.84rem;
}
.proof-boundary {
  color: var(--muted);
  font-size: 0.73rem;
  text-align: center;
  max-width: 850px;
  margin: 18px auto;
}
.proof-evidence-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 32px;
}
.proof-evidence-grid figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--ink);
}
.proof-evidence-grid img {
  display: block;
  width: 100%;
  height: 390px;
  object-fit: cover;
  object-position: top;
}
.proof-evidence-grid figcaption {
  display: grid;
  gap: 4px;
  padding: 18px 20px 20px;
  color: #fff;
}
.proof-evidence-grid figcaption span {
  color: #b9bbc1;
  font-size: 0.82rem;
}
.pain-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 70px;
}
.pain-heading {
  position: sticky;
  top: 24px;
  align-self: start;
}
.pain-list {
  display: grid;
}
.pain-list article {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  padding: 25px 0;
  border-bottom: 1px solid var(--line);
}
.pain-list span {
  font-family: Arial Black;
  color: var(--red);
  font-size: 1.35rem;
}
.pain-list h3 {
  font-size: 1.3rem;
  line-height: 1.2;
  margin: 0 0 8px;
}
.pain-list p {
  margin: 0;
  color: var(--muted);
}
.mechanism {
  max-width: none;
  background: var(--ink);
  color: #fff;
  padding-left: max(26px, calc((100vw - 1128px) / 2));
  padding-right: max(26px, calc((100vw - 1128px) / 2));
}
.dark-heading p {
  color: #b6b8bf;
}
.loop-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: #35363c;
  border: 1px solid #35363c;
}
.loop-grid article {
  background: #14151a;
  padding: 28px;
}
.loop-grid span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--red);
  font-weight: 1000;
}
.loop-grid h3 {
  font-size: 1.25rem;
}
.loop-grid p {
  font-size: 0.85rem;
  color: #b8bac1;
}
.agent-demo {
  max-width: 850px;
  margin: 48px auto 26px;
}
.agent-window {
  border: 1px solid #3b3c43;
  border-radius: 18px;
  background: #111217;
  overflow: hidden;
}
.window-bar {
  height: 45px;
  background: #1d1e24;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 14px;
}
.window-bar i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #555761;
}
.window-bar i:first-child {
  background: var(--red);
}
.window-bar span {
  margin-left: 8px;
  color: #a8aab0;
  font-size: 0.62rem;
  letter-spacing: 0.15em;
}
.member-message,
.agent-response {
  margin: 18px;
  padding: 18px;
  border-radius: 12px;
}
.member-message {
  margin-left: 90px;
  background: #fff;
  color: #111;
}
.agent-response {
  margin-right: 90px;
  border: 1px solid #45464e;
  background: #22232a;
}
.agent-response small {
  color: #ff7061;
  font-weight: 1000;
  letter-spacing: 0.12em;
}
.agent-response strong {
  display: block;
  font-size: 1.18rem;
  margin: 7px 0;
}
.agent-response p {
  margin: 0;
  color: #c8cad0;
}
.agent-caption {
  padding: 15px 20px;
  background: #fff;
  color: #111;
  display: grid;
}
.agent-caption span {
  font-size: 0.82rem;
  color: var(--muted);
}
.centered-button {
  width: max-content;
  margin: 25px auto 0;
  display: flex;
}
.split-heading {
  max-width: none;
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 55px;
  align-items: end;
}
.split-heading > p {
  color: var(--muted);
}
.week-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.week-grid article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 23px;
  display: flex;
  flex-direction: column;
}
.week-grid article > span {
  font-size: 0.65rem;
  letter-spacing: 0.13em;
  color: var(--red);
  font-weight: 1000;
}
.week-grid h3 {
  font-size: 1.35rem;
  margin: 12px 0;
}
.week-grid ul {
  padding-left: 18px;
  font-size: 0.86rem;
  color: #48494d;
  flex: 1;
}
.week-grid li {
  margin: 8px 0;
}
.week-grid b {
  border-top: 1px solid var(--line);
  padding-top: 14px;
  font-size: 0.82rem;
}
.economics {
  max-width: none;
  background: var(--red);
  color: #fff;
  display: grid;
  grid-template-columns: 1fr 0.75fr;
  gap: 80px;
  padding-left: max(26px, calc((100vw - 1128px) / 2));
  padding-right: max(26px, calc((100vw - 1128px) / 2));
}
.economics .eyebrow {
  color: #310c08;
}
.economics-copy p {
  font-size: 1.05rem;
}
.math-card {
  background: #fff;
  color: #111;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 20px 50px #71150e55;
}
.math-card > span {
  font-size: 0.67rem;
  font-weight: 1000;
  letter-spacing: 0.14em;
  color: var(--red);
}
.math-card div {
  display: grid;
  margin: 18px 0;
}
.math-card div b {
  font-family: Arial Black;
  font-size: 3.8rem;
  line-height: 1;
}
.math-card small {
  color: var(--muted);
}
.math-card i {
  font-size: 1.5rem;
}
.math-card > strong {
  display: block;
  background: var(--ink);
  color: #fff;
  padding: 12px;
  margin-top: 20px;
}
.math-card p {
  font-size: 0.68rem;
  color: var(--muted);
}
.founder-story {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 70px;
  align-items: center;
}
.founder-photo {
  position: relative;
}
.founder-photo img {
  width: 100%;
  height: 610px;
  object-fit: cover;
  border-radius: 22px;
  filter: saturate(0.75);
}
.founder-photo span {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--red);
  color: #fff;
  padding: 9px 12px;
  font-weight: 1000;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
}
.founder-copy p {
  font-size: 1.06rem;
}
.offer-stack {
  max-width: none;
  background: #fff;
  padding-left: max(26px, calc((100vw - 1000px) / 2));
  padding-right: max(26px, calc((100vw - 1000px) / 2));
}
.stack-shell {
  max-width: 1000px;
  margin: auto;
}
.stack-row {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 20px;
  border-top: 1px solid var(--line);
}
.stack-number {
  font-family: Arial Black;
  color: var(--red);
}
.stack-row h3 {
  margin: 0;
  font-size: 1.15rem;
}
.stack-row p {
  margin: 4px 0;
  color: var(--muted);
  font-size: 0.83rem;
}
.stack-row > b {
  color: var(--red);
  white-space: nowrap;
}
.stack-total {
  background: var(--ink);
  color: #fff;
  padding: 30px;
  border-radius: 15px;
  margin: 22px 0;
  display: grid;
  text-align: center;
}
.stack-total span {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
}
.stack-total s {
  font-size: 1.4rem;
  color: #aaa;
}
.stack-total strong {
  font-family: Arial Black;
  font-size: clamp(2rem, 5vw, 4.5rem);
  color: var(--yellow);
  line-height: 1.1;
}
.stack-total small {
  color: #9fa1a7;
  font-size: 0.66rem;
  max-width: 620px;
  margin: 9px auto;
}
.stack-shell > .button {
  display: flex;
  max-width: 430px;
  margin: auto;
}
.fit-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.fit-card {
  padding: 34px;
  border-radius: 20px;
  min-width: 0;
  width: 100%;
  overflow-wrap: break-word;
}
.fit-card > span {
  font-size: 0.67rem;
  letter-spacing: 0.14em;
  font-weight: 1000;
}
.fit-card h2 {
  font-size: 2.3rem;
  margin: 15px 0;
}
.fit-card li {
  margin: 12px 0;
}
.fit-card.yes {
  background: #fff;
  border: 1px solid var(--line);
}
.fit-card.yes > span {
  color: var(--red);
}
.fit-card.no {
  background: #17181d;
  color: #fff;
}
.fit-card.no > span {
  color: #ff7769;
}
.fit-card.no li {
  color: #c8cad0;
}
.guarantee {
  display: grid;
  grid-template-columns: 0.38fr 1fr;
  gap: 48px;
  align-items: start;
}
.guarantee-badge {
  background: var(--red);
  color: #fff;
  aspect-ratio: 1;
  border-radius: 50%;
  display: grid;
  place-content: center;
  text-align: center;
}
.guarantee-badge strong {
  font-family: Arial Black;
  font-size: 8rem;
  line-height: 0.8;
}
.guarantee-badge span {
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  font-weight: 1000;
  max-width: 100px;
  margin: 12px auto 0;
}
.guarantee-copy p {
  font-size: 1.02rem;
}
.guarantee-boundary {
  background: #fff;
  border-left: 5px solid var(--red);
  padding: 17px;
  display: grid;
}
.guarantee-boundary span {
  font-size: 0.82rem;
  color: var(--muted);
}
.faq {
  border-top: 1px solid var(--line);
}
.faq-list {
  max-width: 900px;
  margin: auto;
}
.faq details {
  border-bottom: 1px solid var(--line);
}
.faq summary {
  cursor: pointer;
  font-size: 1.13rem;
  font-weight: 900;
  padding: 22px 0;
}
.faq details p {
  max-width: 760px;
  color: #4b4c50;
}
.final-cta {
  max-width: none;
  background: var(--ink);
  color: #fff;
  padding-left: max(26px, calc((100vw - 1000px) / 2));
  padding-right: max(26px, calc((100vw - 1000px) / 2));
}
.final-card {
  text-align: center;
  max-width: 1000px;
  margin: auto;
}
.final-card h2 {
  font-size: clamp(3rem, 6vw, 6rem);
}
.final-card p {
  font-size: 1.08rem;
  color: #c8cad0;
  max-width: 760px;
  margin: 25px auto;
}
.final-card .button {
  margin: 10px auto 18px;
}
.final-card small {
  display: block;
  color: #8f9198;
}
footer {
  max-width: var(--max);
  margin: auto;
  padding: 45px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
}
footer img {
  width: 170px;
}
footer p {
  font-size: 0.8rem;
  color: var(--muted);
}
footer nav {
  display: flex;
  gap: 18px;
  font-size: 0.8rem;
  font-weight: 800;
}
.button:focus-visible,
.text-link:focus-visible,
a:focus-visible,
summary:focus-visible {
  outline: 3px solid #176bff;
  outline-offset: 4px;
}
.legal {
  max-width: 860px;
  margin: auto;
  padding: 90px 28px;
}
.legal h1 {
  font-family:
    Arial Black,
    Arial,
    sans-serif;
  font-size: clamp(3rem, 7vw, 6rem);
  letter-spacing: -0.05em;
  line-height: 0.98;
}
.legal-intro {
  font-size: 1.3rem;
}
.legal section {
  padding: 25px 0;
  border-top: 1px solid var(--line);
}
.legal section h2 {
  font-size: 1.5rem;
}
.legal-boundary {
  background: #111217;
  color: #fff;
  padding: 25px;
  border-radius: 16px;
}
.legal-page footer {
  justify-content: center;
}
.legal-page footer a {
  margin: 0 10px;
}
.legal-page .brand img {
  content: url("assets/muro-ai-academy-logo-transparent.png");
}
@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }
  .header-proof {
    display: none;
  }
  .hero {
    grid-template-columns: 1fr;
  }
  .hero-media {
    max-width: 680px;
  }
  .trust-band {
    grid-template-columns: 1fr 1fr;
  }
  .review-grid,
  .proof-line,
  .proof-evidence-grid,
  .week-grid,
  .loop-grid {
    grid-template-columns: 1fr 1fr;
  }
  .review-card.featured-review {
    transform: none;
  }
  .pain-section,
  .economics,
  .founder-story,
  .guarantee {
    grid-template-columns: 1fr;
  }
  .pain-heading {
    position: static;
  }
  .split-heading {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .founder-photo {
    max-width: 600px;
  }
  .guarantee-badge {
    width: 260px;
  }
  .fit-section {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 580px) {
  .site-header {
    height: 68px;
    padding: 0 17px;
  }
  .brand img {
    width: 52px;
    height: 52px;
  }
  .header-cta {
    font-size: 0.72rem;
    padding: 9px 11px;
  }
  .section {
    padding: 72px 18px;
  }
  .hero {
    min-height: 0;
    gap: 45px;
  }
  .hero h1 {
    font-size: 3.25rem;
  }
  .hero-lead {
    font-size: 1rem;
  }
  .hero-checks {
    grid-template-columns: 1fr;
  }
  .button {
    width: 100%;
    text-align: center;
  }
  .hero-actions {
    align-items: stretch;
  }
  .text-link {
    text-align: center;
    padding: 8px;
  }
  .vsl-shell {
    aspect-ratio: 16 / 9;
  }
  .trust-band {
    grid-template-columns: 1fr 1fr;
    padding: 20px 10px;
  }
  .trust-band div {
    padding: 10px;
    border: 0;
  }
  .review-grid,
  .proof-line,
  .proof-evidence-grid,
  .week-grid,
  .loop-grid {
    grid-template-columns: 1fr;
  }
  .proof-evidence-grid img {
    height: auto;
  }
  .proof-line div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .proof-line div:last-child {
    border-bottom: 0;
  }
  .member-message {
    margin-left: 25px;
  }
  .agent-response {
    margin-right: 25px;
  }
  .centered-button {
    width: 100%;
  }
  .founder-photo img {
    height: 480px;
  }
  .stack-row {
    grid-template-columns: 38px 1fr;
  }
  .stack-row > b {
    grid-column: 2;
  }
  .stack-total strong {
    font-size: 2.5rem;
  }
  .fit-card {
    padding: 25px;
  }
  .guarantee-badge {
    width: 210px;
  }
  .guarantee-badge strong {
    font-size: 6rem;
  }
  .final-card h2 {
    font-size: 3.1rem;
  }
  footer {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  footer nav {
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}

/* 2026-08-25 visual hierarchy repair */
.site-header {
  height: 72px;
}
.brand img {
  width: 56px;
  height: 48px;
}
.header-cta,
.button {
  min-height: 50px;
  border: 2px solid transparent;
}
.header-cta {
  background: var(--red);
  padding: 12px 20px;
  box-shadow: 0 4px 0 var(--red-dark);
}
.section {
  padding-top: 78px;
  padding-bottom: 78px;
}
.section h2 {
  font-size: clamp(2.15rem, 3.7vw, 3.65rem);
  line-height: 1.03;
}
.hero {
  min-height: 0;
  display: flex;
  flex-direction: column;
  gap: 34px;
  padding-top: 64px;
  padding-bottom: 68px;
  text-align: center;
}
.hero-copy {
  width: min(100%, 980px);
  margin: 0 auto;
}
.hero .eyebrow {
  margin-bottom: 14px;
}
.hero h1 {
  max-width: 940px;
  margin: 0 auto;
  font-size: clamp(3.2rem, 5.25vw, 5rem);
  line-height: 0.98;
}
.hero-lead {
  max-width: 760px;
  margin: 20px auto 0;
  font-size: 1.08rem;
}
.hero-actions {
  justify-content: center;
  margin-top: 24px;
}
.hero .price-note {
  margin: 18px 0 0;
}
.hero-media {
  width: min(100%, 1040px);
  margin: 0 auto;
}
.vsl-shell {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 24px 65px #28180f29;
}
.hero-result-card {
  width: min(88%, 720px);
  text-align: left;
  pointer-events: none;
}
.hero-support {
  width: min(100%, 900px);
  margin: 2px auto 0;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 24px;
  align-items: center;
  text-align: left;
}
.hero-checks {
  gap: 10px 24px;
}
.simple-guarantee {
  max-width: none;
  border-radius: 8px;
}
.section-heading {
  max-width: 780px;
  margin-bottom: 36px;
}
.proof-evidence-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}
.proof-evidence-grid figure {
  display: flex;
  flex-direction: column;
}
.proof-image-link {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 440px;
  padding: 18px;
  background: #17181d;
  overflow: hidden;
}
.proof-evidence-grid .proof-image-link img {
  width: 100%;
  height: 404px;
  object-fit: contain;
  object-position: center;
}
.proof-image-link > span {
  position: absolute;
  right: 14px;
  bottom: 14px;
  padding: 8px 11px;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  font-size: 0.75rem;
  font-weight: 900;
  box-shadow: 0 4px 16px #0005;
}
.proof-evidence-grid figcaption {
  flex: 1;
}
.founder-story {
  grid-template-columns: 0.82fr 1.18fr;
  gap: 56px;
}
.founder-photo img {
  height: 540px;
  object-position: center 38%;
  filter: saturate(0.9);
}
.stack-total strong {
  font-size: clamp(2rem, 3.7vw, 3.5rem);
}
.final-card h2 {
  font-size: clamp(2.5rem, 4.5vw, 4.5rem);
}
footer img {
  width: 78px;
}

@media (max-width: 900px) {
  .hero-support {
    grid-template-columns: 1fr;
    max-width: 680px;
  }
  .hero-media {
    max-width: 820px;
  }
  .founder-story {
    grid-template-columns: minmax(0, 1fr);
    gap: 38px;
  }
  .founder-photo {
    width: min(100%, 600px);
    max-width: 600px;
    margin-inline: auto;
  }
  .founder-photo img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    object-position: center 38%;
  }
  .founder-copy {
    width: min(100%, 720px);
    margin-inline: auto;
  }
  .guarantee-badge {
    margin-inline: auto;
  }
}

@media (max-width: 580px) {
  .section {
    padding-top: 56px;
    padding-bottom: 56px;
  }
  .hero {
    gap: 28px;
    padding-top: 42px;
    padding-bottom: 50px;
  }
  .hero h1 {
    font-size: clamp(2.55rem, 12vw, 3.05rem);
    line-height: 0.99;
  }
  .hero-lead {
    font-size: 0.98rem;
  }
  .hero-actions {
    gap: 12px;
  }
  .hero-result-card {
    width: 92%;
    margin-top: 12px;
  }
  .hero-support {
    gap: 16px;
  }
  .proof-evidence-grid {
    grid-template-columns: 1fr;
  }
  .proof-image-link {
    min-height: 360px;
    padding: 12px;
  }
  .proof-evidence-grid .proof-image-link img {
    height: 336px;
  }
  .founder-photo img {
    height: auto;
    aspect-ratio: 4 / 5;
  }
  .section h2,
  .fit-card h2 {
    font-size: clamp(2rem, 10vw, 2.65rem);
  }
  .final-card h2 {
    font-size: clamp(2.3rem, 11vw, 3rem);
  }
}
