:root {
  --blue: #0969da;
  --blue-dark: #0757b6;
  --orange: #ff7800;
  --ink: #101820;
  --muted: #5a6672;
  --paper: #f3f1eb;
  --white: #fff;
  --line: rgba(16, 24, 32, 0.18);
  --display: "Bricolage Grotesque", sans-serif;
  --body: "Manrope", sans-serif;
  --mono: "IBM Plex Mono", monospace;
  --max: 1280px;
  --ease: cubic-bezier(.22, .8, .22, 1);
}

* { box-sizing: border-box; }

html {
  color-scheme: light;
  scroll-behavior: smooth;
  scroll-padding-top: 76px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--body);
  -webkit-font-smoothing: antialiased;
}

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

button,
a { font: inherit; }

a { color: inherit; }

.skip-link {
  position: fixed;
  z-index: 100;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-150%);
}

.skip-link:focus { transform: translateY(0); }

:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 4px;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  height: 72px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(calc(100% - 40px), var(--max));
  height: 100%;
  margin: auto;
}

.brand { display: inline-flex; align-items: center; }

.brand img {
  width: 144px;
  height: 52px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 31px;
}

.site-nav a {
  position: relative;
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
}

.site-nav a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms var(--ease);
}

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

.nav-cta {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 17px;
  color: var(--white);
  background: var(--blue);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 6px auto;
  background: var(--ink);
  transition: transform 180ms var(--ease);
}

.menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(480px, 0.82fr);
  gap: clamp(42px, 5vw, 86px);
  align-items: center;
  width: min(calc(100% - 40px), var(--max));
  min-height: min(760px, calc(100svh - 72px));
  margin: auto;
  padding: 44px 0 52px;
}

.hero-copy { min-width: 0; }

.eyebrow {
  margin: 0 0 17px;
  color: var(--blue);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.eyebrow::before {
  display: inline-block;
  width: 27px;
  height: 2px;
  margin: 0 9px 3px 0;
  content: "";
  background: var(--orange);
}

.eyebrow.centered { text-align: center; }
.eyebrow.light { color: rgba(255,255,255,.72); }

.hero h1,
.thesis h2,
.section-heading h2,
.mechanism h2,
.access-intro h2,
.faq-heading h2,
.final-cta h2 {
  margin: 0;
  font-family: var(--display);
  letter-spacing: -.055em;
}

.hero h1 {
  display: flex;
  max-width: 680px;
  flex-direction: column;
}

.hero h1 > span {
  color: var(--blue);
  font-size: clamp(68px, 6.5vw, 98px);
  font-weight: 800;
  line-height: .87;
  text-transform: uppercase;
}

.hero h1 strong {
  max-width: 590px;
  margin-top: 19px;
  font-size: clamp(45px, 4.6vw, 67px);
  font-weight: 600;
  line-height: .98;
}

.hero-lead {
  max-width: 610px;
  margin: 27px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.62;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  min-height: 51px;
  padding: 0 21px;
  border: 1px solid transparent;
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
  transition: color 150ms ease, background 150ms ease, transform 150ms var(--ease);
}

.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--white); background: var(--blue); }
.button-primary:hover { background: var(--blue-dark); }
.button-light { color: var(--ink); background: var(--white); }
.button-light:hover { color: var(--blue); }

.text-link {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  font-size: 12px;
  font-weight: 800;
  text-underline-offset: 4px;
}

.text-link span { color: var(--orange); }

.hero-keys {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 610px;
  margin: 31px 0 0;
  padding: 18px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.hero-keys li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 9px;
  padding: 0 14px;
  border-right: 1px solid var(--line);
}

.hero-keys li:first-child { padding-left: 0; }
.hero-keys li:last-child { border-right: 0; }

.hero-keys b {
  color: var(--orange);
  font-family: var(--mono);
  font-size: 13px;
}

.hero-keys span {
  color: var(--muted);
  font-size: 9px;
  line-height: 1.45;
}

.hero-keys strong { color: var(--ink); font-size: 10px; }

.scan-window {
  position: relative;
  overflow: hidden;
  background: #c7cbd0;
}

.hero-media {
  justify-self: end;
  width: min(100%, 560px);
  height: min(640px, calc(100svh - 122px));
  min-height: 520px;
  box-shadow: 20px 22px 0 var(--paper);
}

.scan-window video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.scan-corner {
  position: absolute;
  z-index: 4;
  width: 29px;
  height: 29px;
  border-color: var(--white);
  border-style: solid;
  pointer-events: none;
}

.corner-tl { top: 17px; left: 17px; border-width: 2px 0 0 2px; }
.corner-tr { top: 17px; right: 17px; border-width: 2px 2px 0 0; }
.corner-bl { bottom: 17px; left: 17px; border-width: 0 0 2px 2px; }
.corner-br { right: 17px; bottom: 17px; border-width: 0 2px 2px 0; }

.scan-line {
  position: absolute;
  z-index: 4;
  top: 11%;
  right: 19px;
  left: 19px;
  height: 2px;
  background: var(--orange);
  box-shadow: 0 0 12px rgba(255, 120, 0, .65);
  animation: scan 4.8s var(--ease) infinite;
  pointer-events: none;
}

@keyframes scan {
  0%, 15% { transform: translateY(0); opacity: 0; }
  22% { opacity: 1; }
  72% { opacity: 1; }
  80%, 100% { transform: translateY(460px); opacity: 0; }
}

.media-index,
.stage-label {
  position: absolute;
  z-index: 5;
  top: 20px;
  left: 58px;
  padding: 7px 9px;
  color: var(--white);
  background: rgba(16, 24, 32, .82);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: .08em;
}

.video-toggle {
  position: absolute;
  z-index: 6;
  right: 28px;
  bottom: 28px;
  display: grid;
  width: 46px;
  height: 46px;
  padding: 0;
  place-items: center;
  color: var(--ink);
  border: 0;
  border-radius: 50%;
  background: var(--white);
  cursor: pointer;
}

.pause-icon { font-family: var(--mono); font-size: 13px; }

.js .hero-copy,
.js .hero-media { opacity: 0; transform: translateY(14px); }

.is-ready .hero-copy,
.is-ready .hero-media {
  opacity: 1;
  transform: none;
  transition: opacity 520ms ease, transform 520ms var(--ease);
}

.is-ready .hero-media { transition-delay: 110ms; }

.thesis {
  padding: 105px 20px 96px;
  text-align: center;
  background: var(--paper);
}

.thesis h2 {
  font-size: clamp(43px, 5.1vw, 72px);
  font-weight: 600;
  line-height: .98;
}

.thesis h2 em,
.mechanism h2 em {
  color: var(--orange);
  font-style: normal;
}

.thesis-line {
  position: relative;
  width: min(720px, 80vw);
  height: 18px;
  margin: 52px auto 0;
  border-top: 1px solid rgba(16,24,32,.35);
}

.thesis-line::before,
.thesis-line::after {
  position: absolute;
  top: -5px;
  width: 9px;
  height: 9px;
  content: "";
  border: 1px solid var(--ink);
  background: var(--paper);
}

.thesis-line::before { left: 0; }
.thesis-line::after { right: 0; }
.thesis-line span { position: absolute; top: -2px; left: 12%; width: 36%; height: 3px; background: var(--orange); }

.section-heading {
  display: flex;
  gap: 50px;
  align-items: end;
  justify-content: space-between;
}

.section-heading h2 {
  font-size: clamp(47px, 5.2vw, 72px);
  font-weight: 650;
  line-height: .96;
}

.section-heading > p {
  max-width: 310px;
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.mechanism {
  display: grid;
  grid-template-columns: minmax(430px, .87fr) minmax(480px, 1.13fr);
  gap: clamp(52px, 8vw, 120px);
  align-items: start;
  padding: 108px max(20px, calc((100% - var(--max)) / 2));
  color: var(--white);
  background: var(--ink);
}

.mechanism-stage {
  position: sticky;
  top: 102px;
  height: min(660px, calc(100svh - 130px));
  min-height: 520px;
}

.mechanism-stage video {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.015);
  transition: opacity 300ms ease, transform 520ms var(--ease);
}

.mechanism-stage video.is-active { opacity: 1; transform: none; }
.mechanism .eyebrow { color: #9fc7ff; }
.mechanism-copy { padding: 44px 0 60px; }

.mechanism h2 {
  font-size: clamp(45px, 5vw, 68px);
  font-weight: 600;
  line-height: .97;
}

.mechanism-progress {
  height: 2px;
  margin: 55px 0 0;
  background: #33404e;
}

.mechanism-progress span {
  display: block;
  width: 33.333%;
  height: 100%;
  background: var(--orange);
  transition: width 380ms var(--ease);
}

.mechanism-steps { margin: 0; padding: 0; list-style: none; }

.mechanism-steps li {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 19px;
  min-height: 205px;
  padding: 53px 0;
  border-bottom: 1px solid #33404e;
  opacity: .42;
  cursor: pointer;
  transition: opacity 220ms ease;
}

.mechanism-steps li.is-active { opacity: 1; }
.mechanism-steps li:hover { opacity: .78; }
.mechanism-steps li:focus-visible { opacity: 1; outline-color: var(--orange); }
.mechanism-steps b { color: var(--orange); font-family: var(--mono); font-size: 13px; }
.mechanism-steps strong { display: block; font-family: var(--display); font-size: 27px; }
.mechanism-steps p { max-width: 470px; margin: 10px 0 0; color: #aeb8c4; font-size: 13px; line-height: 1.6; }

.catalog {
  width: min(calc(100% - 40px), var(--max));
  margin: auto;
  padding: 118px 0 126px;
}

.catalog-heading > p strong {
  color: var(--blue);
  font-family: var(--display);
  font-size: 34px;
}

.catalog-heading h2 em {
  color: var(--orange);
  font-style: normal;
}

.catalog-access-note {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin: 42px 0 0;
  padding: 21px 24px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-left: 4px solid var(--orange);
  background: var(--paper);
}

.access-note-index {
  padding: 8px 10px;
  color: var(--white);
  background: var(--blue);
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: .09em;
}

.catalog-access-note p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.catalog-access-note p strong { color: var(--ink); }

.catalog-access-note a {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  color: var(--blue);
  font-size: 10px;
  font-weight: 800;
  text-underline-offset: 4px;
  white-space: nowrap;
}

.catalog-access-note a span { color: var(--orange); }

.catalog-toolbar {
  display: flex;
  gap: 5px;
  margin: 43px 0 28px;
  padding: 12px 0;
  overflow-x: auto;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.catalog-toolbar button {
  flex: 0 0 auto;
  min-height: 39px;
  padding: 0 14px;
  color: var(--muted);
  border: 1px solid transparent;
  background: transparent;
  font-size: 10px;
  font-weight: 800;
  cursor: pointer;
}

.catalog-toolbar button[aria-pressed="true"] { color: var(--white); background: var(--blue); }

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  transition: opacity 180ms ease;
}

.catalog-grid.is-changing { opacity: 0; }

.collection-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
  text-decoration: none;
}

.collection-card:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 4px;
}

.collection-media {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.collection-media::after {
  position: absolute;
  z-index: 2;
  inset: 0;
  content: "";
  background: linear-gradient(transparent 30%, rgba(16,24,32,.94));
  pointer-events: none;
  transition: background 320ms ease;
}

.collection-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) saturate(.15) contrast(1.08) brightness(.76);
  transition: transform 520ms var(--ease), filter 360ms ease;
}

.collection-card:hover video,
.collection-card:focus-visible video {
  filter: grayscale(0) saturate(1) contrast(1) brightness(1);
  transform: scale(1.025);
}

.collection-card:hover .collection-media::after,
.collection-card:focus-visible .collection-media::after {
  background: linear-gradient(transparent 38%, rgba(16,24,32,.91));
}

.collection-copy {
  position: absolute;
  z-index: 4;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  padding: 28px 21px 20px;
}

.collection-label {
  display: block;
  margin-bottom: 7px;
  color: #b9d5ff;
  font-family: var(--mono);
  font-size: 7px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.collection-title-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 10px;
}

.collection-title-row strong {
  font-family: var(--display);
  font-size: clamp(22px, 2.1vw, 30px);
  line-height: .98;
}

.collection-title-row i { color: var(--orange); font-style: normal; }
.collection-description { display: block; max-width: 315px; margin-top: 8px; color: #dae0e8; font-size: 9px; line-height: 1.45; }

.collection-badge {
  position: absolute;
  z-index: 5;
  top: 13px;
  left: 13px;
  padding: 7px 9px;
  color: var(--ink);
  background: var(--white);
  font-family: var(--mono);
  font-size: 7px;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: .07em;
}

.collection-play {
  position: absolute;
  z-index: 5;
  top: 15px;
  right: 15px;
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  color: var(--ink);
  border-radius: 50%;
  background: var(--white);
  font-family: var(--mono);
  font-size: 9px;
  transition: color 220ms ease, background 220ms ease, transform 320ms var(--ease);
}

.collection-action {
  position: absolute;
  z-index: 5;
  top: 17px;
  right: 56px;
  display: block;
  padding: 7px 10px 6px;
  color: rgba(255,255,255,.84);
  border: 1px solid rgba(255,255,255,.38);
  background: rgba(16,24,32,.58);
  backdrop-filter: blur(5px);
  font-family: var(--mono);
  font-size: 7px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  transition: color 220ms ease, border-color 220ms ease, background 220ms ease, transform 320ms var(--ease);
}

.collection-action::after { margin-left: 6px; content: "↗"; color: var(--orange); }

.collection-card:hover .collection-action,
.collection-card:focus-visible .collection-action {
  color: var(--white);
  border-color: var(--orange);
  background: var(--orange);
  transform: translateY(-2px);
}

.collection-card:hover .collection-action::after,
.collection-card:focus-visible .collection-action::after { color: var(--white); }

.collection-card:hover .collection-play,
.collection-card:focus-visible .collection-play {
  color: var(--white);
  background: var(--blue);
  transform: scale(1.06);
}

.collection-card .scan-corner { width: 18px; height: 18px; opacity: .76; }
.collection-card .corner-tl,
.collection-card .corner-tr { top: 13px; }
.collection-card .corner-bl,
.collection-card .corner-br { bottom: 13px; }
.collection-card .corner-tl,
.collection-card .corner-bl { left: 13px; }
.collection-card .corner-tr,
.collection-card .corner-br { right: 13px; }
.collection-card .scan-line { right: 14px; left: 14px; animation-play-state: paused; opacity: 0; }
.collection-card:hover .scan-line,
.collection-card:focus-visible .scan-line { animation-play-state: running; }

.catalog-note {
  margin: 24px 0 0;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 9px;
}

.catalog-note span { color: var(--orange); }

.access-offer {
  padding: 112px max(20px, calc((100% - var(--max)) / 2)) 120px;
  background: var(--paper);
}

.access-intro {
  max-width: 890px;
  margin: 0 auto 62px;
  text-align: center;
}

.access-intro h2 {
  font-size: clamp(48px, 5.6vw, 76px);
  font-weight: 650;
  line-height: .94;
}

.access-intro h2 em {
  color: var(--orange);
  font-style: normal;
}

.access-intro > p:last-child {
  max-width: 720px;
  margin: 25px auto 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.exclusive-highlight {
  position: relative;
  z-index: 0;
  padding: 0 .12em .04em;
  color: var(--ink);
  background: linear-gradient(180deg, transparent 54%, rgba(255, 120, 0, .42) 54%);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  font-weight: 800;
}

.exclusive-highlight::after {
  position: absolute;
  z-index: -1;
  right: -.08em;
  bottom: -.08em;
  left: -.08em;
  height: 2px;
  content: "";
  background: var(--orange);
  transform: rotate(-.6deg);
}

.offer-composition {
  display: grid;
  grid-template-columns: minmax(420px, .9fr) minmax(460px, 1.1fr);
  max-width: 1120px;
  margin: auto;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 17px 19px 0 rgba(9, 105, 218, .1);
}

.plan-panel {
  position: relative;
  display: flex;
  min-height: 510px;
  padding: 58px 48px 50px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: var(--white);
  background: var(--ink);
  text-align: center;
}

.plan-panel .scan-corner {
  width: 23px;
  height: 23px;
  border-color: rgba(255,255,255,.7);
}

.plan-kicker {
  color: #a9cbfb;
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.plan-panel h3 {
  margin: 13px 0 0;
  font-family: var(--display);
  font-size: 35px;
  line-height: 1;
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-top: 45px;
}

.plan-price span {
  color: var(--orange);
  font-family: var(--mono);
  font-size: 15px;
  font-weight: 600;
}

.plan-price strong {
  font-family: var(--display);
  font-size: clamp(62px, 6vw, 84px);
  letter-spacing: -.07em;
  line-height: .9;
}

.cash-price {
  margin: 13px 0 0;
  color: #b7c0ca;
  font-size: 11px;
}

.offer-button {
  width: 100%;
  max-width: 340px;
  margin-top: 39px;
  background: var(--orange);
}

.offer-button:hover { background: #df6800; }

.checkout-trust {
  display: grid;
  grid-template-columns: 25px auto;
  gap: 10px;
  align-items: center;
  margin-top: 18px;
  color: #b9d5ff;
  text-align: left;
}

.checkout-trust svg { display: block; }

.checkout-trust span { display: flex; flex-direction: column; }

.checkout-trust strong {
  color: var(--white);
  font-family: var(--mono);
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.checkout-trust small {
  margin-top: 3px;
  color: #8d99a6;
  font-size: 7px;
  line-height: 1.45;
}

.included-panel {
  display: flex;
  justify-content: center;
  padding: 50px 55px;
  flex-direction: column;
}

.included-title {
  margin: 0 0 8px;
  color: var(--blue);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: .11em;
}

.included-panel ul { margin: 0; padding: 0; list-style: none; }

.included-panel li {
  display: grid;
  grid-template-columns: 35px 1fr;
  gap: 17px;
  align-items: start;
  padding: 25px 0;
  border-bottom: 1px solid var(--line);
}

.included-panel li:last-child { border-bottom: 0; }

.included-panel b {
  padding-top: 3px;
  color: var(--orange);
  font-family: var(--mono);
  font-size: 10px;
}

.included-panel span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.58;
}

.included-panel strong {
  display: block;
  margin-bottom: 3px;
  color: var(--ink);
  font-family: var(--display);
  font-size: 18px;
}

.faq {
  width: min(calc(100% - 40px), 1040px);
  margin: auto;
  padding: 110px 0 120px;
}

.faq-heading {
  max-width: 780px;
  margin: 0 auto 54px;
  text-align: center;
}

.faq-heading h2 {
  font-size: clamp(44px, 5vw, 65px);
  font-weight: 650;
  line-height: .97;
}

.faq-list { border-top: 1px solid var(--ink); }

.faq-list details { border-bottom: 1px solid var(--line); }

.faq-list summary {
  position: relative;
  padding: 25px 58px 25px 6px;
  font-family: var(--display);
  font-size: 19px;
  font-weight: 650;
  line-height: 1.25;
  list-style: none;
  cursor: pointer;
}

.faq-list summary::-webkit-details-marker { display: none; }

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 8px;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  color: var(--white);
  content: "+";
  background: var(--blue);
  font-family: var(--mono);
  font-size: 16px;
  transform: translateY(-50%);
}

.faq-list details[open] summary::after {
  content: "−";
  background: var(--orange);
}

.faq-list details p {
  max-width: 790px;
  margin: -7px 0 0;
  padding: 0 58px 25px 6px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.final-cta {
  display: flex;
  gap: 0;
  align-items: center;
  padding: 104px max(24px, calc((100% - 1040px) / 2));
  flex-direction: column;
  color: var(--white);
  background: var(--blue);
  text-align: center;
}

.final-cta h2 {
  max-width: 820px;
  margin-top: 17px;
  font-size: clamp(43px, 5vw, 67px);
  font-weight: 650;
  line-height: .95;
}

.cta-underline {
  position: relative;
  display: inline-block;
  color: inherit;
}

.cta-underline::after {
  position: absolute;
  right: .02em;
  bottom: -.07em;
  left: .02em;
  height: .09em;
  content: "";
  background: var(--orange);
  transform: rotate(-.7deg);
  transform-origin: left center;
}

.final-cta-copy {
  max-width: 600px;
  margin: 25px auto 0;
  color: rgba(255,255,255,.78);
  font-size: 13px;
  line-height: 1.65;
}

.final-cta .button {
  min-width: 340px;
  min-height: 66px;
  margin-top: 30px;
  padding-right: 48px;
  padding-left: 48px;
  font-size: 15px;
}

.final-cta .button-light {
  color: var(--white);
  background: var(--orange);
}

.final-cta .button-light:hover {
  color: var(--white);
  background: #df6800;
}

.site-footer {
  display: flex;
  gap: 28px;
  align-items: center;
  width: min(calc(100% - 40px), var(--max));
  min-height: 108px;
  margin: auto;
}

.site-footer img { width: 118px; height: 52px; object-fit: contain; }
.site-footer p { margin: 0; color: var(--muted); font-size: 10px; }
.site-footer a { margin-left: auto; color: var(--blue); font-size: 10px; font-weight: 800; text-underline-offset: 4px; }

@media (max-width: 1050px) {
  .hero { grid-template-columns: minmax(0, .9fr) minmax(420px, .78fr); gap: 34px; }
  .mechanism { grid-template-columns: minmax(360px, .8fr) minmax(390px, 1.2fr); gap: 52px; }
  .offer-composition { grid-template-columns: minmax(360px, .9fr) minmax(380px, 1.1fr); }
  .included-panel { padding-right: 38px; padding-left: 38px; }
}

@media (max-width: 900px) {
  .site-header { height: 66px; }
  .header-inner { width: min(calc(100% - 28px), var(--max)); }
  .brand img { width: 132px; height: 48px; }
  .menu-toggle { display: block; }
  .site-nav {
    position: fixed;
    top: 66px;
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    max-height: 0;
    padding: 0 14px;
    overflow: hidden;
    border-bottom: 1px solid var(--line);
    background: var(--white);
    opacity: 0;
    pointer-events: none;
    transition: max-height 240ms var(--ease), opacity 160ms ease, padding 240ms var(--ease);
  }
  .site-nav.is-open { max-height: 310px; padding-top: 9px; padding-bottom: 14px; opacity: 1; pointer-events: auto; }
  .site-nav a { display: flex; align-items: center; min-height: 47px; border-bottom: 1px solid var(--line); }
  .site-nav .nav-cta { margin-top: 8px; border-bottom: 0; }

  .hero {
    grid-template-columns: minmax(0, .85fr) minmax(350px, 1.15fr);
    gap: 24px;
    width: min(calc(100% - 32px), 820px);
    min-height: min(720px, calc(100svh - 66px));
    padding: 28px 0 35px;
  }
  .hero h1 > span { font-size: clamp(50px, 7.8vw, 67px); }
  .hero h1 strong { margin-top: 14px; font-size: clamp(34px, 5vw, 44px); }
  .hero-lead { margin-top: 18px; font-size: 13px; }
  .hero-actions { align-items: stretch; gap: 10px; margin-top: 19px; flex-direction: column; }
  .hero-actions .button { width: 100%; min-height: 45px; }
  .hero-actions .text-link { justify-content: center; font-size: 10px; }
  .hero-keys { display: none; }
  .hero-media { height: min(570px, calc(100svh - 120px)); min-height: 490px; box-shadow: 12px 14px 0 var(--paper); }

  .mechanism { grid-template-columns: 1fr; }
  .mechanism-stage { position: relative; top: auto; height: 620px; }
  .mechanism-copy { padding-bottom: 0; }
  .mechanism-steps { display: grid; grid-template-columns: repeat(3, 1fr); }
  .mechanism-steps li { grid-template-columns: 1fr; gap: 12px; min-height: 0; padding: 34px 18px; border-right: 1px solid #33404e; }
  .mechanism-steps li:last-child { border-right: 0; }
  .catalog-grid { grid-template-columns: repeat(2, 1fr); }
  .offer-composition { grid-template-columns: 1fr; max-width: 690px; }
  .plan-panel { min-height: 470px; }
  .final-cta { padding-top: 88px; padding-bottom: 88px; }
}

@media (max-width: 620px) {
  html { scroll-padding-top: 68px; }
  .hero {
    grid-template-columns: 1fr;
    gap: 29px;
    width: min(calc(100% - 24px), 560px);
    min-height: 0;
    padding: 30px 0 52px;
  }
  .eyebrow { font-size: 8px; }
  .hero h1 > span { font-size: clamp(46px, 13.2vw, 57px); }
  .hero h1 strong { font-size: clamp(35px, 10.5vw, 43px); }
  .hero-lead { font-size: 14px; line-height: 1.55; }
  .hero-media { justify-self: stretch; width: 100%; height: 280px; min-height: 0; box-shadow: 8px 9px 0 var(--paper); }
  .thesis { padding: 78px 17px 69px; }
  .thesis h2 { font-size: 38px; }
  .section-heading { align-items: start; gap: 20px; flex-direction: column; }
  .section-heading h2 { font-size: 44px; }
  .mechanism { gap: 47px; padding: 78px 16px; }
  .mechanism-stage { height: 520px; min-height: 0; }
  .mechanism h2 { font-size: 42px; }
  .mechanism-progress { margin-top: 40px; }
  .mechanism-steps { grid-template-columns: 1fr; }
  .mechanism-steps li { grid-template-columns: 38px 1fr; gap: 12px; padding: 28px 0; border-right: 0; }
  .mechanism-steps strong { font-size: 24px; }
  .catalog { width: min(calc(100% - 24px), 560px); padding: 84px 0 90px; }
  .catalog-heading > p { margin-top: 3px; }
  .catalog-access-note { grid-template-columns: 1fr; gap: 10px; padding: 19px 18px; text-align: center; }
  .catalog-access-note a { justify-content: center; margin-top: 3px; }
  .catalog-grid { grid-template-columns: 1fr; }
  .collection-media { height: auto; aspect-ratio: 4 / 3; }
  .collection-title-row strong { font-size: 28px; }
  .collection-action { top: 15px; right: 54px; }
  .access-offer { padding: 78px 12px 86px; }
  .access-intro { margin-bottom: 39px; padding: 0 8px; }
  .access-intro h2 { font-size: 43px; }
  .access-intro > p:last-child { font-size: 13px; }
  .offer-composition { box-shadow: 8px 10px 0 rgba(9, 105, 218, .1); }
  .plan-panel { min-height: 0; padding: 52px 22px 43px; }
  .plan-price { margin-top: 38px; }
  .plan-price strong { font-size: 63px; }
  .offer-button { min-height: 55px; }
  .included-panel { padding: 39px 23px 32px; }
  .included-panel li { gap: 11px; padding: 21px 0; }
  .faq { width: min(calc(100% - 24px), 560px); padding: 82px 0 88px; }
  .faq-heading { margin-bottom: 39px; }
  .faq-heading h2 { font-size: 41px; }
  .faq-list summary { padding: 22px 49px 22px 2px; font-size: 17px; }
  .faq-list summary::after { right: 2px; }
  .faq-list details p { padding-right: 46px; padding-left: 2px; font-size: 12px; }
  .final-cta { padding: 72px 24px; }
  .final-cta h2 { font-size: 43px; }
  .final-cta-copy { margin-top: 21px; font-size: 12px; }
  .final-cta .button {
    width: min(100%, 330px);
    min-width: 0;
    min-height: 64px;
    font-size: 14px;
  }
  .site-footer { align-items: flex-start; width: min(calc(100% - 24px), 560px); padding: 30px 0; flex-direction: column; }
  .site-footer a { margin-left: 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .scan-line { display: none; }
  .js .hero-copy,
  .js .hero-media { opacity: 1; transform: none; }
}

/* Eixo editorial central aprovado */
.hero-copy,
.mechanism-copy,
.collection-copy,
.catalog-note,
.site-footer { text-align: center; }

.hero h1 {
  align-items: center;
  margin-right: auto;
  margin-left: auto;
}

.hero-lead {
  margin-right: auto;
  margin-left: auto;
}

.hero-actions,
.hero-keys { justify-content: center; }

.hero-keys li {
  justify-content: center;
  text-align: center;
}

.section-heading {
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.section-heading > p {
  max-width: none;
  margin: 0;
}

.mechanism-copy header { margin-right: auto; margin-left: auto; }

.mechanism-steps li {
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
}

.mechanism-steps p {
  margin-right: auto;
  margin-left: auto;
}

.catalog-toolbar { justify-content: center; }

.collection-title-row {
  position: relative;
  justify-content: center;
}

.collection-title-row i {
  position: absolute;
  right: 0;
}

.collection-description {
  margin-right: auto;
  margin-left: auto;
}

.site-footer {
  justify-content: center;
  min-height: 150px;
  padding: 26px 0;
  flex-direction: column;
}

.site-footer a { margin-left: 0; }

@media (max-width: 620px) {
  .mechanism-steps li { grid-template-columns: 1fr; }
  .catalog-toolbar { justify-content: flex-start; }
  .site-footer { align-items: center; }
}

/* Faixa de conversão após a primeira dobra */
.hero-access-band {
  min-height: 76px;
  padding: 17px max(24px, calc((100vw - var(--max)) / 2));
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  color: var(--white);
  background: var(--ink);
}

.hero-access-band p {
  margin: 0;
  font-size: clamp(15px, 1.4vw, 19px);
  font-weight: 650;
  letter-spacing: -.025em;
}

.hero-access-band a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--orange);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .045em;
  text-transform: uppercase;
  white-space: nowrap;
}

.hero-access-band a span {
  color: var(--white);
  font-size: 15px;
  transition: transform 150ms var(--ease);
}

.hero-access-band a:hover span { transform: translateX(4px); }

@media (max-width: 620px) {
  .hero-access-band {
    min-height: 96px;
    padding: 17px 20px;
    flex-direction: column;
    gap: 5px;
    text-align: center;
  }

  .hero-access-band p {
    max-width: 310px;
    font-size: 15px;
    line-height: 1.35;
  }

  .hero-access-band a {
    font-size: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-access-band a span { transition: none; }
}
