:root {
  --bg: #070707;
  --bg-soft: #111111;
  --bg-wine: #210604;
  --bg-wine-2: #320d08;
  --cream: #f2e2ca;
  --cream-2: #fff4df;
  --muted: #b9a68c;
  --copper: #c57738;
  --copper-2: #e3a15a;
  --black: #050505;
  --ink: #14100b;
  --paper: #f2e2ca;
  --error: #ff8f8f;
  --success: #7ed49b;
  --shadow: 0 28px 70px rgba(0, 0, 0, 0.36);
  --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.24);
  --container: 1180px;
  --radius: 28px;
  --radius-sm: 16px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  width: 100%;
  max-width: 100%;
  scroll-behavior: smooth;
  background: var(--bg);
  overflow-x: hidden;
}

body {
  width: 100%;
  max-width: 100%;
  margin: 0;
  font-family: "Sofia Pro", "Avenir Next", "Montserrat", Arial, sans-serif;
  color: var(--cream-2);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body.is-modal-open {
  overflow: hidden;
}

body * {
  min-width: 0;
}

main,
section,
header,
footer {
  width: 100%;
  max-width: 100vw;
  overflow-x: clip;
}

img,
video {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  border: 0;
}

button:disabled {
  opacity: 0.72;
  cursor: wait;
  transform: none !important;
}

.container {
  width: min(calc(100% - 36px), var(--container));
  max-width: 100%;
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #070707;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.24);
}

.site-header__inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

.site-header__brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand-logo {
  width: 158px;
  height: auto;
  display: block;
}

.site-header__nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--muted);
  font-size: 0.94rem;
}

.site-header__nav a {
  transition: color 0.18s ease;
  white-space: nowrap;
}

.site-header__nav a:hover {
  color: var(--cream-2);
}

.site-header__cta {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--cream-2);
  color: var(--black);
  font-weight: 900;
  white-space: nowrap;
}

.hero {
  position: relative;
  min-height: calc(100vh - 76px);
  overflow: hidden;
  background: var(--bg);
}

.hero__background {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, #070707 0%, rgba(7, 7, 7, 0.96) 34%, rgba(7, 7, 7, 0.78) 68%, #070707 100%),
    url("/images/banner.png") center center / cover no-repeat;
  opacity: 1;
}

.hero__inner {
  position: relative;
  z-index: 2;
  min-height: calc(100vh - 76px);
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(330px, 390px);
  align-items: center;
  gap: 56px;
  padding: 44px 0;
}

.hero__copy {
  max-width: 780px;
}

.eyebrow {
  margin: 0;
  color: var(--copper-2);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow--dark {
  color: #7b3e16;
}

.hero h1 {
  margin: 18px 0 0;
  display: grid;
  gap: 2px;
  max-width: 760px;
  font-family: "Sofia Pro", "Avenir Next", "Montserrat", Arial, sans-serif;
  font-weight: 900;
  letter-spacing: -0.075em;
  line-height: 0.86;
  color: var(--cream-2);
}

.hero h1 span {
  display: block;
  font-size: clamp(3.4rem, 5.8vw, 6.1rem);
}

.hero h1 strong {
  display: block;
  width: max-content;
  color: var(--copper-2);
  font-size: clamp(5.3rem, 9.6vw, 9.8rem);
  line-height: 0.78;
  letter-spacing: -0.1em;
}

.hero__lead {
  margin: 22px 0 0;
  max-width: 660px;
  color: var(--cream);
  font-size: clamp(1rem, 1.15vw, 1.12rem);
  line-height: 1.58;
}

.hero__support,
.hero__diagnostico {
  margin: 16px 0 0;
  max-width: 650px;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.58;
}

.hero__actions {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:focus-visible,
.site-header__cta:focus-visible,
.mobile-sticky-cta:focus-visible,
input:focus-visible,
.form-modal__close:focus-visible {
  outline: 3px solid var(--copper-2);
  outline-offset: 3px;
}

.btn--primary {
  background: var(--copper-2);
  color: var(--black);
  box-shadow: 0 18px 34px rgba(227, 161, 90, 0.24);
}

.btn--dark {
  background: #181818;
  color: var(--cream-2);
}

.btn--full {
  width: 100%;
}

.vip-card {
  background: var(--paper);
  color: var(--ink);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  padding: 30px;
}

.vip-card h2 {
  margin: 14px 0 0;
  color: var(--ink);
  font-size: clamp(2.05rem, 2.7vw, 2.8rem);
  line-height: 0.92;
  letter-spacing: -0.06em;
  font-weight: 900;
}

.vip-card p {
  margin: 16px 0 0;
  color: #6b5234;
  line-height: 1.55;
  font-size: 1rem;
}

.vip-card__content {
  display: grid;
  gap: 10px;
  margin: 22px 0 24px;
}

.vip-card__content span {
  display: block;
  padding: 13px 14px;
  border-radius: 16px;
  background: #fff7e7;
  color: #4c371f;
  font-size: 0.9rem;
  line-height: 1.35;
  font-weight: 900;
}

.last-class-section {
  min-height: 100vh;
  padding: 56px 0;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 82% 12%, rgba(227, 161, 90, 0.10), transparent 28%),
    var(--bg-wine);
}

.last-class__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(0, 1.26fr);
  gap: 56px;
  align-items: center;
}

.last-class__copy {
  max-width: 520px;
}

.last-class__copy h2 {
  margin: 0;
  color: var(--cream-2);
  font-size: clamp(2.65rem, 4.35vw, 4.85rem);
  line-height: 0.95;
  letter-spacing: -0.065em;
  font-weight: 900;
}

.last-class__copy p {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.66;
}

.last-class__group-photo {
  margin: 28px 0 0;
  overflow: hidden;
  border-radius: 26px;
  background: #120302;
  box-shadow: var(--shadow-soft);
}

.last-class__group-photo img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center 42%;
  transform: scale(1.13);
  transform-origin: center center;
  background: #120302;
}

.last-class__media {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.last-class-card {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  background: #120302;
  box-shadow: var(--shadow-soft);
}

.last-class-card__image,
.last-class-card__video {
  width: 100%;
  height: clamp(360px, 52vh, 520px);
  object-fit: cover;
  background: #120302;
}

.last-class-card__video {
  cursor: pointer;
}

.method-section {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  padding: 58px 0 54px;
  background:
    radial-gradient(circle at 83% 18%, rgba(227, 161, 90, 0.14), transparent 24%),
    linear-gradient(180deg, var(--bg-wine-2) 0%, #190302 100%);
  display: flex;
  align-items: center;
}

.method__inner {
  position: relative;
  z-index: 2;
}

.method__intro {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.9fr);
  gap: 44px;
  align-items: center;
  min-height: 330px;
  margin-bottom: 28px;
}

.method__copy {
  max-width: 710px;
}

.method__copy h2 {
  margin: 0;
  max-width: 680px;
  color: var(--cream-2);
  font-size: clamp(2.55rem, 4.15vw, 4.65rem);
  line-height: 0.96;
  letter-spacing: -0.062em;
  font-weight: 900;
}

.method__copy p {
  margin: 18px 0 0;
  max-width: 610px;
  color: var(--cream);
  font-size: 0.98rem;
  line-height: 1.62;
}

.method__bike {
  position: relative;
  min-height: 330px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.method__bike::before {
  content: "Toda virada começa com movimento.";
  position: absolute;
  right: 0;
  bottom: 16px;
  color: rgba(255, 244, 223, 0.12);
  font-size: clamp(2.8rem, 5.4vw, 5.9rem);
  font-weight: 900;
  line-height: 0.88;
  letter-spacing: -0.07em;
  max-width: 660px;
  text-align: right;
  z-index: 0;
}

.method__bike img {
  position: relative;
  z-index: 1;
  width: min(100%, 590px);
  max-height: 360px;
  object-fit: contain;
  filter: drop-shadow(0 34px 48px rgba(0, 0, 0, 0.48));
  mix-blend-mode: screen;
}

.scott-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.scott-card {
  min-height: 210px;
  padding: 20px 18px;
  border-radius: 24px;
  background: #170403;
  box-shadow: var(--shadow-soft);
}

.scott-card span {
  display: block;
  color: var(--copper-2);
  font-size: clamp(3rem, 4.7vw, 5rem);
  line-height: 0.78;
  font-weight: 900;
  letter-spacing: -0.1em;
}

.scott-card h3 {
  margin: 20px 0 0;
  color: var(--cream-2);
  font-size: 1.05rem;
  line-height: 1.1;
}

.scott-card p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.46;
}

.manifesto-section {
  background: var(--bg);
  padding: 84px 0;
}

.manifesto__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 72px;
  align-items: center;
}

.manifesto__title h2 {
  margin: 0;
  font-weight: 900;
  line-height: 0.97;
  letter-spacing: -0.06em;
  color: var(--cream-2);
  font-size: clamp(2.4rem, 4.4vw, 5rem);
}

.manifesto__text {
  max-width: 620px;
}

.manifesto__text p {
  margin: 0;
  color: var(--cream);
  font-size: clamp(1rem, 1.18vw, 1.12rem);
  line-height: 1.72;
}

.manifesto__text p + p {
  margin-top: 22px;
}

.impact-section {
  background: var(--paper);
  color: var(--ink);
  padding: 70px 0;
}

.impact__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

.impact-item span {
  display: block;
  color: var(--copper);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  margin-bottom: 22px;
}

.impact-item h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.7rem, 1.85vw, 2.05rem);
  line-height: 1.02;
  letter-spacing: -0.052em;
  font-weight: 900;
}

.impact-item p {
  margin: 18px 0 0;
  color: #6d583c;
  line-height: 1.62;
  font-size: 0.98rem;
}

.eder-section {
  padding: 64px 0;
  background: var(--bg-wine);
}

.eder__grid {
  display: grid;
  grid-template-columns: minmax(240px, 330px) minmax(0, 1fr);
  gap: 54px;
  align-items: center;
}

.eder__media {
  overflow: hidden;
  border-radius: 26px;
  background: #000;
  box-shadow: var(--shadow);
}

.eder__video {
  width: 100%;
  max-height: 520px;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  background: #000;
}

.eder__copy h2 {
  margin: 16px 0 0;
  max-width: 820px;
  color: var(--cream-2);
  font-size: clamp(2.8rem, 5vw, 5.8rem);
  line-height: 0.9;
  letter-spacing: -0.07em;
  font-weight: 900;
}

.eder__copy h3 {
  margin: 22px 0 0;
  max-width: 760px;
  color: var(--copper-2);
  font-size: clamp(1.35rem, 2.1vw, 2.1rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
  font-weight: 900;
}

.eder__copy p:not(.eyebrow) {
  margin: 20px 0 0;
  max-width: 720px;
  color: var(--cream);
  font-size: 1rem;
  line-height: 1.64;
}

.eder__actions {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.video-section {
  min-height: 100vh;
  padding: 46px 0 42px;
  background: var(--bg-wine);
  display: flex;
  align-items: center;
}

.video-section--after-eder {
  background: #190302;
}

.video-section__head {
  max-width: 720px;
  margin-bottom: 26px;
}

.video-section__head h2 {
  margin: 0;
  max-width: 680px;
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.058em;
  color: var(--cream-2);
  font-size: clamp(2.15rem, 3.35vw, 3.75rem);
}

.video-section__head p {
  margin: 16px 0 0;
  max-width: 560px;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.58;
}

.video-carousel {
  position: relative;
}

.video-carousel__track {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 20px;
  padding: 4px 0 0;
}

.video-card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: #120302;
  box-shadow: var(--shadow-soft);
}

.video-card__video {
  width: 100%;
  height: clamp(320px, 43vh, 405px);
  object-fit: cover;
  background: #120302;
  cursor: pointer;
}

.carousel-btn,
.video-card span {
  display: none !important;
}

.final-cta {
  background: var(--paper);
  color: var(--ink);
  padding: 88px 0;
}

.final-cta__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.55fr);
  gap: 76px;
  align-items: center;
}

.final-cta__headline {
  max-width: 780px;
}

.final-cta h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(3rem, 4.6vw, 5.15rem);
  line-height: 0.94;
  letter-spacing: -0.068em;
  font-weight: 900;
}

.final-cta h2 span {
  display: block;
}

.final-cta__card {
  max-width: 430px;
  padding: 34px;
  border-radius: 28px;
  background: #fff7e7;
  box-shadow: 0 22px 54px rgba(20, 16, 11, 0.12);
}

.final-cta__card h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.8rem, 2.25vw, 2.35rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
  font-weight: 900;
}

.final-cta__card p {
  margin: 18px 0 0;
  color: #6d583c;
  font-size: 1rem;
  line-height: 1.58;
}

.final-cta__card .btn {
  margin-top: 26px;
  width: 100%;
}

.form-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 22px;
}

.form-modal.is-open {
  display: flex;
}

.form-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.76);
  backdrop-filter: blur(8px);
}

.form-modal__panel {
  position: relative;
  z-index: 2;
  width: min(100%, 500px);
  max-height: calc(100dvh - 44px);
  overflow: visible;
  background: var(--paper);
  color: var(--ink);
  border-radius: 28px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.48);
}

.form-modal__panel--compact {
  width: min(100%, 480px);
}

.form-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: #111;
  color: var(--cream-2);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

.form-modal__content {
  padding: 30px 30px 26px;
}

.form-modal h2 {
  margin: 12px 0 10px;
  padding-right: 42px;
  color: var(--ink);
  font-size: clamp(2rem, 3vw, 2.75rem);
  line-height: 0.94;
  letter-spacing: -0.06em;
  font-weight: 900;
}

.form-modal p {
  margin: 0;
  color: #6b5234;
  line-height: 1.48;
  font-size: 0.96rem;
}

.lead-form {
  display: grid;
  gap: 11px;
  margin-top: 18px;
}

.lead-form--compact {
  gap: 10px;
}

.form-field {
  display: grid;
  gap: 6px;
}

.form-field label {
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 900;
}

.form-field input {
  width: 100%;
  min-height: 46px;
  padding: 0 14px;
  border: 0;
  border-radius: 13px;
  background: #fff8ea;
  color: var(--ink);
  outline: none;
  box-shadow: inset 0 -2px 0 rgba(20, 16, 11, 0.1);
}

.form-field input::placeholder {
  color: #9f8868;
}

.form-field input:focus {
  box-shadow: inset 0 -3px 0 var(--copper);
}

.form-field small,
.form-disclaimer {
  color: #7c6445;
  font-size: 0.76rem;
  line-height: 1.35;
}

.form-disclaimer {
  margin: 0;
}

.form-status {
  min-height: 18px;
  font-weight: 900;
  font-size: 0.86rem;
  line-height: 1.3;
}

.form-status.is-error {
  color: #9f1717;
}

.form-status.is-success {
  color: #1d7841;
}

.mobile-sticky-cta {
  display: none;
}

.footer {
  padding: 34px 0 42px;
  background: #070707;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer__brand-block {
  max-width: 58ch;
}

.footer-logo {
  width: 150px;
  height: auto;
  margin-bottom: 12px;
}

.footer__inner p {
  margin: 0;
  color: var(--muted);
  line-height: 1.58;
}

.footer__social {
  display: grid;
  gap: 8px;
  justify-items: end;
  color: var(--muted);
}

.footer__social a {
  color: var(--copper-2);
  font-weight: 900;
}

body .wa-floating,
body .whatsapp-float,
body .whatsapp-button,
body .whatsapp-widget-old,
body .zap-float,
body .whats-modal-trigger,
body #whatsapp-button,
body #whatsapp-widget,
body #whatsapp-modal {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

@media (max-width: 1120px) {
  .hero__inner,
  .last-class__grid,
  .manifesto__grid,
  .method__intro,
  .eder__grid,
  .final-cta__grid {
    grid-template-columns: 1fr;
  }

  .hero__inner {
    gap: 34px;
  }

  .vip-card {
    max-width: 620px;
  }

  .last-class__media {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .impact__grid {
    grid-template-columns: 1fr;
  }

  .method__intro {
    min-height: auto;
  }

  .method__bike {
    min-height: 310px;
    justify-content: flex-start;
  }

  .method__bike::before {
    left: 0;
    right: auto;
    text-align: left;
  }

  .scott-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .scott-card:last-child {
    grid-column: 1 / -1;
  }

  .eder__media {
    max-width: 420px;
  }

  .final-cta__card {
    max-width: 620px;
  }
}

@media (max-width: 820px) {
  body {
    padding-bottom: 92px;
    position: relative;
  }

  .container {
    width: 100%;
    max-width: 100%;
    padding-left: 22px;
    padding-right: 22px;
  }

  .site-header,
  .site-header__inner,
  .hero,
  .hero__inner,
  .last-class-section,
  .last-class__grid,
  .method-section,
  .method__inner,
  .eder-section,
  .eder__grid,
  .final-cta,
  .final-cta__grid {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .site-header__inner {
    min-height: auto;
    padding-top: 18px;
    padding-bottom: 18px;
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .brand-logo {
    width: 142px;
  }

  .site-header__nav {
    width: 100%;
    justify-content: space-between;
    gap: 14px;
    font-size: 0.98rem;
  }

  .site-header__cta {
    display: none;
  }

  .mobile-sticky-cta {
    position: fixed;
    left: 22px;
    right: 22px;
    bottom: calc(14px + env(safe-area-inset-bottom));
    z-index: 80;
    min-height: 56px;
    width: auto;
    max-width: calc(100% - 44px);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: var(--copper-2);
    color: var(--black);
    font-weight: 900;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.34);
  }

  .hero {
    min-height: auto;
  }

  .hero__background {
    background:
      linear-gradient(180deg, #070707 0%, rgba(7, 7, 7, 0.88) 46%, #070707 100%),
      url("/images/banner.png") center center / cover no-repeat;
  }

  .hero__inner {
    min-height: auto;
    padding: 48px 0 54px;
  }

  .hero h1,
  .hero h1 span,
  .hero h1 strong,
  .last-class__copy h2,
  .method__copy h2,
  .eder__copy h2,
  .eder__copy h3,
  .final-cta h2 {
    max-width: 100%;
    overflow-wrap: normal;
    word-break: normal;
  }

  .hero h1 {
    width: 100%;
    max-width: 100%;
    gap: 3px;
  }

  .hero h1 span {
    font-size: clamp(2.55rem, 10.5vw, 4rem);
  }

  .hero h1 strong {
    width: auto;
    max-width: 100%;
    font-size: clamp(4.55rem, 19vw, 6.8rem);
    line-height: 0.82;
  }

  .hero__lead,
  .hero__support,
  .hero__diagnostico {
    max-width: 100%;
    font-size: 1rem;
    line-height: 1.55;
  }

  .hero__actions,
  .eder__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .btn {
    width: 100%;
  }

  .vip-card {
    padding: 24px 18px;
  }

  .last-class-section,
  .video-section,
  .method-section {
    min-height: auto;
    padding: 62px 0;
  }

  .last-class__grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .last-class__copy {
    max-width: 100%;
  }

  .last-class__copy h2 {
    font-size: clamp(2.35rem, 10vw, 3.45rem);
  }

  .last-class__group-photo {
    margin-top: 24px;
    border-radius: 22px;
  }

  .last-class__group-photo img {
    aspect-ratio: 16 / 10;
    object-fit: cover;
    object-position: center 44%;
    transform: scale(1.1);
  }

  .last-class__media {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 82%;
    grid-template-columns: none;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    max-width: 100%;
  }

  .last-class__media::-webkit-scrollbar {
    display: none;
  }

  .last-class-card {
    scroll-snap-align: start;
    border-radius: 22px;
  }

  .last-class-card__image,
  .last-class-card__video {
    height: 390px;
  }

  .manifesto-section,
  .eder-section,
  .final-cta {
    padding: 62px 0;
  }

  .video-carousel__track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 82%;
    grid-template-columns: none;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .video-carousel__track::-webkit-scrollbar {
    display: none;
  }

  .video-card {
    scroll-snap-align: start;
  }

  .video-card__video {
    height: 390px;
  }

  .manifesto__grid {
    gap: 28px;
  }

  .method__copy h2,
  .manifesto__title h2,
  .eder__copy h2,
  .final-cta h2,
  .video-section__head h2 {
    font-size: clamp(2.25rem, 10vw, 3.45rem);
  }

  .method__bike {
    min-height: 280px;
  }

  .method__bike img {
    max-height: 300px;
  }

  .method__bike::before {
    font-size: clamp(2.6rem, 13vw, 4rem);
  }

  .scott-grid {
    grid-template-columns: 1fr;
  }

  .scott-card,
  .scott-card:last-child {
    grid-column: auto;
  }

  .scott-card {
    min-height: auto;
  }

  .eder__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .eder__media {
    max-width: 360px;
    width: 100%;
  }

  .eder__copy h2 {
    font-size: clamp(2.15rem, 9.2vw, 3.15rem);
    line-height: 0.96;
  }

  .eder__copy h3 {
    font-size: clamp(1.2rem, 5.5vw, 1.7rem);
    line-height: 1.08;
  }

  .eder__copy p:not(.eyebrow) {
    max-width: 100%;
    font-size: 1rem;
    line-height: 1.55;
  }

  .eder__actions a[data-open-form] {
    display: none;
  }

  .final-cta__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .final-cta h2 {
    font-size: clamp(2.35rem, 10vw, 3.4rem);
  }

  .final-cta__card {
    max-width: none;
    padding: 26px 20px;
  }

  .form-modal {
    padding: 14px;
    align-items: center;
  }

  .form-modal__panel {
    width: min(100%, 470px);
    max-height: calc(100dvh - 28px);
    border-radius: 24px;
  }

  .form-modal__content {
    padding: 26px 18px 22px;
  }

  .form-modal h2 {
    margin-top: 10px;
    padding-right: 38px;
    font-size: clamp(1.8rem, 8vw, 2.45rem);
    line-height: 0.96;
  }

  .form-modal p {
    font-size: 0.91rem;
    line-height: 1.42;
  }

  .lead-form {
    gap: 9px;
    margin-top: 14px;
  }

  .form-field {
    gap: 5px;
  }

  .form-field input {
    min-height: 44px;
  }

  .form-field small,
  .form-disclaimer {
    font-size: 0.72rem;
    line-height: 1.28;
  }

  .footer {
    padding-bottom: 110px;
  }

  .footer__inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-logo {
    width: 140px;
  }

  .footer__social {
    justify-items: start;
  }
}

@media (max-width: 420px) {
  .container {
    padding-left: 24px;
    padding-right: 24px;
  }

  .hero h1 span {
    font-size: clamp(2.28rem, 9.7vw, 3.45rem);
  }

  .hero h1 strong {
    font-size: clamp(4rem, 17vw, 5.8rem);
  }

  .site-header__nav {
    gap: 12px;
    font-size: 0.92rem;
  }

  .last-class-card__image,
  .last-class-card__video,
  .video-card__video {
    height: 365px;
  }

  .eder__copy h2 {
    font-size: clamp(2rem, 8.8vw, 2.85rem);
  }

  .mobile-sticky-cta {
    left: 20px;
    right: 20px;
    max-width: calc(100% - 40px);
  }

  .form-modal {
    padding: 12px;
  }

  .form-modal__content {
    padding: 24px 16px 20px;
  }

  .form-modal h2 {
    font-size: clamp(1.75rem, 9vw, 2.25rem);
  }
}

@media (max-height: 720px) and (min-width: 821px) {
  .form-modal__content {
    padding: 24px 28px 20px;
  }

  .form-modal h2 {
    margin-top: 8px;
    margin-bottom: 8px;
    font-size: clamp(1.85rem, 2.8vw, 2.45rem);
  }

  .form-modal p {
    font-size: 0.9rem;
    line-height: 1.38;
  }

  .lead-form {
    margin-top: 13px;
    gap: 8px;
  }

  .form-field input {
    min-height: 42px;
  }

  .form-field small,
  .form-disclaimer {
    font-size: 0.72rem;
    line-height: 1.25;
  }

  .form-status {
    min-height: 16px;
    font-size: 0.8rem;
  }
}

@media (max-height: 760px) and (min-width: 821px) {
  .hero__inner {
    padding: 34px 0;
  }

  .hero h1 span {
    font-size: clamp(3rem, 5.1vw, 5.3rem);
  }

  .hero h1 strong {
    font-size: clamp(5rem, 8.8vw, 8.2rem);
  }

  .hero__lead {
    margin-top: 18px;
  }

  .hero__support {
    margin-top: 12px;
  }

  .hero__actions {
    margin-top: 22px;
  }

  .vip-card {
    padding: 24px;
  }

  .vip-card h2 {
    font-size: clamp(1.9rem, 2.4vw, 2.55rem);
  }

  .vip-card__content {
    gap: 8px;
    margin: 18px 0 20px;
  }

  .vip-card__content span {
    padding: 11px 12px;
  }

  .last-class-section,
  .video-section {
    padding: 40px 0 36px;
  }

  .last-class__copy h2,
  .video-section__head h2 {
    font-size: clamp(2.1rem, 3.35vw, 3.6rem);
  }

  .last-class-card__video,
  .video-card__video {
    height: clamp(300px, 39vh, 360px);
  }

  .last-class-card__image {
    height: clamp(300px, 39vh, 360px);
  }

  .method-section {
    padding: 44px 0 40px;
  }

  .method__intro {
    min-height: 285px;
    margin-bottom: 22px;
  }

  .method__copy h2 {
    font-size: clamp(2.25rem, 3.65vw, 4rem);
  }

  .method__bike {
    min-height: 285px;
  }

  .method__bike img {
    max-height: 310px;
  }

  .scott-card {
    min-height: 190px;
  }

  .scott-card span {
    font-size: clamp(2.8rem, 4vw, 4.4rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}