@import url("https://fonts.googleapis.com/css2?family=Anton&family=Inter:wght@400;500;700;900&family=JetBrains+Mono:wght@400;700&family=Manrope:wght@400;500;600;700;800;900&display=swap");

:root {
  --color-carbon-black: #000000;
  --color-paper-white: #ffffff;
  --color-warm-canvas: #e5e5e5;
  --color-mist-gray: #f3f3f3;
  --color-ash: #c6c6c6;
  --color-smoke: #979797;
  --color-slate: #444444;
  --color-graphite: #2f2f2f;
  --color-mint-chip: #d1ffca;
  --color-voltage-yellow: #fff100;
  --max: 1200px;
  --article: 780px;
}

.launch-landing {
  --launch-dark: #050506;
  --launch-dark-2: #101012;
  --launch-light: #f4f1ec;
  --launch-paper: #ffffff;
  --launch-ink: #111113;
  --launch-ink-soft: #403c39;
  --launch-muted: #6f6862;
  --launch-muted-dark: #c2bbb4;
  --launch-line: rgb(17 17 19 / 0.14);
  --launch-line-dark: rgb(255 255 255 / 0.14);
  --launch-accent-rgb: 255 45 32;
  --launch-accent: rgb(var(--launch-accent-rgb));
  --launch-accent-strong: #df2319;
  --launch-accent-soft: rgb(var(--launch-accent-rgb) / 0.14);
  --launch-accent-glow: rgb(var(--launch-accent-rgb) / 0.42);
  --launch-max: 1180px;
  --launch-motion-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --launch-motion-slow: 900ms;
  margin: 0;
  color: var(--launch-ink);
  background: var(--launch-light);
  font-family: "Manrope", "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.launch-landing p,
.launch-landing li {
  color: inherit;
  font-size: 17px;
  line-height: 1.6;
}

.launch-landing h1,
.launch-landing h2,
.launch-landing h3 {
  color: inherit;
  font-family: "Manrope", "Inter", system-ui, sans-serif;
  font-weight: 900;
  line-height: 0.98;
  text-transform: none;
  letter-spacing: 0;
}

.launch-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  min-height: 64px;
  padding: 12px max(20px, calc((100vw - var(--launch-max)) / 2));
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  color: var(--launch-paper);
  background: #000000;
  border-bottom: 1px solid var(--launch-line-dark);
}

.launch-brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  min-width: 0;
  color: var(--launch-paper);
  text-decoration: none;
  isolation: isolate;
}

.launch-brand__mark {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.launch-brand__mark::after {
  content: "";
  position: absolute;
  inset: -6px -8px;
  border-radius: 10px;
  background: radial-gradient(circle at 50% 50%, var(--launch-accent-glow), transparent 68%);
  opacity: 0;
  transform: scale(0.88);
  transition: opacity 220ms ease, transform 220ms ease;
  z-index: -1;
}

.launch-brand:hover .launch-brand__mark::after {
  opacity: 0.32;
  transform: scale(1);
}

.launch-logo {
  width: 132px;
  height: auto;
  display: block;
  border-radius: 0;
  background: #000000;
}

.launch-brand__divider {
  width: 2px;
  height: 25px;
  border-radius: 999px;
  background: var(--launch-accent);
  box-shadow: 0 0 18px var(--launch-accent-glow);
}

.launch-brand__domain {
  color: var(--launch-paper);
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
  letter-spacing: 0;
}

.launch-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--launch-muted-dark);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.launch-nav a:hover,
.launch-footer a:hover {
  color: var(--launch-accent);
}

.launch-header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.launch-owner-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border: 1px solid rgb(255 255 255 / 0.24);
  border-radius: 8px;
  color: var(--launch-paper);
  background: rgb(255 255 255 / 0.06);
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
}

.launch-owner-link:hover,
.launch-owner-link:focus-visible {
  border-color: var(--launch-accent);
  background: rgb(var(--launch-accent-rgb) / 0.16);
  color: var(--launch-paper);
}

.launch-cta,
.launch-ghost {
  border: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease;
}

.launch-cta {
  color: var(--launch-paper);
  background: var(--launch-accent);
}

.launch-cta:hover {
  background: var(--launch-accent-strong);
  transform: translateY(-1px);
  box-shadow: 0 18px 42px rgb(var(--launch-accent-rgb) / 0.26);
}

.launch-cta--small {
  min-height: 44px;
  padding-inline: 16px;
  font-size: 12px;
}

.launch-ghost {
  color: inherit;
  border: 1px solid currentColor;
  background: transparent;
}

.launch-ghost:hover {
  border-color: var(--launch-accent);
  color: var(--launch-accent);
  transform: translateY(-1px);
  box-shadow: inset 0 0 0 1px rgb(var(--launch-accent-rgb) / 0.18);
}

.launch-section {
  position: relative;
  overflow: hidden;
}

.launch-section--dark {
  color: var(--launch-paper);
  background:
    linear-gradient(90deg, rgb(var(--launch-accent-rgb) / 0.1) 1px, transparent 1px),
    linear-gradient(rgb(var(--launch-accent-rgb) / 0.075) 1px, transparent 1px),
    var(--launch-dark);
  background-size: 96px 96px, 96px 96px, auto;
}

.launch-section--light {
  color: var(--launch-ink);
  background:
    linear-gradient(90deg, rgb(17 17 19 / 0.045) 1px, transparent 1px),
    var(--launch-light);
  background-size: 120px 120px, auto;
}

.launch-section--ink {
  background:
    radial-gradient(circle at 86% 12%, rgb(var(--launch-accent-rgb) / 0.14), transparent 30%),
    radial-gradient(circle at 14% 84%, rgb(255 255 255 / 0.055), transparent 26%),
    linear-gradient(90deg, rgb(var(--launch-accent-rgb) / 0.085) 1px, transparent 1px),
    linear-gradient(rgb(var(--launch-accent-rgb) / 0.06) 1px, transparent 1px),
    #080808;
  background-size: auto, auto, 96px 96px, 96px 96px, auto;
}

.launch-section--paper {
  background:
    linear-gradient(90deg, rgb(var(--launch-accent-rgb) / 0.05) 1px, transparent 1px),
    linear-gradient(rgb(17 17 19 / 0.035) 1px, transparent 1px),
    linear-gradient(180deg, #f7f3ec 0%, #efe9df 100%);
  background-size: 120px 120px, 120px 120px, auto;
}

.launch-section--paper-linked {
  padding-top: 34px;
}

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

.launch-hero {
  min-height: 610px;
  padding: 96px 0 54px;
  display: flex;
  align-items: center;
}

.launch-hero__layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(430px, 0.86fr);
  gap: 34px;
  align-items: start;
}

.launch-builder-hero .launch-hero__layout {
  grid-template-columns: minmax(0, 0.92fr) minmax(520px, 0.88fr);
  gap: clamp(38px, 4vw, 70px);
  align-items: center;
}

.launch-hero__content {
  position: relative;
  z-index: 2;
}

.launch-builder-hero .launch-hero__content {
  max-width: 880px;
}

.launch-builder-hero h1 {
  max-width: 720px;
}

.launch-builder-hero .launch-lead {
  max-width: 580px;
}

.launch-hero__visual {
  position: relative;
  z-index: 2;
  justify-self: end;
  width: min(100%, 610px);
}

.hero-edit-showcase {
  position: relative;
  min-height: 640px;
  color: var(--launch-paper);
  isolation: isolate;
}

.hero-edit-showcase::before {
  content: "";
  position: absolute;
  inset: 26px -18px 28px 118px;
  z-index: -1;
  border-radius: 28px;
  background:
    radial-gradient(circle at 54% 48%, rgb(var(--launch-accent-rgb) / 0.24), transparent 36%),
    linear-gradient(180deg, rgb(255 255 255 / 0.035), rgb(255 255 255 / 0.01));
  filter: blur(2px);
  opacity: 0.9;
}

.hero-edit-showcase__brand {
  margin: 0 0 8px 322px;
  color: var(--launch-paper);
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 17px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-edit-showcase__brand span {
  color: var(--launch-accent);
}

.hero-video-card {
  position: absolute;
  overflow: visible;
  border: 1px solid rgb(255 255 255 / 0.2);
  background: rgb(5 5 6 / 0.8);
  box-shadow: 0 28px 78px rgb(0 0 0 / 0.52);
  cursor: pointer;
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.hero-video-card video {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
}

.hero-video-card__label {
  position: absolute;
  z-index: 2;
  top: -42px;
  left: 0;
  color: var(--launch-paper);
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-video-card--raw {
  left: -72px;
  top: 116px;
  width: 220px;
  z-index: 3;
  aspect-ratio: 9 / 16;
  border-radius: 12px;
  opacity: 0.92;
  transform: rotate(-4.2deg);
  transform-origin: 70% 35%;
}

.hero-video-card--edited {
  right: 18px;
  top: 42px;
  width: 318px;
  z-index: 2;
  aspect-ratio: 9 / 16;
  border: 2px solid var(--launch-accent);
  border-radius: 12px;
  transform: rotate(1.1deg);
  transform-origin: 50% 65%;
  box-shadow:
    0 0 0 1px rgb(var(--launch-accent-rgb) / 0.18),
    0 0 34px rgb(var(--launch-accent-rgb) / 0.38),
    0 32px 90px rgb(0 0 0 / 0.6);
}

.hero-video-card--edited .hero-video-card__label {
  display: none;
}

.hero-edit-showcase__bridge {
  position: absolute;
  z-index: 4;
  left: 70px;
  top: 104px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 11px;
  color: var(--launch-accent);
  border-radius: 5px;
  background: rgb(5 5 6 / 0.86);
  box-shadow: 0 12px 36px rgb(0 0 0 / 0.46);
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-edit-showcase__bridge-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-edit-showcase__bridge b {
  font-size: 24px;
  line-height: 0.8;
}

.hero-video-card__sound {
  position: absolute;
  right: 11px;
  bottom: 11px;
  z-index: 7;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: #111;
  background: rgb(255 255 255 / 0.92);
  box-shadow:
    0 10px 26px rgb(0 0 0 / 0.46),
    0 0 0 1px rgb(255 255 255 / 0.24);
  cursor: pointer;
  font-size: 17px;
  transition:
    transform 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.hero-video-card__sound:hover {
  transform: translateY(-1px) scale(1.04);
}

.hero-video-card__sound.is-on {
  color: #04120a;
  background: #2bf048;
  box-shadow:
    0 0 0 1px rgb(43 240 72 / 0.55),
    0 0 22px rgb(43 240 72 / 0.48),
    0 10px 26px rgb(0 0 0 / 0.46);
}

.hero-video-card__sound:focus-visible {
  outline: 2px solid var(--launch-paper);
  outline-offset: 3px;
}

.hero-video-card__caption {
  position: absolute;
  isolation: isolate;
  z-index: 5;
  left: -42px;
  top: calc(100% + 12px);
  width: 278px;
  margin: 0;
  padding: 12px 14px;
  color: var(--launch-paper);
  border-radius: 10px;
  background: transparent;
  box-shadow: 0 0 28px rgb(var(--launch-accent-rgb) / 0.18);
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 11.5px;
  font-weight: 900;
  line-height: 1.3;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(3.6deg);
  overflow: hidden;
}

.hero-video-card__caption::before,
.hero-video-card__caption::after {
  content: "";
  position: absolute;
  border-radius: inherit;
  pointer-events: none;
}

.hero-video-card__caption::before {
  inset: -48%;
  z-index: -2;
  background: conic-gradient(from 0deg, transparent 0 23%, var(--launch-accent) 31%, #ff7a70 37%, transparent 45% 100%);
  animation: launch-caption-border 3.8s linear infinite;
}

.hero-video-card__caption::after {
  inset: 1px;
  z-index: -1;
  background: rgb(5 5 6 / 0.88);
  box-shadow: inset 0 0 0 1px rgb(var(--launch-accent-rgb) / 0.24);
}

.launch-hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.launch-hero__bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, var(--launch-dark) 0%, rgb(5 5 6 / 0.82) 42%, rgb(5 5 6 / 0.32) 70%, var(--launch-dark) 100%),
    linear-gradient(0deg, var(--launch-dark) 0%, transparent 32%);
  z-index: 1;
}

.launch-hero__bg img {
  position: absolute;
  right: max(0px, calc((100vw - var(--launch-max)) / 2 - 70px));
  bottom: -130px;
  width: min(48vw, 610px);
  min-width: 430px;
  opacity: 0.8;
  transform-origin: 54% 82%;
  animation: launch-guide-drift 8s ease-in-out infinite alternate;
}

.launch-kicker {
  margin: 0 0 18px;
  color: var(--launch-accent);
  font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.4;
  text-transform: uppercase;
}

.launch-hero h1 {
  max-width: 520px;
  margin: 0;
  font-size: clamp(46px, 4.4vw, 62px);
}

.launch-lead {
  max-width: 520px;
  margin: 28px 0 0;
  color: var(--launch-muted-dark);
  font-size: 19px;
  line-height: 1.5;
}

.launch-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.launch-mobile-flow-title {
  display: none;
}

.launch-proofline {
  width: min(820px, 100%);
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  border: 1px solid var(--launch-line-dark);
}

.launch-proofline span {
  position: relative;
  min-height: 72px;
  padding: 16px 14px;
  display: grid;
  place-items: center;
  color: var(--launch-muted-dark);
  border-right: 1px solid var(--launch-line-dark);
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 12px;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
  overflow: hidden;
}

.launch-builder-hero .launch-proofline span {
  padding: 14px 8px;
  font-size: 10px;
  line-height: 1.2;
  overflow: visible;
}

.build-configurator {
  position: relative;
  width: min(100%, 560px);
  justify-self: end;
  padding: 16px;
  color: var(--launch-paper);
  border: 1px solid rgb(255 255 255 / 0.18);
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgb(255 255 255 / 0.055), rgb(255 255 255 / 0.025)),
    rgb(12 12 14 / 0.86);
  box-shadow:
    inset 0 1px 0 rgb(255 255 255 / 0.08),
    0 28px 80px rgb(0 0 0 / 0.42);
  backdrop-filter: blur(14px);
}

.build-configurator::before {
  content: "";
  position: absolute;
  inset: 9px;
  pointer-events: none;
  border: 1px solid rgb(255 255 255 / 0.07);
  border-radius: 8px;
}

.builder-row {
  position: relative;
  min-height: 42px;
  margin-bottom: 8px;
  padding: 8px 10px;
  display: grid;
  grid-template-columns: 28px 76px minmax(0, 1fr);
  gap: 8px;
  align-items: center;
  border: 1px solid rgb(255 255 255 / 0.08);
  border-radius: 8px;
  background: linear-gradient(180deg, rgb(255 255 255 / 0.06), rgb(255 255 255 / 0.035));
}

.builder-row__number {
  width: 24px;
  height: 24px;
  display: inline-grid;
  place-items: center;
  color: var(--launch-muted-dark);
  border: 1px solid rgb(255 255 255 / 0.18);
  border-radius: 999px;
  background: rgb(0 0 0 / 0.24);
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 12px;
  font-weight: 800;
}

.builder-row__label {
  color: rgb(255 255 255 / 0.82);
  font-size: 10px;
  font-weight: 800;
}

.builder-options {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: flex-start;
}

.builder-chip {
  min-height: 24px;
  padding: 6px 8px 6px 23px;
  position: relative;
  color: rgb(255 255 255 / 0.78);
  border: 1px solid rgb(255 255 255 / 0.14);
  border-radius: 8px;
  background: rgb(0 0 0 / 0.18);
  font: inherit;
  font-size: 9px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  transition: color 180ms ease, border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.builder-chip::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 50%;
  width: 9px;
  height: 9px;
  border: 1px solid rgb(255 255 255 / 0.62);
  border-radius: 999px;
  transform: translateY(-50%);
}

.builder-chip.is-selected {
  color: var(--launch-paper);
  border-color: rgb(var(--launch-accent-rgb) / 0.68);
  background: rgb(var(--launch-accent-rgb) / 0.08);
  box-shadow: 0 0 0 1px rgb(var(--launch-accent-rgb) / 0.18);
}

.builder-chip.is-selected::before {
  border-color: var(--launch-paper);
  background: var(--launch-accent);
  box-shadow: 0 0 16px rgb(var(--launch-accent-rgb) / 0.72);
}

.builder-summary {
  position: relative;
  margin-top: 10px;
  padding: 10px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 166px;
  gap: 10px;
  border: 1px solid rgb(255 255 255 / 0.18);
  border-radius: 8px;
}

.launch-section .builder-result h2 {
  margin: 0 0 8px;
  color: var(--launch-paper);
  font-size: 15px;
  line-height: 1.12;
}

.builder-result ul {
  display: grid;
  gap: 5px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.builder-result li {
  position: relative;
  padding-left: 14px;
  color: var(--launch-muted-dark);
  font-size: 10px;
  line-height: 1.25;
}

.builder-result li::before {
  content: "";
  position: absolute;
  left: 1px;
  top: 0.62em;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: var(--launch-accent);
  box-shadow: 0 0 12px rgb(var(--launch-accent-rgb) / 0.72);
}

.builder-tariff {
  padding: 10px;
  display: grid;
  align-content: space-between;
  gap: 12px;
  border: 1px solid rgb(255 255 255 / 0.18);
  border-radius: 8px;
  background: rgb(0 0 0 / 0.22);
}

.builder-tariff span {
  color: var(--launch-accent);
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 8px;
  font-weight: 900;
  text-transform: uppercase;
}

.builder-tariff strong {
  color: var(--launch-paper);
  font-size: 22px;
  line-height: 1.02;
}

.builder-tariff b {
  color: var(--launch-accent);
}

.builder-tariff .launch-cta {
  min-height: 40px;
  padding-inline: 10px;
  font-size: 10px;
}

.builder-note {
  margin: 8px 0 0;
  color: rgb(255 255 255 / 0.46);
  font-size: 9px;
  line-height: 1.4;
}

.launch-builder-section {
  padding: 76px 0 88px;
  scroll-margin-top: 86px;
}

.launch-builder-grid {
  display: grid;
  grid-template-columns: minmax(240px, 0.42fr) minmax(0, 1fr);
  gap: 36px;
  align-items: start;
}

.launch-builder-head {
  margin: 0;
  position: sticky;
  top: 96px;
}

.launch-builder-head h2 {
  max-width: 430px;
}

.launch-builder-head p {
  max-width: 430px;
  color: var(--launch-muted-dark);
}

.launch-builder-section .build-configurator {
  width: 100%;
  max-width: none;
  justify-self: stretch;
  padding: 22px;
  border-radius: 14px;
}

.launch-builder-section .build-configurator::before {
  inset: 12px;
  border-radius: 11px;
}

.launch-builder-section .builder-row {
  min-height: 78px;
  margin-bottom: 12px;
  grid-template-columns: 42px minmax(150px, 0.32fr) minmax(0, 1fr);
  gap: 18px;
  padding: 16px 18px;
  border-radius: 12px;
}

.launch-builder-section .builder-row__number {
  width: 34px;
  height: 34px;
  font-size: 16px;
}

.launch-builder-section .builder-row__label {
  display: grid;
  gap: 5px;
  font-size: 15px;
  line-height: 1.15;
}

.launch-builder-section .builder-row__label b {
  color: var(--launch-paper);
}

.launch-builder-section .builder-row__label small {
  color: rgb(255 255 255 / 0.5);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.25;
}

.launch-builder-section .builder-options {
  gap: 10px;
}

.launch-builder-section .builder-chip {
  min-height: 42px;
  padding: 11px 15px 11px 38px;
  border-radius: 10px;
  font-size: 13px;
  line-height: 1.1;
}

.launch-builder-section .builder-chip::before {
  left: 14px;
  width: 14px;
  height: 14px;
}

.launch-builder-section .builder-summary {
  margin-top: 16px;
  padding: 18px;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 280px);
  gap: 18px;
  border-radius: 12px;
}

.launch-builder-section .builder-result h2 {
  margin-bottom: 16px;
  font-size: 28px;
}

.launch-builder-section .builder-result ul {
  gap: 10px;
}

.launch-builder-section .builder-result li {
  padding-left: 20px;
  font-size: 15px;
  line-height: 1.35;
}

.launch-builder-section .builder-result li::before {
  width: 7px;
  height: 7px;
}

.launch-builder-section .builder-tariff {
  padding: 20px;
  border-radius: 12px;
}

.launch-builder-section .builder-tariff span {
  font-size: 10px;
}

.launch-builder-section .builder-tariff strong {
  font-size: 36px;
}

.launch-builder-section .builder-tariff .launch-cta {
  min-height: 54px;
  padding-inline: 18px;
  font-size: 12px;
}

.launch-builder-section .builder-note {
  margin-top: 18px;
  font-size: 14px;
}

.launch-proofline span::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, rgb(var(--launch-accent-rgb) / 0.18) 48%, transparent 100%);
  opacity: 0;
  transform: translateX(-120%);
  animation: launch-proof-scan 6.5s ease-in-out infinite;
  animation-delay: calc(var(--motion-order, 0) * 120ms);
}

.launch-proofline span:last-child {
  border-right: 0;
}

.launch-section--light,
.launch-section--dark:not(.launch-hero) {
  padding-block: 92px;
}

.launch-pricing {
  min-height: calc(100vh - 72px);
  padding-block: clamp(24px, 3vw, 38px) !important;
  display: grid;
  align-content: center;
  scroll-margin-top: 76px;
}

.launch-pricing .launch-section-head > p:not(.launch-kicker) {
  max-width: 620px;
  margin-top: 8px;
  font-size: 14px;
  line-height: 1.36;
}

.launch-pricing .launch-section-head {
  max-width: min(100%, 1180px);
}

.launch-pricing .launch-section-head h2 {
  max-width: none;
  font-size: 44px;
  white-space: nowrap;
}

.launch-two-col {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.8fr);
  gap: 62px;
  align-items: start;
}

.launch-section h2 {
  max-width: 820px;
  font-size: 54px;
  overflow-wrap: anywhere;
}

.launch-copy p {
  margin: 0 0 18px;
  color: var(--launch-muted);
}

.launch-section--dark .launch-copy p {
  color: var(--launch-muted-dark);
}

.content-debt-visual {
  position: relative;
  min-height: 330px;
  padding: 28px;
  border: 1px solid var(--launch-line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgb(255 255 255 / 0.78), rgb(255 255 255 / 0.34)),
    linear-gradient(90deg, rgb(var(--launch-accent-rgb) / 0.08) 1px, transparent 1px),
    linear-gradient(rgb(17 17 19 / 0.05) 1px, transparent 1px),
    rgb(255 255 255 / 0.7);
  background-size: auto, 54px 54px, 54px 54px, auto;
  box-shadow: 0 24px 70px rgb(17 17 19 / 0.08);
  overflow: hidden;
}

.content-debt-visual::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgb(var(--launch-accent-rgb) / 0.16);
  border-radius: 8px;
  pointer-events: none;
}

.course-demo {
  min-width: 0;
}

.course-demo__stage {
  min-height: 340px;
  display: grid;
  place-items: center;
  perspective: 1100px;
}

.course-demo__device {
  position: relative;
  width: min(100%, 610px);
  padding: 10px 10px 12px;
  border: 1px solid rgb(255 255 255 / 0.22);
  border-radius: 16px 16px 8px 8px;
  background: linear-gradient(145deg, #27282b 0%, #08090a 54%, #303135 100%);
  box-shadow:
    0 32px 65px rgb(17 17 19 / 0.2),
    0 10px 20px rgb(17 17 19 / 0.16);
  transform: rotateX(1.5deg) rotateY(-2deg);
  animation: course-demo-float 5.6s ease-in-out infinite;
}

.course-demo__screen {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 8px 8px 4px 4px;
  background: #050505;
}

.course-demo__screen video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.course-demo__camera {
  position: absolute;
  top: 4px;
  left: 50%;
  z-index: 2;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #15171a;
  box-shadow: 0 0 0 1px rgb(255 255 255 / 0.08);
  transform: translateX(-50%);
}

.course-demo__base {
  position: absolute;
  top: 100%;
  left: 50%;
  width: 116%;
  height: 16px;
  border-radius: 2px 2px 18px 18px;
  background:
    linear-gradient(90deg, #b8b9bb 0%, #f0f0f0 45%, #d5d6d8 55%, #9c9da0 100%);
  box-shadow: 0 12px 20px rgb(17 17 19 / 0.14);
  transform: translateX(-50%);
}

.course-demo__base::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 72px;
  height: 5px;
  border-radius: 0 0 8px 8px;
  background: #a9aaad;
  transform: translateX(-50%);
}

.course-demo__caption {
  margin: 28px auto 0;
  max-width: 610px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  align-items: baseline;
  color: var(--launch-ink);
}

.course-demo__caption span {
  color: var(--launch-accent);
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.course-demo__caption strong {
  font-size: 17px;
  line-height: 1.25;
}

.launch-ai-reality {
  position: relative;
  min-height: min(900px, 100svh);
  padding-block: clamp(64px, 8vh, 96px);
  display: grid;
  align-items: center;
  overflow: hidden;
}

.launch-ai-reality::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 82% 12%, rgb(var(--launch-accent-rgb) / 0.18), transparent 32%),
    linear-gradient(180deg, rgb(255 255 255 / 0.03), transparent 42%);
}

.launch-reality-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(24px, 3vw, 38px);
  align-items: start;
}

.launch-reality-heading,
.launch-reality-text,
.launch-reality-outcome {
  position: relative;
}

.launch-reality-heading {
  max-width: 1120px;
}

.launch-reality-heading h2 {
  max-width: 1120px;
  margin: 18px 0 0;
  color: var(--launch-paper);
  font-size: clamp(58px, 8vw, 132px);
  line-height: 0.92;
  letter-spacing: 0;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.launch-reality-copy {
  max-width: 1120px;
  display: grid;
  gap: clamp(22px, 2.6vw, 34px);
  color: rgb(255 255 255 / 0.58);
  font-size: clamp(17px, 1.45vw, 22px);
  line-height: 1.48;
}

.launch-reality-copy p {
  margin: 0;
}

.launch-reality-text {
  max-width: 1040px;
  padding: 0;
  display: grid;
  gap: 18px;
}

.launch-reality-lead {
  color: var(--launch-paper);
  font-size: clamp(28px, 3vw, 46px);
  font-weight: 900;
  line-height: 1.15;
}

.launch-reality-outcome {
  max-width: 1120px;
  padding: clamp(22px, 2.4vw, 30px) 0 0;
  border-top: 1px solid rgb(var(--launch-accent-rgb) / 0.32);
  background: linear-gradient(180deg, rgb(var(--launch-accent-rgb) / 0.08), transparent 72%);
}

.launch-reality-outcome span {
  display: block;
  color: var(--launch-accent);
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.launch-reality-outcome strong {
  display: block;
  margin-top: 10px;
  color: var(--launch-paper);
  font-size: clamp(30px, 3.7vw, 58px);
  line-height: 1.08;
}

.launch-reality-outcome p {
  max-width: 940px;
  margin-top: 16px;
  color: rgb(255 255 255 / 0.72);
  font-size: clamp(16px, 1.45vw, 22px);
  line-height: 1.46;
}

@keyframes course-demo-float {
  0%,
  100% {
    transform: translateY(5px) rotateX(1.5deg) rotateY(-2deg);
  }

  50% {
    transform: translateY(-7px) rotateX(1.5deg) rotateY(-2deg);
  }
}

.content-debt-visual {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(190px, 0.8fr);
  gap: 22px;
  align-items: center;
}

.content-debt-visual__stack {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 9px;
}

.content-debt-visual__stack span {
  min-height: 42px;
  padding: 11px 14px;
  color: var(--launch-ink);
  border: 1px solid var(--launch-line);
  border-radius: 8px;
  background: var(--launch-paper);
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 0 10px 24px rgb(17 17 19 / 0.07);
  animation: launch-content-load 4.8s ease-in-out infinite;
}

.content-debt-visual__stack span:nth-child(2) {
  margin-left: 18px;
  animation-delay: 120ms;
}

.content-debt-visual__stack span:nth-child(3) {
  margin-left: 36px;
  animation-delay: 240ms;
}

.content-debt-visual__stack span:nth-child(4) {
  margin-left: 54px;
  animation-delay: 360ms;
}

.content-debt-visual__stack span:nth-child(5) {
  margin-left: 72px;
  color: var(--launch-paper);
  border-color: rgb(var(--launch-accent-rgb) / 0.44);
  background: var(--launch-accent);
  animation-delay: 480ms;
}

.content-debt-visual__center {
  position: relative;
  z-index: 1;
  min-height: 170px;
  padding: 22px;
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--launch-paper);
  border-radius: 999px;
  background: var(--launch-ink);
  box-shadow: 0 0 0 8px rgb(var(--launch-accent-rgb) / 0.08), 0 24px 60px rgb(17 17 19 / 0.18);
}

.content-debt-visual__center b,
.content-debt-visual__center small {
  display: block;
}

.content-debt-visual__center b {
  max-width: 160px;
  font-size: 24px;
  line-height: 1.04;
}

.content-debt-visual__center small {
  margin-top: 10px;
  color: var(--launch-muted-dark);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
}

.content-debt-visual__route {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 26px;
  z-index: 1;
  display: flex;
  gap: 8px;
}

.content-debt-visual__route span {
  flex: 1;
  min-height: 34px;
  display: grid;
  place-items: center;
  color: var(--launch-paper);
  border-radius: 8px;
  background: var(--launch-ink);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.launch-section-head > p:not(.launch-kicker) {
  max-width: 760px;
  margin-top: 22px;
  color: currentColor;
  opacity: 0.72;
}

.launch-metric-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid var(--launch-line);
  background: var(--launch-paper);
  overflow: hidden;
}

.launch-metric-grid article {
  min-height: 250px;
  padding: 26px;
  border-right: 1px solid var(--launch-line);
}

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

.launch-metric-grid b {
  display: block;
  color: var(--launch-accent);
  font-size: 58px;
  font-weight: 900;
  line-height: 0.9;
}

.metric-star {
  position: relative;
  top: -0.38em;
  margin-left: 4px;
  color: var(--launch-ink);
  font-size: 0.42em;
  line-height: 1;
  text-decoration: none;
  transition: color 180ms ease, transform 180ms ease;
}

.metric-star:hover,
.metric-star:focus-visible {
  color: var(--launch-accent);
  transform: rotate(12deg) scale(1.12);
}

.launch-metric-grid span {
  display: block;
  margin-top: 20px;
  color: var(--launch-ink);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.18;
}

.launch-metric-grid p {
  margin: 16px 0 0;
  color: var(--launch-muted);
  font-size: 15px;
}

.launch-stack .launch-section-head p {
  color: var(--launch-muted-dark);
}

.launch-stack-track {
  margin-top: 46px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.launch-stack-track span {
  position: relative;
  min-height: 58px;
  padding: 18px 22px;
  display: inline-grid;
  place-items: center;
  color: var(--launch-paper);
  border: 1px solid var(--launch-line-dark);
  border-radius: 8px;
  background: rgb(255 255 255 / 0.04);
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  overflow: hidden;
  transition: border-color 220ms ease, transform 220ms ease, background-color 220ms ease;
}

.launch-stack-track span::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent, rgb(var(--launch-accent-rgb) / 0.2), transparent);
  opacity: 0;
  transform: translateX(-120%);
  transition: opacity 220ms ease, transform 560ms var(--launch-motion-ease);
}

.launch-stack-track span:hover {
  transform: translateY(-3px);
  border-color: rgb(var(--launch-accent-rgb) / 0.44);
  background: rgb(255 255 255 / 0.07);
}

.launch-stack-track span:hover::before {
  opacity: 1;
  transform: translateX(120%);
}

.launch-result-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.launch-result-grid article,
.launch-video-card,
.launch-program-list article,
.pricing-grid article,
.launch-takeaway-grid article,
.launch-entry-grid article,
.launch-bonus-grid article,
.launch-fit-grid article,
.launch-faq-list details {
  border-radius: 8px;
}

.launch-result-grid article {
  position: relative;
  min-height: 250px;
  padding: 24px;
  color: var(--launch-ink);
  background: var(--launch-paper);
  border: 1px solid var(--launch-line);
  box-shadow: 0 1px 0 rgb(17 17 19 / 0.02);
  transition: transform 240ms var(--launch-motion-ease), border-color 240ms ease, box-shadow 240ms ease;
  overflow: hidden;
}

.launch-result-grid article::after,
.launch-program-list article::after,
.pricing-grid article::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 22% 0%, rgb(var(--launch-accent-rgb) / 0.14), transparent 34%);
  opacity: 0;
  transition: opacity 240ms ease;
}

.launch-result-grid article:hover,
.launch-program-list article:hover,
.pricing-grid article:hover {
  transform: translateY(-4px);
}

.launch-result-grid article:hover {
  border-color: rgb(var(--launch-accent-rgb) / 0.28);
  box-shadow: 0 22px 60px rgb(17 17 19 / 0.1);
}

.launch-result-grid article:hover::after,
.launch-program-list article:hover::after,
.pricing-grid article:hover::after {
  opacity: 1;
}

.launch-result-grid span,
.launch-program-list span,
.pricing-grid span,
.pipeline-step span {
  color: var(--launch-accent);
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.launch-result-grid h3,
.launch-program-list h3 {
  margin-top: 22px;
  font-size: 25px;
  line-height: 1.1;
}

.launch-result-grid p,
.launch-program-list p,
.pricing-grid p,
.launch-takeaway-grid p,
.launch-entry-grid p,
.launch-bonus-grid p,
.launch-video-card p {
  margin: 16px 0 0;
  color: var(--launch-muted);
  font-size: 15px;
}

.launch-pipeline h2 {
  max-width: 960px;
  font-size: clamp(36px, 4.2vw, 62px);
  line-height: 0.94;
}

.launch-section--dark.launch-pipeline {
  min-height: calc(100svh - 76px);
  padding-block: clamp(38px, 5vh, 58px);
  display: grid;
  align-items: center;
  box-sizing: border-box;
}

.pipeline-funnel {
  position: relative;
  width: min(100%, 960px);
  margin-top: clamp(24px, 3.5vh, 34px);
  margin-inline: auto;
  display: grid;
  gap: 7px;
  isolation: isolate;
}

.pipeline-funnel::before {
  content: "";
  position: absolute;
  top: -8px;
  bottom: -8px;
  left: 50%;
  z-index: 0;
  width: 2px;
  background:
    linear-gradient(180deg, transparent, var(--launch-accent), transparent),
    linear-gradient(180deg, rgb(255 255 255 / 0.1), rgb(255 255 255 / 0.1));
  background-size: 100% 34%, 100% 100%;
  background-repeat: no-repeat;
  animation: launch-pipeline-scan-y 5s var(--launch-motion-ease) infinite;
  opacity: 0.72;
  transform: translateX(-50%);
}

.pipeline-funnel-step {
  position: relative;
  z-index: 1;
  width: var(--funnel-width);
  min-width: min(100%, 580px);
  min-height: clamp(70px, 7.6vh, 84px);
  margin-inline: auto;
  padding: 12px clamp(18px, 4vw, 52px);
  display: grid;
  grid-template-columns: 38px minmax(116px, 0.34fr) minmax(210px, 1fr);
  grid-template-areas: "number title text";
  gap: 16px;
  align-items: center;
  color: var(--launch-paper);
  border: 1px solid var(--launch-line-dark);
  border-radius: 18px;
  background:
    linear-gradient(90deg, rgb(255 255 255 / 0.07), rgb(255 255 255 / 0.025)),
    rgb(255 255 255 / 0.035);
  transition: transform 240ms var(--launch-motion-ease), background-color 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
  overflow: hidden;
}

.pipeline-funnel-step::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, rgb(var(--launch-accent-rgb) / 0.18) 48%, transparent 100%);
  opacity: 0;
  transform: translateX(-120%);
  animation: launch-funnel-sweep 7s ease-in-out infinite;
  animation-delay: calc(var(--motion-order, 0) * 160ms);
}

.pipeline-funnel-step:hover {
  transform: translateY(-3px) scale(1.01);
  border-color: rgb(var(--launch-accent-rgb) / 0.38);
  background-color: rgb(255 255 255 / 0.07);
  box-shadow: 0 18px 52px rgb(0 0 0 / 0.18);
}

.pipeline-funnel-step span,
.pipeline-funnel-step strong,
.pipeline-funnel-step p {
  position: relative;
  z-index: 1;
}

.pipeline-funnel-step span {
  grid-area: number;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: var(--launch-accent);
  border: 1px solid rgb(var(--launch-accent-rgb) / 0.44);
  border-radius: 999px;
  background: rgb(0 0 0 / 0.36);
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 11px;
  font-weight: 900;
}

.pipeline-funnel-step strong {
  grid-area: title;
  color: var(--launch-paper);
  font-size: clamp(24px, 2.35vw, 38px);
  line-height: 1;
}

.pipeline-funnel-step p {
  grid-area: text;
  max-width: 520px;
  margin: 0;
  color: var(--launch-muted-dark);
  font-size: 14px;
  line-height: 1.3;
}

.pipeline-funnel-step--accent {
  background: var(--launch-accent);
  border-color: rgb(255 255 255 / 0.26);
  box-shadow: 0 0 70px rgb(var(--launch-accent-rgb) / 0.24);
}

.pipeline-funnel-step--accent span {
  color: var(--launch-paper);
  border-color: rgb(255 255 255 / 0.45);
  background: rgb(0 0 0 / 0.18);
}

.pipeline-funnel-step--accent p {
  color: rgb(255 255 255 / 0.86);
}

.pipeline-board {
  position: relative;
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  border: 1px solid var(--launch-line-dark);
  overflow: hidden;
}

.pipeline-board::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 2px;
  background:
    linear-gradient(90deg, transparent, var(--launch-accent), transparent),
    linear-gradient(90deg, rgb(255 255 255 / 0.08), rgb(255 255 255 / 0.08));
  background-size: 38% 100%, 100% 100%;
  background-repeat: no-repeat;
  animation: launch-pipeline-scan 4.8s var(--launch-motion-ease) infinite;
  opacity: 0.72;
  z-index: 0;
}

.pipeline-step {
  position: relative;
  z-index: 1;
  min-height: 270px;
  padding: 24px;
  display: grid;
  align-content: space-between;
  gap: 20px;
  border-right: 1px solid var(--launch-line-dark);
  background: rgb(255 255 255 / 0.035);
  transition: transform 240ms var(--launch-motion-ease), background-color 240ms ease, border-color 240ms ease;
  overflow: hidden;
}

.pipeline-step::after {
  content: "";
  position: absolute;
  inset: auto 18px 18px 18px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgb(255 255 255 / 0.34), transparent);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.pipeline-step:hover {
  transform: translateY(-5px);
  background: rgb(255 255 255 / 0.07);
  border-color: rgb(var(--launch-accent-rgb) / 0.38);
}

.pipeline-step:hover::after {
  opacity: 1;
  transform: translateY(0);
}

.pipeline-step:last-child {
  border-right: 0;
}

.pipeline-step strong {
  color: var(--launch-paper);
  font-size: 28px;
  line-height: 1.1;
}

.pipeline-step p {
  margin: 0;
  color: var(--launch-muted-dark);
  font-size: 14px;
}

.pipeline-step--accent {
  background: var(--launch-accent);
  box-shadow: inset 0 0 0 1px rgb(255 255 255 / 0.12), 0 0 58px rgb(var(--launch-accent-rgb) / 0.25);
}

.pipeline-step--accent:hover {
  background: var(--launch-accent-strong);
}

.pipeline-step--accent span,
.pipeline-step--accent strong,
.pipeline-step--accent p {
  color: var(--launch-paper);
}

.launch-section-head {
  max-width: 850px;
}

.launch-video-grid {
  margin-top: 46px;
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  gap: 16px;
}

.launch-video-card {
  padding: 12px;
  background: var(--launch-paper);
  border: 1px solid var(--launch-line);
  transition: transform 240ms var(--launch-motion-ease), box-shadow 240ms ease, border-color 240ms ease;
}

.launch-video-card:hover {
  transform: translateY(-4px);
  border-color: rgb(var(--launch-accent-rgb) / 0.28);
  box-shadow: 0 22px 64px rgb(17 17 19 / 0.11);
}

.launch-video-frame {
  position: relative;
  min-height: 360px;
  padding: 22px;
  display: flex;
  align-items: flex-end;
  color: var(--launch-paper);
  background:
    linear-gradient(180deg, transparent 0%, rgb(0 0 0 / 0.72) 100%),
    repeating-linear-gradient(90deg, var(--launch-dark) 0 36px, var(--launch-dark-2) 36px 72px);
  border-radius: 6px;
  overflow: hidden;
}

.launch-video-frame--wide {
  min-height: 360px;
}

.launch-video-frame::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgb(255 255 255 / 0.2);
}

.launch-video-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, transparent 0%, rgb(255 255 255 / 0.1) 42%, transparent 70%),
    linear-gradient(90deg, transparent 0 38%, rgb(var(--launch-accent-rgb) / 0.24) 38% 39%, transparent 39% 100%);
  background-size: 160% 100%, 100% 100%;
  opacity: 0.58;
  animation: launch-video-sweep 5.8s ease-in-out infinite;
}

.play-dot {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--launch-accent);
  box-shadow: 0 0 0 0 rgb(var(--launch-accent-rgb) / 0.34);
  animation: launch-play-pulse 2.4s ease-out infinite;
  z-index: 2;
}

.play-dot::after {
  content: "";
  position: absolute;
  left: 17px;
  top: 12px;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 13px solid var(--launch-paper);
}

.launch-video-frame b,
.launch-video-frame small {
  position: relative;
  z-index: 1;
  display: block;
}

.launch-video-frame b {
  font-size: 28px;
  line-height: 1;
}

.launch-video-frame small {
  margin-top: 8px;
  color: var(--launch-muted-dark);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.launch-program-list {
  margin-top: 46px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.launch-program-list article {
  position: relative;
  min-height: 230px;
  padding: 24px;
  background: rgb(255 255 255 / 0.045);
  border: 1px solid var(--launch-line-dark);
  transition: transform 240ms var(--launch-motion-ease), background-color 240ms ease, border-color 240ms ease;
  overflow: hidden;
}

.launch-program-list article:hover {
  background: rgb(255 255 255 / 0.072);
  border-color: rgb(var(--launch-accent-rgb) / 0.32);
}

.launch-program-list p {
  color: var(--launch-muted-dark);
}

.launch-guide-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 0.9fr);
  gap: 70px;
  align-items: center;
}

.launch-guide p {
  max-width: 620px;
  color: var(--launch-muted);
}

.launch-section--dark.launch-guide p {
  color: var(--launch-muted-dark);
}

.guide-console {
  position: relative;
  min-height: 430px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: var(--launch-paper);
  background: var(--launch-dark);
  border: 1px solid var(--launch-line);
  border-radius: 8px;
  box-shadow: 0 26px 90px rgb(17 17 19 / 0.16);
  overflow: hidden;
}

.guide-console::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 0 49%, rgb(var(--launch-accent-rgb) / 0.12) 49% 50%, transparent 50% 100%),
    radial-gradient(circle at 78% 18%, rgb(var(--launch-accent-rgb) / 0.14), transparent 28%);
  opacity: 0.7;
  pointer-events: none;
}

.guide-console > * {
  position: relative;
  z-index: 1;
}

.guide-console__head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--launch-line-dark);
}

.guide-console__head span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--launch-accent);
  box-shadow: 0 0 24px var(--launch-accent-glow);
  animation: launch-status-pulse 2.2s ease-in-out infinite;
}

.guide-message {
  max-width: 86%;
  padding: 14px 16px;
  color: var(--launch-muted-dark);
  background: rgb(255 255 255 / 0.07);
  border: 1px solid var(--launch-line-dark);
  border-radius: 8px;
}

.guide-message--user {
  align-self: flex-end;
  color: var(--launch-paper);
  background: var(--launch-accent);
  border-color: var(--launch-accent);
}

.guide-checklist {
  margin-top: auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.guide-checklist span {
  min-height: 48px;
  padding: 10px;
  display: grid;
  place-items: center;
  color: var(--launch-muted-dark);
  border: 1px solid var(--launch-line-dark);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
}

.guide-checklist .is-done {
  color: var(--launch-paper);
  border-color: var(--launch-accent);
  background: var(--launch-accent-soft);
  box-shadow: inset 0 0 0 1px rgb(var(--launch-accent-rgb) / 0.24);
}

.pricing-grid {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  align-items: stretch;
}

.pricing-grid--single {
  max-width: 1040px;
  grid-template-columns: minmax(0, 1fr);
}

.pricing-grid article {
  position: relative;
  min-height: 0;
  padding: clamp(16px, 1.4vw, 22px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: rgb(255 255 255 / 0.045);
  border: 1px solid var(--launch-line-dark);
  transition: transform 240ms var(--launch-motion-ease), background-color 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
  overflow: hidden;
}

.pricing-card--self {
  scroll-margin-top: 108px;
}

.pricing-card--business {
  scroll-margin-top: 108px;
}

.pricing-card--unified {
  width: 100%;
  justify-self: center;
}

.pricing-grid .pricing-card--main {
  background: var(--launch-paper);
  color: var(--launch-ink);
  box-shadow: 0 0 0 1px rgb(var(--launch-accent-rgb) / 0.08), 0 24px 80px rgb(var(--launch-accent-rgb) / 0.12);
}

.pricing-grid .pricing-card--business {
  color: var(--launch-paper);
  background:
    linear-gradient(145deg, rgb(var(--launch-accent-rgb) / 0.18), transparent 34%),
    linear-gradient(180deg, #151515, #070707);
  border-color: rgb(var(--launch-accent-rgb) / 0.36);
  box-shadow: 0 28px 96px rgb(var(--launch-accent-rgb) / 0.16);
}

.pricing-grid article:hover {
  border-color: rgb(var(--launch-accent-rgb) / 0.34);
  box-shadow: 0 22px 80px rgb(0 0 0 / 0.22);
}

.pricing-grid h3 {
  margin-top: 24px;
  font-size: clamp(56px, 6.2vw, 84px);
  line-height: 0.96;
}

.pricing-price {
  margin-top: 10px;
  display: grid;
  gap: 5px;
}

.pricing-price__old {
  width: fit-content;
  color: currentColor;
  font-size: 20px;
  font-weight: 900;
  line-height: 1;
  opacity: 0.48;
  text-decoration: line-through;
  text-decoration-thickness: 2px;
  text-decoration-color: var(--launch-accent);
}

.pricing-price strong {
  color: currentColor;
  font-size: 54px;
  font-weight: 900;
  line-height: 0.94;
  white-space: nowrap;
}

.pricing-price em {
  width: fit-content;
  padding: 5px 8px;
  color: var(--launch-paper);
  background: var(--launch-accent);
  border-radius: 8px;
  font-size: 10.5px;
  font-style: normal;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.pricing-price small {
  color: currentColor;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.2;
  opacity: 0.58;
}

.pricing-card--business .pricing-price strong,
.pricing-card--main .pricing-price strong {
  font-size: 54px;
}

.pricing-grid p {
  margin: 10px 0 0;
  color: currentColor;
  font-size: 13.2px;
  line-height: 1.34;
  opacity: 0.72;
}

.pricing-grid a {
  margin-top: auto;
}

.pricing-list {
  margin: 12px 0 14px;
  padding: 0;
  display: grid;
  gap: 7px;
  list-style: none;
}

.pricing-list li {
  position: relative;
  padding-left: 16px;
  color: currentColor;
  font-size: 11.5px;
  line-height: 1.24;
  opacity: 0.74;
}

.pricing-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 7px;
  height: 7px;
  border-radius: 2px;
  background: var(--launch-accent);
  box-shadow: 0 0 14px var(--launch-accent-glow);
}

.pricing-list--modules {
  margin-top: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px 10px;
}

.pricing-card--main .pricing-list--modules {
  width: 100%;
  margin: 14px 0 14px;
  gap: 8px;
}

.pricing-card--main .pricing-list--modules li {
  min-height: 74px;
  padding: 12px 12px 12px 32px;
  display: flex;
  align-items: center;
  border: 1px solid rgb(17 17 19 / 0.14);
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgb(var(--launch-accent-rgb) / 0.06), transparent 42%),
    rgb(255 255 255 / 0.68);
  box-shadow: inset 0 0 0 1px rgb(255 255 255 / 0.42);
  color: rgb(25 25 28 / 0.78);
  font-size: 12.2px;
  font-weight: 850;
  line-height: 1.22;
  opacity: 1;
}

.pricing-card--main .pricing-list--modules li::before {
  left: 12px;
  top: 50%;
  width: 8px;
  height: 8px;
  transform: translateY(-50%);
  border-radius: 2px;
}

.pricing-tags {
  width: 100%;
  margin: 10px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.pricing-tags span {
  padding: 5px 7px;
  color: currentColor;
  border: 1px solid currentColor;
  border-radius: 999px;
  background: rgb(255 255 255 / 0.06);
  font-size: 9px;
  line-height: 1;
  opacity: 0.78;
}

.pricing-card--main .pricing-tags span {
  background: rgb(17 17 19 / 0.05);
}

.pricing-card--business .pricing-tags span {
  border-color: rgb(var(--launch-accent-rgb) / 0.44);
  background: rgb(var(--launch-accent-rgb) / 0.12);
}

.commercial-stack {
  width: 100%;
  margin: 12px 0 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
}

.commercial-stack div {
  min-height: 46px;
  padding: 7px;
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  grid-template-areas:
    "number title"
    "number text";
  gap: 4px 7px;
  align-items: start;
  border: 1px solid rgb(255 255 255 / 0.12);
  border-radius: 8px;
  background: rgb(255 255 255 / 0.055);
}

.commercial-stack span {
  grid-area: number;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  color: var(--launch-accent);
  border: 1px solid rgb(var(--launch-accent-rgb) / 0.42);
  border-radius: 50%;
  font-size: 10px;
  line-height: 1;
}

.commercial-stack strong {
  grid-area: title;
  color: var(--launch-paper);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.05;
}

.commercial-stack small {
  grid-area: text;
  color: var(--launch-muted-dark);
  font-size: 9px;
  font-weight: 700;
  line-height: 1.16;
}

.seat-meter {
  width: 100%;
  margin: 12px 0 0;
  padding: 10px;
  border: 1px solid rgb(255 255 255 / 0.12);
  border-radius: 8px;
  background: rgb(0 0 0 / 0.2);
}

.seat-meter--light {
  border-color: rgb(17 17 19 / 0.12);
  background: rgb(17 17 19 / 0.045);
}

.seat-meter__head {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
}

.seat-meter__head span {
  color: currentColor;
  font-size: 10.5px;
  opacity: 0.64;
}

.seat-meter__head strong {
  color: currentColor;
  font-size: 15px;
  font-weight: 900;
}

.seat-meter__track {
  width: 100%;
  height: 6px;
  margin-top: 7px;
  overflow: hidden;
  border-radius: 999px;
  background: rgb(255 255 255 / 0.12);
}

.seat-meter--light .seat-meter__track {
  background: rgb(17 17 19 / 0.12);
}

.seat-meter__track i {
  width: var(--seat-fill, var(--seat-left, 100%));
  height: 100%;
  display: block;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--launch-accent), #ff6f65);
  box-shadow: 0 0 22px rgb(var(--launch-accent-rgb) / 0.28);
}

.seat-meter p {
  margin: 6px 0 0;
  color: currentColor;
  font-size: 10.5px;
  line-height: 1.22;
  opacity: 0.66;
}

.seat-meter p b {
  color: currentColor;
  font-weight: 900;
}

.pricing-syllabus {
  width: 100%;
  margin: 12px 0 14px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px;
  list-style: none;
}

.pricing-syllabus li {
  min-width: 0;
  min-height: 58px;
  padding: 9px 10px;
  display: grid;
  align-content: start;
  gap: 6px;
  border: 1px solid rgb(255 255 255 / 0.14);
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgb(var(--launch-accent-rgb) / 0.08), transparent 46%),
    rgb(255 255 255 / 0.045);
  box-shadow: inset 0 0 0 1px rgb(255 255 255 / 0.035);
}

.pricing-syllabus li:last-child {
  grid-column: 1 / -1;
  min-height: 54px;
}

.pricing-syllabus span {
  color: var(--launch-accent);
  font-size: 10px;
  line-height: 1.2;
}

.pricing-syllabus b {
  display: block;
  color: currentColor;
  font-size: 11.4px;
  font-weight: 900;
  line-height: 1.08;
  opacity: 1;
  overflow-wrap: anywhere;
}

.pricing-skill-stack {
  width: 100%;
  margin: 14px 0 18px;
  border-top: 1px solid rgb(255 255 255 / 0.13);
  border-bottom: 1px solid rgb(255 255 255 / 0.13);
}

.pricing-card--main .pricing-skill-stack {
  border-color: rgb(17 17 19 / 0.14);
}

.pricing-skill-stack__head {
  min-height: 56px;
  padding: 13px 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  color: currentColor;
}

.pricing-skill-stack__head span {
  color: var(--launch-accent);
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1;
  text-transform: uppercase;
}

.pricing-skill-stack__head b {
  color: currentColor;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.1;
  text-align: right;
}

.pricing-skill-stack__body {
  padding: 0 0 14px;
}

.pricing-skill-stack__intro {
  margin: 0 0 8px;
  color: currentColor;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1.15;
  opacity: 0.64;
  text-transform: uppercase;
}

.pricing-skill-list {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
  list-style: none;
}

.pricing-card--unified .pricing-skill-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 18px;
}

.pricing-skill-list li {
  min-width: 0;
  padding: 10px 0;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 10px;
  border-top: 1px solid rgb(255 255 255 / 0.1);
}

.pricing-card--main .pricing-skill-list li {
  border-color: rgb(17 17 19 / 0.1);
}

.pricing-skill-list li:first-child {
  border-top: 0;
}

.pricing-skill-list span {
  color: var(--launch-accent);
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 10px;
  font-weight: 900;
  line-height: 1.2;
}

.pricing-skill-list strong {
  display: block;
  color: currentColor;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.1;
}

.pricing-grid .pricing-skill-list p {
  margin: 4px 0 0;
  color: currentColor;
  font-size: 11px;
  line-height: 1.28;
  opacity: 0.66;
}

.pricing-grid .pricing-skill-result {
  margin: 12px 0 0;
  padding-left: 14px;
  color: currentColor;
  border-left: 3px solid var(--launch-accent);
  font-size: 12px;
  line-height: 1.32;
  opacity: 0.82;
}

.pricing-skill-result b {
  color: currentColor;
  font-weight: 900;
}

.pricing-upgrade {
  width: 100%;
  margin: 0 0 26px;
  padding: 12px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 7px;
  align-items: center;
  border: 1px solid rgb(255 255 255 / 0.12);
  border-radius: 8px;
  background: rgb(0 0 0 / 0.18);
}

.pricing-upgrade span {
  min-height: 42px;
  padding: 9px 10px;
  display: grid;
  place-items: center;
  color: var(--launch-paper);
  border: 1px solid rgb(255 255 255 / 0.1);
  border-radius: 8px;
  background: rgb(255 255 255 / 0.055);
  font-size: 11px;
  font-weight: 900;
  line-height: 1.15;
  text-align: center;
}

.pricing-upgrade span:last-child {
  border-color: rgb(var(--launch-accent-rgb) / 0.5);
  background: rgb(var(--launch-accent-rgb) / 0.14);
}

.pricing-upgrade b {
  color: var(--launch-accent);
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 18px;
  line-height: 1;
}

.pricing-card--main .launch-cta {
  color: var(--launch-paper);
}

.pricing-card--unified .launch-cta {
  margin-top: 8px;
}

.pricing-list--business {
  margin-bottom: 14px;
}

.pricing-contact-actions {
  width: 100%;
  margin-top: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.pricing-contact-actions a {
  width: 100%;
  margin-top: 0;
  justify-content: center;
  text-align: center;
}

.pricing-note {
  margin: 8px 0 0;
  color: var(--launch-muted-dark);
  font-size: 9.8px;
  line-height: 1.25;
  opacity: 0.74;
}

.pricing-note--strong {
  width: 100%;
  padding: 8px;
  border: 1px solid rgb(var(--launch-accent-rgb) / 0.22);
  border-radius: 8px;
  background: rgb(var(--launch-accent-rgb) / 0.08);
  font-weight: 800;
  opacity: 1;
}

.is-promo-open {
  overflow: hidden;
}

.promo-modal[hidden] {
  display: none;
}

.promo-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
}

.promo-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgb(0 0 0 / 0.76);
  backdrop-filter: blur(12px);
}

.promo-modal__panel {
  position: relative;
  z-index: 1;
  width: min(100%, 560px);
  max-height: calc(100vh - 48px);
  overflow: auto;
  padding: clamp(26px, 4vw, 38px);
  color: var(--launch-paper);
  border: 2px solid var(--launch-accent);
  border-radius: 8px;
  background:
    radial-gradient(circle at 12% 8%, rgb(var(--launch-accent-rgb) / 0.22), transparent 24%),
    linear-gradient(135deg, rgb(var(--launch-accent-rgb) / 0.12), transparent 44%),
    #0b0b0c;
  box-shadow:
    0 0 0 1px rgb(var(--launch-accent-rgb) / 0.24),
    0 34px 120px rgb(0 0 0 / 0.62);
}

.promo-modal__icon {
  width: 56px;
  height: 56px;
  margin-bottom: 18px;
  display: grid;
  place-items: center;
  color: var(--launch-accent);
  border: 2px solid rgb(var(--launch-accent-rgb) / 0.55);
  border-radius: 999px;
  background: rgb(var(--launch-accent-rgb) / 0.18);
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 30px;
  font-weight: 900;
}

.promo-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  color: var(--launch-paper);
  border: 1px solid rgb(255 255 255 / 0.18);
  border-radius: 999px;
  background: rgb(255 255 255 / 0.06);
  font-size: 25px;
  line-height: 1;
  cursor: pointer;
}

.promo-modal h2 {
  max-width: 560px;
  margin: 14px 0 0;
  color: var(--launch-paper);
  font-size: clamp(34px, 4.8vw, 48px);
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: 0;
}

.promo-modal h2 span {
  color: var(--launch-accent);
  display: inline-block;
  white-space: nowrap;
}

.promo-modal p {
  max-width: 560px;
  margin: 18px 0 0;
  color: var(--launch-muted-dark);
  font-size: 17px;
  line-height: 1.6;
}

.promo-modal__code {
  margin-top: 18px;
  padding: 18px 20px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px 18px;
  align-items: center;
  border: 2px dashed rgb(var(--launch-accent-rgb) / 0.72);
  border-radius: 8px;
  background: rgb(var(--launch-accent-rgb) / 0.12);
}

.promo-modal__code span {
  grid-column: 1 / -1;
  color: var(--launch-muted-dark);
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.promo-modal__code strong {
  color: var(--launch-paper);
  font-size: clamp(34px, 5vw, 48px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.08em;
}

.promo-modal__code button {
  min-height: 48px;
  padding: 12px 18px;
  color: var(--launch-paper);
  border: 0;
  border-radius: 8px;
  background: var(--launch-accent);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}

.promo-modal__price {
  margin-top: 20px;
  display: flex;
  align-items: baseline;
  gap: 14px;
}

.promo-modal__price span {
  color: var(--launch-muted-dark);
  font-size: 24px;
  font-weight: 900;
  text-decoration: line-through;
  text-decoration-color: var(--launch-accent);
  text-decoration-thickness: 2px;
}

.promo-modal__price strong {
  color: var(--launch-paper);
  font-size: clamp(42px, 7vw, 56px);
  font-weight: 900;
  line-height: 1;
}

.promo-modal__timer {
  margin-top: 14px;
  min-width: 0;
  padding: 14px 0 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  border-top: 1px solid rgb(255 255 255 / 0.12);
}

.promo-modal__timer span {
  color: var(--launch-muted-dark);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.promo-modal__timer b {
  color: var(--launch-paper);
  font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: clamp(26px, 5vw, 44px);
  font-weight: 900;
  line-height: 1;
}

.promo-modal__actions {
  margin-top: 22px;
  display: grid;
  gap: 12px;
}

.promo-modal__actions .launch-cta {
  width: 100%;
  min-height: 70px;
}

.promo-modal__actions .launch-ghost {
  width: 100%;
  min-height: 30px;
  border-color: transparent;
  color: var(--launch-muted-dark);
}

.launch-takeaway-grid,
.launch-entry-grid,
.launch-bonus-grid,
.launch-fit-grid {
  margin-top: 46px;
  display: grid;
  gap: 14px;
}

.launch-takeaway-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.launch-entry-grid,
.launch-bonus-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.launch-fit-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.launch-takeaway-grid article,
.launch-entry-grid article,
.launch-bonus-grid article,
.launch-fit-grid article,
.launch-faq-list details {
  position: relative;
  border: 1px solid var(--launch-line);
  background: var(--launch-paper);
  overflow: hidden;
  transition: transform 240ms var(--launch-motion-ease), border-color 240ms ease, box-shadow 240ms ease, background-color 240ms ease;
}

.launch-takeaway-grid article,
.launch-entry-grid article,
.launch-bonus-grid article {
  min-height: 230px;
  padding: 24px;
}

.launch-fit-grid article {
  min-height: 150px;
  padding: 24px;
  color: var(--launch-muted-dark);
  border-color: var(--launch-line-dark);
  background: rgb(255 255 255 / 0.045);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.38;
}

.launch-takeaway-grid article:hover,
.launch-entry-grid article:hover,
.launch-bonus-grid article:hover,
.launch-fit-grid article:hover,
.launch-faq-list details:hover {
  transform: translateY(-4px);
  border-color: rgb(var(--launch-accent-rgb) / 0.32);
  box-shadow: 0 22px 64px rgb(17 17 19 / 0.11);
}

.launch-fit-grid article:hover {
  background: rgb(255 255 255 / 0.07);
  box-shadow: 0 22px 70px rgb(0 0 0 / 0.22);
}

.launch-takeaway-grid span,
.launch-entry-grid span,
.launch-bonus-grid span {
  color: var(--launch-accent);
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.launch-takeaway-grid h3,
.launch-entry-grid h3,
.launch-bonus-grid h3 {
  margin: 22px 0 0;
  color: var(--launch-ink);
  font-size: 25px;
  line-height: 1.08;
}

.launch-section--dark .launch-entry-grid article,
.launch-section--dark .launch-bonus-grid article,
.launch-section--dark .launch-faq-list details {
  color: var(--launch-ink);
  box-shadow: 0 24px 90px rgb(0 0 0 / 0.18);
}

.launch-faq-list {
  margin-top: 46px;
  display: grid;
  gap: 12px;
}

.launch-faq-list details {
  padding: 24px 26px;
}

.launch-faq-list summary {
  cursor: pointer;
  color: var(--launch-ink);
  font-size: 22px;
  font-weight: 900;
  line-height: 1.2;
  list-style: none;
}

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

.launch-faq-list summary::after {
  content: "+";
  float: right;
  color: var(--launch-accent);
  font-family: "JetBrains Mono", ui-monospace, monospace;
}

.launch-faq-list details[open] summary::after {
  content: "−";
}

.launch-faq-list p {
  margin: 18px 0 0;
  color: var(--launch-muted);
}

.launch-final-card {
  position: relative;
  padding: 58px;
  border: 1px solid var(--launch-line-dark);
  border-radius: 8px;
  background:
    radial-gradient(circle at 78% 28%, rgb(var(--launch-accent-rgb) / 0.22), transparent 34%),
    rgb(255 255 255 / 0.04);
  overflow: hidden;
}

.launch-final-card::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -120px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  border: 1px solid rgb(var(--launch-accent-rgb) / 0.42);
  box-shadow: 0 0 90px rgb(var(--launch-accent-rgb) / 0.18);
  opacity: 0.55;
}

.launch-final-card > * {
  position: relative;
  z-index: 1;
}

.launch-final-card h2 {
  max-width: 940px;
}

.launch-final-card p:not(.launch-kicker) {
  max-width: 760px;
  color: var(--launch-muted-dark);
}

.launch-todo {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
  list-style: none;
}

.launch-todo li {
  padding: 18px 20px;
  color: var(--launch-ink-soft);
  background: var(--launch-paper);
  border: 1px solid var(--launch-line);
  border-radius: 8px;
}

.launch-footer {
  padding: 40px 0;
  color: var(--launch-muted-dark);
  background: var(--launch-dark);
  border-top: 1px solid var(--launch-line-dark);
}

.launch-footer .launch-wrap {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 20px 40px;
  align-items: center;
}

.launch-footer nav {
  justify-self: end;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--launch-muted-dark);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.launch-footer p {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--launch-muted-dark);
  font-size: 13px;
}

.is-motion-ready .launch-animate {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  transition:
    opacity var(--launch-motion-slow) var(--launch-motion-ease),
    transform var(--launch-motion-slow) var(--launch-motion-ease);
  transition-delay: calc(var(--motion-order, 0) * 55ms);
  will-change: opacity, transform;
}

.is-motion-ready .launch-animate.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

@keyframes launch-guide-drift {
  0% {
    transform: translate3d(0, 0, 0) rotate(-1.2deg) scale(1);
  }
  100% {
    transform: translate3d(-18px, -20px, 0) rotate(1.2deg) scale(1.025);
  }
}

@keyframes launch-proof-scan {
  0%,
  24% {
    opacity: 0;
    transform: translateX(-120%);
  }
  38% {
    opacity: 1;
  }
  58% {
    opacity: 0;
    transform: translateX(120%);
  }
  100% {
    opacity: 0;
    transform: translateX(120%);
  }
}

@keyframes launch-caption-border {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes launch-pipeline-scan {
  0% {
    background-position: -45% 0, 0 0;
  }
  100% {
    background-position: 145% 0, 0 0;
  }
}

@keyframes launch-pipeline-scan-y {
  0% {
    background-position: 0 -45%, 0 0;
  }
  100% {
    background-position: 0 145%, 0 0;
  }
}

@keyframes launch-system-flow {
  0%,
  100% {
    transform: scale(0.76);
    opacity: 0.46;
  }
  45% {
    transform: scale(1.18);
    opacity: 1;
  }
}

@keyframes launch-content-load {
  0%,
  100% {
    transform: translateX(0);
  }
  45% {
    transform: translateX(8px);
  }
}

@keyframes launch-funnel-sweep {
  0%,
  26% {
    opacity: 0;
    transform: translateX(-120%);
  }
  42% {
    opacity: 1;
  }
  64%,
  100% {
    opacity: 0;
    transform: translateX(120%);
  }
}

@keyframes launch-video-sweep {
  0%,
  30% {
    background-position: -95% 0, 0 0;
  }
  70% {
    background-position: 115% 0, 0 0;
  }
  100% {
    background-position: 115% 0, 0 0;
  }
}

@keyframes launch-play-pulse {
  0% {
    box-shadow: 0 0 0 0 rgb(var(--launch-accent-rgb) / 0.38);
  }
  70%,
  100% {
    box-shadow: 0 0 0 18px rgb(var(--launch-accent-rgb) / 0);
  }
}

@keyframes launch-status-pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.82;
  }
  50% {
    transform: scale(1.22);
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .launch-landing *,
  .launch-landing *::before,
  .launch-landing *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }

  .launch-cta,
  .launch-ghost,
  .builder-chip,
  .launch-result-grid article,
  .launch-video-card,
  .launch-program-list article,
  .pipeline-step,
  .pipeline-funnel-step,
  .pricing-grid article,
  .content-debt-visual__stack span,
  .launch-animate {
    transition: none;
  }

  .is-motion-ready .launch-animate {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1080px) {
  .launch-ai-reality {
    min-height: auto;
  }

  .launch-reality-layout {
    gap: 34px;
  }

  .launch-reality-heading h2 {
    max-width: 840px;
    font-size: 58px;
  }

  .launch-reality-copy {
    max-width: 840px;
  }

  .launch-pricing {
    min-height: auto;
    align-content: start;
  }

  .launch-pricing .launch-section-head h2 {
    font-size: 42px;
    white-space: normal;
  }

  .pricing-price strong,
  .pricing-card--main .pricing-price strong,
  .pricing-card--business .pricing-price strong {
    font-size: 56px;
  }

  .launch-brand__domain {
    font-size: 14px;
  }

  .launch-nav {
    gap: 18px;
    overflow-x: auto;
    padding-bottom: 4px;
    font-size: 10px;
  }

  .launch-cta--small {
    min-height: 38px;
    padding-inline: 14px;
    font-size: 10px;
  }

  .launch-owner-link {
    min-height: 38px;
    padding-inline: 12px;
    font-size: 10px;
  }

  .launch-hero {
    min-height: 520px;
    padding-top: 88px;
    padding-bottom: 40px;
  }

  .launch-hero__layout {
    grid-template-columns: 330px minmax(410px, 430px);
    gap: 35px;
  }

  .launch-hero .launch-kicker {
    margin-bottom: 14px;
    font-size: 9.5px;
    white-space: nowrap;
  }

  .launch-hero h1 {
    max-width: 330px;
    font-size: 40px;
  }

  .launch-lead {
    max-width: 340px;
    font-size: 16px;
  }

  .launch-actions {
    margin-top: 24px;
  }

  .launch-proofline {
    margin-top: 28px;
  }

  .launch-proofline span {
    min-height: 48px;
    padding: 12px 8px;
    font-size: 9px;
  }

  .build-configurator {
    width: min(100%, 430px);
    padding: 12px;
  }

  .builder-row {
    min-height: 31px;
    grid-template-columns: 22px 60px minmax(0, 1fr);
    gap: 5px;
    padding: 5px 7px;
  }

  .builder-row__number {
    width: 19px;
    height: 19px;
    font-size: 9px;
  }

  .builder-row__label {
    font-size: 7.5px;
  }

  .builder-options {
    gap: 4px;
  }

  .builder-chip {
    min-height: 19px;
    padding: 4px 5px 4px 17px;
    border-radius: 7px;
    font-size: 6.6px;
  }

  .builder-chip::before {
    left: 6px;
    width: 7px;
    height: 7px;
  }

  .builder-summary {
    grid-template-columns: minmax(0, 1fr) 132px;
    gap: 8px;
    margin-top: 8px;
    padding: 8px;
  }

  .launch-section .builder-result h2 {
    font-size: 13px;
  }

  .builder-result li {
    font-size: 8px;
  }

  .builder-tariff {
    padding: 8px;
    gap: 9px;
  }

  .builder-tariff strong {
    font-size: 19px;
  }

  .builder-tariff b {
    display: block;
    font-size: 15px;
    line-height: 1.05;
    overflow-wrap: anywhere;
  }

  .builder-tariff .launch-cta {
    width: 100%;
    min-width: 0;
    min-height: 36px;
    padding-inline: 6px;
    box-sizing: border-box;
    font-size: 7.5px;
  }

  .builder-note {
    font-size: 8px;
  }

  .launch-builder-hero h1 {
    max-width: 660px;
    font-size: 48px;
  }

  .launch-builder-hero .launch-lead {
    max-width: 560px;
  }

  .launch-builder-hero .launch-hero__layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .launch-hero__visual {
    display: none;
  }

  .launch-builder-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .launch-builder-head {
    position: static;
  }

  .launch-builder-section .build-configurator {
    width: 100%;
    padding: 18px;
  }

  .launch-builder-section .builder-row {
    min-height: 64px;
    grid-template-columns: 36px minmax(130px, 0.3fr) minmax(0, 1fr);
    gap: 14px;
    padding: 13px 14px;
  }

  .launch-builder-section .builder-row__number {
    width: 30px;
    height: 30px;
    font-size: 13px;
  }

  .launch-builder-section .builder-row__label {
    font-size: 13px;
  }

  .launch-builder-section .builder-chip {
    min-height: 38px;
    padding: 10px 13px 10px 34px;
    font-size: 12px;
  }

  .launch-builder-section .builder-chip::before {
    left: 13px;
    width: 12px;
    height: 12px;
  }

  .launch-builder-section .builder-summary {
    grid-template-columns: minmax(0, 1fr) minmax(210px, 260px);
  }

  .launch-builder-section .builder-result h2 {
    font-size: 26px;
  }

  .launch-hero__bg img {
    right: -150px;
    opacity: 0.46;
  }

  .launch-result-grid,
  .launch-metric-grid,
  .launch-takeaway-grid,
  .launch-entry-grid,
  .launch-bonus-grid,
  .launch-fit-grid,
  .pipeline-board {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .launch-metric-grid article {
    border-bottom: 1px solid var(--launch-line);
  }

  .launch-metric-grid article:nth-child(2n) {
    border-right: 0;
  }

  .pipeline-step {
    border-bottom: 1px solid var(--launch-line-dark);
  }

  .pipeline-step:nth-child(2n) {
    border-right: 0;
  }

  .launch-video-grid,
  .launch-program-list,
  .pricing-grid,
  .launch-two-col,
  .launch-guide-grid {
    grid-template-columns: 1fr;
  }

  .pipeline-funnel-step {
    width: var(--funnel-width) !important;
    min-width: min(100%, 560px);
    padding-inline: clamp(18px, 3vw, 32px);
    grid-template-columns: 36px minmax(100px, 0.32fr) minmax(0, 1fr);
  }

}

@media (max-width: 820px) {
  .launch-header {
    grid-template-columns: auto auto;
  }

  .launch-nav {
    grid-column: 1 / -1;
    justify-self: start;
    width: 100%;
  }

  .launch-hero__layout {
    grid-template-columns: 1fr;
  }

  .build-configurator {
    max-width: 680px;
  }
}

@media (max-width: 680px) {
  .launch-wrap {
    width: min(100% - 28px, var(--launch-max));
  }

  .launch-ai-reality {
    padding-block: 34px;
  }

  .launch-reality-layout {
    gap: 14px;
  }

  .launch-reality-heading h2 {
    font-size: 38px;
    line-height: 0.95;
  }

  .launch-reality-heading {
    padding-top: 0;
  }

  .launch-reality-copy {
    gap: 13px;
    font-size: 13.5px;
    line-height: 1.36;
  }

  .launch-reality-text {
    gap: 10px;
  }

  .launch-reality-lead {
    font-size: 20.5px;
    line-height: 1.15;
  }

  .launch-reality-outcome {
    padding-top: 16px;
  }

  .launch-reality-outcome strong {
    font-size: 23px;
  }

  .launch-reality-outcome p {
    margin-top: 9px;
    font-size: 12.5px;
    line-height: 1.32;
  }

  .promo-modal {
    padding: 12px;
  }

  .promo-modal__panel {
    max-height: calc(100vh - 24px);
    padding: 22px;
  }

  .promo-modal h2 {
    padding-right: 34px;
    font-size: 36px;
  }

  .promo-modal__price {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .promo-modal__code {
    grid-template-columns: 1fr;
  }

  .promo-modal__code strong {
    font-size: 34px;
    letter-spacing: 0.04em;
  }

  .promo-modal__timer {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .promo-modal__actions {
    display: grid;
  }

  .launch-header {
    position: sticky;
    min-height: 56px;
    padding: 9px 14px;
    display: flex;
    justify-content: flex-start;
  }

  .launch-logo {
    width: 112px;
  }

  .launch-brand {
    gap: 8px;
  }

  .launch-brand__divider {
    height: 24px;
  }

  .launch-brand__domain {
    font-size: 13px;
  }

  .launch-header .launch-nav,
  .launch-header .launch-cta--small {
    display: none;
  }

  .launch-header-actions {
    margin-left: auto;
  }

  .launch-hero {
    min-height: auto;
    padding: 20px 0 34px;
    align-items: flex-start;
  }

  .launch-hero__layout {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .launch-builder-hero .launch-hero__content {
    display: contents;
  }

  .launch-builder-hero .launch-kicker {
    order: 1;
    margin-bottom: 12px;
    font-size: 9px;
    white-space: normal;
  }

  .launch-hero h1 {
    order: 2;
    max-width: 100%;
    font-size: 33px;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .launch-builder-hero .launch-lead,
  .launch-builder-hero .launch-actions {
    display: none;
  }

  .launch-builder-hero .launch-hero__visual {
    order: 3;
    display: block;
    width: 100%;
    margin-top: 20px;
  }

  .launch-builder-hero .hero-edit-showcase {
    min-height: 392px;
  }

  .launch-builder-hero .hero-edit-showcase::before {
    inset: 20px 4px 30px 28px;
    border-radius: 18px;
  }

  .launch-builder-hero .hero-edit-showcase__brand {
    margin: 0 6px 0 0;
    font-size: 11px;
    text-align: right;
  }

  .launch-builder-hero .hero-video-card--raw {
    left: 2px;
    top: 72px;
    width: 118px;
    border-radius: 8px;
    transform: rotate(-3deg);
  }

  .launch-builder-hero .hero-video-card--edited {
    right: 0;
    top: 26px;
    width: 198px;
    border-radius: 8px;
    transform: rotate(1deg);
    box-shadow:
      0 0 0 1px rgb(var(--launch-accent-rgb) / 0.16),
      0 0 24px rgb(var(--launch-accent-rgb) / 0.3),
      0 20px 52px rgb(0 0 0 / 0.54);
  }

  .launch-builder-hero .hero-video-card__label {
    top: -25px;
    font-size: 9px;
  }

  .launch-builder-hero .hero-edit-showcase__bridge {
    left: 105px;
    top: 38px;
    width: 72px;
    padding: 0;
    flex-direction: column;
    gap: 14px;
    background: transparent;
    box-shadow: none;
    font-size: 9px;
  }

  .launch-builder-hero .hero-edit-showcase__bridge-label {
    gap: 5px;
    white-space: nowrap;
  }

  .launch-builder-hero .hero-edit-showcase__bridge b {
    font-size: 20px;
  }

  .launch-builder-hero .hero-video-card__sound {
    right: 7px;
    bottom: 7px;
    width: 34px;
    height: 34px;
    font-size: 14px;
  }

  .launch-builder-hero .hero-video-card__caption {
    left: -2px;
    top: calc(100% + 10px);
    width: 178px;
    min-height: 40px;
    padding: 10px 9px;
    border-radius: 7px;
    font-size: 8.5px;
    line-height: 1.25;
    transform: rotate(2deg);
  }

  .launch-mobile-flow-title {
    order: 4;
    display: block;
    width: 100%;
    margin: 8px 0 14px;
    color: var(--launch-accent);
    font-family: "JetBrains Mono", ui-monospace, monospace;
    font-size: 12px;
    font-weight: 900;
    line-height: 1.2;
    text-transform: uppercase;
  }

  .launch-hero__bg img {
    right: -190px;
    bottom: -80px;
    min-width: 380px;
    opacity: 0.24;
  }

  .launch-proofline {
    order: 5;
    width: 100%;
    margin-top: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    border: 0;
    background:
      linear-gradient(90deg, transparent 49.7%, rgb(var(--launch-accent-rgb) / 0.34) 50%, transparent 50.3%);
  }

  .launch-proofline span {
    width: var(--mobile-funnel-width);
    min-height: 40px;
    padding: 9px 10px;
    border: 1px solid rgb(var(--launch-accent-rgb) / 0.42);
    border-radius: 6px;
    background:
      linear-gradient(90deg, rgb(var(--launch-accent-rgb) / 0.1), transparent 34% 66%, rgb(var(--launch-accent-rgb) / 0.1)),
      rgb(8 8 9 / 0.96);
    box-shadow:
      inset 0 1px 0 rgb(255 255 255 / 0.055),
      0 7px 20px rgb(0 0 0 / 0.24);
    color: var(--launch-paper);
    font-size: 9px;
    line-height: 1.1;
    overflow: visible;
  }

  .launch-proofline span:nth-child(1) {
    --mobile-funnel-width: 44%;
  }

  .launch-proofline span:nth-child(2) {
    --mobile-funnel-width: 53%;
  }

  .launch-proofline span:nth-child(3) {
    --mobile-funnel-width: 62%;
  }

  .launch-proofline span:nth-child(4) {
    --mobile-funnel-width: 71%;
  }

  .launch-proofline span:nth-child(5) {
    --mobile-funnel-width: 80%;
  }

  .launch-proofline span:nth-child(6) {
    --mobile-funnel-width: 90%;
  }

  .launch-proofline span:nth-child(7) {
    --mobile-funnel-width: 100%;
    min-height: 46px;
    color: var(--launch-paper);
    border-color: var(--launch-accent);
    background: var(--launch-accent);
    box-shadow: 0 10px 28px rgb(var(--launch-accent-rgb) / 0.24);
  }

  .launch-builder-hero h1 {
    max-width: min(100%, 332px);
    font-size: 31px;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .build-configurator {
    padding: 14px;
    border-radius: 10px;
  }

  .launch-builder-section .builder-row {
    grid-template-columns: 32px 1fr;
    gap: 10px 12px;
    padding: 12px;
  }

  .launch-builder-section .builder-options {
    grid-column: 1 / -1;
  }

  .launch-builder-section .builder-chip {
    flex: 1 1 100%;
    min-height: 42px;
    justify-content: flex-start;
    font-size: 12px;
  }

  .launch-builder-section .builder-summary {
    grid-template-columns: 1fr;
    padding: 14px;
  }

  .launch-builder-section .builder-result h2 {
    font-size: 24px;
  }

  .launch-builder-section .builder-tariff strong {
    font-size: 30px;
  }

  .builder-row {
    grid-template-columns: 30px 1fr;
    gap: 8px 10px;
    padding: 10px;
  }

  .builder-options {
    grid-column: 1 / -1;
  }

  .builder-chip {
    flex: 1 1 calc(50% - 8px);
    justify-content: center;
  }

  .builder-summary {
    grid-template-columns: 1fr;
  }

  .launch-section h2 {
    max-width: 100%;
    font-size: 28px;
    overflow-wrap: anywhere;
  }

  .launch-pricing .launch-section-head h2 {
    font-size: 28px;
  }

  .launch-pricing .launch-section-head > p:not(.launch-kicker) {
    font-size: 14px;
  }

  .launch-section--light,
  .launch-section--dark:not(.launch-hero) {
    padding-block: 66px;
  }

  .content-debt-visual {
    min-height: auto;
    padding: 20px;
  }

  .content-debt-visual::before {
    inset: 10px;
  }

  .course-demo__stage {
    min-height: 230px;
  }

  .course-demo__device {
    width: min(88vw, 430px);
    padding: 7px 7px 9px;
    border-radius: 13px 13px 7px 7px;
    background: linear-gradient(145deg, #27282b 0%, #08090a 55%, #343538 100%);
    transform: rotateX(1.5deg) rotateY(-2deg);
  }

  .course-demo__screen {
    aspect-ratio: 16 / 9;
    border-radius: 6px 6px 3px 3px;
  }

  .course-demo__camera {
    top: 3px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #15171a;
  }

  .course-demo__base {
    display: block;
    height: 10px;
  }

  .course-demo__caption {
    margin-top: 18px;
    grid-template-columns: 1fr;
    gap: 5px;
    text-align: center;
  }

  .course-demo__caption strong {
    font-size: 16px;
  }

  .launch-stats {
    padding-block: 26px 32px;
  }

  .launch-stats > .launch-two-col {
    gap: 12px;
  }

  .launch-stats .launch-kicker {
    margin-bottom: 8px;
    font-size: 10px;
  }

  .launch-stats h2 {
    font-size: clamp(24px, 6.8vw, 27px);
    line-height: 1.02;
  }

  .launch-stats .course-demo__stage {
    min-height: 176px;
  }

  .launch-stats .course-demo__device {
    width: min(88vw, 360px);
    padding: 7px 7px 9px;
    border-radius: 13px 13px 7px 7px;
  }

  .launch-stats .course-demo__screen {
    aspect-ratio: 16 / 9;
    border-radius: 6px 6px 3px 3px;
  }

  .launch-stats .course-demo__camera {
    top: 3px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
  }

  .launch-stats .course-demo__base {
    display: block;
  }

  .launch-stats .course-demo__caption {
    margin-top: 10px;
    gap: 3px;
  }

  .launch-stats .course-demo__caption span {
    font-size: 9px;
  }

  .launch-stats .course-demo__caption strong {
    font-size: 14px;
    line-height: 1.18;
  }

  .launch-stats .launch-metric-grid {
    margin-top: 32px;
  }

  .content-debt-visual {
    grid-template-columns: 1fr;
  }

  .content-debt-visual__stack span,
  .content-debt-visual__stack span:nth-child(n) {
    margin-left: 0;
  }

  .content-debt-visual__center {
    min-height: 150px;
  }

  .content-debt-visual__route {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    margin-top: 8px;
    flex-direction: column;
  }

  .launch-result-grid,
  .launch-metric-grid,
  .launch-takeaway-grid,
  .launch-entry-grid,
  .launch-bonus-grid,
  .launch-fit-grid,
  .pipeline-board,
  .guide-checklist {
    grid-template-columns: 1fr;
  }

  .launch-metric-grid article {
    min-height: auto;
    border-right: 0;
  }

  .pipeline-step {
    min-height: 190px;
    border-right: 0;
  }

  .pipeline-funnel {
    margin-top: 24px;
    gap: 8px;
  }

  .launch-section--dark.launch-pipeline {
    min-height: auto;
    padding-block: 36px;
  }

  .launch-pipeline h2 {
    font-size: 26px;
    line-height: 0.98;
  }

  .pipeline-funnel::before {
    display: none;
  }

  .pipeline-funnel-step {
    width: 100% !important;
    min-width: 0;
    min-height: auto;
    padding: 12px;
    grid-template-columns: 34px minmax(0, 1fr);
    grid-template-areas:
      "number title"
      "text text";
    gap: 6px 10px;
    border-radius: 14px;
  }

  .pipeline-funnel-step span {
    width: 32px;
    height: 32px;
  }

  .pipeline-funnel-step strong {
    font-size: 24px;
  }

  .pipeline-funnel-step p {
    font-size: 13px;
    line-height: 1.28;
  }

  .launch-video-frame,
  .launch-video-frame--wide {
    min-height: 300px;
  }

  .pricing-upgrade {
    grid-template-columns: 1fr;
  }

  .pricing-upgrade b {
    justify-self: center;
  }

  .pricing-list--modules {
    grid-template-columns: 1fr;
  }

  .pricing-list--business {
    margin-top: 18px;
  }

  .pricing-tags {
    gap: 7px;
  }

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

  .pricing-syllabus li {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .pricing-skill-stack__head {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 6px 10px;
  }

  .pricing-skill-stack__head b {
    grid-column: 1;
    text-align: left;
  }

  .pricing-card--unified .pricing-skill-list {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .pricing-skill-list li {
    grid-template-columns: 30px minmax(0, 1fr);
    gap: 8px;
  }

  .pricing-grid h3 {
    font-size: clamp(46px, 14vw, 64px);
  }

  .pricing-price strong,
  .pricing-card--main .pricing-price strong,
  .pricing-card--business .pricing-price strong {
    font-size: 46px;
  }

  .commercial-stack {
    grid-template-columns: 1fr;
  }

  .commercial-stack div {
    min-height: 0;
    grid-template-columns: 34px minmax(0, 1fr);
    grid-template-areas:
      "number title"
      "text text";
    gap: 8px 10px;
  }

  .commercial-stack span {
    grid-area: number;
  }

  .commercial-stack strong {
    grid-area: title;
  }

  .commercial-stack small {
    grid-area: text;
  }

  .pricing-contact-actions {
    grid-template-columns: 1fr;
  }

  .launch-final-card {
    padding: 30px 22px;
  }

  .launch-faq-list summary {
    font-size: 19px;
  }

  .launch-footer .launch-wrap {
    grid-template-columns: 1fr;
  }

  .launch-footer nav {
    justify-self: start;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--color-carbon-black);
  background: var(--color-warm-canvas);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

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

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--color-mint-chip);
  outline-offset: 3px;
}

p,
li {
  color: var(--color-slate);
  font-size: 16px;
  line-height: 1.6;
}

p {
  margin: 0 0 20px;
}

strong {
  color: var(--color-carbon-black);
}

.site-header {
  min-height: 128px;
  padding: 32px max(24px, calc((100vw - var(--max)) / 2));
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.brand-wordmark {
  display: block;
  width: 172px;
  max-width: 100%;
  height: auto;
  aspect-ratio: 1206 / 406;
  object-fit: contain;
  border-radius: 4px;
  background: #000000;
}

html[data-theme="light"] .brand-wordmark {
  background: transparent;
  filter: invert(1) hue-rotate(180deg) saturate(6);
  mix-blend-mode: multiply;
}

.brand-mark {
  width: 12px;
  height: 12px;
  border-radius: 2px;
  background: var(--color-carbon-black);
}

.top-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 56px;
  padding: 8px 24px;
  border-radius: 48px;
  background: var(--color-paper-white);
  color: var(--color-slate);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

.top-nav a {
  white-space: nowrap;
}

.top-nav a:hover {
  color: var(--color-carbon-black);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.header-action,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 22px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.header-action,
.button-dark {
  background: var(--color-carbon-black);
  color: var(--color-paper-white);
}

.button-ghost {
  border: 2px solid var(--color-slate);
  color: var(--color-slate);
}

.button:hover,
.header-action:hover {
  transform: translateY(-1px);
}

.home-hero {
  max-width: var(--max);
  min-height: 680px;
  margin: 0 auto;
  padding: 64px 24px 80px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
  align-items: center;
  gap: 56px;
}

.mono-label,
.kicker,
.section-label,
.toc-title,
.meta-row,
.site-footer {
  font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.6;
  text-transform: uppercase;
}

.mono-label,
.kicker,
.section-label {
  color: var(--color-smoke);
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--color-carbon-black);
  line-height: 1;
}

h1,
h2 {
  font-family: "Anton", "Impact", "Arial Narrow", sans-serif;
  font-weight: 900;
  text-transform: uppercase;
}

h1 {
  max-width: 720px;
  margin-top: 20px;
  font-size: 96px;
  line-height: 0.95;
}

.hero-lead {
  max-width: 660px;
  margin-top: 28px;
  color: var(--color-slate);
  font-size: 20px;
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.hero-product {
  position: relative;
  min-height: 480px;
  border-radius: 64px;
  background: var(--color-mist-gray);
  overflow: hidden;
}

.product-cube,
.product-chip {
  position: absolute;
  display: grid;
  align-content: space-between;
  padding: 22px;
  border-radius: 28px;
}

.product-cube span,
.product-chip,
.module-card span,
.mint-tag {
  font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.product-cube strong {
  font-family: "Anton", "Impact", "Arial Narrow", sans-serif;
  font-size: 42px;
  line-height: 1;
}

.product-cube--black {
  left: 38px;
  top: 56px;
  width: 260px;
  height: 210px;
  background: var(--color-carbon-black);
  color: var(--color-paper-white);
}

.product-cube--black strong,
.product-cube--black span {
  color: var(--color-paper-white);
}

.product-cube--white {
  right: 34px;
  top: 150px;
  width: 250px;
  height: 190px;
  background: var(--color-paper-white);
}

.product-cube--mint {
  left: 92px;
  bottom: 42px;
  width: 260px;
  height: 150px;
  background: var(--color-mint-chip);
}

.product-chip {
  min-width: 92px;
  min-height: 72px;
  align-content: center;
  justify-content: center;
}

.product-chip--yellow {
  right: 88px;
  bottom: 64px;
  background: var(--color-voltage-yellow);
}

.product-chip--mint {
  right: 40px;
  top: 58px;
  background: var(--color-mint-chip);
}

.section-band {
  max-width: var(--max);
  margin: 0 auto;
  padding: 80px 24px;
}

.section-heading {
  max-width: 900px;
}

.section-heading h2,
.launch-panel h2 {
  margin-top: 16px;
  font-size: 64px;
  line-height: 0.95;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1.15fr);
  gap: 48px;
  align-items: start;
  margin-top: 40px;
}

.split-layout p {
  max-width: 560px;
  color: var(--color-slate);
  font-size: 20px;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

.proof-strip span {
  min-height: 108px;
  padding: 18px;
  border-radius: 28px;
  background: var(--color-paper-white);
  color: var(--color-carbon-black);
  font-family: "Anton", "Impact", "Arial Narrow", sans-serif;
  font-size: 24px;
  text-transform: uppercase;
}

.section-band--dark {
  max-width: none;
  padding-left: max(24px, calc((100vw - var(--max)) / 2));
  padding-right: max(24px, calc((100vw - var(--max)) / 2));
  background: var(--color-carbon-black);
}

.section-band--dark h2,
.section-band--dark h3,
.section-band--dark .mono-label {
  color: var(--color-paper-white);
}

.section-band--dark p {
  color: var(--color-smoke);
}

.system-grid,
.module-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.system-grid article,
.module-card {
  min-height: 250px;
  padding: 24px;
  border-radius: 32px;
}

.system-grid article {
  background: var(--color-graphite);
}

.system-grid h3,
.module-card h3 {
  margin-top: 20px;
  font-size: 28px;
  line-height: 1.15;
  text-transform: uppercase;
}

.system-grid p,
.module-card p {
  margin-top: 18px;
}

.mint-tag {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 14px;
  border-radius: 64px;
  background: var(--color-mint-chip);
  color: var(--color-carbon-black);
}

.module-card {
  display: block;
  background: var(--color-paper-white);
}

.module-card--active {
  background: var(--color-mint-chip);
}

.module-card span {
  color: var(--color-smoke);
}

.module-card--active span {
  color: var(--color-carbon-black);
}

.launch-panel {
  max-width: var(--max);
  margin: 0 auto 80px;
  padding: 48px 24px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: end;
  border-radius: 64px 64px 0 0;
  background: var(--color-paper-white);
}

.launch-panel h2 {
  max-width: 800px;
  font-size: 48px;
}

.site-footer {
  max-width: var(--max);
  margin: 0 auto;
  padding: 24px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  color: var(--color-slate);
  border-top: 1px solid var(--color-ash);
}

.manual-page {
  --manual-bg: #050506;
  --manual-surface: rgba(255, 255, 255, 0.045);
  --manual-surface-strong: rgba(255, 255, 255, 0.075);
  --manual-header-bg: rgba(5, 5, 6, 0.86);
  --manual-sidebar-bg: rgba(5, 5, 6, 0.58);
  --manual-control-bg: rgba(255, 255, 255, 0.03);
  --manual-card-bg: rgba(255, 255, 255, 0.035);
  --manual-quote-bg: rgba(255, 255, 255, 0.055);
  --manual-code-bg: rgba(0, 0, 0, 0.68);
  --manual-text: #ffffff;
  --manual-muted: #a1a1aa;
  --manual-muted-strong: #d4d4d8;
  --manual-line: rgba(255, 255, 255, 0.12);
  --manual-line-strong: rgba(255, 255, 255, 0.22);
  --manual-accent-rgb: 255 45 32;
  --manual-accent: rgb(var(--manual-accent-rgb));
  --manual-accent-strong: #e0241a;
  --manual-accent-soft: rgb(var(--manual-accent-rgb) / 0.16);
  --manual-accent-glow: rgb(var(--manual-accent-rgb) / 0.48);
  --manual-success: #22c55e;
  --manual-info: #38bdf8;
  --manual-warning: #f59e0b;
  --manual-theme-black: #090909;
  --manual-theme-white: #ffffff;
  --manual-radius-panel: 16px;
  --manual-radius-slot: 10px;
  color-scheme: dark;
  color: var(--manual-text);
  background:
    linear-gradient(90deg, rgba(255, 45, 32, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(255, 45, 32, 0.06) 1px, transparent 1px),
    var(--manual-bg);
  background-size: 72px 72px, 72px 72px, auto;
  font-family: "Manrope", Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

html[data-theme="light"] .manual-page {
  --manual-bg: #f5f5f2;
  --manual-surface: rgba(0, 0, 0, 0.035);
  --manual-surface-strong: rgba(0, 0, 0, 0.075);
  --manual-header-bg: rgba(248, 248, 246, 0.9);
  --manual-sidebar-bg: rgba(255, 255, 255, 0.76);
  --manual-control-bg: rgba(0, 0, 0, 0.035);
  --manual-card-bg: rgba(255, 255, 255, 0.72);
  --manual-quote-bg: rgba(0, 0, 0, 0.045);
  --manual-code-bg: #151518;
  --manual-text: #111113;
  --manual-muted: #71717a;
  --manual-muted-strong: #36363b;
  --manual-line: rgba(0, 0, 0, 0.12);
  --manual-line-strong: rgba(0, 0, 0, 0.24);
  --manual-accent-soft: rgb(var(--manual-accent-rgb) / 0.12);
  --manual-accent-glow: rgb(var(--manual-accent-rgb) / 0.28);
  color-scheme: light;
  background:
    linear-gradient(90deg, rgba(255, 45, 32, 0.09) 1px, transparent 1px),
    linear-gradient(rgba(255, 45, 32, 0.075) 1px, transparent 1px),
    var(--manual-bg);
  background-size: 72px 72px, 72px 72px, auto;
}

html.theme-ready .manual-page,
html.theme-ready .manual-topbar,
html.theme-ready .manual-sidebar,
html.theme-ready .manual-search,
html.theme-ready .manual-audience div,
html.theme-ready .manual-block--accent,
html.theme-ready .manual-footer {
  transition:
    color 260ms ease,
    background-color 260ms ease,
    border-color 260ms ease,
    box-shadow 260ms ease;
}

@property --gradient-angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

@keyframes border-spin {
  from {
    --gradient-angle: 0deg;
  }

  to {
    --gradient-angle: 360deg;
  }
}

.manual-page p,
.manual-page li {
  color: var(--manual-muted-strong);
}

.manual-page strong {
  color: var(--manual-text);
}

.manual-page a:focus-visible,
.manual-page input:focus-visible,
.manual-page button:focus-visible {
  outline: 2px solid var(--manual-accent);
  outline-offset: 4px;
}

.manual-owner-bar {
  position: sticky;
  top: 0;
  z-index: 35;
  min-height: 42px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  padding: 7px max(20px, calc((100vw - 1440px) / 2));
  border-bottom: 1px solid rgb(255 255 255 / 0.14);
  color: #ffffff;
  background: #090909;
  font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}

.manual-owner-bar span {
  color: rgb(255 255 255 / 0.62);
}

.manual-owner-bar a {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border: 1px solid rgb(255 255 255 / 0.22);
  border-radius: 8px;
  color: #ffffff;
  background: rgb(255 255 255 / 0.07);
  text-decoration: none;
}

.manual-owner-bar a:hover,
.manual-owner-bar a:focus-visible {
  border-color: var(--manual-accent);
  background: var(--manual-accent);
  color: #ffffff;
}

.manual-page.has-owner-bar .manual-topbar {
  top: 42px;
}

.manual-page.has-owner-bar .manual-sidebar,
.manual-page.has-owner-bar .manual-page-toc {
  top: 146px;
  max-height: calc(100vh - 154px);
}

.manual-topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: 72px;
  padding: 14px max(20px, calc((100vw - 1440px) / 2));
  display: grid;
  grid-template-columns: minmax(320px, 380px) minmax(220px, 520px) auto;
  gap: 18px;
  align-items: center;
  border-bottom: 1px solid var(--manual-line);
  background: var(--manual-header-bg);
  backdrop-filter: blur(18px);
}

.manual-brand,
.manual-actions,
.manual-search,
.manual-breadcrumbs,
.manual-block__label,
.manual-page-toc p,
.manual-sidebar__section p,
.manual-footer {
  font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

.manual-brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  color: var(--manual-text);
  font-weight: 800;
  letter-spacing: 0;
  white-space: nowrap;
}

.manual-brand .brand-wordmark {
  width: 164px;
}

.manual-brand__domain {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-size: 16px;
  line-height: 1;
}

.manual-brand__domain::before {
  content: "";
  width: 2px;
  height: 30px;
  flex: 0 0 2px;
  background: var(--manual-accent);
  box-shadow: 0 0 16px var(--manual-accent-glow);
}

.manual-cube {
  position: relative;
  width: 34px;
  height: 34px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  padding: 4px;
  transform: rotateX(58deg) rotateZ(45deg);
  filter: drop-shadow(0 0 18px var(--manual-accent-glow));
}

.manual-cube::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 7px;
  background: var(--manual-accent-soft);
  transform: translate3d(5px, 5px, -1px);
}

.manual-cube span {
  position: relative;
  border-radius: 2px;
  background: var(--manual-accent);
  box-shadow: inset -2px -2px 0 rgb(0 0 0 / 0.28);
}

.manual-search {
  min-height: 42px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: center;
  padding: 0 14px;
  border: 1px solid var(--manual-line);
  border-radius: var(--manual-radius-slot);
  background: var(--manual-surface);
}

.manual-search span {
  color: var(--manual-muted);
  font-size: 12px;
}

.manual-search input {
  width: 100%;
  border: 0;
  outline: 0;
  color: var(--manual-text);
  background: transparent;
  font: inherit;
  font-size: 14px;
}

.manual-search input::placeholder {
  color: var(--manual-muted);
}

.manual-search--soon {
  justify-content: center;
  color: var(--manual-muted);
  font: inherit;
  font-weight: 700;
  letter-spacing: 0;
  cursor: default;
  opacity: 0.72;
}

.manual-search--soon:disabled {
  color: var(--manual-muted);
}

.manual-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  align-items: center;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.manual-footer.manual-footer--intro {
  display: grid;
  grid-template-columns: 1fr minmax(320px, 720px) 1fr;
  align-items: center;
}

.manual-footer--intro > span:first-child {
  grid-column: 1;
}

.manual-next-step-cta {
  --theme-choice-fill: var(--manual-bg);
  grid-column: 2;
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 12px 22px;
  border: 2px solid transparent;
  border-radius: var(--manual-radius-slot);
  color: var(--manual-text);
  background:
    linear-gradient(var(--theme-choice-fill), var(--theme-choice-fill)) padding-box,
    conic-gradient(
      from var(--gradient-angle),
      transparent 0%,
      var(--manual-accent) 5%,
      var(--manual-accent) 30%,
      transparent 40%
    ) border-box;
  box-shadow: 0 0 30px rgb(var(--manual-accent-rgb) / 0.24);
  font-family: "Manrope", Inter, system-ui, sans-serif;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.35;
  text-align: center;
  text-transform: none;
  animation: border-spin 2.5s linear infinite;
}

.manual-page-transition {
  margin-top: 34px;
  padding: 34px 0 10px;
  display: flex;
  justify-content: center;
  border-top: 1px solid var(--manual-line);
}

.manual-page-transition .manual-next-step-cta {
  width: min(100%, 720px);
}

.manual-page-transition--compact .manual-next-step-cta {
  width: auto;
  min-width: 340px;
  min-height: 58px;
  padding: 8px 18px;
  font-size: 14px;
}

.manual-page-transition__copy {
  display: grid;
  gap: 2px;
  text-align: left;
}

.manual-page-transition__copy small,
.manual-page-transition__copy strong {
  display: block;
}

.manual-page-transition__copy small {
  color: var(--manual-muted);
  font-size: 9px;
  font-weight: 750;
  line-height: 1.2;
}

.manual-page-transition__copy strong {
  color: var(--manual-text);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.25;
}

.manual-next-step-cta:hover {
  color: var(--manual-text);
  box-shadow: 0 0 42px rgb(var(--manual-accent-rgb) / 0.34);
}

.manual-next-step-cta:focus-visible {
  outline: 2px solid var(--manual-accent);
  outline-offset: 4px;
}

@media (prefers-reduced-motion: reduce) {
  .manual-next-step-cta {
    border-color: var(--manual-accent);
    background: var(--manual-bg);
    animation: none;
  }
}

.manual-actions a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border: 1px solid var(--manual-line);
  border-radius: 999px;
  color: var(--manual-muted-strong);
  background: var(--manual-control-bg);
}

.manual-actions .manual-action-primary {
  border-color: transparent;
  color: #ffffff;
  background: var(--manual-accent);
  box-shadow: 0 0 32px var(--manual-accent-soft);
}

.manual-layout {
  max-width: 1440px;
  margin: 0 auto;
  padding: 32px 20px 72px;
  display: grid;
  grid-template-columns: 260px minmax(0, 760px) 220px;
  gap: 44px;
  align-items: start;
}

.manual-sidebar,
.manual-page-toc {
  position: sticky;
  top: 104px;
}

.manual-sidebar {
  align-self: start;
  min-width: 0;
  max-height: calc(100vh - 112px);
  display: grid;
  gap: 10px;
  padding: 18px;
  box-sizing: border-box;
  overflow-y: auto;
  overflow-anchor: none;
  overscroll-behavior: contain;
  scrollbar-gutter: stable;
  border: 1px solid var(--manual-line);
  border-radius: var(--manual-radius-panel);
  background: var(--manual-sidebar-bg);
}

.manual-sidebar__section {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.manual-sidebar__section:has(> p:first-child) {
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  column-gap: 8px;
}

.manual-sidebar__section:has(> p:first-child) p {
  margin: 0;
}

.manual-sidebar__title {
  padding-bottom: 10px;
  border-bottom: 1px solid var(--manual-line);
  color: var(--manual-text);
  font-family: "Manrope", Inter, system-ui, sans-serif;
  font-size: 17px;
  font-weight: 850;
}

.manual-sidebar__step {
  margin-bottom: 2px;
  padding: 5px 8px;
  display: flex;
  align-items: center;
  min-height: 30px;
  box-sizing: border-box;
  border-left: 3px solid transparent;
  color: var(--manual-accent);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.manual-sidebar__step.is-active {
  border-radius: 8px;
  border-left-color: var(--manual-accent);
  background: var(--manual-surface-strong);
}

.manual-sidebar__section p,
.manual-page-toc p,
.manual-block__label {
  margin: 0 0 8px;
  color: var(--manual-muted);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.5;
  text-transform: uppercase;
}

.manual-sidebar__section p {
  color: var(--manual-accent);
  white-space: nowrap;
}

.manual-sidebar a,
.manual-page-toc a {
  display: block;
  border-radius: 8px;
  color: var(--manual-muted-strong);
  font-size: 13px;
  line-height: 1.25;
}

.manual-sidebar a {
  padding: 6px 8px;
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 32px;
  box-sizing: border-box;
  border-left: 3px solid transparent;
  overflow-wrap: anywhere;
}

.manual-sidebar__section:has(> p:first-child) a {
  min-height: 34px;
  color: var(--manual-text);
}

.manual-vscode-figure {
  margin: 28px 0 0;
}

.manual-vscode-figure img {
  width: 100%;
  height: auto;
  display: block;
  border: 1px solid var(--manual-line-strong);
  border-radius: var(--manual-radius-panel);
}

.manual-vscode-figure figcaption {
  margin-top: 10px;
  color: var(--manual-muted);
  font-size: 12px;
  line-height: 1.5;
}

.manual-download-link {
  width: fit-content;
  min-height: 52px;
  margin-top: 24px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: 2px solid transparent;
  border-radius: 8px;
  color: #ffffff;
  background:
    linear-gradient(var(--manual-accent), var(--manual-accent)) padding-box,
    conic-gradient(
      from var(--gradient-angle),
      rgb(255 255 255 / 0.15) 0%,
      rgb(255 255 255 / 0.95) 12%,
      rgb(255 255 255 / 0.22) 26%,
      rgb(var(--manual-accent-rgb) / 0.15) 44%,
      rgb(var(--manual-accent-rgb) / 0.15) 100%
    ) border-box;
  box-shadow:
    0 0 0 1px rgb(var(--manual-accent-rgb) / 0.18),
    0 10px 30px rgb(var(--manual-accent-rgb) / 0.25);
  font-size: 14px;
  font-weight: 850;
  animation:
    border-spin 2.8s linear infinite,
    manual-download-pulse 2.8s ease-in-out infinite;
  transition:
    transform 180ms ease,
    filter 180ms ease,
    box-shadow 180ms ease;
}

.manual-download-link:hover {
  color: #ffffff;
  filter: brightness(1.06);
  transform: translateY(-2px);
  box-shadow:
    0 0 0 1px rgb(255 255 255 / 0.2),
    0 14px 40px rgb(var(--manual-accent-rgb) / 0.42);
}

.manual-download-link span:last-child {
  display: inline-block;
  font-size: 19px;
  line-height: 1;
  transition: transform 180ms ease;
}

.manual-download-link:hover span:last-child {
  transform: translate(3px, -3px);
}

.manual-download-link:active {
  transform: translateY(0) scale(0.98);
}

@keyframes manual-download-pulse {
  0%,
  100% {
    box-shadow:
      0 0 0 1px rgb(var(--manual-accent-rgb) / 0.16),
      0 9px 26px rgb(var(--manual-accent-rgb) / 0.2);
  }

  50% {
    box-shadow:
      0 0 0 1px rgb(255 255 255 / 0.18),
      0 12px 38px rgb(var(--manual-accent-rgb) / 0.38);
  }
}

@media (prefers-reduced-motion: reduce) {
  .manual-download-link {
    border-color: rgb(255 255 255 / 0.65);
    background: var(--manual-accent);
    animation: none;
  }

  .manual-download-link,
  .manual-download-link span:last-child {
    transition: none;
  }
}

.manual-sidebar a:hover,
.manual-sidebar a.is-active {
  color: var(--manual-text);
  background: var(--manual-surface-strong);
}

.manual-sidebar a.is-active {
  border-left-color: var(--manual-accent);
}

.manual-sidebar__section--locked {
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  column-gap: 8px;
}

.manual-sidebar__locked {
  width: 100%;
  min-width: 0;
  min-height: 34px;
  padding: 6px 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  box-sizing: border-box;
  border: 0;
  border-left: 3px solid transparent;
  border-radius: 8px;
  color: var(--manual-muted-strong);
  background: transparent;
  font: inherit;
  font-size: 13px;
  line-height: 1.25;
  text-align: left;
  cursor: pointer;
  transition:
    color 160ms ease,
    background 160ms ease,
    border-color 160ms ease;
}

.manual-sidebar__locked > span:first-child {
  min-width: 0;
  overflow-wrap: anywhere;
}

.manual-sidebar__locked:hover,
.manual-sidebar__locked:focus-visible {
  border-left-color: var(--manual-accent);
  color: var(--manual-text);
  background: var(--manual-surface-strong);
}

.manual-sidebar__locked--owner {
  border-left-color: rgb(var(--manual-accent-rgb) / 0.46);
  color: var(--manual-text);
  background: var(--manual-surface);
}

.manual-sidebar__locked--owner:hover,
.manual-sidebar__locked--owner:focus-visible {
  border-left-color: var(--manual-accent);
  color: var(--manual-text);
  background: var(--manual-surface-strong);
}

.manual-lock-icon {
  position: relative;
  flex: 0 0 13px;
  width: 13px;
  height: 10px;
  margin-top: 4px;
  border: 1px solid currentColor;
  border-radius: 2px;
  opacity: 0.8;
}

.manual-lock-icon::before {
  content: "";
  position: absolute;
  left: 2px;
  top: -7px;
  width: 7px;
  height: 7px;
  box-sizing: border-box;
  border: 1px solid currentColor;
  border-bottom: 0;
  border-radius: 7px 7px 0 0;
}

.locked-modules-dialog {
  width: min(620px, calc(100vw - 32px));
  max-width: none;
  max-height: calc(100dvh - 32px);
  padding: 0;
  overflow: auto;
  border: 1px solid var(--manual-line-strong);
  border-radius: 8px;
  color: var(--manual-text);
  background: #09090a;
  box-shadow: 0 28px 90px rgb(0 0 0 / 0.62);
}

.locked-modules-dialog::backdrop {
  background: rgb(0 0 0 / 0.78);
  backdrop-filter: blur(8px);
}

.locked-modules-card {
  position: relative;
  padding: 34px;
  background:
    linear-gradient(rgb(255 46 39 / 0.08), transparent 42%),
    repeating-linear-gradient(90deg, transparent 0 63px, rgb(255 46 39 / 0.045) 64px),
    #09090a;
}

.locked-modules-card__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid var(--manual-line-strong);
  border-radius: 50%;
  color: var(--manual-muted-strong);
  background: rgb(255 255 255 / 0.04);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.locked-modules-card__close:hover {
  color: #ffffff;
  background: rgb(255 255 255 / 0.1);
}

.locked-modules-card__eyebrow {
  margin: 0 48px 12px 0;
  color: var(--manual-accent);
  font-size: 11px;
  font-weight: 850;
  line-height: 1.4;
  text-transform: uppercase;
}

.locked-modules-card h2 {
  max-width: 510px;
  margin: 0 48px 22px 0;
  color: #ffffff;
  font-family: "Manrope", Inter, system-ui, sans-serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 850;
  line-height: 1.02;
}

.locked-modules-card__selected {
  padding: 18px;
  display: grid;
  gap: 6px;
  border: 1px solid rgb(var(--manual-accent-rgb) / 0.46);
  border-left: 4px solid var(--manual-accent);
  border-radius: 6px;
  background: rgb(var(--manual-accent-rgb) / 0.08);
}

.locked-modules-card__selected span {
  color: var(--manual-accent);
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}

.locked-modules-card__selected strong {
  color: #ffffff;
  font-size: 19px;
  line-height: 1.2;
}

.locked-modules-card__selected p,
.locked-modules-card__copy {
  margin: 0;
  color: var(--manual-muted-strong);
  font-size: 14px;
  line-height: 1.55;
}

.locked-modules-card__copy {
  margin-top: 20px;
}

.locked-modules-card__features {
  margin: 20px 0;
  padding: 0;
  display: grid;
  gap: 9px;
  list-style: none;
}

.locked-modules-card__features li {
  position: relative;
  padding-left: 22px;
  color: var(--manual-text);
  font-size: 14px;
  line-height: 1.4;
}

.locked-modules-card__features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  background: var(--manual-accent);
}

.locked-modules-card__offer {
  padding: 16px 0;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--manual-line);
  border-bottom: 1px solid var(--manual-line);
}

.locked-modules-card__offer span {
  color: var(--manual-muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.locked-modules-card__offer strong {
  color: #ffffff;
  font-size: 30px;
  line-height: 1;
  white-space: nowrap;
}

.locked-modules-card__actions {
  margin-top: 22px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.locked-modules-card__actions a,
.locked-modules-card__actions button {
  min-height: 48px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 850;
  text-align: center;
  cursor: pointer;
}

.locked-modules-card__actions a {
  color: #ffffff;
  background: var(--manual-accent);
}

.locked-modules-card__actions button {
  border: 1px solid var(--manual-line-strong);
  color: var(--manual-muted-strong);
  background: transparent;
}

.locked-modules-card__actions a:hover {
  color: #ffffff;
  filter: brightness(1.08);
}

.locked-modules-card__actions button:hover {
  color: #ffffff;
  background: rgb(255 255 255 / 0.06);
}

@media (max-width: 640px) {
  .locked-modules-dialog {
    width: calc(100vw - 20px);
    max-height: calc(100dvh - 20px);
  }

  .locked-modules-card {
    padding: 24px 18px 20px;
  }

  .locked-modules-card h2 {
    margin-right: 40px;
    font-size: 29px;
  }

  .locked-modules-card__offer {
    align-items: start;
    flex-direction: column;
    gap: 8px;
  }

  .locked-modules-card__actions {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .manual-sidebar__locked {
    transition: none;
  }
}

.manual-article {
  min-width: 0;
  padding-bottom: 48px;
}

.manual-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 34px;
  color: var(--manual-muted);
  font-size: 12px;
  font-weight: 800;
}

.manual-breadcrumbs a:hover {
  color: var(--manual-text);
}

.manual-hero {
  padding: 34px 0 42px;
  border-bottom: 1px solid var(--manual-line);
}

.manual-eyebrow {
  margin: 0 0 16px;
  color: var(--manual-accent);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.4;
  text-transform: uppercase;
}

.manual-hero h1,
.manual-block h2 {
  margin: 0;
  color: var(--manual-text);
  font-family: "Manrope", Inter, system-ui, sans-serif;
  letter-spacing: 0;
}

.manual-hero h1 {
  max-width: 760px;
  font-size: clamp(38px, 5vw, 68px);
  font-weight: 900;
  line-height: 0.97;
}

.manual-lead {
  max-width: 720px;
  margin: 24px 0 0;
  color: var(--manual-muted-strong);
  font-size: 20px;
  line-height: 1.65;
}

.manual-lead p {
  margin: 0;
  color: inherit;
  font: inherit;
  line-height: inherit;
}

.manual-lead p + p {
  margin-top: 16px;
}

.manual-block {
  scroll-margin-top: 104px;
  padding: 48px 0;
  border-bottom: 1px solid var(--manual-line);
}

.manual-block--accent {
  margin-top: 28px;
  padding: 32px;
  border: 1px solid var(--manual-line-strong);
  border-radius: var(--manual-radius-panel);
  background:
    linear-gradient(135deg, rgb(var(--manual-accent-rgb) / 0.16), transparent 44%),
    var(--manual-surface);
  box-shadow: 0 0 48px rgb(var(--manual-accent-rgb) / 0.08);
}

.manual-block h2 {
  max-width: 720px;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 900;
  line-height: 1.08;
}

.manual-block p,
.manual-block li {
  font-size: 17px;
  line-height: 1.78;
}

.manual-block p {
  margin-top: 20px;
  margin-bottom: 0;
}

.manual-quote {
  margin: 28px 0 0;
  padding: 22px;
  border-left: 3px solid var(--manual-accent);
  border-radius: var(--manual-radius-slot);
  color: var(--manual-text);
  background: var(--manual-quote-bg);
  font-size: 19px;
  font-weight: 700;
  line-height: 1.55;
}

.manual-result-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}

.manual-result-grid div {
  min-height: 160px;
  padding: 20px;
  border: 1px solid var(--manual-line);
  border-radius: var(--manual-radius-panel);
  background: var(--manual-surface);
}

.manual-result-grid span,
.manual-audience span {
  color: var(--manual-accent);
  font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 12px;
  font-weight: 900;
}

.manual-result-grid strong {
  display: block;
  margin-top: 18px;
  font-size: 18px;
}

.manual-result-grid p {
  margin-top: 10px;
  font-size: 15px;
  line-height: 1.55;
}

.manual-about {
  padding-top: 48px;
}

.manual-flow {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 26px;
}

.manual-flow span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 7px 11px;
  border: 1px solid var(--manual-line);
  border-radius: 999px;
  color: var(--manual-text);
  background: var(--manual-surface);
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  transition:
    border-color 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.manual-flow span:first-child,
.manual-flow span:last-child {
  border-color: rgb(var(--manual-accent-rgb) / 0.36);
  box-shadow: inset 0 0 0 1px rgb(var(--manual-accent-rgb) / 0.08);
}

.manual-audience-intro {
  max-width: 760px;
  margin-top: 54px;
}

.manual-audience-intro h3 {
  max-width: 720px;
  margin: 12px 0 0;
  color: var(--manual-text);
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.08;
}

.manual-audience-intro p {
  max-width: 680px;
  margin-top: 16px;
}

.manual-audience {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.manual-audience div {
  min-height: 150px;
  padding: 18px;
  border: 1px solid var(--manual-line);
  border-radius: var(--manual-radius-slot);
  background: var(--manual-card-bg);
  transition:
    border-color 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

@media (hover: hover) {
  .manual-flow span:hover {
    border-color: var(--manual-accent);
    background: rgb(var(--manual-accent-rgb) / 0.1);
    box-shadow:
      inset 0 0 0 1px rgb(var(--manual-accent-rgb) / 0.18),
      0 0 24px rgb(var(--manual-accent-rgb) / 0.16);
    transform: translateY(-2px);
  }

  .manual-audience div:hover {
    border-color: var(--manual-accent);
    background: rgb(var(--manual-accent-rgb) / 0.07);
    box-shadow:
      inset 0 0 0 1px rgb(var(--manual-accent-rgb) / 0.14),
      0 14px 38px rgb(var(--manual-accent-rgb) / 0.12);
    transform: translateY(-3px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .manual-flow span,
  .manual-audience div {
    transition: none;
  }

  .manual-flow span:hover,
  .manual-audience div:hover {
    transform: none;
  }

  .manual-guide,
  .manual-guide__visual img,
  .manual-guide__status span,
  .manual-guide__choice,
  .manual-theme-guide,
  .manual-theme-guide__mascot img,
  .manual-theme-choice {
    animation: none;
    transition: none;
  }
}

.manual-audience strong {
  display: block;
  margin-top: 14px;
  font-size: 17px;
}

.manual-audience p {
  margin-top: 8px;
  font-size: 14px;
  line-height: 1.55;
}

.manual-guide {
  display: grid;
  grid-template-columns: minmax(230px, 0.8fr) minmax(0, 1.2fr);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  margin-top: 72px;
  padding: 42px 0 54px;
  border-top: 1px solid var(--manual-line-strong);
  border-bottom: 1px solid var(--manual-line-strong);
  overflow: hidden;
  transition:
    opacity 600ms ease,
    transform 600ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.manual-guide--will-reveal {
  opacity: 0;
  transform: translateY(42px);
}

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

.manual-guide__visual {
  position: relative;
  min-height: 430px;
  display: grid;
  place-items: center;
  isolation: isolate;
}

.manual-guide__visual::before,
.manual-guide__visual::after {
  content: '';
  position: absolute;
  left: 50%;
  z-index: -1;
  border: 1px solid rgb(var(--manual-accent-rgb) / 0.38);
  border-radius: 50%;
  transform: translateX(-50%);
}

.manual-guide__visual::before {
  bottom: 30px;
  width: 210px;
  height: 52px;
}

.manual-guide__visual::after {
  bottom: 44px;
  width: 146px;
  height: 30px;
  border-color: rgb(var(--manual-accent-rgb) / 0.66);
  box-shadow: 0 0 30px rgb(var(--manual-accent-rgb) / 0.22);
}

.manual-guide__visual img {
  width: min(100%, 330px);
  height: auto;
  animation: manual-guide-float 4.4s ease-in-out infinite;
  filter: drop-shadow(0 22px 28px rgb(0 0 0 / 0.46));
}

.manual-guide__status {
  position: absolute;
  top: 14px;
  left: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--manual-muted-strong);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.manual-guide__status span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--manual-success);
  box-shadow: 0 0 14px rgb(34 197 94 / 0.8);
  animation: manual-guide-pulse 1.8s ease-in-out infinite;
}

.manual-guide__signal {
  position: absolute;
  bottom: 54px;
  left: 50%;
  width: 2px;
  height: 72px;
  z-index: -1;
  background: var(--manual-accent);
  box-shadow: 0 0 24px var(--manual-accent-glow);
  transform: translateX(-50%);
  opacity: 0.6;
}

.manual-guide__content h3 {
  max-width: 660px;
  margin: 14px 0 0;
  color: var(--manual-text);
  font-size: clamp(34px, 4.7vw, 62px);
  line-height: 0.98;
}

.manual-guide__content > p:not(.manual-guide__feedback) {
  max-width: 620px;
  margin-top: 22px;
  font-size: 18px;
  line-height: 1.6;
}

.manual-guide__choices {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 28px;
}

.manual-guide__choice {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 18px;
  border: 1px solid var(--manual-line-strong);
  border-radius: var(--manual-radius-slot);
  font: inherit;
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
  transition:
    border-color 180ms ease,
    background-color 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.manual-guide__choice--light {
  border-color: #ffffff;
  color: #080808;
  background: #ffffff;
}

.manual-guide__choice--dark {
  color: var(--manual-text);
  background: #090909;
}

.manual-guide__choice:hover,
.manual-guide__choice.is-selected {
  border-color: var(--manual-accent);
  box-shadow: 0 0 26px rgb(var(--manual-accent-rgb) / 0.2);
  transform: translateY(-2px);
}

.manual-guide__choice--light:hover,
.manual-guide__choice--light.is-selected {
  color: #ffffff;
  background: var(--manual-accent);
}

.manual-guide__choice--dark:hover,
.manual-guide__choice--dark.is-selected {
  background: rgb(var(--manual-accent-rgb) / 0.1);
}

.manual-guide__choice:focus-visible {
  outline: 2px solid var(--manual-accent);
  outline-offset: 3px;
}

.manual-guide__feedback {
  min-height: 20px;
  margin-top: 12px;
  color: var(--manual-muted);
  font-size: 12px;
  line-height: 1.5;
}

@keyframes manual-guide-float {
  0%,
  100% {
    transform: translateY(-5px) rotate(-0.8deg);
  }

  50% {
    transform: translateY(-22px) rotate(0.8deg);
  }
}

@keyframes manual-guide-pulse {
  0%,
  100% {
    opacity: 0.55;
    transform: scale(0.88);
  }

  50% {
    opacity: 1;
    transform: scale(1.08);
  }
}

.manual-theme-guide {
  margin-top: 72px;
  padding: 64px 0 58px;
  border-top: 1px solid var(--manual-line-strong);
  border-bottom: 1px solid var(--manual-line-strong);
  text-align: center;
  overflow: hidden;
  transition:
    opacity 600ms ease,
    transform 600ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.manual-theme-guide--will-reveal {
  opacity: 0;
  transform: translateY(36px);
}

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

.manual-theme-guide__heading {
  max-width: 680px;
  margin: 0 auto;
}

.manual-theme-guide__heading h3 {
  margin: 12px 0 0;
  color: var(--manual-text);
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1;
}

.manual-theme-guide__heading p {
  max-width: 620px;
  margin: 22px auto 0;
  font-size: 18px;
  line-height: 1.65;
}

.manual-theme-guide__selector {
  max-width: 720px;
  margin: 34px auto 0;
  display: grid;
  grid-template-columns: minmax(120px, 1fr) 190px minmax(120px, 1fr);
  align-items: center;
  gap: 20px;
}

.manual-theme-guide__mascot {
  min-height: 280px;
  display: grid;
  place-items: center;
}

.manual-theme-guide__mascot img {
  grid-area: 1 / 1;
  width: 176px;
  height: auto;
  filter: drop-shadow(0 18px 24px rgb(0 0 0 / 0.32));
  animation: manual-guide-float 4.4s ease-in-out infinite;
}

.manual-theme-guide__mascot-light {
  display: none;
}

html[data-theme="light"] .manual-theme-guide__mascot-dark {
  display: none;
}

html[data-theme="light"] .manual-theme-guide__mascot-light {
  display: block;
}

.manual-theme-choice {
  position: relative;
  top: -52px;
  min-height: 60px;
  padding: 0 24px;
  border: 2px solid transparent;
  border-radius: var(--manual-radius-slot);
  font: inherit;
  font-size: 16px;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 12px 28px rgb(0 0 0 / 0.14);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.manual-theme-choice--black {
  --theme-choice-fill: var(--manual-theme-black);
  color: var(--manual-theme-white);
  background: var(--theme-choice-fill);
}

.manual-theme-choice--white {
  --theme-choice-fill: var(--manual-theme-white);
  color: var(--manual-theme-black);
  background: var(--theme-choice-fill);
  box-shadow:
    inset 0 0 0 1px rgba(0, 0, 0, 0.12),
    0 12px 28px rgb(0 0 0 / 0.14);
}

.manual-theme-choice:hover {
  border-color: var(--manual-accent);
  box-shadow: 0 0 28px rgb(var(--manual-accent-rgb) / 0.24);
  transform: translateY(-2px);
}

.manual-theme-choice.is-highlighted {
  border-color: transparent;
  background:
    linear-gradient(var(--theme-choice-fill), var(--theme-choice-fill)) padding-box,
    conic-gradient(
      from var(--gradient-angle),
      transparent 0%,
      var(--manual-accent) 5%,
      var(--manual-accent) 30%,
      transparent 40%
    ) border-box;
  box-shadow: 0 0 34px rgb(var(--manual-accent-rgb) / 0.3);
  animation: border-spin 2.5s linear infinite;
}

.manual-theme-choice:focus-visible {
  outline: 2px solid var(--manual-accent);
  outline-offset: 4px;
}

.manual-theme-guide__feedback {
  min-height: 20px;
  margin: 18px auto 0;
  color: var(--manual-muted);
  font-size: 12px;
  line-height: 1.5;
}

@media (prefers-reduced-motion: reduce) {
  .manual-theme-choice.is-highlighted {
    border-color: var(--manual-accent);
    background: var(--theme-choice-fill);
    animation: none;
  }
}

.manual-assistant-launcher {
  position: fixed;
  right: 18px;
  bottom: 8px;
  z-index: 60;
  width: 116px;
  height: 166px;
  padding: 0;
  border: 0;
  outline: 0;
  background: transparent;
  cursor: pointer;
  transition: transform 180ms ease;
}

.manual-assistant-launcher img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center bottom;
  filter: none;
  transform-origin: center 64%;
  animation: manual-assistant-float 4.6s ease-in-out infinite;
}

.manual-assistant-launcher:hover {
  transform: translateY(-4px);
}

.manual-assistant-launcher:focus-visible {
  outline: 2px solid var(--manual-accent);
  outline-offset: 3px;
  border-radius: var(--manual-radius-slot);
}

.manual-assistant-dialog {
  position: fixed;
  inset: auto 24px 178px auto;
  z-index: 59;
  width: min(390px, calc(100vw - 32px));
  max-height: min(520px, calc(100vh - 190px));
  margin: 0;
  padding: 0;
  border: 1px solid var(--manual-line-strong);
  border-radius: var(--manual-radius-panel);
  color: var(--manual-text);
  background: var(--manual-bg);
  box-shadow: 0 24px 80px rgb(0 0 0 / 0.32);
  overflow: hidden;
}

.manual-assistant-dialog[open] {
  display: grid;
  grid-template-rows: auto minmax(150px, 1fr) auto;
  animation: manual-dialog-in 220ms ease both;
}

.manual-assistant-dialog__header {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 14px 0 18px;
  border-bottom: 1px solid var(--manual-line);
}

.manual-assistant-dialog__header > div {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.manual-assistant-dialog__status {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--manual-success);
}

.manual-assistant-dialog__header button {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid var(--manual-line);
  border-radius: 50%;
  color: var(--manual-muted-strong);
  background: var(--manual-surface);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.manual-assistant-dialog__header button:hover {
  color: var(--manual-text);
  border-color: var(--manual-accent);
}

.manual-assistant-dialog__body {
  padding: 22px 18px;
  overflow-y: auto;
}

.manual-assistant-dialog__body p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
}

.manual-assistant-dialog__composer {
  display: grid;
  grid-template-columns: 1fr 38px;
  gap: 8px;
  padding: 12px;
  border-top: 1px solid var(--manual-line);
}

.manual-assistant-dialog__composer input {
  min-width: 0;
  min-height: 42px;
  padding: 0 12px;
  border: 1px solid var(--manual-line);
  border-radius: var(--manual-radius-slot);
  color: var(--manual-muted);
  background: var(--manual-surface);
  font: inherit;
  font-size: 13px;
}

.manual-assistant-dialog__composer button {
  border: 0;
  border-radius: var(--manual-radius-slot);
  color: #ffffff;
  background: var(--manual-accent);
  font-size: 18px;
}

.manual-assistant-dialog__composer :disabled {
  cursor: not-allowed;
  opacity: 0.58;
}

@keyframes manual-dialog-in {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes manual-assistant-float {
  0%,
  100% {
    transform: translateY(-3px) rotate(-0.6deg);
  }

  50% {
    transform: translateY(-13px) rotate(0.6deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .manual-assistant-launcher,
  .manual-assistant-launcher img,
  .manual-assistant-dialog[open] {
    animation: none;
    transition: none;
  }
}

.manual-steps,
.manual-checklist {
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.manual-steps li,
.manual-checklist li {
  padding: 18px 18px 18px 22px;
  border: 1px solid var(--manual-line);
  border-radius: var(--manual-radius-slot);
  background: var(--manual-surface);
}

.manual-steps li {
  box-shadow: inset 3px 0 0 var(--manual-accent-soft);
}

.manual-checklist li {
  position: relative;
  padding-left: 48px;
}

.manual-checklist li::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 25px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--manual-success);
  box-shadow: 0 0 16px rgb(34 197 94 / 0.35);
}

.manual-prompt pre {
  margin-top: 22px;
  border: 1px solid var(--manual-line);
  border-radius: var(--manual-radius-panel);
  background: var(--manual-code-bg);
}

.manual-prompt code {
  color: var(--manual-muted-strong);
}

html[data-theme="light"] .manual-prompt code {
  color: #e4e4e7;
}

.manual-step-zero code:not(pre code) {
  padding: 0.12em 0.38em;
  border: 1px solid var(--manual-line);
  border-radius: 5px;
  color: var(--manual-text);
  background: var(--manual-surface-strong);
  font-size: 0.86em;
}

.manual-step-hero h1 {
  max-width: 720px;
}

.manual-step-outcomes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.manual-step-outcomes a {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 7px 11px;
  border: 1px solid var(--manual-line);
  border-radius: 999px;
  color: var(--manual-muted-strong);
  background: var(--manual-surface);
  font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  transition:
    color 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

@media (hover: hover) {
  .manual-step-outcomes a:hover {
    color: var(--manual-text);
    border-color: var(--manual-accent);
    background: var(--manual-accent-soft);
    box-shadow:
      0 0 0 1px rgb(var(--manual-accent-rgb) / 0.12),
      0 0 24px rgb(var(--manual-accent-rgb) / 0.24);
    transform: translateY(-3px);
  }
}

.manual-step-outcomes a:active {
  transform: translateY(0) scale(0.98);
}

@media (prefers-reduced-motion: reduce) {
  .manual-step-outcomes a {
    transition: none;
  }

  .manual-step-outcomes a:hover,
  .manual-step-outcomes a:active {
    transform: none;
  }
}

.manual-setup-question {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 34px;
  align-items: center;
}

.manual-setup-question__guide {
  position: relative;
  min-height: 300px;
  display: grid;
  place-items: center;
}

.manual-setup-question__figure {
  position: relative;
  width: 190px;
  height: 300px;
  display: grid;
  place-items: end center;
  transform-origin: center 64%;
  animation: manual-assistant-float 4.6s ease-in-out infinite;
}

.manual-setup-question__mark {
  position: absolute;
  z-index: 1;
  top: -10px;
  left: 50%;
  color: var(--manual-accent);
  font-family: "Manrope", Inter, system-ui, sans-serif;
  font-size: 54px;
  font-weight: 900;
  line-height: 1;
  text-shadow: 0 0 24px rgb(var(--manual-accent-rgb) / 0.42);
  transform: translateX(-50%) rotate(7deg);
}

.manual-setup-question__figure img {
  width: 178px;
  height: 270px;
  display: block;
  object-fit: contain;
  object-position: center bottom;
  filter: none;
}

.manual-setup-question__content h2 {
  font-size: clamp(32px, 4vw, 48px);
}

.manual-setup-question__content > p {
  margin-top: 18px;
  font-size: 16px;
  line-height: 1.68;
}

.manual-setup-choices {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 26px;
}

.manual-setup-choices button {
  min-height: 82px;
  padding: 15px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border: 1px solid var(--manual-line-strong);
  border-radius: var(--manual-radius-slot);
  color: var(--manual-text);
  background: var(--manual-card-bg);
  font: inherit;
  font-size: 14px;
  font-weight: 850;
  line-height: 1.35;
  text-align: left;
  cursor: pointer;
  transition:
    border-color 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.manual-setup-choices button > span:last-child {
  flex: 0 0 auto;
  color: var(--manual-accent);
  font-size: 19px;
  font-weight: 900;
}

.manual-setup-choices button:hover {
  border-color: rgb(var(--manual-accent-rgb) / 0.7);
  transform: translateY(-2px);
}

.manual-setup-choices button.is-selected {
  border-color: var(--manual-accent);
  background: var(--manual-accent-soft);
  box-shadow: 0 0 28px rgb(var(--manual-accent-rgb) / 0.14);
}

.manual-setup-decision {
  min-height: 48px;
  margin-top: 14px !important;
  padding-left: 14px;
  border-left: 2px solid var(--manual-accent);
  color: var(--manual-muted-strong) !important;
  font-size: 13px !important;
  line-height: 1.5 !important;
}

.manual-setup-route-details {
  margin-top: 22px;
  padding-top: 30px;
  border-top: 1px solid var(--manual-line);
}

.manual-setup-route-details[hidden] {
  display: none;
}

.manual-setup-route-details h3 {
  max-width: 650px;
  color: var(--manual-text);
  font-family: "Manrope", Inter, system-ui, sans-serif;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 900;
  line-height: 1.12;
}

.manual-setup-route-details ol {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: setup-route;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.manual-setup-route-details li {
  position: relative;
  min-height: 104px;
  padding: 42px 16px 16px;
  counter-increment: setup-route;
  border-top: 1px solid var(--manual-line-strong);
  font-size: 14px;
  line-height: 1.55;
}

.manual-setup-route-details li::before {
  content: "0" counter(setup-route);
  position: absolute;
  top: 12px;
  left: 16px;
  color: var(--manual-accent);
  font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 10px;
  font-weight: 900;
}

.manual-install-claude-cta {
  --theme-choice-fill: var(--manual-bg);
  grid-column: 2;
  min-height: 72px;
  padding: 14px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 2px solid transparent;
  border-radius: var(--manual-radius-slot);
  color: var(--manual-text);
  background:
    linear-gradient(var(--theme-choice-fill), var(--theme-choice-fill)) padding-box,
    conic-gradient(
      from var(--gradient-angle),
      transparent 0%,
      var(--manual-accent) 5%,
      var(--manual-accent) 30%,
      transparent 40%
    ) border-box;
  box-shadow: 0 0 30px rgb(var(--manual-accent-rgb) / 0.24);
  font-family: "Manrope", Inter, system-ui, sans-serif;
  font-size: 17px;
  font-weight: 900;
  animation: border-spin 2.5s linear infinite;
  transition:
    color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.manual-install-claude-cta[hidden] {
  display: none;
}

.manual-install-claude-cta:hover {
  color: var(--manual-text);
  box-shadow: 0 0 42px rgb(var(--manual-accent-rgb) / 0.34);
  transform: translateY(-2px);
}

.manual-install-claude-cta > span:last-child {
  color: var(--manual-accent);
  font-size: 22px;
  font-weight: 900;
}

.manual-install-claude-cta:focus-visible {
  outline: 2px solid var(--manual-accent);
  outline-offset: 4px;
}

@media (prefers-reduced-motion: reduce) {
  .manual-setup-question__figure {
    animation: none;
  }

  .manual-install-claude-cta {
    border-color: var(--manual-accent);
    background: var(--manual-bg);
    animation: none;
  }

  .manual-install-claude-cta:hover {
    transform: none;
  }
}

.manual-prompt-summary {
  margin-top: 28px !important;
  padding: 18px 20px;
  border-left: 3px solid var(--manual-accent);
  border-radius: var(--manual-radius-slot);
  color: var(--manual-text) !important;
  background: var(--manual-surface);
  font-size: 18px !important;
  font-weight: 750;
  line-height: 1.55 !important;
}

.manual-risk-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 28px;
}

.manual-risk-grid > div {
  min-height: 190px;
  padding: 18px;
  border: 1px solid var(--manual-line);
  border-radius: var(--manual-radius-slot);
  background: var(--manual-card-bg);
  transition:
    border-color 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.manual-risk-grid > div:hover {
  border-color: rgb(var(--manual-accent-rgb) / 0.72);
  box-shadow: 0 12px 32px rgb(var(--manual-accent-rgb) / 0.08);
  transform: translateY(-2px);
}

.manual-risk-grid span {
  color: var(--manual-accent);
  font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 11px;
  font-weight: 900;
}

.manual-risk-grid strong {
  display: block;
  margin-top: 26px;
  font-size: 16px;
  line-height: 1.3;
}

.manual-risk-grid p {
  margin-top: 10px;
  font-size: 13px;
  line-height: 1.55;
}

.manual-prompt-shell {
  margin-top: 30px;
  overflow: hidden;
  border: 1px solid var(--manual-line-strong);
  border-radius: var(--manual-radius-panel);
  background: var(--manual-code-bg);
  box-shadow: 0 22px 54px rgb(0 0 0 / 0.18);
}

.manual-prompt-toolbar {
  min-height: 50px;
  padding: 9px 10px 9px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid rgb(255 255 255 / 0.12);
  color: #a1a1aa;
  font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.manual-prompt-toolbar button {
  min-height: 32px;
  padding: 0 11px;
  border: 2px solid transparent;
  border-radius: 7px;
  color: #ffffff;
  background:
    linear-gradient(var(--manual-code-bg), var(--manual-code-bg)) padding-box,
    conic-gradient(
      from var(--gradient-angle),
      transparent 0%,
      var(--manual-accent) 8%,
      var(--manual-accent) 32%,
      transparent 43%
    ) border-box;
  box-shadow: 0 0 18px rgb(var(--manual-accent-rgb) / 0.2);
  font: inherit;
  cursor: pointer;
  animation: border-spin 2.5s linear infinite;
  transition: box-shadow 180ms ease, color 180ms ease;
}

.manual-prompt-toolbar button:hover,
.manual-prompt-toolbar button.is-copied {
  color: #ffffff;
  box-shadow: 0 0 28px rgb(var(--manual-accent-rgb) / 0.38);
}

.manual-prompt-toolbar button.is-copied {
  background:
    linear-gradient(rgb(var(--manual-accent-rgb) / 0.22), rgb(var(--manual-accent-rgb) / 0.22)) padding-box,
    conic-gradient(
      from var(--gradient-angle),
      transparent 0%,
      var(--manual-accent) 8%,
      var(--manual-accent) 32%,
      transparent 43%
    ) border-box;
}

@media (prefers-reduced-motion: reduce) {
  .manual-prompt-toolbar button {
    border-color: var(--manual-accent);
    background: var(--manual-code-bg);
    animation: none;
  }
}

.manual-prompt-shell pre {
  max-height: 620px;
  margin: 0;
  padding: 24px;
  border: 0;
  border-radius: 0;
  color: #e4e4e7;
  background: transparent;
  white-space: pre-wrap;
  overflow: auto;
}

.manual-prompt-shell code {
  color: inherit;
  font-size: 13px;
  line-height: 1.72;
}

.manual-application-note {
  margin-top: 18px;
  padding: 18px 20px;
  border-left: 3px solid var(--manual-info);
  border-radius: var(--manual-radius-slot);
  background: var(--manual-surface);
}

.manual-application-note--accent {
  border-left-color: var(--manual-accent);
}

.manual-application-note p {
  margin-top: 6px;
  font-size: 15px;
  line-height: 1.6;
}

.manual-prompt-section > .manual-application-note:first-child {
  margin: 0 0 34px;
}

.manual-memory-map {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 28px;
}

.manual-memory-map span {
  min-height: 74px;
  display: flex;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--manual-line);
  border-radius: var(--manual-radius-slot);
  color: var(--manual-text);
  background: var(--manual-card-bg);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
}

.manual-project-map-flow {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 38px minmax(0, 1fr) 38px minmax(0, 1fr);
  align-items: center;
  margin-top: 32px;
  border-top: 1px solid var(--manual-line-strong);
  border-bottom: 1px solid var(--manual-line-strong);
}

.manual-project-map-flow--four {
  grid-template-columns:
    minmax(0, 1fr) 32px minmax(0, 1fr) 32px
    minmax(0, 1fr) 32px minmax(0, 1fr);
}

.manual-football-pitch {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: 32px;
  padding: 1px;
  border: 1px solid var(--manual-border);
  background:
    linear-gradient(90deg, transparent calc(50% - 0.5px), rgba(255, 45, 32, 0.24) 50%, transparent calc(50% + 0.5px)),
    var(--manual-border);
}

.manual-player-card {
  min-height: 210px;
  padding: 28px;
  background: var(--manual-card-bg);
  transition: background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.manual-player-card:hover {
  position: relative;
  z-index: 1;
  transform: translateY(-3px);
  box-shadow: inset 0 0 0 1px var(--manual-accent), 0 16px 42px rgba(255, 45, 32, 0.12);
}

.manual-player-card span,
.manual-squad-layers span {
  display: block;
  margin-bottom: 22px;
  color: var(--manual-accent);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.manual-player-card strong {
  display: block;
  font-size: clamp(22px, 2.5vw, 34px);
}

.manual-player-card p,
.manual-squad-layers p {
  margin: 14px 0 0;
  color: var(--manual-muted);
}

.manual-player-card--coach,
.manual-player-card--keeper {
  background: color-mix(in srgb, var(--manual-accent) 10%, var(--manual-card-bg));
}

.manual-squad-layers {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin: 30px 0;
}

.manual-squad-layers article {
  min-height: 220px;
  padding: 28px;
  border: 1px solid var(--manual-border);
  background: var(--manual-card-bg);
}

.manual-squad-layers h3 {
  margin: 0;
  color: var(--manual-text);
  font-size: clamp(22px, 2.4vw, 32px);
}

.manual-source-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 30px 0;
}

.manual-source-grid a {
  min-height: 190px;
  padding: 24px;
  border: 1px solid var(--manual-border);
  background: var(--manual-card-bg);
  color: var(--manual-text);
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.manual-source-grid a:hover {
  transform: translateY(-3px);
  border-color: var(--manual-accent);
  box-shadow: 0 16px 38px rgba(255, 45, 32, 0.12);
}

.manual-source-grid span {
  display: block;
  margin-bottom: 18px;
  color: var(--manual-accent);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.manual-source-grid strong {
  display: block;
  font-size: 22px;
}

.manual-source-grid p {
  margin: 12px 0 0;
  color: var(--manual-muted);
  font-size: 15px;
}

.manual-prompt-shell--tree pre {
  max-height: none;
}

.manual-project-map-stage {
  position: relative;
  min-height: 230px;
  padding: 72px 18px 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transition:
    background-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.manual-project-map-stage::before {
  content: attr(data-step);
  position: absolute;
  top: 26px;
  left: 18px;
  color: var(--manual-accent);
  font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 11px;
  font-weight: 900;
}

.manual-project-map-stage strong,
.manual-project-map-stage span {
  display: block;
}

.manual-project-map-stage > span {
  position: absolute;
  top: 25px;
  right: 18px;
  left: 52px;
  min-height: 18px;
  margin: 0;
  color: var(--manual-muted);
  font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
}

.manual-project-map-stage strong {
  font-size: 20px;
  line-height: 1.2;
}

.manual-project-map-stage p {
  margin-top: 12px;
  color: var(--manual-muted);
  font-size: 13px;
  line-height: 1.55;
}

.manual-project-map-stage--result {
  background: var(--manual-accent-soft);
  box-shadow: inset 0 -3px 0 var(--manual-accent);
}

@media (hover: hover) {
  .manual-project-map-stage:hover {
    background: var(--manual-surface-strong);
    box-shadow: inset 0 -3px 0 var(--manual-accent);
    transform: translateY(-3px);
  }
}

.manual-project-map-connector {
  display: grid;
  place-items: center;
  color: var(--manual-accent);
  font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 22px;
  font-weight: 900;
  animation: manual-map-pulse 1.8s ease-in-out infinite;
}

@keyframes manual-map-pulse {
  0%,
  100% {
    opacity: 0.45;
    transform: translateX(-3px);
  }

  50% {
    opacity: 1;
    transform: translateX(3px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .manual-project-map-stage {
    transition: none;
  }

  .manual-project-map-stage:hover {
    transform: none;
  }

  .manual-project-map-connector {
    animation: none;
  }
}

.manual-workspace {
  margin-top: 28px;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(220px, 0.65fr);
  gap: 14px;
}

.manual-workspace-tree {
  margin: 0;
  padding: 24px;
  border: 1px solid var(--manual-line-strong);
  border-radius: var(--manual-radius-panel);
  background: var(--manual-code-bg);
}

.manual-workspace-tree code {
  color: #e4e4e7;
  font-size: 12px;
  line-height: 1.82;
}

.manual-workspace-roles {
  display: grid;
  gap: 8px;
}

.manual-workspace-roles > div {
  min-height: 84px;
  padding: 15px;
  border: 1px solid var(--manual-line);
  border-radius: var(--manual-radius-slot);
  background: var(--manual-card-bg);
}

.manual-workspace-roles span,
.manual-workspace-roles strong {
  display: block;
}

.manual-workspace-roles span {
  color: var(--manual-accent);
  font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.manual-workspace-roles strong {
  margin-top: 9px;
  font-size: 14px;
  line-height: 1.35;
}

.manual-page-toc {
  padding-top: 8px;
}

.manual-install-hero h1 {
  max-width: 860px;
}

.manual-install-section a,
.manual-disclaimer a {
  color: var(--manual-accent);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.manual-install-kit,
.manual-install-rules {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 22px;
  margin-top: 28px;
}

.manual-tariff-choice {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0 22px;
  margin-top: 28px;
}

.manual-install-kit > div,
.manual-tariff-choice > div,
.manual-install-rules > div {
  min-height: 144px;
  padding: 20px 0;
  border-top: 1px solid var(--manual-line-strong);
}

.manual-install-kit span,
.manual-tariff-choice span,
.manual-install-rules span {
  display: block;
  color: var(--manual-accent);
  font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.manual-install-kit strong,
.manual-tariff-choice strong,
.manual-install-rules strong {
  display: block;
  margin-top: 12px;
  color: var(--manual-text);
  font-size: 18px;
  line-height: 1.3;
}

.manual-install-kit p,
.manual-tariff-choice p,
.manual-install-rules p {
  margin: 8px 0 0;
  color: var(--manual-muted-strong);
  font-size: 14px;
  line-height: 1.55;
}

.manual-install-steps {
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.manual-install-steps li {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 18px;
  padding: 22px 0;
  border-top: 1px solid var(--manual-line-strong);
}

.manual-install-steps li > span {
  color: var(--manual-accent);
  font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 11px;
  font-weight: 900;
}

.manual-install-steps strong {
  display: block;
  color: var(--manual-text);
  font-size: 18px;
  line-height: 1.35;
}

.manual-install-steps p {
  margin: 7px 0 0;
  color: var(--manual-muted-strong);
  font-size: 15px;
  line-height: 1.6;
}

.manual-install-steps code {
  color: var(--manual-accent);
}

.manual-install-fineprint {
  margin-top: 20px !important;
  color: var(--manual-muted) !important;
  font-size: 13px !important;
  line-height: 1.6 !important;
}

.manual-provider-grid {
  display: grid;
  gap: 30px;
  margin-top: 30px;
}

.manual-provider-card {
  padding: 24px 0 0;
  border-top: 1px solid var(--manual-line-strong);
}

.manual-provider-card--primary {
  border-top-color: var(--manual-accent);
}

.manual-provider-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--manual-accent);
  font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.manual-provider-card h3 {
  max-width: 760px;
  margin: 18px 0 0;
  font-family: "Manrope", Inter, system-ui, sans-serif;
  font-size: clamp(25px, 3.4vw, 38px);
  line-height: 1.12;
}

.manual-provider-card h3 a {
  color: var(--manual-text);
  text-decoration-color: var(--manual-accent);
}

.manual-provider-card > p {
  max-width: 760px;
  margin: 16px 0 0;
  color: var(--manual-muted-strong);
  font-size: 15px;
  line-height: 1.65;
}

.manual-provider-card ol {
  margin: 22px 0 0;
  padding-left: 22px;
  color: var(--manual-muted-strong);
}

.manual-provider-card li {
  padding: 5px 0 5px 6px;
  font-size: 14px;
  line-height: 1.55;
}

.manual-command-grid {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.manual-command-grid .manual-prompt-shell {
  margin-top: 0;
}

.manual-command-grid .manual-prompt-shell pre {
  max-height: none;
  min-height: 86px;
}

.manual-command-grid code {
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}

.manual-disclaimer {
  border-left: 3px solid var(--manual-accent);
}

.manual-disclaimer h2 {
  max-width: 680px;
}


.manual-page-toc a {
  padding: 8px 0;
  border-left: 1px solid var(--manual-line);
  padding-left: 14px;
  color: var(--manual-muted);
}

.manual-page-toc a:hover {
  color: var(--manual-text);
  border-left-color: var(--manual-accent);
}

.manual-footer {
  max-width: 1440px;
  margin: 0 auto;
  padding: 22px 20px 34px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid var(--manual-line);
  color: var(--manual-muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.page-shell {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

.guide-hero {
  min-height: 540px;
  display: grid;
  align-content: end;
  padding: 72px 0 64px;
  border-bottom: 1px solid var(--color-ash);
}

.guide-hero h1 {
  max-width: 950px;
  font-size: 88px;
}

.guide-hero h1::after {
  content: ".";
  color: var(--color-mint-chip);
}

.lead {
  max-width: 760px;
  margin-top: 24px;
  color: var(--color-carbon-black);
  font-size: 22px;
  line-height: 1.45;
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
  color: var(--color-slate);
}

.meta-row span {
  padding: 7px 12px;
  border-radius: 64px;
  background: var(--color-paper-white);
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(180px, 260px) minmax(0, var(--article));
  gap: 80px;
  align-items: start;
  padding: 72px 0;
}

.toc {
  position: sticky;
  top: 32px;
  display: grid;
  gap: 2px;
}

.toc-title {
  margin-bottom: 14px;
  color: var(--color-carbon-black);
}

.toc a {
  display: block;
  padding: 10px 0;
  border-bottom: 1px solid var(--color-ash);
  color: var(--color-slate);
  font-size: 15px;
  line-height: 1.3;
}

.toc a:hover {
  color: var(--color-carbon-black);
}

.article-body {
  min-width: 0;
}

.article-section {
  scroll-margin-top: 40px;
  padding-bottom: 64px;
  margin-bottom: 64px;
  border-bottom: 1px solid var(--color-ash);
}

.article-section:last-child {
  margin-bottom: 0;
}

.article-section h2 {
  margin-top: 12px;
  margin-bottom: 24px;
  font-size: 52px;
  line-height: 0.95;
}

.article-section h3 {
  margin-top: 32px;
  margin-bottom: 12px;
  font-size: 22px;
  line-height: 1.2;
  text-transform: uppercase;
}

blockquote {
  margin: 32px 0;
  padding: 24px;
  border-radius: 32px;
  background: var(--color-paper-white);
  color: var(--color-carbon-black);
  font-size: 24px;
  line-height: 1.35;
}

.check-list,
.numbered-list {
  padding-left: 22px;
}

.check-list li,
.numbered-list li {
  margin-bottom: 14px;
}

.branch-list {
  display: grid;
  gap: 14px;
}

.branch-list article,
.lesson-list article {
  padding: 24px;
  border-radius: 32px;
  background: var(--color-paper-white);
}

.branch-list span,
.lesson-list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  min-height: 34px;
  border-radius: 64px;
  background: var(--color-mint-chip);
  color: var(--color-carbon-black);
  font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 12px;
  font-weight: 700;
}

.branch-list h3,
.lesson-list h3 {
  margin-top: 18px;
}

.lesson-list {
  display: grid;
  gap: 14px;
}

.lesson-list article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
}

pre {
  max-width: 100%;
  overflow: auto;
  margin: 24px 0;
  padding: 24px;
  border-radius: 24px;
  background: var(--color-carbon-black);
  color: var(--color-paper-white);
}

code {
  font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 14px;
  line-height: 1.55;
}

pre code {
  color: var(--color-paper-white);
}

.next-card,
.gate-card {
  padding: 24px;
  border-radius: 32px;
  background: var(--color-mint-chip);
}

.carousel-guide .guide-hero {
  min-height: 560px;
}

.guide-callout {
  margin: 28px 0;
  padding: 22px;
  border: 1px solid var(--color-carbon-black);
  border-radius: 8px;
  background: var(--color-paper-white);
  color: var(--color-slate);
  font-size: 18px;
  line-height: 1.55;
}

.guide-callout strong {
  display: block;
  margin-bottom: 8px;
}

.carousel-principle {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(260px, 0.95fr);
  gap: 28px;
  align-items: center;
  margin-top: 32px;
}

.split-demo {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  border: 2px solid var(--color-carbon-black);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(209, 255, 202, 0.7), rgba(255, 241, 0, 0.36)),
    var(--color-paper-white);
}

.split-demo__line {
  position: absolute;
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  background: var(--color-carbon-black);
}

.split-demo__subject {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(58%, 360px);
  min-height: 112px;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--color-carbon-black);
  color: var(--color-paper-white);
  font-family: "Anton", "Impact", "Arial Narrow", sans-serif;
  font-size: 44px;
  line-height: 1;
  text-transform: uppercase;
}

.split-demo__label {
  position: absolute;
  top: 18px;
  padding: 7px 10px;
  border-radius: 8px;
  background: var(--color-paper-white);
  color: var(--color-carbon-black);
  font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.split-demo__label--left {
  left: 18px;
}

.split-demo__label--right {
  right: 18px;
}

.source-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.source-gallery figure {
  margin: 0;
  padding: 10px;
  border-radius: 8px;
  background: var(--color-paper-white);
}

.source-gallery img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.source-gallery figcaption {
  margin-top: 10px;
  color: var(--color-slate);
  font-size: 14px;
  line-height: 1.4;
}

@media (max-width: 960px) {
  .site-header {
    grid-template-columns: 1fr auto;
    min-height: 104px;
  }

  .top-nav {
    grid-column: 1 / -1;
    justify-self: stretch;
    justify-content: flex-start;
    overflow-x: auto;
  }

  .home-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  h1 {
    font-size: 72px;
  }

  .hero-product {
    min-height: 420px;
  }

  .split-layout,
  .content-grid,
  .carousel-principle,
  .launch-panel {
    grid-template-columns: 1fr;
  }

  .system-grid,
  .module-list {
    grid-template-columns: 1fr 1fr;
  }

  .toc {
    position: static;
  }

  .manual-topbar {
    grid-template-columns: 1fr;
    position: static;
  }

  .manual-search {
    order: 3;
  }

  .manual-owner-bar {
    position: static;
    padding: 8px 20px;
  }

  .manual-page.has-owner-bar .manual-topbar {
    top: 0;
  }

  .manual-page.has-owner-bar .manual-sidebar,
  .manual-page.has-owner-bar .manual-page-toc {
    max-height: none;
  }

  .manual-actions {
    justify-content: flex-start;
    overflow-x: auto;
  }

  .manual-layout {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-top: 22px;
  }

  .manual-sidebar,
  .manual-page-toc {
    position: static;
  }

  .manual-sidebar {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    max-height: none;
    overflow: visible;
    overscroll-behavior: auto;
    scrollbar-gutter: auto;
  }

  .manual-page-toc {
    display: none;
  }

  .manual-workspace {
    grid-template-columns: 1fr;
  }

  .manual-workspace-roles {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .manual-football-pitch,
  .manual-squad-layers,
  .manual-source-grid {
    grid-template-columns: 1fr;
  }

  .manual-player-card,
  .manual-squad-layers article {
    min-height: 0;
    padding: 22px;
  }

  .manual-player-card span,
  .manual-squad-layers span {
    margin-bottom: 14px;
  }
  .site-header {
    padding: 20px;
  }

  .brand-wordmark {
    width: 142px;
  }

  .manual-brand {
    gap: 10px;
  }

  .manual-brand .brand-wordmark {
    width: 124px;
  }

  .manual-brand__domain {
    gap: 10px;
    font-size: 12px;
  }

  .manual-brand__domain::before {
    height: 24px;
  }

  .header-action {
    display: none;
  }

  .home-hero,
  .section-band,
  .page-shell,
  .site-footer,
  .launch-panel {
    padding-left: 20px;
    padding-right: 20px;
  }

  h1,
  .guide-hero h1 {
    font-size: 50px;
  }

  .section-heading h2,
  .article-section h2 {
    font-size: 40px;
  }

  .launch-panel h2 {
    font-size: 36px;
  }

  .hero-lead,
  .lead,
  .split-layout p {
    font-size: 18px;
  }

  .hero-product {
    min-height: 360px;
    border-radius: 36px;
  }

  .product-cube {
    padding: 16px;
    border-radius: 22px;
  }

  .product-cube strong {
    font-size: 30px;
  }

  .product-cube--black {
    left: 18px;
    top: 34px;
    width: 210px;
    height: 170px;
  }

  .product-cube--white {
    right: 18px;
    top: 132px;
    width: 190px;
    height: 150px;
  }

  .product-cube--mint {
    left: 34px;
    bottom: 28px;
    width: 210px;
    height: 120px;
  }

  .product-chip--yellow {
    right: 56px;
    bottom: 42px;
  }

  .product-chip--mint {
    right: 24px;
    top: 34px;
  }

  .proof-strip,
  .system-grid,
  .module-list {
    grid-template-columns: 1fr;
  }

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

  .source-gallery {
    grid-template-columns: 1fr;
  }

  .site-footer {
    flex-direction: column;
  }

  .manual-topbar {
    padding: 16px 20px;
  }

  .manual-layout {
    padding-left: 20px;
    padding-right: 20px;
  }

  .manual-sidebar {
    grid-template-columns: 1fr;
    padding: 16px;
  }

  .manual-actions {
    gap: 8px;
  }

  .manual-actions a {
    min-height: 38px;
    padding: 0 12px;
    white-space: nowrap;
  }

  .manual-hero {
    padding-top: 20px;
  }

  .manual-lead,
  .manual-block p,
  .manual-block li {
    font-size: 16px;
  }

  .manual-block--accent {
    padding: 22px;
  }

  .manual-result-grid,
  .manual-audience {
    grid-template-columns: 1fr;
  }

  .manual-risk-grid,
  .manual-memory-map,
  .manual-workspace-roles {
    grid-template-columns: 1fr;
  }

  .manual-setup-question {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .manual-setup-question__guide {
    min-height: 230px;
    place-items: center;
  }

  .manual-setup-question__figure {
    width: 160px;
    height: 230px;
  }

  .manual-setup-question__figure img {
    width: 150px;
    height: 226px;
  }

  .manual-setup-question__mark {
    top: -20px;
    font-size: 44px;
  }

  .manual-setup-choices,
  .manual-setup-route-details ol {
    grid-template-columns: 1fr;
  }

  .manual-project-map-flow {
    grid-template-columns: 1fr;
  }

  .manual-project-map-flow--four {
    grid-template-columns: 1fr;
  }

  .manual-project-map-stage {
    min-height: 170px;
    padding: 70px 18px 24px;
  }

  .manual-project-map-connector {
    min-height: 34px;
    animation: none;
    transform: rotate(90deg);
  }

  .manual-setup-choices button {
    min-height: 68px;
  }

  .manual-setup-route-details li {
    min-height: 0;
  }

  .manual-risk-grid > div {
    min-height: 0;
  }

  .manual-install-claude-cta {
    grid-column: 1;
    min-height: 66px;
    margin-right: 80px;
    padding: 12px 16px;
    font-size: 15px;
  }

  .manual-install-kit,
  .manual-tariff-choice,
  .manual-install-rules {
    grid-template-columns: 1fr;
  }

  .manual-install-kit > div,
  .manual-tariff-choice > div,
  .manual-install-rules > div {
    min-height: 0;
  }

  .manual-install-steps li {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 12px;
  }

  .manual-provider-card h3 {
    font-size: 24px;
  }

  .manual-command-grid .manual-prompt-toolbar {
    align-items: flex-start;
  }

  .manual-prompt-shell pre,
  .manual-workspace-tree {
    padding: 18px;
  }

  .manual-prompt-shell pre {
    max-height: 560px;
  }

  .manual-prompt-shell code,
  .manual-workspace-tree code {
    font-size: 11px;
  }

  .manual-guide {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 52px;
    padding-top: 30px;
  }

  .manual-guide__visual {
    min-height: 390px;
  }

  .manual-guide__visual img {
    width: min(82vw, 290px);
  }

  .manual-guide__status {
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
  }

  .manual-guide__content h3 {
    font-size: 38px;
  }

  .manual-guide__choices {
    grid-template-columns: 1fr;
  }

  .manual-theme-guide {
    margin-top: 52px;
    padding: 48px 0 42px;
  }

  .manual-theme-guide__heading h3 {
    font-size: 38px;
  }

  .manual-theme-guide__heading p {
    font-size: 16px;
  }

  .manual-theme-guide__selector {
    grid-template-columns: minmax(82px, 1fr) 150px minmax(82px, 1fr);
    gap: 6px;
    margin-top: 26px;
  }

  .manual-theme-guide__mascot {
    min-height: 238px;
  }

  .manual-theme-guide__mascot img {
    width: 148px;
  }

  .manual-theme-choice {
    top: -34px;
    min-height: 54px;
    padding: 0 10px;
    font-size: 14px;
  }

  .manual-assistant-launcher {
    right: 8px;
    bottom: 10px;
    width: 62px;
    height: 94px;
  }

  .manual-claude-install .manual-assistant-launcher {
    right: 5px;
    width: 58px;
    height: 88px;
  }

  .manual-step-two .manual-assistant-launcher,
  .manual-step-three .manual-assistant-launcher,
  .manual-step-four .manual-assistant-launcher {
    display: none;
  }

  .manual-assistant-dialog {
    inset: auto 10px 146px auto;
    width: calc(100vw - 20px);
    max-height: min(480px, calc(100vh - 148px));
  }

  .manual-footer {
    flex-direction: column;
    padding-left: 20px;
    padding-right: 20px;
  }

  .manual-footer.manual-footer--intro {
    grid-template-columns: 1fr;
    gap: 14px;
    padding-bottom: 150px;
  }

  .manual-footer--intro > span:first-child,
  .manual-next-step-cta {
    grid-column: 1;
  }

  .manual-next-step-cta {
    width: 100%;
    font-size: 14px;
  }

  .manual-page-transition--compact .manual-next-step-cta {
    width: min(100%, 340px);
    min-width: 0;
  }
}

.report-page .manual-hero h1 {
  max-width: 900px;
  overflow-wrap: anywhere;
  hyphens: auto;
}

.report-layout {
  grid-template-columns: 270px minmax(0, 820px) 220px;
}

.report-stat-grid,
.report-layer-grid,
.report-access-grid,
.report-repo-grid,
.report-source-grid,
.report-risk-grid {
  display: grid;
  gap: 14px;
}

.report-stat-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 30px;
}

.report-stat-grid div,
.report-layer-grid article,
.report-access-grid article,
.report-risk-grid article {
  min-width: 0;
  border: 1px solid var(--manual-line);
  border-radius: var(--manual-radius-panel);
  background: var(--manual-surface);
}

.report-stat-grid div {
  min-height: 170px;
  padding: 20px;
}

.report-stat-grid span {
  display: block;
  color: var(--manual-accent);
  font-family: "Manrope", Inter, system-ui, sans-serif;
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 900;
  line-height: 0.95;
}

.report-stat-grid strong,
.report-layer-grid h3,
.report-access-grid h3 {
  display: block;
  margin-top: 16px;
  color: var(--manual-text);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.25;
}

.report-stat-grid p {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.55;
}

.report-layer-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 28px;
}

.report-layer-grid article,
.report-access-grid article,
.report-risk-grid article {
  min-height: 210px;
  padding: 20px;
}

.report-layer-grid span,
.report-access-grid span,
.report-risk-grid span,
.report-repo-grid span,
.report-source-grid span {
  color: var(--manual-accent);
  font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 11px;
  font-weight: 900;
  line-height: 1.45;
  text-transform: uppercase;
}

.report-layer-grid p,
.report-access-grid p,
.report-risk-grid p {
  margin-top: 12px;
  font-size: 15px;
  line-height: 1.62;
}

.report-table-wrap {
  width: 100%;
  margin-top: 28px;
  overflow-x: auto;
  border: 1px solid var(--manual-line);
  border-radius: var(--manual-radius-panel);
  background: var(--manual-surface);
}

.report-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

.report-table th,
.report-table td {
  padding: 16px;
  border-bottom: 1px solid var(--manual-line);
  color: var(--manual-muted-strong);
  font-size: 14px;
  line-height: 1.55;
  text-align: left;
  vertical-align: top;
}

.report-table th {
  color: var(--manual-muted);
  font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.report-table td:first-child {
  color: var(--manual-text);
  font-weight: 900;
}

.report-table tr:last-child td {
  border-bottom: 0;
}

.report-access-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 28px;
}

.report-repo-grid,
.report-source-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 28px;
}

.report-repo-grid a,
.report-source-grid a {
  min-height: 180px;
  padding: 20px;
  border: 1px solid var(--manual-line);
  border-radius: var(--manual-radius-panel);
  background: var(--manual-surface);
  transition:
    border-color 180ms ease,
    background-color 180ms ease,
    transform 180ms ease;
}

.report-repo-grid a:hover,
.report-source-grid a:hover {
  border-color: var(--manual-line-strong);
  background: var(--manual-surface-strong);
  transform: translateY(-2px);
}

.report-repo-grid strong,
.report-source-grid strong {
  display: block;
  margin-top: 14px;
  color: var(--manual-text);
  font-size: 17px;
  font-weight: 900;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.report-repo-grid p,
.report-source-grid p {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.58;
}

.report-flow {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.report-flow div {
  min-height: 178px;
  padding: 20px;
  border: 1px solid var(--manual-line);
  border-radius: var(--manual-radius-panel);
  background: var(--manual-surface);
}

.report-flow span {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  background: var(--manual-accent);
  font-weight: 900;
}

.report-flow strong {
  display: block;
  margin-top: 18px;
  color: var(--manual-text);
  font-size: 18px;
}

.report-flow p {
  margin-top: 10px;
  font-size: 15px;
  line-height: 1.58;
}

.report-roadmap {
  margin: 28px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
  list-style: none;
}

.report-roadmap li {
  padding: 18px 20px;
  border: 1px solid var(--manual-line);
  border-radius: var(--manual-radius-slot);
  background: var(--manual-surface);
}

.report-risk-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 28px;
}

.report-risk-grid article {
  min-height: 160px;
}

.report-source-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.report-source-columns div {
  min-width: 0;
  padding: 20px;
  border: 1px solid var(--manual-line);
  border-radius: var(--manual-radius-panel);
  background: var(--manual-surface);
}

.report-source-columns h3 {
  margin: 0 0 14px;
  color: var(--manual-text);
  font-size: 18px;
  line-height: 1.25;
}

.report-source-columns a {
  display: block;
  padding: 10px 0;
  border-top: 1px solid var(--manual-line);
  color: var(--manual-muted-strong);
  font-size: 14px;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.report-source-columns a:hover {
  color: var(--manual-text);
}

@media (max-width: 960px) {
  .report-layout {
    grid-template-columns: 1fr;
  }

  .report-stat-grid,
  .report-layer-grid,
  .report-access-grid,
  .report-repo-grid,
  .report-source-grid,
  .report-flow,
  .report-risk-grid,
  .report-source-columns {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .report-page .manual-hero h1 {
    font-size: 38px;
    line-height: 1.02;
  }

  .report-stat-grid div,
  .report-layer-grid article,
  .report-access-grid article,
  .report-repo-grid a,
  .report-source-grid a,
  .report-flow div,
  .report-risk-grid article,
  .report-source-columns div {
    min-height: 0;
    padding: 18px;
  }

  .report-table th,
  .report-table td {
    padding: 14px;
    font-size: 13px;
  }
}

.launch-landing .launch-logo {
  width: 154px;
  height: auto;
  border-radius: 0;
  background: transparent;
}

@media (max-width: 680px) {
  .launch-landing .launch-logo {
    width: 104px;
  }
}
