@import url("https://fonts.googleapis.com/css2?family=Anton&family=Cinzel:wght@600;700;800&display=swap");

@font-face {
  font-family: "Norwester";
  src: url("assets/fonts/norwester.otf") format("opentype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

:root {
  --ink: #071016;
  --ink-soft: #152634;
  --paper: #f7f8f5;
  --white: #ffffff;
  --red: #ed1230;
  --red-dark: #b90923;
  --cyan: #16b7d5;
  --gold: #d8a84c;
  --green: #527c5b;
  --line: rgba(7, 16, 22, 0.12);
  --shadow: 0 22px 70px rgba(7, 16, 22, 0.22);
  --radius: 8px;
  --container: 1180px;
  --font-body: Avenir Next, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: Norwester, Anton, Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  --font-accent: Cinzel, Georgia, serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  font-size: 18px;
  line-height: 1.7;
}

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

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

.container {
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 4vw, 54px);
  color: var(--white);
  transition: background 180ms ease, box-shadow 180ms ease, padding 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(7, 16, 22, 0.92);
  box-shadow: 0 12px 42px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
}

.brand-badge {
  width: 48px;
  height: 48px;
  object-fit: contain;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.28));
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 1rem;
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
}

.site-nav a {
  opacity: 0.9;
}

.site-nav a:hover {
  opacity: 1;
}

.nav-cta {
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--red);
  color: var(--white);
  box-shadow: 0 10px 28px rgba(237, 18, 48, 0.35);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
}

.hero {
  position: relative;
  min-height: min(880px, 92vh);
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.hero-media,
.hero-brand-visual,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url("assets/graphics/hero-stage.webp?v=1");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center 46%;
}

.hero-media::after {
  content: none;
}

.hero-brand-visual {
  left: 0;
  display: none;
  overflow: hidden;
}

.hero-brand-visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

html[data-hero-variant="b"] .hero-media {
  background-image: none;
}

html[data-hero-variant="b"] .hero-brand-visual {
  display: block;
}

html[data-hero-variant="b"] .hero-overlay {
  background:
    linear-gradient(90deg, rgba(7, 16, 22, 0.98) 0%, rgba(7, 16, 22, 0.9) 31%, rgba(7, 16, 22, 0.58) 48%, rgba(7, 16, 22, 0.08) 61%, rgba(7, 16, 22, 0) 78%),
    linear-gradient(180deg, rgba(7, 16, 22, 0.2) 0%, rgba(7, 16, 22, 0) 30%, rgba(7, 16, 22, 0) 73%, rgba(7, 16, 22, 0.26) 100%);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(7, 16, 22, 0.97) 0%, rgba(7, 16, 22, 0.9) 30%, rgba(7, 16, 22, 0.7) 49%, rgba(7, 16, 22, 0.18) 67%, rgba(7, 16, 22, 0.04) 100%),
    linear-gradient(180deg, rgba(7, 16, 22, 0.42) 0%, rgba(7, 16, 22, 0.02) 32%, rgba(7, 16, 22, 0.08) 68%, rgba(7, 16, 22, 0.62) 100%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(560px, 1fr) minmax(0, 0.82fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: center;
  padding: 90px 0 30px;
}

.hero-copy {
  grid-column: 1;
  justify-self: start;
  max-width: 650px;
}

.hero-presenter {
  margin-bottom: 18px;
  color: var(--cyan);
  font-family: var(--font-accent);
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
}

html[data-hero-variant="b"] .hero-presenter {
  display: none;
}

.offer-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  color: var(--cyan);
  font-size: 0.78rem;
  font-family: var(--font-accent);
  font-weight: 800;
  text-transform: uppercase;
}

.offer-label::before {
  content: "";
  width: 28px;
  height: 2px;
  background: currentColor;
}

.offer-inline-note {
  white-space: nowrap;
}

h1,
h3 {
  font-family: var(--font-display);
  font-weight: 400;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 680px;
  margin-bottom: 24px;
  font-size: clamp(3rem, 4.8vw, 4.8rem);
  line-height: 0.92;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 > span {
  display: block;
}

.hero h1 .hero-headline-subline {
  margin-top: 12px;
  font-size: 0.66em;
  line-height: 1.05;
}

.hero h1 .hero-headline-accent {
  color: var(--red);
}

h2 {
  margin-bottom: 18px;
  font-family: var(--font-body);
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.35rem;
  line-height: 1.18;
}

.hero-lede {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1.18rem, 1.6vw, 1.3rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0 22px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
  padding: 17px 26px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  line-height: 1.1;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.button-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 18px 40px rgba(237, 18, 48, 0.32);
}

.button-primary:hover {
  background: var(--red-dark);
}

.offer-card,
.price-panel {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.13);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.offer-card {
  padding: 28px;
}

.hero .offer-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 10px 18px;
  align-items: end;
  margin-top: 20px;
  padding: 18px 20px;
  background: rgba(7, 16, 22, 0.86);
}

.hero .offer-card h2 {
  margin-bottom: 4px;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.45rem, 3.3vw, 3rem);
}

.hero-price-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 4px 14px;
}

.hero .offer-card .hero-price-row h2 {
  margin: 0;
}

.hero-price-row s {
  color: rgba(255, 255, 255, 0.68);
  font-family: var(--font-display);
  font-size: 1.45rem;
  text-decoration-color: var(--red);
  text-decoration-thickness: 3px;
}

.hero .offer-card .fine {
  display: none;
}

.hero .offer-card p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.45;
}

.hero .offer-card .offer-label {
  margin-bottom: 4px;
  font-size: 0.74rem;
  white-space: nowrap;
}

.offer-card h2 {
  color: var(--white);
  font-size: clamp(3rem, 5vw, 4.25rem);
}

.offer-card p {
  color: rgba(255, 255, 255, 0.92);
}

.fine {
  margin-bottom: 0;
  font-size: 0.9rem;
}

section {
  position: relative;
}

.intro-band,
.pillars-section,
.good-for,
.membership,
.closing {
  padding: clamp(72px, 10vw, 122px) 0;
}

.intro-band {
  background: var(--white);
}

.intro-layout {
  max-width: 900px;
}

.intro-layout .section-lede {
  margin-bottom: 20px;
  color: var(--red-dark);
  font-size: clamp(1.35rem, 2vw, 1.7rem);
  font-weight: 700;
  line-height: 1.45;
}

.intro-layout p,
.section-heading p,
.results-copy p,
.offer-copy p,
.closing-copy p {
  color: rgba(7, 16, 22, 0.82);
  font-size: 1.2rem;
  line-height: 1.75;
}

.video-section {
  padding: clamp(72px, 10vw, 118px) 0;
  color: var(--white);
  background:
    linear-gradient(140deg, rgba(7, 16, 22, 0.98), rgba(21, 38, 52, 0.96)),
    radial-gradient(circle at 85% 10%, rgba(22, 183, 213, 0.28), transparent 36%);
}

.centered {
  max-width: 780px;
  margin: 0 auto 36px;
  text-align: center;
}

.video-section .section-heading p {
  color: rgba(255, 255, 255, 0.72);
}

.free-class-section .section-heading {
  max-width: 980px;
}

.free-class-section .section-heading h2 {
  font-size: clamp(2rem, 3.5vw, 3.25rem);
  line-height: 1.08;
}

.video-frame {
  overflow: hidden;
  width: min(100%, 980px);
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: #000;
  box-shadow: var(--shadow);
  aspect-ratio: 16 / 9;
}

.video-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.testimonial-section {
  padding: clamp(72px, 10vw, 118px) 0;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 12%, rgba(22, 183, 213, 0.2), transparent 34%),
    var(--ink);
}

.testimonial-section .section-heading h2 {
  color: var(--white);
}

.testimonial-section .section-heading p {
  color: rgba(255, 255, 255, 0.76);
}

.testimonial-frame {
  width: min(100%, 1080px);
}

.testimonial-note {
  max-width: 760px;
  margin: 22px auto 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 1rem;
  line-height: 1.6;
  text-align: center;
}

.posture-proof-section {
  padding: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, var(--paper) 0%, #eef3f1 100%);
  overflow: hidden;
}

.posture-proof-section .container {
  width: 100%;
  max-width: none;
}

.posture-proof-section .section-heading h2 {
  color: var(--ink);
}

.posture-proof-section .section-heading p {
  color: rgba(7, 16, 22, 0.76);
}

.posture-proof-media {
  position: relative;
  overflow: hidden;
  width: min(100vw, 1440px);
  margin: 0 auto;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.posture-proof-media img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

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

.pillar-card,
.benefit-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.pillar-card {
  min-height: 250px;
  padding: 30px;
}

.card-number {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  margin-bottom: 20px;
  border: 1px solid rgba(7, 16, 22, 0.16);
  border-radius: 6px;
  color: var(--white);
  background: var(--ink);
  box-shadow: inset 0 -3px 0 var(--red);
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
}

.results-band,
.offer-section {
  padding: clamp(72px, 10vw, 118px) 0;
  color: var(--white);
  background: var(--ink);
}

.results-grid,
.closing-grid,
.offer-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.75fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
}

.results-text-only {
  grid-template-columns: 1fr;
  max-width: 900px;
}

.results-text-only .results-copy {
  max-width: 860px;
}

.results-image,
.closing-image {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.results-image img,
.closing-image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.graphic-panel {
  min-height: 560px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.04)),
    radial-gradient(circle at 18% 18%, rgba(22, 183, 213, 0.38), transparent 34%),
    #0c1820;
}

.graphic-panel img {
  position: absolute;
  inset: 0;
  height: 100%;
  opacity: 0.96;
}

.graphic-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 16, 22, 0.06), rgba(7, 16, 22, 0.38)),
    linear-gradient(180deg, transparent 52%, rgba(7, 16, 22, 0.76));
}

.results-image.graphic-panel {
  min-height: 0;
  background: #d8eef2;
}

.results-image.graphic-panel img {
  position: relative;
  inset: auto;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  opacity: 1;
}

.results-image.graphic-panel::after {
  content: none;
}

.graphic-callout {
  position: absolute;
  z-index: 2;
  left: 24px;
  right: 24px;
  bottom: 24px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(7, 16, 22, 0.76);
  color: var(--white);
  backdrop-filter: blur(12px);
}

.graphic-callout span {
  display: block;
  color: var(--cyan);
  font-family: var(--font-accent);
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: uppercase;
}

.graphic-callout strong {
  display: block;
  margin-top: 6px;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 400;
  line-height: 0.95;
}

.results-copy h2,
.results-copy p,
.offer-copy h2,
.offer-copy p {
  color: var(--white);
}

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

.check-list li {
  position: relative;
  padding-left: 28px;
  font-size: 1.1rem;
  line-height: 1.65;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--gold);
}

.good-for {
  color: var(--ink);
  background: var(--white);
}

.good-for h2 {
  color: var(--ink);
}

.conditions-graphic {
  width: min(100%, 1100px);
  margin: 0 auto;
}

.conditions-graphic img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.conditions-mobile {
  display: none;
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  max-width: 940px;
  margin: 0 auto;
}

.tag-cloud span {
  padding: 14px 18px;
  border: 1px solid rgba(82, 124, 91, 0.28);
  border-radius: 999px;
  background: var(--white);
  color: var(--green);
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
}

.membership {
  background: var(--paper);
}

.section-heading {
  max-width: 790px;
  margin-bottom: 38px;
}

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

.benefit-card {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto 1fr;
  min-height: 460px;
  overflow: hidden;
  box-shadow: 0 12px 34px rgba(7, 16, 22, 0.06);
}

.benefit-card img {
  z-index: 0;
  grid-row: 1;
  grid-column: 1;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  background: #dbe7e7;
  filter: none;
}

.benefit-card::before {
  content: "";
  z-index: 1;
  grid-row: 1;
  grid-column: 1;
  background: linear-gradient(180deg, transparent 76%, rgba(7, 16, 22, 0.14));
  pointer-events: none;
}

.benefit-card div {
  grid-row: 2;
  grid-column: 1;
  padding: 24px;
}

.benefit-card p,
.pillar-card p {
  margin-bottom: 0;
  color: rgba(7, 16, 22, 0.8);
  font-size: 1.06rem;
  line-height: 1.7;
}

.benefit-card p + p {
  margin-top: 14px;
}

.offer-section {
  background:
    linear-gradient(135deg, rgba(7, 16, 22, 0.98), rgba(34, 30, 24, 0.96)),
    radial-gradient(circle at 20% 10%, rgba(216, 168, 76, 0.22), transparent 34%);
}

.price-panel {
  display: grid;
  justify-items: center;
  padding: 34px;
  text-align: center;
}

.price-panel span,
.price-panel small {
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--font-accent);
  font-weight: 800;
  text-transform: uppercase;
}

.price-panel strong {
  margin: 8px 0 0;
  color: var(--white);
  font-size: clamp(4.8rem, 11vw, 7.2rem);
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 0.9;
}

.price-panel s {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1;
  text-decoration-color: var(--red);
  text-decoration-thickness: 4px;
}

.price-panel .button {
  margin: 26px 0 14px;
}

.price-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
}

.closing {
  background: var(--white);
}

.closing-text-only {
  grid-template-columns: 1fr;
  max-width: 900px;
}

.closing-badge {
  width: 118px;
  height: 118px;
  margin-bottom: 24px;
  object-fit: contain;
  filter: drop-shadow(0 14px 24px rgba(7, 16, 22, 0.2));
}

.badge-panel {
  display: grid;
  place-items: center;
  min-height: 520px;
  background:
    radial-gradient(circle at 50% 42%, rgba(216, 168, 76, 0.22), transparent 46%),
    linear-gradient(145deg, #0b2528, #071016);
}

.badge-panel img {
  position: relative;
  inset: auto;
  width: min(76%, 420px);
  height: auto;
  aspect-ratio: 1;
  object-fit: contain;
  opacity: 1;
  filter: drop-shadow(0 28px 42px rgba(0, 0, 0, 0.34));
}

.badge-panel::after {
  content: none;
}

.site-footer {
  padding: 46px 0;
  color: rgba(255, 255, 255, 0.74);
  background: #05090d;
}

.footer-grid {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 40px;
}

.footer-brand {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.footer-brand img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.site-footer strong {
  color: var(--white);
}

.footer-disclaimer p {
  margin-bottom: 10px;
  font-size: 0.92rem;
  line-height: 1.65;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 500ms ease, transform 500ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero .reveal {
  opacity: 1;
  transform: none;
}

@media (max-width: 1180px) {
  .benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .nav-toggle {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 20px;
    right: 20px;
    display: none;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--radius);
    background: rgba(7, 16, 22, 0.98);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: grid;
  }

  .hero-grid,
  .intro-layout,
  .results-grid,
  .closing-grid,
  .offer-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    padding-top: 120px;
  }

  .hero-copy {
    grid-column: 1;
    justify-self: start;
    max-width: 660px;
  }

  .offer-card {
    max-width: 660px;
  }

  .pillar-grid,
  .benefit-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .site-header {
    padding: 14px;
  }

  .brand span:last-child {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-media {
    bottom: auto;
    height: clamp(380px, 52vh, 460px);
    background-image: url("assets/graphics/hero-seated.webp?v=1");
    background-position: 42% center;
  }

  .hero-brand-visual {
    left: 0;
    bottom: auto;
    height: clamp(380px, 52vh, 460px);
  }

  .hero-overlay {
    bottom: auto;
    height: clamp(380px, 52vh, 460px);
    background: linear-gradient(
      180deg,
      rgba(7, 16, 22, 0.42) 0%,
      rgba(7, 16, 22, 0.06) 48%,
      rgba(7, 16, 22, 0.5) 72%,
      rgba(7, 16, 22, 0.98) 100%
    );
  }

  html[data-hero-variant="b"] .hero-overlay {
    background: linear-gradient(
      180deg,
      rgba(7, 16, 22, 0.18) 0%,
      rgba(7, 16, 22, 0) 48%,
      rgba(7, 16, 22, 0.38) 72%,
      rgba(7, 16, 22, 0.98) 100%
    );
  }

  .hero-grid {
    padding: clamp(350px, 43vh, 395px) 0 52px;
  }

  .hero .offer-card {
    grid-template-columns: 1fr;
    margin-top: 28px;
  }

  h1 {
    font-size: 2.75rem;
    line-height: 0.96;
  }

  .hero h1 > span {
    display: block;
  }

  .hero h1 .hero-headline-subline {
    margin-top: 8px;
  }

  .offer-inline-note {
    display: inline;
    white-space: normal;
  }

  h2 {
    font-size: clamp(2.35rem, 10vw, 3rem);
  }

  .button {
    width: 100%;
  }

  .benefit-card {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .benefit-card img {
    grid-row: 1;
    grid-column: 1;
    aspect-ratio: 16 / 9;
  }

  .benefit-card div {
    grid-row: 2;
    grid-column: 1;
  }

  .conditions-graphic {
    display: none;
  }

  .conditions-mobile {
    display: block;
  }

  .conditions-mobile h3 {
    margin-bottom: 24px;
    color: var(--red);
    font-size: 2rem;
    line-height: 1.08;
    text-transform: uppercase;
  }

  .conditions-mobile ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 20px;
    margin: 0;
    padding-left: 24px;
  }

  .conditions-mobile li {
    font-family: var(--font-display);
    font-size: 1.12rem;
    line-height: 1.35;
    text-transform: uppercase;
  }

  .conditions-mobile li:last-child {
    color: var(--red);
  }

  .posture-proof-section {
    padding-top: 0;
  }

  .posture-proof-media {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .closing-badge {
    width: 94px;
    height: 94px;
  }

  .graphic-panel {
    min-height: 500px;
  }

  .results-image.graphic-panel {
    min-height: 0;
  }

  .offer-card,
  .price-panel {
    padding: 22px;
  }
}
