:root {
  color-scheme: light;
  --page: #f7f2e8;
  --paper: #fffdf8;
  --ink: #142b3d;
  --muted: #5e6b72;
  --line: rgba(20, 43, 61, 0.18);
  --accent: #c43d32;
  --accent-ink: #ffffff;
  --secondary: #19384f;
  --soft: #efe7d8;
  --shadow: 0 22px 70px rgba(20, 43, 61, 0.15);
  --radius: 18px;
  --display: "Arial Narrow", "Roboto Condensed", "Franklin Gothic Medium", Arial, sans-serif;
  --body: Georgia, "Times New Roman", serif;
  --label: "Courier New", Courier, monospace;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}

body {
  margin: 0;
  background: var(--page);
  color: var(--ink);
  font-family: var(--body);
  font-size: 18px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: 0.35;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.06'/%3E%3C/svg%3E");
}

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

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

a {
  color: inherit;
}

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 10px 16px;
  background: var(--ink);
  color: #fff;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

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

.narrow {
  width: min(calc(100% - 40px), 820px);
  margin-inline: auto;
}

.eyebrow,
.section-code,
.nav-mark,
.micro,
.stat-label {
  font-family: var(--label);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.35;
  text-transform: uppercase;
}

.eyebrow,
.section-code {
  color: var(--accent);
}

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

h1,
h2,
h3 {
  font-family: var(--display);
  line-height: 0.98;
  text-wrap: balance;
}

h1 {
  max-width: 940px;
  margin-bottom: 26px;
  font-size: clamp(3.2rem, 8.4vw, 7.7rem);
  letter-spacing: -0.045em;
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(2.35rem, 5.4vw, 5.2rem);
  letter-spacing: -0.035em;
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(1.35rem, 2.6vw, 2rem);
  line-height: 1.08;
}

.lede {
  max-width: 720px;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  line-height: 1.55;
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--page) 88%, transparent);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.nav-inner {
  display: flex;
  min-height: 70px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.nav-mark {
  text-decoration: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  font-family: var(--display);
  font-size: 0.92rem;
  font-weight: 700;
}

.nav-links a:not(.button) {
  text-decoration: none;
}

.nav-links a:not(.button):hover {
  color: var(--accent);
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  border: 2px solid var(--accent);
  border-radius: 999px;
  background: var(--accent);
  color: var(--accent-ink);
  font-family: var(--display);
  font-size: 0.96rem;
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  box-shadow: 0 12px 30px color-mix(in srgb, var(--accent) 28%, transparent);
  transform: translateY(-2px);
}

.button.secondary {
  border-color: var(--ink);
  background: transparent;
  color: var(--ink);
}

.button.secondary:hover {
  background: var(--ink);
  color: var(--paper);
}

.button.small {
  min-height: 44px;
  padding: 9px 17px;
  font-size: 0.82rem;
}

.button.wide {
  width: 100%;
}

.hero {
  position: relative;
  overflow: clip;
  padding: clamp(64px, 9vw, 125px) 0 80px;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -10vw -25vw auto;
  width: 48vw;
  aspect-ratio: 1;
  border: 1px solid var(--line);
  border-radius: 50%;
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(310px, 0.62fr);
  align-items: center;
  gap: clamp(48px, 8vw, 100px);
}

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

.hero-copy .eyebrow {
  margin-bottom: 24px;
}

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

.trust-line {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 16px;
  color: var(--muted);
  font-family: var(--display);
  font-size: 0.88rem;
}

.trust-line span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.trust-line span::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}

.hero-object {
  position: relative;
  min-height: 620px;
}

.book-wrap {
  position: absolute;
  z-index: 3;
  inset: 0 auto auto 50%;
  width: min(86%, 390px);
  transform: translateX(-50%) rotate(2.2deg);
  transform-style: preserve-3d;
  animation: book-float 6s ease-in-out infinite;
}

.book-wrap::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 4% -4% -2% 5%;
  border-radius: 2px 8px 8px 2px;
  background: #ded8cb;
  box-shadow: var(--shadow);
  transform: translateZ(-1px);
}

.book-cover {
  width: 100%;
  height: auto;
  aspect-ratio: 2 / 3;
  object-fit: contain;
  border: 1px solid rgba(0, 0, 0, 0.16);
  box-shadow: 0 34px 60px rgba(14, 30, 42, 0.24);
}

.hero-scene {
  position: absolute;
  z-index: 1;
  inset: 12% -10% auto;
  height: 68%;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 50%;
  opacity: 0.88;
}

.scene-ledger {
  background: #efe7d8;
}

.scene-taller {
  background: #244ea0;
}

.motion-art {
  display: block;
  width: 100%;
  height: 100%;
}

.ledger-route {
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  animation: ledger-route-draw 7.2s cubic-bezier(0.65, 0, 0.35, 1) infinite;
}

.ledger-points circle {
  opacity: 0;
  transform-box: fill-box;
  transform-origin: center;
  animation: ledger-point 7.2s ease-in-out infinite;
}

.ledger-points circle:nth-child(2) {
  animation-delay: 0.35s;
}

.ledger-points circle:nth-child(3) {
  animation-delay: 0.7s;
}

.ledger-register {
  transform-box: fill-box;
  transform-origin: center;
  animation: ledger-register 4.8s ease-in-out infinite;
}

.register-b {
  animation-delay: -2.4s;
}

.ledger-card {
  transform-box: fill-box;
  transform-origin: center;
  animation: ledger-card-shift 7.2s ease-in-out infinite;
}

.card-two {
  animation-delay: -3.6s;
}

.ledger-scan {
  animation: ledger-scan 7.2s cubic-bezier(0.65, 0, 0.35, 1) infinite;
}

.taller-thread {
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  animation: taller-thread-draw 8s cubic-bezier(0.65, 0, 0.35, 1) infinite;
}

.taller-arc,
.taller-portal,
.taller-tile,
.taller-counter,
.taller-registration {
  transform-box: fill-box;
  transform-origin: center;
  will-change: transform;
}

.taller-arc {
  animation: taller-arc-arrive 8s cubic-bezier(0.34, 1.3, 0.64, 1) infinite;
}

.taller-portal {
  animation: taller-portal-arrive 8s cubic-bezier(0.34, 1.3, 0.64, 1) infinite;
}

.taller-tile {
  animation: taller-tile-arrive 8s cubic-bezier(0.34, 1.3, 0.64, 1) infinite;
}

.taller-counter {
  animation: taller-counter-orbit 8s cubic-bezier(0.65, 0, 0.35, 1) infinite;
}

.taller-registration {
  animation: taller-registration 8s ease-in-out infinite;
}

.metrics-strip {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-block: 1px solid var(--line);
  background: color-mix(in srgb, var(--paper) 76%, transparent);
}

.metric {
  padding: 27px 24px;
  border-right: 1px solid var(--line);
  text-align: center;
}

.metric:last-child {
  border-right: 0;
}

.metric strong {
  display: block;
  margin-bottom: 4px;
  font-family: var(--display);
  font-size: clamp(1.7rem, 3vw, 2.7rem);
  line-height: 1;
}

.metric span {
  color: var(--muted);
  font-family: var(--display);
  font-size: 0.83rem;
  font-weight: 700;
}

section {
  padding: clamp(78px, 10vw, 145px) 0;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(280px, 0.42fr);
  align-items: end;
  gap: 48px;
  margin-bottom: 58px;
}

.section-head h2 {
  margin-bottom: 0;
}

.section-head p {
  margin-bottom: 5px;
  color: var(--muted);
}

.problem-grid,
.value-grid,
.fit-grid,
.audience-grid {
  display: grid;
  gap: 20px;
}

.problem-grid {
  grid-template-columns: repeat(3, 1fr);
}

.card {
  position: relative;
  overflow: hidden;
  min-height: 270px;
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.card::after {
  content: attr(data-number);
  position: absolute;
  right: 22px;
  bottom: -18px;
  color: color-mix(in srgb, var(--ink) 8%, transparent);
  font-family: var(--display);
  font-size: 8rem;
  font-weight: 900;
  line-height: 1;
}

.card p {
  position: relative;
  z-index: 1;
  color: var(--muted);
}

.mechanism {
  overflow: hidden;
  background: var(--ink);
  color: var(--paper);
}

.mechanism .section-code,
.mechanism .eyebrow {
  color: color-mix(in srgb, var(--accent) 65%, white);
}

.mechanism-map {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  margin-top: 56px;
}

.mechanism-step {
  position: relative;
  min-height: 210px;
  padding: 28px 22px;
  border-block: 1px solid rgba(255, 255, 255, 0.2);
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.mechanism-step:first-child {
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.mechanism-step::after {
  content: "→";
  position: absolute;
  z-index: 2;
  top: 50%;
  right: -16px;
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 50%;
  background: var(--accent);
  color: var(--accent-ink);
  font-family: Arial, sans-serif;
  transform: translateY(-50%);
}

.mechanism-step:last-child::after {
  display: none;
}

.mechanism-step span {
  display: block;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.55);
  font-family: var(--label);
  font-size: 0.72rem;
}

.mechanism-step strong {
  display: block;
  font-family: var(--display);
  font-size: 1.18rem;
  line-height: 1.08;
}

.fit-check {
  background: var(--soft);
}

.fit-grid {
  grid-template-columns: minmax(0, 0.72fr) minmax(330px, 0.45fr);
  align-items: start;
}

.fit-options {
  display: grid;
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
  gap: 12px;
}

.fit-option {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 14px;
  align-items: start;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: var(--paper);
  cursor: pointer;
  transition: border-color 150ms ease, transform 150ms ease;
}

.fit-option:hover {
  border-color: var(--accent);
  transform: translateX(3px);
}

.fit-option input {
  width: 20px;
  height: 20px;
  margin-top: 4px;
  accent-color: var(--accent);
}

.fit-result {
  position: sticky;
  top: 100px;
  min-height: 310px;
  padding: 34px;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 9px 9px 0 var(--accent);
}

.fit-score {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 20px;
  font-family: var(--display);
}

.fit-score strong {
  font-size: 4.5rem;
  line-height: 1;
}

.fit-result p {
  color: var(--muted);
}

.pathway {
  position: relative;
  overflow: hidden;
  background: var(--paper);
}

.pathway::before {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, transparent 49.8%, color-mix(in srgb, var(--line) 55%, transparent) 50%, transparent 50.2%);
  background-size: 38px 100%;
  content: "";
  opacity: 0.24;
  pointer-events: none;
}

.path-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.path-card {
  position: relative;
  min-height: 330px;
  padding: 36px 36px 112px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.path-card h3 {
  max-width: 16ch;
  margin-bottom: 16px;
  font-family: var(--display);
  font-size: clamp(1.7rem, 3vw, 2.65rem);
  line-height: 1.02;
}

.path-card p:not(.eyebrow) {
  max-width: 55ch;
}

.path-card .button,
.path-card .text-link {
  position: absolute;
  right: 36px;
  bottom: 34px;
  left: 36px;
}

.path-card-primary {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--paper);
  box-shadow: 10px 10px 0 var(--accent);
}

.path-card-primary p {
  color: color-mix(in srgb, var(--paper) 75%, transparent);
}

.path-card-primary .eyebrow {
  color: var(--accent);
}

.path-card-secondary {
  background: var(--soft);
}

.path-number {
  position: absolute;
  top: 26px;
  right: 28px;
  color: color-mix(in srgb, var(--ink) 18%, transparent);
  font-family: var(--display);
  font-size: 4rem;
  font-weight: 800;
  line-height: 1;
}

.path-card-primary .path-number {
  color: color-mix(in srgb, var(--paper) 15%, transparent);
}

.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 15px;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-family: var(--label);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
}

.text-link:hover {
  color: var(--accent);
}

.path-note {
  position: relative;
  max-width: 820px;
  margin: 28px auto 0;
  color: var(--muted);
  font-size: 0.84rem;
  text-align: center;
}

.preview-stage {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
}

.preview-page {
  position: relative;
  overflow: hidden;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fff;
  box-shadow: 0 18px 60px rgba(22, 37, 48, 0.12);
  transition: transform 250ms ease, box-shadow 250ms ease;
}

.preview-page:nth-child(2) {
  margin-top: 55px;
}

.preview-page:hover {
  z-index: 3;
  box-shadow: 0 28px 80px rgba(22, 37, 48, 0.22);
  transform: translateY(-8px) rotate(-0.7deg);
}

.preview-page img {
  width: 100%;
  height: auto;
  aspect-ratio: 2 / 3;
  object-fit: contain;
}

.preview-caption {
  margin: 15px 4px 2px;
  color: var(--muted);
  font-family: var(--display);
  font-size: 0.82rem;
  font-weight: 700;
}

.value-grid {
  grid-template-columns: repeat(2, 1fr);
}

.value-item {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  padding: 24px;
  border-top: 1px solid var(--line);
}

.value-icon {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  color: var(--accent);
  font-family: var(--label);
  font-size: 0.75rem;
  font-weight: 700;
}

.value-item p {
  margin-bottom: 0;
  color: var(--muted);
}

.audience-grid {
  grid-template-columns: repeat(2, 1fr);
}

.audience-panel {
  padding: clamp(30px, 5vw, 54px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.audience-panel.no {
  background: transparent;
}

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

.check-list li {
  position: relative;
  padding-left: 32px;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-family: Arial, sans-serif;
  font-weight: 900;
}

.audience-panel.no .check-list li::before {
  content: "×";
}

.offer {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: var(--paper);
}

.offer::before {
  content: "";
  position: absolute;
  top: -180px;
  right: -100px;
  width: 420px;
  aspect-ratio: 1;
  border: 90px solid var(--accent);
  border-radius: 50%;
  opacity: 0.24;
}

.offer-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(260px, 0.55fr) minmax(0, 0.75fr);
  align-items: center;
  gap: clamp(48px, 8vw, 110px);
}

.offer-book {
  width: min(100%, 390px);
  height: auto;
  aspect-ratio: 2 / 3;
  object-fit: contain;
  margin-inline: auto;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.38);
  transform: rotate(-2deg);
}

.offer .eyebrow {
  color: color-mix(in srgb, var(--accent) 62%, white);
}

.offer h2 {
  font-size: clamp(2.8rem, 6vw, 5.8rem);
}

.price-line {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 14px;
  margin: 28px 0;
}

.price {
  font-family: var(--display);
  font-size: clamp(3.5rem, 7vw, 6rem);
  font-weight: 900;
  line-height: 1;
}

.price-note {
  max-width: 260px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.86rem;
}

.offer .button {
  background: var(--accent);
}

.security-note {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.68);
  font-family: var(--display);
  font-size: 0.8rem;
}

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

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

.faq-list summary {
  display: flex;
  min-height: 86px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 4px;
  font-family: var(--display);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 800;
  line-height: 1.2;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary::after {
  content: "+";
  display: grid;
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  font-family: Arial, sans-serif;
}

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

.faq-answer {
  max-width: 780px;
  padding: 0 4px 28px;
  color: var(--muted);
}

.final-cta {
  text-align: center;
}

.final-cta h2 {
  max-width: 960px;
  margin-inline: auto;
}

.final-cta .lede {
  margin-inline: auto;
}

.final-cta .hero-actions {
  justify-content: center;
}

.site-footer {
  padding: 44px 0 90px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-family: var(--display);
  font-size: 0.78rem;
  line-height: 1.6;
}

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

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 24px;
}

.footer-links a,
.nav-mark {
  display: inline-flex;
  min-height: 24px;
  align-items: center;
}

.sticky-buy {
  position: fixed;
  z-index: 70;
  right: 18px;
  bottom: 18px;
  display: flex;
  max-width: 370px;
  align-items: center;
  gap: 14px;
  padding: 12px 12px 12px 17px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: color-mix(in srgb, var(--paper) 92%, transparent);
  box-shadow: 0 18px 55px rgba(20, 43, 61, 0.22);
  opacity: 0;
  pointer-events: none;
  transform: translateY(22px);
  transition: opacity 180ms ease, transform 180ms ease;
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.sticky-buy.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.sticky-buy strong {
  display: block;
  font-family: var(--display);
  font-size: 0.85rem;
  line-height: 1.1;
}

.sticky-buy span {
  display: block;
  color: var(--muted);
  font-family: var(--display);
  font-size: 0.72rem;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms ease, transform 600ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

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

.theme-taller {
  --page: #fff8ec;
  --paper: #fffdf8;
  --ink: #173d7a;
  --muted: #56698a;
  --line: rgba(23, 61, 122, 0.2);
  --accent: #ef6548;
  --accent-ink: #fffaf0;
  --secondary: #2957a8;
  --soft: #f7e4c8;
  --display: "Bodoni MT", Didot, "Times New Roman", serif;
  --body: "Avenir Next", Avenir, "Segoe UI", Arial, sans-serif;
  --label: "Courier New", Courier, monospace;
}

.theme-taller h1,
.theme-taller h2 {
  letter-spacing: -0.055em;
}

.theme-taller .nav-links,
.theme-taller .button,
.theme-taller .metric span,
.theme-taller .preview-caption,
.theme-taller .site-footer,
.theme-taller .sticky-buy strong,
.theme-taller .sticky-buy span {
  font-family: "Avenir Next", Avenir, "Segoe UI", Arial, sans-serif;
}

.theme-taller .card,
.theme-taller .audience-panel,
.theme-taller .fit-result {
  border-radius: 36px 12px 36px 12px;
}

.theme-taller .card:nth-child(2) {
  background: #f7d7cf;
}

.theme-taller .card:nth-child(3) {
  background: #f8e7bd;
}

.theme-taller .mechanism {
  background: #214488;
}

.theme-taller .mechanism-step:nth-child(odd) {
  background: rgba(255, 255, 255, 0.05);
}

.theme-ledger .hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: linear-gradient(rgba(25, 56, 79, 0.055) 1px, transparent 1px), linear-gradient(90deg, rgba(25, 56, 79, 0.055) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: linear-gradient(to bottom, black 20%, transparent 88%);
}

.theme-ledger .card {
  border-radius: 2px;
}

.theme-ledger .button {
  border-radius: 3px;
}

.theme-ledger .preview-page {
  border-radius: 1px;
}

@keyframes book-float {
  0%, 100% { transform: translateX(-50%) translateY(0) rotate(2.2deg); }
  50% { transform: translateX(-50%) translateY(-12px) rotate(1.2deg); }
}

@keyframes ledger-route-draw {
  0%, 9% { opacity: 0.15; stroke-dashoffset: 1; }
  54%, 76% { opacity: 1; stroke-dashoffset: 0; }
  100% { opacity: 0.15; stroke-dashoffset: -1; }
}

@keyframes ledger-point {
  0%, 28%, 100% { opacity: 0; transform: scale(0.6); }
  40%, 72% { opacity: 1; transform: scale(1); }
}

@keyframes ledger-register {
  0%, 100% { opacity: 0.55; transform: rotate(-4deg) scale(0.94); }
  50% { opacity: 1; transform: rotate(4deg) scale(1.04); }
}

@keyframes ledger-card-shift {
  0%, 100% { opacity: 0.68; transform: translateY(8px); }
  38%, 68% { opacity: 1; transform: translateY(-5px); }
}

@keyframes ledger-scan {
  0%, 10% { opacity: 0; transform: translateX(0) skewX(-12deg); }
  18% { opacity: 0.2; }
  64% { opacity: 0.12; transform: translateX(960px) skewX(-12deg); }
  65%, 100% { opacity: 0; transform: translateX(960px) skewX(-12deg); }
}

@keyframes taller-thread-draw {
  0%, 12% { opacity: 0.1; stroke-dashoffset: 1; }
  52%, 76% { opacity: 0.65; stroke-dashoffset: 0; }
  100% { opacity: 0.1; stroke-dashoffset: -1; }
}

@keyframes taller-arc-arrive {
  0%, 100% { transform: translate(116px, -84px) rotate(18deg) scale(0.82); }
  24%, 72% { transform: translate(0, 0) rotate(0) scale(1); }
}

@keyframes taller-portal-arrive {
  0%, 100% { transform: translate(-112px, 76px) rotate(-7deg); }
  28%, 72% { transform: translate(0, 0) rotate(0); }
}

@keyframes taller-tile-arrive {
  0%, 100% { transform: translate(128px, 66px) rotate(8deg); }
  34%, 72% { transform: translate(0, 0) rotate(0); }
}

@keyframes taller-counter-orbit {
  0%, 100% { transform: translate(46px, 38px) scale(0.7); }
  38%, 70% { transform: translate(0, 0) scale(1); }
  52% { transform: translate(-9px, -5px) scale(1.08); }
}

@keyframes taller-registration {
  0%, 100% { opacity: 0.18; transform: rotate(-18deg) scale(0.72); }
  40%, 70% { opacity: 0.7; transform: rotate(0) scale(1); }
}

@media (max-width: 940px) {
  .nav-links a:not(.button) {
    display: none;
  }

  .hero-grid,
  .section-head,
  .fit-grid,
  .offer-grid {
    grid-template-columns: 1fr;
  }

  .hero-object {
    min-height: 580px;
  }

  .book-wrap {
    width: min(70%, 390px);
  }

  .hero-scene {
    inset-inline: 5%;
    width: 90%;
  }

  .problem-grid {
    grid-template-columns: 1fr;
  }

  .card {
    min-height: 220px;
  }

  .mechanism-map {
    grid-template-columns: repeat(3, 1fr);
  }

  .mechanism-step:nth-child(3)::after {
    display: none;
  }

  .fit-result {
    position: static;
  }

  .path-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  body {
    font-size: 17px;
  }

  .eyebrow,
  .section-code,
  .nav-mark {
    font-size: 0.75rem;
  }

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

  .site-nav .button.small {
    display: none;
  }

  h1 {
    font-size: clamp(3.05rem, 15.5vw, 5.2rem);
  }

  .hero {
    padding-top: 54px;
  }

  .hero-actions {
    display: grid;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-object {
    min-height: 490px;
  }

  .book-wrap {
    width: min(75%, 330px);
  }

  .metrics-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .metric:nth-child(2) {
    border-right: 0;
  }

  .metric:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }

  .mechanism-map {
    grid-template-columns: 1fr 1fr;
  }

  .mechanism-step:nth-child(2n)::after {
    display: none;
  }

  .preview-stage {
    display: flex;
    width: calc(100% + 28px);
    margin-left: -14px;
    padding: 0 14px 24px;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .preview-page {
    flex: 0 0 78vw;
    scroll-snap-align: center;
  }

  .preview-page:nth-child(2) {
    margin-top: 0;
  }

  .path-card {
    min-height: 360px;
    padding: 28px 28px 106px;
  }

  .path-card .button,
  .path-card .text-link {
    right: 28px;
    bottom: 28px;
    left: 28px;
  }

  .value-grid,
  .audience-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .sticky-buy {
    right: 10px;
    bottom: 10px;
    left: 10px;
    max-width: none;
    justify-content: space-between;
    border-radius: 16px;
  }

  .sticky-buy .button {
    min-height: 44px;
    padding: 10px 15px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

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

  .motion-art * {
    animation: none !important;
  }

  .ledger-route,
  .taller-thread {
    opacity: 0.8;
    stroke-dashoffset: 0;
  }
}

/* English direct-sale funnel */
.bundle-section {
  position: relative;
  background: color-mix(in srgb, var(--soft) 74%, var(--paper));
  overflow: hidden;
}

.bundle-section::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(color-mix(in srgb, var(--line) 42%, transparent) 1px, transparent 1px),
    linear-gradient(90deg, color-mix(in srgb, var(--line) 42%, transparent) 1px, transparent 1px);
  background-size: 42px 42px;
  content: "";
  opacity: 0.25;
  pointer-events: none;
}

.bundle-section .container {
  position: relative;
}

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

.bundle-card {
  position: relative;
  min-height: 390px;
  padding: 32px;
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--paper) 94%, transparent);
  box-shadow: 0 18px 46px rgba(23, 54, 78, 0.08);
  overflow: hidden;
}

.bundle-visual,
.funnel-product-visual {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 14 / 9;
  object-fit: cover;
  border: 1px solid rgba(23, 54, 78, 0.2);
  background: var(--paper);
}

.bundle-visual {
  margin: -1.25rem -1.25rem 1.1rem;
  width: calc(100% + 2.5rem);
  max-width: none;
}

.funnel-product-visual {
  margin-bottom: clamp(1.25rem, 2vw, 2rem);
  box-shadow: 0 16px 40px rgba(23, 54, 78, 0.1);
}

.bundle-card h3 {
  max-width: 15ch;
  margin: 14px 0;
  font-family: var(--display);
  font-size: clamp(1.55rem, 2.2vw, 2.15rem);
  line-height: 1.05;
}

.bundle-card > p:not(.eyebrow) {
  color: var(--muted);
}

.bundle-number {
  position: absolute;
  top: 20px;
  right: 22px;
  color: color-mix(in srgb, var(--ink) 12%, transparent);
  font-family: var(--display);
  font-size: 4rem;
  font-weight: 800;
  line-height: 1;
}

.bundle-card .compact-list {
  margin-top: 22px;
}

.bundle-card-summary {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-color: var(--ink);
  background: var(--ink);
  color: var(--paper);
  box-shadow: 9px 9px 0 var(--accent);
}

.bundle-card-summary p:not(.eyebrow) {
  color: color-mix(in srgb, var(--paper) 76%, transparent);
}

.bundle-card-summary .button {
  margin-top: 22px;
  border-color: var(--paper);
  color: var(--paper);
}

.offer-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px 24px;
}

.funnel-step-page {
  min-height: 100vh;
  background:
    linear-gradient(90deg, color-mix(in srgb, var(--line) 22%, transparent) 1px, transparent 1px),
    linear-gradient(color-mix(in srgb, var(--line) 22%, transparent) 1px, transparent 1px),
    var(--paper);
  background-size: 48px 48px;
}

.funnel-step-page .site-nav {
  background: color-mix(in srgb, var(--paper) 94%, transparent);
}

.checkout-stage {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.checkout-main {
  padding: 76px 0 110px;
}

.checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.72fr);
  align-items: start;
  gap: clamp(42px, 7vw, 100px);
}

.checkout-copy h1,
.step-hero h1,
.completion-hero h1 {
  margin: 12px 0 24px;
  font-size: clamp(3rem, 6vw, 6.2rem);
  line-height: 0.94;
}

.checkout-benefits {
  display: flex;
  flex-wrap: wrap;
  margin: 34px 0;
  gap: 10px;
}

.checkout-benefits span,
.bump-proof span,
.system-sequence span {
  padding: 8px 10px;
  border: 1px solid var(--line);
  background: var(--soft);
  color: var(--ink);
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.bump-card {
  margin: 42px 0;
  border: 2px solid var(--ink);
  background: var(--paper);
  box-shadow: 8px 8px 0 var(--accent);
}

.bump-fieldset {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.bump-control {
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: start;
  padding: 28px;
  gap: 15px;
  cursor: pointer;
}

.bump-control input {
  position: absolute;
  width: 1px;
  height: 1px;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  overflow: hidden;
  white-space: nowrap;
}

.bump-check {
  display: grid;
  width: 24px;
  height: 24px;
  border: 2px solid var(--ink);
  place-items: center;
}

.bump-control input:checked + .bump-check {
  border-color: var(--accent);
  background: var(--accent);
}

.bump-control input:checked + .bump-check::after {
  color: var(--paper);
  content: "✓";
  font-weight: 900;
}

.bump-control input:focus-visible + .bump-check {
  outline: 3px solid var(--accent);
  outline-offset: 4px;
}

.bump-control strong {
  display: block;
  margin-bottom: 8px;
  font-family: var(--display);
  font-size: 1.25rem;
}

.bump-control small {
  display: block;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.bump-proof {
  display: flex;
  flex-wrap: wrap;
  padding: 18px 28px 24px;
  border-top: 1px solid var(--line);
  gap: 8px;
}

.checkout-next {
  margin-top: 58px;
}

.checkout-next h2 {
  margin-bottom: 22px;
  font-size: clamp(2rem, 4vw, 3.6rem);
}

.numbered-steps {
  display: grid;
  padding: 0;
  gap: 1px;
  list-style: none;
}

.numbered-steps li {
  display: grid;
  grid-template-columns: 58px 1fr;
  padding: 22px;
  background: var(--soft);
  gap: 16px;
}

.numbered-steps li > span {
  color: var(--accent);
  font-family: var(--mono);
}

.numbered-steps p {
  margin: 4px 0 0;
  color: var(--muted);
}

.order-card,
.decision-card {
  position: sticky;
  top: 100px;
  padding: 28px;
  border: 1px solid var(--line);
  background: var(--paper);
  box-shadow: 0 30px 80px rgba(23, 54, 78, 0.16);
}

.order-card > img {
  width: min(100%, 230px);
  height: auto;
  aspect-ratio: 2 / 3;
  margin: -62px auto 28px;
  object-fit: contain;
  border: 7px solid var(--ink);
  box-shadow: 0 22px 42px rgba(23, 54, 78, 0.2);
  transform: rotate(1.5deg);
}

.order-card h2 {
  margin: 8px 0 18px;
  font-size: 2rem;
  line-height: 1.02;
}

.compact-list {
  display: grid;
  margin: 0;
  padding: 0;
  gap: 9px;
  list-style: none;
}

.compact-list li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
}

.compact-list li::before {
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  content: "";
}

.order-line,
.order-total {
  display: flex;
  justify-content: space-between;
  padding: 15px 0;
  border-top: 1px solid var(--line);
  gap: 20px;
}

.order-line:first-of-type {
  margin-top: 24px;
}

.order-total {
  margin-bottom: 20px;
  color: var(--ink);
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 800;
}

.order-alternative {
  display: inline-block;
  margin-top: 20px;
}

.button.is-disabled,
.button[aria-disabled="true"] {
  border-color: var(--line);
  background: var(--line);
  color: var(--muted);
  box-shadow: none;
  cursor: not-allowed;
  pointer-events: none;
}

.checkout-status {
  margin: 14px 0 0;
  padding: 12px;
  border-left: 3px solid var(--accent);
  background: var(--soft);
  color: var(--muted);
  font-size: 0.84rem;
}

.compact-footer {
  padding-bottom: 42px;
}

.step-hero,
.completion-hero {
  padding: clamp(84px, 12vw, 150px) 0 clamp(62px, 9vw, 110px);
  text-align: center;
}

.step-hero .lede,
.completion-hero .lede {
  margin-inline: auto;
}

.compact-step-hero h1 {
  font-size: clamp(2.8rem, 5.3vw, 5.5rem);
}

.funnel-offer-section {
  padding-top: 32px;
}

.funnel-offer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(330px, 0.7fr);
  align-items: start;
  gap: clamp(38px, 7vw, 96px);
}

.funnel-offer-grid > div > h2 {
  margin: 12px 0 24px;
}

.system-sequence {
  display: flex;
  flex-wrap: wrap;
  margin: 30px 0;
  gap: 7px;
}

.included-file-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.included-file-grid article {
  padding: 24px;
  border: 1px solid var(--line);
  background: var(--paper);
}

.included-file-grid article > span {
  color: var(--accent);
  font-family: var(--mono);
  font-size: 0.78rem;
}

.included-file-grid h3 {
  margin: 12px 0 8px;
  font-size: 1.35rem;
}

.included-file-grid p {
  color: var(--muted);
}

.decision-price {
  display: flex;
  align-items: end;
  margin: 12px 0 24px;
  gap: 10px;
}

.decision-price strong {
  font-family: var(--display);
  font-size: 4.8rem;
  line-height: 0.9;
}

.decision-price span {
  color: var(--muted);
}

.decision-card .button {
  margin-top: 26px;
}

.decline-link {
  display: block;
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.86rem;
  text-align: center;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.narrow-offer-grid {
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.58fr);
}

.essentials-list {
  display: grid;
  gap: 16px;
}

.essentials-list article {
  display: grid;
  grid-template-columns: 86px 1fr;
  padding: 28px;
  border: 1px solid var(--line);
  background: var(--paper);
  gap: 20px;
}

.essentials-list article > span {
  color: var(--accent);
  font-family: var(--display);
  font-size: 2.5rem;
  font-weight: 800;
}

.essentials-list h2 {
  margin-bottom: 8px;
  font-size: 1.85rem;
}

.completion-mark {
  display: grid;
  width: 74px;
  height: 74px;
  margin: 0 auto 24px;
  border: 3px solid var(--ink);
  border-radius: 50%;
  color: var(--accent);
  font-family: var(--display);
  font-size: 2.5rem;
  font-weight: 900;
  place-items: center;
}

.completion-hero .button {
  margin-top: 22px;
}

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

.first-session-grid article {
  min-height: 250px;
  padding: 30px;
  border: 1px solid var(--line);
  background: var(--paper);
}

.first-session-grid article > span {
  color: var(--accent);
  font-family: var(--mono);
  font-size: 0.75rem;
}

.first-session-grid h2 {
  margin: 26px 0 12px;
  font-size: 2rem;
}

.support-panel {
  background: var(--ink);
  color: var(--paper);
  text-align: center;
}

.support-panel p {
  color: color-mix(in srgb, var(--paper) 74%, transparent);
}

.legal-main {
  padding: clamp(72px, 10vw, 120px) 0;
}

.legal-document {
  padding: clamp(28px, 5vw, 64px);
  border: 1px solid var(--line);
  background: var(--paper);
  box-shadow: 0 28px 76px rgba(23, 54, 78, 0.1);
}

.legal-document h1 {
  margin: 14px 0 42px;
  font-size: clamp(3.2rem, 7vw, 6.2rem);
  line-height: 0.95;
}

.legal-document h2 {
  margin: 34px 0 10px;
  font-size: 1.65rem;
}

.legal-document li {
  margin-bottom: 8px;
}

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

  .checkout-layout,
  .funnel-offer-grid,
  .narrow-offer-grid {
    grid-template-columns: 1fr;
  }

  .order-card,
  .decision-card {
    position: static;
    max-width: 620px;
    margin-inline: auto;
  }

  .order-card {
    margin-top: 60px;
  }
}

@media (max-width: 720px) {
  .bundle-grid,
  .included-file-grid,
  .first-session-grid {
    grid-template-columns: 1fr;
  }

  .bundle-card {
    min-height: auto;
  }

  .checkout-main {
    padding-top: 52px;
  }

  .checkout-copy h1,
  .step-hero h1,
  .completion-hero h1 {
    font-size: clamp(2.75rem, 13vw, 4.4rem);
  }

  .bump-control {
    padding: 22px;
  }

  .bump-proof {
    padding: 16px 22px 22px;
  }

  .order-card,
  .decision-card {
    padding: 22px;
  }

  .essentials-list article {
    grid-template-columns: 1fr;
  }

  .checkout-stage {
    display: none;
  }
}

/* --------------------------------------------------------------------------
   Funnel stage identities
   Each commercial decision has its own spatial system and motion language.
   -------------------------------------------------------------------------- */

/* 01 / CHECKOUT — a cool-grey decision desk with a moving route diagram. */
.checkout-page {
  --desk: #e8edf0;
  --desk-paper: #f9faf8;
  --desk-blue: #17364e;
  --desk-red: #c83d32;
  background: var(--desk);
  background-image:
    linear-gradient(rgba(23, 54, 78, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 54, 78, 0.055) 1px, transparent 1px);
  background-size: 24px 24px;
}

.checkout-page .checkout-nav {
  border-color: rgba(23, 54, 78, 0.22);
  background: color-mix(in srgb, var(--desk) 90%, transparent);
}

.checkout-page-hero {
  padding: clamp(70px, 9vw, 126px) 0 clamp(58px, 7vw, 96px);
  border-bottom: 1px solid rgba(23, 54, 78, 0.18);
}

.checkout-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(440px, 1.1fr);
  align-items: center;
  gap: clamp(42px, 7vw, 100px);
}

.checkout-intro-copy h1 {
  max-width: 720px;
  margin: 14px 0 24px;
  font-size: clamp(3.4rem, 6.7vw, 7.2rem);
  line-height: 0.9;
}

.checkout-intro-copy .lede {
  max-width: 650px;
}

.checkout-route-board {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  border: 2px solid var(--desk-blue);
  background:
    linear-gradient(rgba(23, 54, 78, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 54, 78, 0.08) 1px, transparent 1px),
    var(--desk-paper);
  background-size: 28px 28px;
  box-shadow: 14px 14px 0 var(--desk-blue);
}

.checkout-route-board::after {
  position: absolute;
  top: -20%;
  bottom: -20%;
  left: -22%;
  width: 17%;
  background: linear-gradient(90deg, transparent, rgba(200, 61, 50, 0.14), transparent);
  content: "";
  transform: skewX(-14deg);
  animation: checkout-scan 5.8s ease-in-out infinite;
}

.checkout-route-board svg {
  position: absolute;
  inset: 58px 24px 38px;
  width: calc(100% - 48px);
  height: calc(100% - 96px);
}

.route-line,
.route-pulse {
  fill: none;
  stroke: var(--desk-blue);
  stroke-linecap: round;
  stroke-width: 4;
}

.route-pulse {
  stroke: var(--desk-red);
  stroke-dasharray: 10 66;
  stroke-width: 7;
  animation: route-travel 3.4s linear infinite;
}

.route-kicker,
.route-note,
.route-node {
  position: absolute;
  z-index: 2;
  font-family: var(--label);
  text-transform: uppercase;
}

.route-kicker {
  top: 24px;
  left: 26px;
  color: var(--desk-red);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
}

.route-note {
  right: 22px;
  bottom: 18px;
  color: var(--muted);
  font-size: 0.64rem;
  letter-spacing: 0.09em;
}

.route-node {
  display: flex;
  min-width: 118px;
  align-items: center;
  padding: 10px 12px;
  border: 1px solid var(--desk-blue);
  background: var(--desk-paper);
  color: var(--desk-blue);
  gap: 8px;
  font-size: 0.67rem;
  letter-spacing: 0.06em;
  box-shadow: 4px 4px 0 rgba(23, 54, 78, 0.14);
}

.route-node b {
  color: var(--desk-red);
}

.route-node-main { top: 44%; left: 5%; }
.route-node-choice { top: 20%; left: 39%; }
.route-node-secure { right: 5%; bottom: 17%; }

.checkout-workbench {
  padding: clamp(74px, 9vw, 120px) 0;
  background: var(--desk-paper);
}

.checkout-page .checkout-layout {
  grid-template-columns: minmax(0, 1.08fr) minmax(370px, 0.62fr);
}

.module-heading {
  display: grid;
  max-width: 780px;
  grid-template-columns: 150px 1fr;
  align-items: start;
  margin-bottom: 30px;
  gap: 28px;
}

.module-heading h2 {
  margin: 0;
  font-size: clamp(2.5rem, 4.7vw, 4.7rem);
}

.checkout-page .bump-card {
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--desk-blue);
  background: #fff;
  box-shadow: none;
  transition: border-color 240ms ease, box-shadow 240ms ease, transform 240ms ease;
}

.checkout-page .bump-card:has(input:checked) {
  border-color: var(--desk-red);
  box-shadow: 10px 10px 0 var(--desk-red);
  transform: translate(-5px, -5px);
}

.bump-visual-wrap {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(23, 54, 78, 0.18);
}

.bump-visual-wrap .funnel-product-visual {
  transition: transform 520ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.bump-card:has(input:checked) .bump-visual-wrap .funnel-product-visual {
  transform: scale(1.035);
}

.bump-stamp {
  position: absolute;
  right: 18px;
  bottom: 18px;
  padding: 8px 10px;
  border: 2px solid var(--desk-red);
  background: var(--desk-paper);
  color: var(--desk-red);
  font-family: var(--label);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transform: rotate(-3deg);
}

.checkout-page .numbered-steps {
  counter-reset: checkout-step;
  border-top: 1px solid var(--desk-blue);
}

.checkout-page .numbered-steps li {
  border-bottom: 1px solid var(--desk-blue);
  background: transparent;
}

.checkout-page .order-card {
  overflow: hidden;
  padding: 0;
  border: 2px solid var(--desk-blue);
  background: #fff;
  box-shadow: 12px 12px 0 rgba(23, 54, 78, 0.18);
}

.order-card-topline {
  display: flex;
  justify-content: space-between;
  padding: 12px 18px;
  background: var(--desk-blue);
  color: #fff;
  font-family: var(--label);
  font-size: 0.64rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.checkout-page .order-card > img {
  width: 176px;
  margin: 26px auto;
  border: 0;
  box-shadow: 9px 10px 0 var(--desk-red);
  transform: rotate(-1.2deg);
}

.checkout-page .order-card > div:last-child {
  padding: 0 26px 28px;
}

.checkout-footer {
  background: var(--desk-blue);
  color: #fff;
}

@keyframes checkout-scan {
  0%, 12% { transform: translateX(0) skewX(-14deg); opacity: 0; }
  25% { opacity: 1; }
  72% { opacity: 1; }
  88%, 100% { transform: translateX(850%) skewX(-14deg); opacity: 0; }
}

@keyframes route-travel {
  to { stroke-dashoffset: -152; }
}

/* 02 / UPSELL — a dark client-operations control room with radar motion. */
.operations-page {
  --ops-dark: #10283a;
  --ops-ink: #eaf2f1;
  --ops-cyan: #73c9c3;
  --ops-orange: #ef704f;
  --ops-paper: #e8e2d7;
  background: var(--ops-dark);
  color: var(--ops-ink);
}

.operations-page::before {
  opacity: 0.18;
}

.operations-page .ops-nav {
  border-color: rgba(234, 242, 241, 0.16);
  background: color-mix(in srgb, var(--ops-dark) 90%, transparent);
  color: var(--ops-ink);
}

.operations-page .checkout-stage { color: rgba(234, 242, 241, 0.64); }

.ops-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(80px, 10vw, 150px) 0 clamp(70px, 8vw, 120px);
  background:
    radial-gradient(circle at 82% 44%, rgba(115, 201, 195, 0.16), transparent 25%),
    linear-gradient(rgba(234, 242, 241, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(234, 242, 241, 0.055) 1px, transparent 1px);
  background-size: auto, 46px 46px, 46px 46px;
}

.ops-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.78fr);
  align-items: center;
  gap: clamp(44px, 8vw, 120px);
}

.ops-hero-copy .eyebrow { color: var(--ops-orange); }

.ops-hero-copy h1 {
  max-width: 830px;
  margin: 14px 0 28px;
  font-size: clamp(4rem, 8.2vw, 8.6rem);
  line-height: 0.86;
}

.ops-hero-copy .lede {
  max-width: 650px;
  color: rgba(234, 242, 241, 0.75);
}

.ops-status-row {
  display: flex;
  flex-wrap: wrap;
  margin-top: 34px;
  gap: 12px 24px;
  color: rgba(234, 242, 241, 0.72);
  font-family: var(--label);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ops-status-row span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.ops-status-row i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ops-cyan);
  box-shadow: 0 0 0 4px rgba(115, 201, 195, 0.12);
}

.ops-radar {
  position: relative;
  width: min(100%, 500px);
  aspect-ratio: 1;
  margin-inline: auto;
  overflow: hidden;
  border: 1px solid rgba(234, 242, 241, 0.25);
  border-radius: 50%;
  background:
    linear-gradient(90deg, transparent 49.8%, rgba(234, 242, 241, 0.15) 50%, transparent 50.2%),
    linear-gradient(transparent 49.8%, rgba(234, 242, 241, 0.15) 50%, transparent 50.2%),
    radial-gradient(circle, rgba(115, 201, 195, 0.12), transparent 64%);
}

.radar-sweep {
  position: absolute;
  inset: -4%;
  border-radius: 50%;
  background: conic-gradient(from 210deg, transparent 0 72%, rgba(115, 201, 195, 0.38) 88%, transparent 96%);
  animation: radar-rotate 7s linear infinite;
}

.radar-ring {
  position: absolute;
  inset: 18%;
  border: 1px solid rgba(234, 242, 241, 0.24);
  border-radius: 50%;
}

.radar-ring-two { inset: 34%; }

.radar-ring-one::after,
.radar-ring-two::after {
  position: absolute;
  inset: -1px;
  border: 1px solid var(--ops-cyan);
  border-radius: 50%;
  content: "";
  animation: radar-ping 3.6s ease-out infinite;
}

.radar-ring-two::after { animation-delay: 1.2s; }

.ops-core {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 132px;
  height: 132px;
  border: 1px solid var(--ops-cyan);
  border-radius: 50%;
  background: var(--ops-dark);
  text-align: center;
  transform: translate(-50%, -50%);
  place-content: center;
}

.ops-core small,
.ops-core strong { font-family: var(--label); }
.ops-core small { color: var(--ops-cyan); font-size: 0.62rem; letter-spacing: 0.14em; text-transform: uppercase; }
.ops-core strong { margin-top: 5px; font-size: 1rem; line-height: 1.15; letter-spacing: 0.1em; }

.ops-node {
  position: absolute;
  padding: 7px 10px;
  border: 1px solid rgba(234, 242, 241, 0.3);
  background: color-mix(in srgb, var(--ops-dark) 88%, transparent);
  color: var(--ops-ink);
  font-family: var(--label);
  font-size: 0.64rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ops-node::before {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 7px;
  border-radius: 50%;
  background: var(--ops-orange);
  content: "";
  animation: node-blink 2.2s ease-in-out infinite;
}

.ops-node-one { top: 15%; left: 41%; }
.ops-node-two { top: 45%; right: 3%; }
.ops-node-three { right: 21%; bottom: 11%; }
.ops-node-four { left: 4%; bottom: 28%; }

.ops-sequence-section {
  padding: 0;
  border-block: 1px solid rgba(234, 242, 241, 0.15);
  background: #0b1f2d;
}

.ops-sequence-bar {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

.ops-sequence-bar span {
  display: grid;
  min-height: 94px;
  align-content: center;
  padding: 16px;
  border-right: 1px solid rgba(234, 242, 241, 0.12);
  font-family: var(--label);
  font-size: 0.65rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.ops-sequence-bar span:first-child { border-left: 1px solid rgba(234, 242, 241, 0.12); }
.ops-sequence-bar b { margin-bottom: 5px; color: var(--ops-cyan); }

.ops-offer-section {
  padding: clamp(76px, 10vw, 140px) 0;
  background: var(--ops-paper);
  color: #17364e;
}

.ops-offer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(340px, 0.56fr);
  align-items: start;
  gap: clamp(44px, 8vw, 110px);
}

.ops-product-frame {
  position: relative;
  margin-bottom: 34px;
  padding: 14px;
  border: 1px solid #17364e;
  background: #fff;
  box-shadow: 14px 14px 0 #17364e;
}

.ops-product-frame > span {
  position: absolute;
  right: 20px;
  bottom: 20px;
  padding: 7px 9px;
  background: #17364e;
  color: #fff;
  font-family: var(--label);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ops-system-details > h2 {
  max-width: 900px;
  margin: 12px 0 24px;
  font-size: clamp(3rem, 5.4vw, 5.7rem);
}

.ops-intro { max-width: 800px; color: #566775; }

.ops-module-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 42px;
  border-top: 1px solid #17364e;
  border-left: 1px solid #17364e;
}

.ops-module-grid article {
  min-height: 250px;
  padding: 24px;
  border-right: 1px solid #17364e;
  border-bottom: 1px solid #17364e;
}

.ops-module-grid article > span {
  color: var(--ops-orange);
  font-family: var(--label);
  font-size: 0.72rem;
}

.ops-module-grid h3 { margin: 48px 0 10px; font-size: 1.45rem; }
.ops-module-grid p { color: #566775; font-size: 0.95rem; }

.ops-decision-card {
  position: sticky;
  top: 98px;
  overflow: hidden;
  padding: 30px;
  background: var(--ops-dark);
  color: var(--ops-ink);
  box-shadow: 16px 16px 0 var(--ops-orange);
}

.ops-card-header {
  display: flex;
  justify-content: space-between;
  margin: -30px -30px 28px;
  padding: 14px 18px;
  border-bottom: 1px solid rgba(234, 242, 241, 0.18);
  font-family: var(--label);
  font-size: 0.64rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ops-card-header i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--ops-cyan);
  box-shadow: 0 0 0 5px rgba(115, 201, 195, 0.13);
  animation: node-blink 2s ease-in-out infinite;
}

.ops-decision-card .eyebrow { color: var(--ops-orange); }
.ops-decision-card .compact-list li { color: rgba(234, 242, 241, 0.76); }
.ops-decision-card .compact-list li::before { background: var(--ops-cyan); }
.ops-decision-card .decision-price span,
.ops-decision-card .decline-link,
.ops-decision-card .security-note { color: rgba(234, 242, 241, 0.62); }
.ops-decision-card .button { margin-top: 28px; border-color: var(--ops-orange); background: var(--ops-orange); }
.ops-footer { background: #081923; color: var(--ops-ink); }

@keyframes radar-rotate { to { transform: rotate(360deg); } }
@keyframes radar-ping {
  0% { opacity: 0.7; transform: scale(0.76); }
  80%, 100% { opacity: 0; transform: scale(1.28); }
}
@keyframes node-blink { 0%, 100% { opacity: 0.38; } 50% { opacity: 1; } }

/* 03 / DOWNSELL — a warm pocket-folder kit with fanned paper motion. */
.essentials-page {
  --kit-yellow: #f4c54c;
  --kit-coral: #ed6e52;
  --kit-ink: #1c3342;
  --kit-paper: #fff8e8;
  background: var(--kit-paper);
  color: var(--kit-ink);
}

.essentials-page .kit-nav {
  border-color: rgba(28, 51, 66, 0.18);
  background: color-mix(in srgb, var(--kit-yellow) 90%, transparent);
}

.kit-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(84px, 11vw, 160px) 0;
  background: var(--kit-yellow);
}

.kit-hero::before {
  position: absolute;
  top: -28%;
  right: -9%;
  width: 42vw;
  aspect-ratio: 1;
  border: 2px solid rgba(28, 51, 66, 0.2);
  border-radius: 50%;
  content: "";
}

.kit-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(400px, 0.75fr);
  align-items: center;
  gap: clamp(50px, 8vw, 120px);
}

.kit-hero-copy .eyebrow { color: var(--kit-ink); }

.kit-hero-copy h1 {
  max-width: 900px;
  margin: 14px 0 28px;
  font-size: clamp(3.5rem, 7.4vw, 8rem);
  line-height: 0.88;
}

.kit-folder {
  position: relative;
  min-height: 500px;
  perspective: 1000px;
}

.folder-tab {
  position: absolute;
  top: 0;
  left: 7%;
  z-index: 4;
  padding: 14px 24px;
  border: 2px solid var(--kit-ink);
  border-bottom: 0;
  border-radius: 16px 16px 0 0;
  background: var(--kit-coral);
  color: #fff;
  font-family: var(--label);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
}

.kit-sheet {
  position: absolute;
  right: 4%;
  bottom: 2%;
  display: grid;
  width: 76%;
  aspect-ratio: 0.77;
  padding: 28px;
  border: 2px solid var(--kit-ink);
  background:
    linear-gradient(rgba(28, 51, 66, 0.08) 1px, transparent 1px),
    var(--kit-paper);
  background-size: 100% 30px;
  box-shadow: 10px 12px 0 rgba(28, 51, 66, 0.15);
  transform-origin: 50% 100%;
}

.kit-sheet b {
  color: var(--kit-coral);
  font-family: var(--display);
  font-size: 4.5rem;
  line-height: 0.9;
}

.kit-sheet > span {
  align-self: end;
  font-family: var(--display);
  font-size: 2.2rem;
  font-weight: 800;
}

.kit-sheet small {
  align-self: end;
  font-family: var(--label);
  letter-spacing: 0.12em;
}

.kit-sheet-back { transform: rotate(9deg) translate(16px, -2px); animation: kit-back 5.8s ease-in-out infinite; }
.kit-sheet-middle { z-index: 2; transform: rotate(-6deg) translate(-13px, 5px); animation: kit-middle 5.8s ease-in-out infinite; }
.kit-sheet-front { z-index: 3; transform: rotate(1deg); }

.kit-boundary {
  padding: 0;
  background: var(--kit-ink);
  color: #fff;
}

.kit-boundary-grid {
  display: grid;
  grid-template-columns: 1fr 1.35fr 0.65fr;
}

.kit-boundary-grid > div {
  min-height: 118px;
  padding: 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.kit-boundary-grid > div:first-child { border-left: 1px solid rgba(255, 255, 255, 0.18); }
.kit-boundary-grid span { display: block; margin-bottom: 8px; color: var(--kit-yellow); font-family: var(--label); font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase; }
.kit-boundary-grid strong { font-family: var(--display); font-size: 1.15rem; }

.kit-offer-section { padding: clamp(76px, 10vw, 140px) 0; }

.kit-offer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.53fr);
  align-items: start;
  gap: clamp(44px, 8vw, 110px);
}

.kit-document-list { display: grid; gap: 18px; }

.kit-product-frame {
  padding: 12px;
  border: 2px solid var(--kit-ink);
  background: #fff;
  box-shadow: 12px 12px 0 var(--kit-yellow);
}

.kit-document-list article {
  display: grid;
  grid-template-columns: 86px 1fr;
  align-items: start;
  padding: 30px 0;
  border-bottom: 2px solid var(--kit-ink);
  gap: 24px;
}

.kit-document-list article > span {
  display: grid;
  width: 64px;
  height: 64px;
  border: 2px solid var(--kit-ink);
  border-radius: 50%;
  color: var(--kit-coral);
  font-family: var(--display);
  font-size: 1.8rem;
  font-weight: 800;
  place-items: center;
}

.kit-document-list h2 { margin: 4px 0 10px; font-size: clamp(2rem, 3.7vw, 3.7rem); }

.kit-receipt {
  position: sticky;
  top: 98px;
  padding: 38px 30px 34px;
  border: 2px solid var(--kit-ink);
  background: #fff;
  box-shadow: 13px 13px 0 var(--kit-coral);
}

.receipt-perforation {
  height: 14px;
  margin: -22px 0 24px;
  background: radial-gradient(circle at 7px 0, transparent 6px, var(--kit-ink) 6.5px, var(--kit-ink) 7.5px, transparent 8px) repeat-x;
  background-size: 20px 14px;
}

.kit-receipt .eyebrow { color: var(--kit-coral); }
.receipt-line { display: flex; justify-content: space-between; padding: 13px 0; border-top: 1px dashed rgba(28, 51, 66, 0.35); gap: 18px; font-size: 0.88rem; }
.receipt-line b { color: var(--kit-ink); font-family: var(--label); font-size: 0.68rem; text-transform: uppercase; }
.kit-receipt .button { margin-top: 26px; border-color: var(--kit-ink); background: var(--kit-ink); }
.kit-footer { background: var(--kit-yellow); color: var(--kit-ink); }

@keyframes kit-back {
  0%, 100% { transform: rotate(9deg) translate(16px, -2px); }
  50% { transform: rotate(12deg) translate(24px, -10px); }
}
@keyframes kit-middle {
  0%, 100% { transform: rotate(-6deg) translate(-13px, 5px); }
  50% { transform: rotate(-9deg) translate(-22px, -7px); }
}

/* 04 / COMPLETION — a green activation rail with sequential progress. */
.completion-page {
  --active-green: #173f34;
  --active-mint: #bfe0cf;
  --active-lime: #d8e85d;
  --active-paper: #f6f5ea;
  background: var(--active-paper);
  color: var(--active-green);
}

.completion-page .activation-nav {
  border-color: rgba(23, 63, 52, 0.22);
  background: color-mix(in srgb, var(--active-paper) 90%, transparent);
}

.activation-hero {
  padding: clamp(84px, 11vw, 160px) 0;
  background:
    radial-gradient(circle at 74% 42%, rgba(216, 232, 93, 0.2), transparent 27%),
    var(--active-green);
  color: var(--active-paper);
}

.activation-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(390px, 0.72fr);
  align-items: center;
  gap: clamp(50px, 8vw, 120px);
}

.activation-copy .eyebrow { color: var(--active-lime); }
.activation-copy h1 { margin: 14px 0 28px; font-size: clamp(4rem, 8vw, 8.4rem); line-height: 0.87; }
.activation-copy .lede { color: rgba(246, 245, 234, 0.74); }
.activation-copy .button { margin-top: 24px; border-color: var(--active-lime); background: var(--active-lime); color: var(--active-green); }

.activation-console {
  position: relative;
  display: grid;
  min-height: 520px;
  align-content: center;
  padding: 56px 48px 48px;
  border: 1px solid rgba(246, 245, 234, 0.3);
  background: rgba(246, 245, 234, 0.06);
  gap: 0;
}

.activation-complete-mark {
  position: absolute;
  top: -34px;
  right: -28px;
  display: grid;
  width: 106px;
  height: 106px;
  border-radius: 50%;
  background: var(--active-lime);
  color: var(--active-green);
  box-shadow: 0 0 0 14px rgba(216, 232, 93, 0.12);
  place-items: center;
  animation: completion-breathe 3.6s ease-in-out infinite;
}

.activation-complete-mark span { font-family: var(--display); font-size: 3rem; font-weight: 900; }

.activation-track {
  position: absolute;
  top: 116px;
  bottom: 116px;
  left: 77px;
  width: 2px;
  background: rgba(246, 245, 234, 0.18);
}

.activation-track i {
  position: absolute;
  inset: 0;
  display: block;
  background: var(--active-lime);
  transform: scaleY(0);
  transform-origin: top;
  animation: activation-fill 1.7s 240ms cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.activation-step {
  position: relative;
  display: grid;
  grid-template-columns: 58px 1fr auto;
  align-items: center;
  min-height: 112px;
  opacity: 0;
  gap: 18px;
  transform: translateY(12px);
  animation: activation-reveal 520ms ease forwards;
}

.activation-step:nth-of-type(3) { animation-delay: 180ms; }
.activation-step:nth-of-type(4) { animation-delay: 520ms; }
.activation-step:nth-of-type(5) { animation-delay: 860ms; }

.activation-step b {
  z-index: 2;
  display: grid;
  width: 58px;
  height: 58px;
  border: 2px solid var(--active-mint);
  border-radius: 50%;
  background: var(--active-green);
  color: var(--active-mint);
  font-family: var(--label);
  place-items: center;
}

.activation-step.is-active b { border-color: var(--active-lime); color: var(--active-lime); box-shadow: 0 0 0 8px rgba(216, 232, 93, 0.1); }
.activation-step span { font-family: var(--display); font-size: 1.5rem; font-weight: 800; }
.activation-step small { color: rgba(246, 245, 234, 0.6); font-family: var(--label); font-size: 0.64rem; letter-spacing: 0.08em; text-transform: uppercase; }

.activation-session { padding: clamp(76px, 10vw, 140px) 0; }
.activation-session-heading { display: grid; grid-template-columns: minmax(180px, 0.3fr) minmax(0, 1fr); align-items: start; margin-bottom: 56px; gap: 36px; }
.activation-session-heading h2 { margin: 0; font-size: clamp(3rem, 5.8vw, 6.1rem); }

.activation-rail {
  display: grid;
  border-top: 2px solid var(--active-green);
}

.activation-rail article {
  display: grid;
  grid-template-columns: 150px 1fr;
  padding: 34px 0;
  border-bottom: 2px solid var(--active-green);
  gap: 38px;
}

.activation-rail article > span { color: var(--active-green); font-family: var(--label); font-size: 0.76rem; font-weight: 700; letter-spacing: 0.1em; }
.activation-rail h3 { margin: 0 0 8px; font-size: 2.1rem; }
.activation-rail p { max-width: 720px; margin: 0; color: #536b62; }

.activation-support { background: var(--active-mint); color: var(--active-green); }
.activation-support-grid { display: grid; grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr); align-items: start; gap: 70px; }
.activation-support h2 { margin: 8px 0 0; font-size: clamp(2.7rem, 5vw, 5rem); }
.activation-footer { background: var(--active-green); color: var(--active-paper); }

@keyframes activation-fill { to { transform: scaleY(1); } }
@keyframes activation-reveal { to { opacity: 1; transform: translateY(0); } }
@keyframes completion-breathe { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.055); } }

@media (max-width: 1080px) {
  .checkout-intro-grid,
  .ops-hero-grid,
  .kit-hero-grid,
  .activation-hero-grid {
    grid-template-columns: 1fr;
  }

  .checkout-route-board { max-width: 720px; }
  .ops-radar { max-width: 470px; }
  .kit-folder { width: min(100%, 540px); margin-inline: auto; }
  .activation-console { width: min(100%, 620px); }

  .checkout-page .checkout-layout,
  .ops-offer-grid,
  .kit-offer-grid {
    grid-template-columns: 1fr;
  }

  .checkout-page .order-card,
  .ops-decision-card,
  .kit-receipt {
    position: static;
    width: min(100%, 620px);
    margin-inline: auto;
  }

  .ops-module-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 760px) {
  .checkout-page-hero,
  .ops-hero,
  .kit-hero,
  .activation-hero { padding-block: 62px 76px; }

  .checkout-intro-copy h1,
  .ops-hero-copy h1,
  .kit-hero-copy h1,
  .activation-copy h1 { font-size: clamp(3rem, 15vw, 5rem); }

  .checkout-route-board { min-height: 340px; box-shadow: 8px 8px 0 var(--desk-blue); }
  .checkout-route-board svg { inset: 52px 8px 34px; width: calc(100% - 16px); }
  .route-node { min-width: auto; max-width: 118px; padding: 8px; font-size: 0.56rem; }
  .route-node-main { left: 3%; }
  .route-node-choice { left: 35%; }
  .route-node-secure { right: 3%; }

  .module-heading,
  .activation-session-heading,
  .activation-support-grid { grid-template-columns: 1fr; gap: 14px; }

  .checkout-page .bump-control { grid-template-columns: auto 1fr; }
  .checkout-page .bump-control > span:last-child { grid-column: 2; }

  .ops-radar { width: 92vw; max-width: 430px; }
  .ops-sequence-bar { display: flex; overflow-x: auto; scroll-snap-type: x proximity; }
  .ops-sequence-bar span { min-width: 132px; scroll-snap-align: start; }
  .ops-module-grid { grid-template-columns: 1fr; }
  .ops-module-grid article { min-height: 210px; }

  .kit-folder { min-height: 430px; }
  .kit-sheet { width: 78%; padding: 22px; }
  .kit-boundary-grid { grid-template-columns: 1fr; }
  .kit-boundary-grid > div { min-height: auto; border-bottom: 1px solid rgba(255, 255, 255, 0.18); }
  .kit-document-list article { grid-template-columns: 66px 1fr; gap: 15px; }
  .kit-document-list article > span { width: 54px; height: 54px; font-size: 1.4rem; }

  .activation-console { min-height: 470px; padding: 48px 24px 32px; }
  .activation-complete-mark { top: -28px; right: 8px; width: 82px; height: 82px; }
  .activation-track { left: 53px; }
  .activation-step { grid-template-columns: 58px 1fr; }
  .activation-step small { grid-column: 2; margin-top: -34px; }
  .activation-rail article { grid-template-columns: 1fr; gap: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  .checkout-route-board::after,
  .route-pulse,
  .radar-sweep,
  .radar-ring-one::after,
  .radar-ring-two::after,
  .ops-node::before,
  .ops-card-header i,
  .kit-sheet-back,
  .kit-sheet-middle,
  .activation-complete-mark,
  .activation-track i,
  .activation-step {
    animation: none !important;
  }

  .activation-track i { transform: scaleY(1); }
  .activation-step { opacity: 1; transform: none; }
}
