/* =====================================================================
   AMG FUNDAMENTALS: THE DRIVER
   Redesign direction: premium black/blue Kinetic Precision lab.
   ===================================================================== */

:root {
  --bg: #070b12;
  --bg-2: #0b111c;
  --bg-3: #101827;
  --panel: rgba(18, 28, 44, 0.72);
  --panel-2: rgba(28, 42, 64, 0.62);
  --panel-solid: #111a28;
  --panel-bright: #1a2840;
  --text: #eef6ff;
  --text-soft: #b8c7d8;
  --text-muted: #74869a;
  --line: rgba(131, 188, 255, 0.14);
  --line-strong: rgba(71, 169, 255, 0.34);
  --blue: #1aa8ff;
  --blue-2: #41d7ff;
  --blue-3: #0a63ff;
  --cyan: #6be8ff;
  --yellow: #ffd34d;
  --red: #ff3b57;
  --green: #46f6a6;
  --glow: 0 0 42px rgba(26, 168, 255, 0.23);
  --glow-strong: 0 0 55px rgba(65, 215, 255, 0.38);

  --font-display: "Space Grotesk", system-ui, -apple-system, Segoe UI, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, Segoe UI, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Consolas, monospace;

  --container: 1220px;
  --narrow: 760px;
  --radius: 18px;
  --radius-sm: 10px;
  --ease: cubic-bezier(.2,.7,.2,1);
  --dur: 220ms;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background:
    radial-gradient(circle at 72% 6%, rgba(26,168,255,.22), transparent 34rem),
    radial-gradient(circle at 12% 28%, rgba(10,99,255,.12), transparent 30rem),
    linear-gradient(180deg, var(--bg), #090e17 40%, #070b12);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(107,232,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(107,232,255,.045) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.75), transparent 80%);
  pointer-events: none;
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(115deg, rgba(255,255,255,.035), transparent 22%),
    radial-gradient(circle at 50% 0%, rgba(65,215,255,.08), transparent 28rem);
  pointer-events: none;
}

img, svg { max-width: 100%; display: block; }
a { color: inherit; }
button { font: inherit; cursor: pointer; }
::selection { background: var(--blue-2); color: #02111d; }

.skip {
  position: absolute;
  top: -100px;
  left: 12px;
  z-index: 999;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--blue);
  color: #001525;
  font: 700 12px/1 var(--font-mono);
}
.skip:focus { top: 12px; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}
.container.narrow { max-width: var(--narrow); }
.center { text-align: center; }

.display,
.h2,
.h3,
.strat-card h3,
.bullet h4,
.module h3 {
  font-family: var(--font-display);
  letter-spacing: -0.055em;
}
.display {
  margin: 0 0 1.25rem;
  max-width: 14ch;
  font-size: clamp(3.05rem, 5.6vw, 5.55rem);
  line-height: .88;
  font-weight: 700;
  text-transform: uppercase;
}
.display em,
.h2 em,
.hl {
  font-style: normal;
  color: var(--blue-2);
  text-shadow: 0 0 26px rgba(65,215,255,.28);
}
.h2 {
  margin: 0 0 1rem;
  font-size: clamp(2.25rem, 4.9vw, 5.25rem);
  line-height: .94;
  font-weight: 700;
  text-transform: uppercase;
  text-wrap: balance;
}
.h3 {
  margin: 0 0 .8rem;
  font-size: clamp(1.45rem, 1.3vw + 1rem, 2rem);
  line-height: 1.05;
  font-weight: 700;
}
.body {
  margin: 0 0 1rem;
  color: var(--text-soft);
  font-size: 1.03rem;
}
.body.lg { font-size: clamp(1.08rem, .7vw + .95rem, 1.35rem); color: var(--text); }
.body.sm { font-size: .95rem; }
.body strong,
.lede strong { color: var(--text); }
.lede {
  max-width: 37rem;
  margin: 0 0 1.7rem;
  color: var(--text-soft);
  font-size: clamp(1.05rem, .9vw + .95rem, 1.32rem);
  line-height: 1.6;
}

.mono {
  font-family: var(--font-mono);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.mono--muted { color: var(--text-muted); }
.mono--accent,
.mono--inverse { color: var(--blue-2); }
.label {
  display: inline-flex;
  margin-bottom: 1rem;
  color: var(--blue-2);
}
.ink-stroke {
  background: none;
  padding-inline: .03em;
}
.ink-stroke--light {
  background: none;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(7, 11, 18, .78);
  color: var(--text);
  backdrop-filter: blur(18px);
  box-shadow: 0 14px 40px rgba(0,0,0,.32);
}
.topbar__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 15px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.brand { display: inline-flex; align-items: center; text-decoration: none; }
.brand__logo { width: auto; height: 34px; filter: drop-shadow(0 0 18px rgba(65,215,255,.14)); }
.topbar__meta { display: flex; align-items: center; gap: 16px; }
.topbar__tag { display: inline-flex; align-items: center; gap: 9px; }
.dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--blue-2);
  box-shadow: 0 0 16px var(--blue-2);
}
.signalbar {
  height: 2px;
  background: rgba(107,232,255,.12);
  overflow: hidden;
}
.signalbar span {
  display: block;
  width: 44%;
  height: 100%;
  background: linear-gradient(90deg, transparent, var(--blue), var(--blue-2), transparent);
  filter: drop-shadow(0 0 10px var(--blue));
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  max-width: 100%;
  padding: 14px 21px;
  border: 0;
  border-radius: 10px;
  background: rgba(255,255,255,.06);
  color: var(--text);
  text-decoration: none;
  font: 800 15px/1.1 var(--font-display);
  letter-spacing: -.02em;
  white-space: nowrap;
  box-shadow: inset 0 0 0 1px var(--line), 0 0 0 rgba(0,0,0,0);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), background var(--dur) var(--ease);
}
.btn:hover { transform: translateY(-2px); box-shadow: inset 0 0 0 1px var(--line-strong), var(--glow); }
.btn:active { transform: translateY(0); }
.btn:focus-visible { outline: 3px solid var(--blue-2); outline-offset: 3px; }
.btn--primary {
  background: linear-gradient(135deg, var(--blue-2), var(--blue) 45%, var(--blue-3));
  color: #03111d;
  box-shadow: 0 0 30px rgba(26,168,255,.26);
}
.btn--ghost { color: var(--text); background: rgba(255,255,255,.045); }
.topbar__cta {
  background: linear-gradient(135deg, #67e8ff 0%, #18a8ff 48%, #0d75ff 100%);
  color: #020812;
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.38),
    0 0 26px rgba(26,168,255,.42),
    0 12px 30px rgba(0,0,0,.28);
}
.topbar__cta:hover {
  background: linear-gradient(135deg, #8cf1ff 0%, #2dbbff 50%, #2789ff 100%);
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.52),
    0 0 36px rgba(65,215,255,.58),
    0 16px 34px rgba(0,0,0,.34);
}
.btn--sm { padding: 10px 14px; font-size: 13px; }
.btn--lg { padding: 18px 28px; font-size: 18px; }
.btn--block { width: 100%; }
.btn__label { white-space: normal; }
.btn__price {
  padding: 4px 8px;
  border-radius: 7px;
  background: rgba(3,17,29,.2);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .08em;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 7px 11px;
  border-radius: 999px;
  font: 800 .68rem/1 var(--font-mono);
  letter-spacing: .14em;
  text-transform: uppercase;
}
.pill--dark {
  background: rgba(65,215,255,.12);
  color: var(--blue-2);
  box-shadow: inset 0 0 0 1px rgba(65,215,255,.18);
}
.pill--outline {
  color: var(--text-soft);
  background: rgba(255,255,255,.04);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.1);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 760px;
  padding: 62px 0 78px;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7,11,18,.98) 0%, rgba(7,11,18,.86) 38%, rgba(7,11,18,.35) 66%, rgba(7,11,18,.88) 100%),
    radial-gradient(circle at 82% 32%, rgba(26,168,255,.24), transparent 32rem);
  z-index: 0;
}
.hero__grid {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(420px, 1.08fr);
  gap: 54px;
  align-items: center;
}
.hero__copy { min-width: 0; }
.eyebrow { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 1.45rem; }
.hero__cta { display: flex; align-items: center; flex-wrap: wrap; gap: 18px; margin: 1.8rem 0 1.3rem; }
.hero__price { display: grid; gap: 3px; }
.price-was { color: var(--text-muted); }
.price-now { color: var(--blue-2); }
.hero__assurances {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  padding: 0;
  margin: 1rem 0 0;
  list-style: none;
  color: var(--text-muted);
}
.hero__assurances li { display: inline-flex; align-items: center; gap: 8px; }
.check,
.ck {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  border-radius: 6px;
  background: rgba(65,215,255,.12);
  color: var(--blue-2);
  box-shadow: inset 0 0 0 1px rgba(65,215,255,.24);
  font: 800 12px/1 var(--font-mono);
}
.x {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  border-radius: 6px;
  background: rgba(255,59,87,.12);
  color: #ff7185;
  box-shadow: inset 0 0 0 1px rgba(255,59,87,.22);
  font: 800 12px/1 var(--font-mono);
}
.hero__art { position: relative; }
.hero__frame {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  background: #02060d;
  box-shadow: var(--glow-strong), inset 0 0 0 1px rgba(107,232,255,.16);
}
.hero__frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255,255,255,.08), transparent 34%, rgba(65,215,255,.08));
  pointer-events: none;
}
.hero__frame > img[data-slot="hero/cover"] {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}
.hero__data {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 14px;
  border-radius: 13px;
  background: rgba(2, 8, 15, .76);
  backdrop-filter: blur(18px);
  color: var(--blue-2);
  box-shadow: inset 0 0 0 1px rgba(107,232,255,.18);
}
.hero__art figcaption { margin-top: 12px; text-align: right; color: var(--text-muted); }

.break {
  background: rgba(5, 9, 15, .94);
  box-shadow: inset 0 1px 0 rgba(107,232,255,.08), inset 0 -1px 0 rgba(107,232,255,.08);
}
.signalbreak .break__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 16px 28px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  color: var(--text-muted);
}
.signalbreak .break__inner span { position: relative; }
.signalbreak .break__inner span::after {
  content: "";
  display: block;
  width: 42px;
  height: 2px;
  margin-top: 6px;
  background: linear-gradient(90deg, var(--blue), transparent);
}

.section {
  position: relative;
  padding: 104px 0;
}
.section--cream,
.section--dark,
.section--accent {
  background: transparent;
  color: var(--text);
}
.section--cream::before,
.section--dark::before,
.section--accent::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255,255,255,.012), rgba(0,0,0,.16));
}
.section__head { max-width: 820px; margin: 0 0 42px; position: relative; z-index: 1; }
.section .container { position: relative; z-index: 1; }

.os-compare {
  display: grid;
  grid-template-columns: minmax(0,1fr) auto minmax(0,1fr);
  gap: 20px;
  align-items: stretch;
  margin-top: 28px;
}
.os-card,
.bullet,
.module,
.strat-card,
.offer__card,
.offer__side,
.faq details,
.strategy__note,
.instructors__photo,
.mechanism__visual,
.drawer__panel {
  border: 0;
  border-radius: var(--radius);
  background: var(--panel);
  backdrop-filter: blur(24px);
  box-shadow: inset 0 0 0 1px var(--line), 0 28px 70px rgba(0,0,0,.28);
}
.os-card { padding: 28px; }
.os-card--driver {
  background:
    radial-gradient(circle at 90% 0%, rgba(65,215,255,.22), transparent 18rem),
    rgba(15, 35, 58, .78);
  box-shadow: inset 0 0 0 1px rgba(65,215,255,.24), var(--glow);
}
.os-card header { margin-bottom: 18px; }
.os-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 11px; }
.os-list li { display: flex; gap: 12px; color: var(--text-soft); }
.os-vs {
  align-self: center;
  width: 58px;
  height: 58px;
  display: grid;
  place-content: center;
  border-radius: 50%;
  background: rgba(65,215,255,.12);
  color: var(--blue-2);
  box-shadow: inset 0 0 0 1px rgba(65,215,255,.24), var(--glow);
}
.mechanism__visual {
  margin: 30px 0;
  overflow: hidden;
}
.mechanism__visual img {
  width: 100%;
  aspect-ratio: 16 / 6.5;
  object-fit: cover;
  opacity: .78;
}
.mechanism__visual figcaption {
  padding: 12px 16px;
  color: var(--blue-2);
  background: rgba(3,9,17,.62);
}

.bullets,
.modules,
.strategy {
  display: grid;
  gap: 18px;
}
.bullets { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.bullet {
  display: flex;
  gap: 18px;
  padding: 24px;
}
.bullet__num {
  display: grid;
  place-content: center;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border-radius: 12px;
  background: rgba(65,215,255,.12);
  color: var(--blue-2);
  box-shadow: inset 0 0 0 1px rgba(65,215,255,.22);
}
.bullet h4 { margin: 0 0 .35rem; font-size: 1.22rem; }
.bullet p { margin: 0; color: var(--text-soft); }

.modules {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}
.module {
  padding: 22px;
  min-height: 178px;
  display: flex;
  flex-direction: column;
}
.module__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 20px;
}
.module__num { color: var(--blue-2); }
.module__tag {
  padding: 5px 8px;
  border-radius: 8px;
  background: rgba(255,255,255,.06);
  color: var(--text-muted);
}
.module h3 { margin: 0 0 .5rem; font-size: 1.2rem; }
.module p { margin: 0; color: var(--text-soft); font-size: .94rem; }

.strategy {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 26px;
}
.strat-card {
  padding: 16px;
}
.strat-card__media {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  aspect-ratio: 4 / 3;
  margin-bottom: 15px;
  background: #02060d;
}
.strat-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.strat-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 38%, rgba(2,8,15,.78));
}
.lock-badge {
  position: absolute;
  left: 10px;
  bottom: 10px;
  z-index: 2;
  padding: 7px 9px;
  border-radius: 999px;
  background: rgba(3,13,24,.78);
  color: var(--blue-2);
  box-shadow: inset 0 0 0 1px rgba(65,215,255,.24);
}
.strat-card h3 { margin: 0 0 .35rem; font-size: 1.35rem; }
.strat-card p { margin: .3rem 0 0; color: var(--text-soft); font-size: .95rem; }
.strategy__note {
  margin-top: 30px;
  padding: 30px;
  background:
    linear-gradient(135deg, rgba(26,168,255,.16), rgba(16,24,39,.72)),
    var(--panel);
}
.strategy__note blockquote {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.28rem, 1.3vw + 1rem, 2rem);
  line-height: 1.25;
  letter-spacing: -.03em;
}
.strategy__note em { color: var(--blue-2); font-style: normal; }

.instructors {
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: 48px;
  align-items: center;
}
.instructors__photo { overflow: hidden; margin: 0; }
.instructors__photo img { width: 100%; height: auto; }
.instructors__photo figcaption { padding: 12px 16px; color: var(--blue-2); background: rgba(3,9,17,.72); }
.cred {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
}
.cred li {
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(65,215,255,.1);
  color: var(--blue-2);
  box-shadow: inset 0 0 0 1px rgba(65,215,255,.18);
}

.offer__grid {
  display: grid;
  grid-template-columns: minmax(320px, .9fr) minmax(0, 1.1fr);
  gap: 26px;
  align-items: stretch;
}
.offer__card {
  position: relative;
  padding: 34px;
  background:
    radial-gradient(circle at 85% 10%, rgba(65,215,255,.2), transparent 16rem),
    rgba(14, 25, 41, .86);
  box-shadow: inset 0 0 0 1px rgba(65,215,255,.25), var(--glow);
}
.offer__sticker {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--blue-2);
}
.offer__price { display: flex; align-items: flex-start; gap: .08em; line-height: .8; margin-bottom: 12px; }
.offer__currency,
.offer__cents { color: var(--blue-2); font-family: var(--font-display); font-weight: 700; }
.offer__currency { font-size: 2rem; padding-top: .55rem; }
.offer__amount { font: 700 7rem/.75 var(--font-display); letter-spacing: -.025em; }
.offer__cents { font-size: 2rem; padding-top: .7rem; margin-left: .04em; }
.offer__was { color: var(--text-muted); margin-bottom: 24px; }
.offer__list {
  display: grid;
  gap: 12px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}
.offer__list li { display: flex; gap: 10px; color: var(--text-soft); }
.offer__fine { margin-top: 14px; }
.offer__side { padding: 34px; }
.value-anchor {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}
.va-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 15px 0;
  color: var(--text-muted);
  box-shadow: inset 0 -1px 0 rgba(107,232,255,.09);
}
.va-row--now,
.va-row--save { color: var(--blue-2); }

.faq {
  display: grid;
  gap: 10px;
}
.faq details { overflow: hidden; }
.faq summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  cursor: pointer;
  font-weight: 700;
}
.faq summary::-webkit-details-marker { display: none; }
.faq__toggle { color: var(--blue-2); }
.faq__body { padding: 0 20px 20px; color: var(--text-soft); }
.faq__body p { margin: 0; }

.final {
  background:
    radial-gradient(circle at 50% 0%, rgba(65,215,255,.17), transparent 24rem),
    transparent;
}
.final__fine { margin-top: 16px; }

.footer {
  padding: 34px 0;
  background: rgba(2, 6, 12, .92);
  box-shadow: inset 0 1px 0 rgba(107,232,255,.08);
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.footer__brand {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.footer__logo { height: 30px; width: auto; opacity: .85; }
.footer__links {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.footer__link {
  color: var(--muted);
  font: 800 .72rem/1 var(--font-mono);
  letter-spacing: .12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color var(--dur) var(--ease);
}
.footer__link:hover { color: var(--text); }
.btn--support {
  background: rgba(255,255,255,.08);
  color: var(--text);
  box-shadow: inset 0 0 0 1px rgba(107,232,255,.24);
}
.btn--support:hover {
  background: rgba(65,215,255,.14);
}

.sticky-cta {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  background: rgba(5,9,15,.88);
  backdrop-filter: blur(18px);
  box-shadow: 0 -18px 45px rgba(0,0,0,.32), inset 0 1px 0 rgba(107,232,255,.14);
}
.sticky-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 18px calc(14px + env(safe-area-inset-bottom));
}
.sticky-cta__price {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: -.05em;
}
.sticky-cta__price s { color: var(--text-muted); }
.sticky-cta__price strong { color: var(--blue-2); }

.drawer {
  position: fixed;
  inset: 0;
  z-index: 100;
  visibility: hidden;
  pointer-events: none;
}
.drawer[aria-hidden="false"] { visibility: visible; pointer-events: auto; }
.drawer__scrim {
  position: absolute;
  inset: 0;
  background: rgba(2,6,12,.72);
  opacity: 0;
  transition: opacity var(--dur) var(--ease);
}
.drawer[aria-hidden="false"] .drawer__scrim { opacity: 1; }
.drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(450px, 92vw);
  padding: 34px 28px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 330ms var(--ease);
  outline: none;
}
.drawer[aria-hidden="false"] .drawer__panel { transform: translateX(0); }
.drawer__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 10px;
  background: rgba(255,255,255,.06);
  color: var(--text);
}
.drawer__list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 18px 0;
  list-style: none;
}
.drawer__list li {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  color: var(--text-soft);
}
.drawer__list strong { color: var(--blue-2); }
.drawer code {
  border-radius: 6px;
  padding: 2px 6px;
  background: rgba(65,215,255,.12);
  color: var(--blue-2);
}

@media (max-width: 1040px) {
  .hero { min-height: auto; padding: 48px 0 72px; }
  .hero__grid { grid-template-columns: 1fr; gap: 36px; }
  .hero__art { order: -1; max-width: 720px; margin: 0 auto; width: 100%; }
  .display { max-width: 13ch; }
  .modules { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .strategy,
  .instructors,
  .offer__grid { grid-template-columns: 1fr; }
  .os-compare { grid-template-columns: 1fr; }
  .os-vs { justify-self: center; }
}

@media (max-width: 720px) {
  body { padding-bottom: 84px; }
  .container,
  .hero__grid,
  .topbar__inner { padding-inline: 18px; }
  .topbar__tag,
  .topbar__cta { display: none; }
  .brand__logo { height: 30px; }
  .section { padding: 76px 0; }
  .hero { padding-top: 34px; }
  .hero__frame { border-radius: 16px; }
  .hero__data,
  .hero__art figcaption,
  .hero__price,
  .signalbreak { display: none; }
  .display { font-size: clamp(2.75rem, 13vw, 4.35rem); }
  .h2 { font-size: clamp(2rem, 10vw, 3.2rem); }
  .hero__cta .btn { width: 100%; }
  .hero__cta { margin-bottom: 1rem; }
  .hero__assurances {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 1rem;
    color: var(--text);
    font-size: .84rem;
    letter-spacing: .01em;
    line-height: 1.25;
  }
  .hero__assurances li {
    gap: 10px;
    min-height: 46px;
    padding: 11px 12px;
    border-radius: 12px;
    background: rgba(255,255,255,.045);
    box-shadow: inset 0 0 0 1px rgba(107,232,255,.14);
  }
  .hero__assurances .check {
    width: 24px;
    height: 24px;
    border-radius: 8px;
    font-size: 13px;
  }
  .mechanism__visual {
    margin: 18px 0 22px;
    border-radius: 16px;
  }
  .mechanism__visual img {
    height: 190px;
    aspect-ratio: auto;
    object-position: 24% 42%;
    opacity: .88;
  }
  .mechanism__visual figcaption { display: none; }
  .bullets,
  .modules,
  .strategy { grid-template-columns: 1fr; }
  .bullet,
  .os-card,
  .module,
  .offer__card,
  .offer__side,
  .strategy__note { padding: 22px; }
  .offer__amount { font-size: 5.4rem; }
  .footer__inner { flex-direction: column; align-items: flex-start; }
  .footer__brand { align-items: flex-start; flex-direction: column; gap: 12px; }
  .sticky-cta { display: block; }
}

@media (max-width: 420px) {
  .hero__assurances { font-size: .82rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  .btn:hover { transform: none; }
}
