@font-face {
  font-family: "Inter";
  font-style: normal;
  font-display: swap;
  font-weight: 400;
  src: url("../fonts/inter-400.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-display: swap;
  font-weight: 500;
  src: url("../fonts/Inter-Medium.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-display: swap;
  font-weight: 600;
  src: url("../fonts/Inter-SemiBold.ttf") format("truetype");
}
@font-face {
  font-family: "JetBrains Mono";
  font-style: normal;
  font-display: swap;
  font-weight: 400;
  src: url("../fonts/JetBrainsMono-Regular.woff2") format("woff2");
}
@font-face {
  font-family: "PP Mondwest";
  font-style: normal;
  font-display: swap;
  font-weight: 400;
  src: url("../fonts/PPMondwest-Regular.woff2") format("woff2");
}

:root {
  --bg: #000;
  --bg-raised: #1a1a1a;
  --card: #1a1a1a;
  --card-inner: #242424;
  --yellow: #f5e800;
  --yellow-soft: rgba(245, 232, 0, 0.12);
  --yellow-line: rgba(245, 232, 0, 0.3);
  --white: #fffef2;
  --mute: rgba(255, 254, 242, 0.64);
  --dim: rgba(255, 254, 242, 0.4);
  --line: rgba(245, 232, 0, 0.18);
  --font: "Fustat", "Inter", -apple-system, system-ui, sans-serif;
  --mono: "Fustat", "Inter", sans-serif;
  --display: "Fustat", "Inter", sans-serif;
  --pixel: "Fustat", "Inter", sans-serif;
  --max: 1040px;
  --space: clamp(52px, 8vw, 88px);
  --radius: 8px;
  --radius-sm: 6px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.55;
  color: var(--white);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Asymmetric yellow wash — sales desk feel */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 55% 40% at 0% 8%, rgba(245, 232, 0, 0.11), transparent 60%),
    radial-gradient(ellipse 40% 35% at 100% 55%, rgba(245, 232, 0, 0.06), transparent 55%);
}

main {
  position: relative;
  z-index: 1;
}

/* ——— Site bar (transparent sticky) ——— */
.site-bar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: transparent;
  pointer-events: none;
}

.site-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 64px;
  pointer-events: auto;
}

.site-brand {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  flex-shrink: 0;
}

.logo-delta {
  font-family: "Gloria Hallelujah", "PP Mondwest", cursive;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1;
  color: var(--yellow);
  letter-spacing: -0.02em;
  transform: rotate(-3deg);
  text-shadow: 0 0 28px rgba(245, 232, 0, 0.45);
  -webkit-text-stroke: 0.4px rgba(0, 0, 0, 0.35);
}

.logo-delta--sm {
  font-size: 1.55rem;
}

.site-brand-name {
  font-family: var(--font);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--mute);
  transform: translateY(-1px);
}

.site-menu {
  position: relative;
  flex-shrink: 0;
}

.site-dots {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 0;
  background: transparent;
  border: none;
  cursor: pointer;
}

.site-dots i {
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--white);
  opacity: 0.85;
  transition: opacity 0.15s ease, transform 0.15s ease;
}

.site-dots:hover i,
.site-dots.is-open i {
  opacity: 1;
  background: var(--yellow);
}

.site-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 200px;
  padding: 8px;
  border-radius: 12px;
  border: 1px solid rgba(245, 232, 0, 0.22);
  background: rgba(10, 10, 8, 0.96);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.55);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}

.site-dropdown.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.site-dropdown a {
  display: block;
  padding: 11px 12px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--white);
}

.site-dropdown a:hover {
  background: rgba(245, 232, 0, 0.08);
  color: var(--yellow);
}

.site-dropdown-cta {
  margin-top: 4px;
  text-align: center;
  background: var(--yellow) !important;
  color: #0a0a00 !important;
  font-weight: 800 !important;
}

.site-dropdown-cta:hover {
  background: #fffef2 !important;
  color: #0a0a00 !important;
}

.site-footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(245, 232, 0, 0.12);
  padding: 48px 0 56px;
  background: linear-gradient(180deg, transparent, rgba(245, 232, 0, 0.03));
}

.site-footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  grid-template-areas:
    "brand nav actions"
    "copy copy copy";
  align-items: start;
  gap: 28px 32px;
}

.site-footer-top {
  grid-area: brand;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.site-brand--footer {
  align-items: baseline;
}

.site-footer-tag {
  margin: 0;
  max-width: 22em;
  font-size: 13px;
  line-height: 1.5;
  color: var(--dim);
}

.site-footer-nav {
  grid-area: nav;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 4px;
}

.site-footer-nav a {
  font-size: 14px;
  font-weight: 600;
  color: var(--mute);
}

.site-footer-nav a:hover {
  color: var(--yellow);
}

.site-footer-actions {
  grid-area: actions;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.site-footer-cta {
  padding: 12px 18px;
  font-size: 13px;
  white-space: nowrap;
}

.site-footer-note {
  margin: 0;
  font-size: 11px;
  line-height: 1.45;
  color: var(--dim);
  letter-spacing: 0.02em;
}

.site-footer-copy {
  grid-area: copy;
  margin: 8px 0 0;
  padding-top: 24px;
  border-top: 1px solid #1f1f1a;
  font-size: 12px;
  color: var(--dim);
}

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

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

button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

ul {
  list-style: none;
}

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

.wrap-sm {
  width: min(100% - 48px, 620px);
  margin-inline: auto;
}

.align-right-wrap {
  margin-left: auto;
  margin-right: max(0px, calc((100% - var(--max)) / 2));
}

/* ——— Type ——— */
.faded {
  font-family: var(--display);
  color: var(--yellow);
  font-weight: 700;
}

.label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 12px;
}

.label::before {
  content: "★";
  width: auto;
  height: auto;
  background: none;
  font-size: 11px;
  line-height: 1;
  color: var(--yellow);
  flex-shrink: 0;
}

.label--issue { color: #ff5c5c; }
.label--issue::before { color: #ff5c5c; }
.label--solution { color: #45d483; }
.label--solution::before { color: #45d483; }
.label--proof { color: #f5e800; }
.label--proof::before { color: #f5e800; }
.label--math { color: #4da3ff; }
.label--math::before { color: #4da3ff; }
.label--faq { color: #b388ff; }
.label--faq::before { color: #b388ff; }
.label--who { color: #4da3ff; }
.label--who::before { color: #4da3ff; }
.label--options { color: #ff8a3d; }
.label--options::before { color: #ff8a3d; }
.label--decision { color: #f5e800; }
.label--decision::before { color: #f5e800; }

.align-right .label {
  flex-direction: row-reverse;
}

.align-right .label::before {
  order: 1;
}

h1 {
  font-family: var(--display);
  font-size: clamp(40px, 6.4vw, 66px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
}

h2 {
  font-family: var(--display);
  font-size: clamp(26px, 3.8vw, 40px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.08;
}

h3 {
  font-family: var(--display);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.center {
  text-align: center;
}

.headline {
  margin-bottom: 10px;
}

.headline h1,
.headline h2,
.headline h3 {
  margin: 0;
}

.section-head {
  max-width: 560px;
  margin-bottom: 28px;
}

.section-head.align-right {
  margin-left: auto;
  text-align: right;
}

.section-head.align-right .label {
  justify-content: flex-end;
}

.section-lead {
  color: var(--mute);
  font-size: 14.5px;
  line-height: 1.45;
  max-width: 46ch;
  margin: 0;
}

@media (min-width: 900px) {
  .section-head-center > .section-lead,
  .bento-head .section-lead,
  .comparison-stage > .section-lead,
  .math-copy > .section-lead,
  .proof-copy > .section-lead,
  .split-copy > .section-lead,
  .faq-ledger > .section-lead {
    white-space: nowrap;
    max-width: none;
  }
}

.section-head.align-right .section-lead {
  margin-left: auto;
}

/* ——— Buttons ——— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  font-family: var(--display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.01em;
  border-radius: var(--radius-sm);
  border: 1px solid var(--yellow);
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
}

.btn:active {
  transform: scale(0.985);
}

.btn-primary {
  background: var(--yellow);
  color: #000;
  border-radius: var(--radius-sm);
  box-shadow:
    0 0 14px rgba(245, 232, 0, 0.55),
    0 0 42px rgba(245, 232, 0, 0.28),
    inset 0 -2px 0 rgba(0, 0, 0, 0.18);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.25);
  animation: btn-glow 2.4s ease-in-out infinite;
}

.btn-primary:hover {
  background: #fff861;
  color: #000;
  animation: none;
  box-shadow:
    0 0 22px rgba(245, 232, 0, 0.85),
    0 0 64px rgba(245, 232, 0, 0.45),
    inset 0 -2px 0 rgba(0, 0, 0, 0.18);
}

@keyframes btn-glow {
  0%, 100% {
    box-shadow:
      0 0 14px rgba(245, 232, 0, 0.55),
      0 0 42px rgba(245, 232, 0, 0.28),
      inset 0 -2px 0 rgba(0, 0, 0, 0.18);
  }
  50% {
    box-shadow:
      0 0 20px rgba(245, 232, 0, 0.8),
      0 0 58px rgba(245, 232, 0, 0.4),
      inset 0 -2px 0 rgba(0, 0, 0, 0.18);
  }
}

.cta-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  margin-top: 22px;
}

.cta-block.align-end {
  align-items: flex-end;
}

.spots,
.price-note {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--dim);
  letter-spacing: 0.03em;
  margin: 0;
}

.seats {
  width: 100%;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-top: 4px;
}

.seats-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.04em;
  color: var(--mute);
}

.seats-left {
  color: var(--yellow);
}

.seats-bar {
  height: 8px;
  border: 1px solid var(--yellow-line);
  border-radius: 99px;
  background: rgba(245, 232, 0, 0.06);
  overflow: hidden;
}

.seats-fill {
  display: block;
  width: 85%;
  height: 100%;
  border-radius: 99px;
  background: linear-gradient(90deg, rgba(245, 232, 0, 0.55), var(--yellow));
  box-shadow: 0 0 12px rgba(245, 232, 0, 0.7);
  animation: seats-pulse 2.4s ease-in-out infinite;
}

@keyframes seats-pulse {
  0%, 100% { box-shadow: 0 0 8px rgba(245, 232, 0, 0.5); }
  50% { box-shadow: 0 0 16px rgba(245, 232, 0, 0.9); }
}

.seats-note {
  margin: 0;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.03em;
  color: var(--dim);
}

/* ——— Sections + alternating edges ——— */
.section {
  padding: var(--space) 0;
  position: relative;
}

.section.tight {
  padding: calc(var(--space) * 0.75) 0;
}

.section.from-left::before,
.section.from-right::before {
  display: none;
}

.section.band-soft {
  background: linear-gradient(90deg, transparent, rgba(245, 232, 0, 0.03), transparent);
}

.section.close-band {
  background:
    linear-gradient(180deg, transparent, rgba(245, 232, 0, 0.05) 40%, transparent);
}

.section + .section::after {
  display: none;
}

/* ——— Hero ——— */
.hero {
  position: relative;
  padding: 88px 0 72px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -8%;
  width: min(70vw, 720px);
  height: min(70vw, 720px);
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(245, 232, 0, 0.1), transparent 68%);
  pointer-events: none;
}

.hero-pro {
  position: relative;
  z-index: 1;
  max-width: 980px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-pro-copy {
  max-width: 100%;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-pro-copy h1 {
  margin: 0;
  font-size: clamp(38px, 5.5vw, 62px);
  line-height: 1.04;
  letter-spacing: -0.045em;
  text-transform: uppercase;
}

.hero-pro .hero-sub {
  margin: 18px 0 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.45;
  color: var(--mute);
  text-align: center;
}

.hero-sub-line {
  display: block;
}

.hero-rating {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}

.hero-cta-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-top: 22px;
}

.hero-rating-stars {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  color: var(--yellow);
}

.hero-rating-stars svg {
  width: 13px;
  height: 13px;
}

.hero-rating-score {
  font-size: 12px;
  color: var(--mute);
  letter-spacing: 0.01em;
}

.hero-rating-faces {
  display: inline-flex;
  align-items: center;
  margin-left: 1px;
}

.hero-rating-faces img {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid #0a0a0a;
  margin-left: -7px;
  opacity: 0.82;
}

.hero-rating-faces img:first-child {
  margin-left: 0;
}

.hero-rating-text {
  font-size: 12px;
  color: var(--mute);
  letter-spacing: 0.01em;
}

.hero-rating {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}

.hero-sub-line {
  display: block;
}

.btn-hero {
  flex-direction: column;
  gap: 2px;
  width: auto;
  min-width: 210px;
  padding: 14px 28px;
  line-height: 1.15;
  justify-content: center;
}

.btn-hero-main {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.btn-hero-price {
  font-size: 12px;
  font-weight: 600;
  opacity: 0.72;
  letter-spacing: 0.01em;
}

.hero-capacity,
.capacity-block {
  width: min(100%, 280px);
  padding: 0 2px;
}

.hero-capacity-labels,
.capacity-block-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--mute);
}

.capacity-block-limit {
  max-width: 62%;
  line-height: 1.35;
}

.hero-capacity-left,
.capacity-block-left {
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 600;
}

.hero-capacity-left strong,
.capacity-block-left strong {
  color: var(--yellow);
  font-weight: 800;
  font-size: 13px;
  text-shadow: 0 0 14px rgba(245, 232, 0, 0.35);
}

.hero-capacity-bar,
.capacity-block-bar {
  height: 6px;
  border-radius: 999px;
  background: #1c1c16;
  border: 1px solid #2a2a2a;
  overflow: hidden;
}

.hero-capacity-bar span,
.capacity-block-bar span {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, #c4b800, var(--yellow));
  box-shadow: 0 0 10px rgba(245, 232, 0, 0.55);
  animation: capacity-pulse 2.4s ease-in-out infinite;
}

@keyframes capacity-pulse {
  0%, 100% { box-shadow: 0 0 8px rgba(245, 232, 0, 0.45); }
  50% { box-shadow: 0 0 16px rgba(245, 232, 0, 0.85); }
}

.capacity-block-note {
  margin: 7px 0 0;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.03em;
  line-height: 1.4;
  color: rgba(245, 232, 0, 0.72);
}

.capacity-block--compact {
  width: 100%;
  max-width: 220px;
  margin-top: 2px;
}

.capacity-block--compact .capacity-block-top {
  margin-bottom: 6px;
  font-size: 9px;
}

.capacity-block--compact .capacity-block-left strong {
  font-size: 11px;
}

.capacity-block--compact .capacity-block-bar {
  height: 5px;
}

.capacity-block--close {
  width: min(100%, 320px);
}

.cta-with-capacity {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 100%;
}

.hero-proof-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 32px;
  align-items: start;
  width: 100%;
}

.hero-proof {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 18px 18px 20px;
  border: 1px solid #2a2a2a;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 42%), var(--card);
  text-align: left;
}

.hero-proof-top {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.hero-proof-photo {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 18%;
  flex-shrink: 0;
  border: 2px solid rgba(245, 232, 0, 0.22);
  background: #141410;
}

.hero-proof-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
  min-width: 0;
  padding-top: 2px;
}

.hero-proof-name {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.2;
  color: var(--white);
}

.hero-proof-role {
  font-size: 12px;
  line-height: 1.3;
  color: var(--mute);
}

.hero-proof-stars {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  margin-top: 4px;
  color: var(--yellow);
}

.hero-proof-stars svg {
  width: 12px;
  height: 12px;
}

.hero-proof-quote {
  margin: 16px 0 0;
  padding-top: 16px;
  border-top: 1px solid #2a2a2a;
  font-size: 13.5px;
  line-height: 1.55;
  letter-spacing: -0.01em;
  color: rgba(255, 255, 255, 0.82);
}

.hero-proof-hl {
  background: linear-gradient(180deg, transparent 42%, rgba(245, 232, 0, 0.38) 42%);
  color: var(--white);
  font-weight: 600;
  padding: 0 2px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

@media (max-width: 960px) {
  .site-footer-inner {
    grid-template-columns: 1fr;
    grid-template-areas:
      "brand"
      "nav"
      "actions"
      "copy";
    gap: 24px;
  }

  .site-footer-actions {
    align-items: stretch;
  }

  .site-footer-cta {
    text-align: center;
  }

  .hero-proof-row {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 12px;
    margin-top: 36px;
    padding-bottom: 4px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .hero-proof-row::-webkit-scrollbar {
    display: none;
  }

  .hero-proof {
    flex: 0 0 min(76vw, 300px);
    scroll-snap-align: start;
  }
}

.hero-solo {
  display: none;
}

.hero-solo h1,
.hero-solo .hero-sub,
.hero-solo-cta {
  /* legacy hooks */
}

.hero-brain-wrap {
  display: inline-block;
  width: 0.88em;
  height: 0.88em;
  margin-left: 0.1em;
  vertical-align: middle;
  line-height: 0;
  transform: translateY(-0.04em);
}

.hero-brain-inline {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: none;
}

.hero-note {
  margin: 4px 0 0;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--dim);
}

.members {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--mute);
  padding: 6px 10px;
  border: 1px solid var(--yellow-line);
  background: var(--yellow-soft);
}

.members span:first-child {
  color: var(--yellow);
  letter-spacing: 0.05em;
}

.members--solid {
  background: #f5e800;
  border-color: #f5e800;
  color: #0a0a00;
  font-weight: 700;
}

.members--solid span:first-child {
  color: #0a0a00;
}

.hero-grid,
.hero-grid--pro,
.hero-video,
.hero-video-meta,
.hero-topline,
.hero-title-row,
.hero-brain {
  /* legacy hooks kept quiet */
}

.video-slot {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  background: #070700;
  overflow: hidden;
  border: 1px solid var(--yellow-line);
}

.video-slot video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: #000;
}

.video-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background:
    radial-gradient(circle at 50% 45%, rgba(245, 232, 0, 0.12), transparent 55%),
    #050500;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.video-slot.has-video .video-fallback {
  opacity: 0;
}

.video-play {
  width: 64px;
  height: 64px;
  border: none;
  border-radius: 50%;
  position: relative;
  color: var(--yellow);
  display: grid;
  place-items: center;
}

.video-play svg {
  width: 64px;
  height: 64px;
  display: block;
  overflow: visible;
}

.video-play-ring {
  opacity: 0.95;
}

.video-play-ring--pulse {
  transform-origin: 32px 32px;
  animation: play-ring-pulse 1.8s ease-out infinite;
}

.video-play-tri {
  transform-origin: 32px 32px;
  animation: play-tri-breathe 1.8s ease-in-out infinite;
}

@keyframes play-ring-pulse {
  0% {
    opacity: 0.55;
    transform: scale(1);
  }
  70% {
    opacity: 0;
    transform: scale(1.35);
  }
  100% {
    opacity: 0;
    transform: scale(1.35);
  }
}

@keyframes play-tri-breathe {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.06);
    opacity: 0.88;
  }
}

.video-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--yellow);
}

/* ——— Simple problem / solution ——— */
.simple-stage {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.simple-stage .label {
  justify-content: center;
}

.simple-stage h2 {
  margin: 0 0 28px;
  font-size: clamp(28px, 4.2vw, 42px);
  line-height: 1.12;
}

.vs-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 16px 20px;
  align-items: stretch;
  text-align: left;
}

.vs-side {
  padding: 20px 18px;
  border: 1px solid var(--line);
  background: var(--bg-raised);
}

.vs-side--them {
  border-color: var(--yellow-line);
  background: var(--card);
}

.vs-tag {
  margin: 0 0 12px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dim);
}

.vs-side--them .vs-tag {
  color: var(--yellow);
}

.vs-line {
  margin: 0;
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
  font-size: 16px;
  font-weight: 600;
  color: var(--mute);
}

.vs-side .vs-line:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.vs-side--them .vs-line {
  color: var(--white);
}

.vs-mid {
  margin: 0;
  align-self: center;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dim);
}

.simple-foot {
  margin: 24px 0 0;
  font-size: 14px;
  color: var(--mute);
}

.simple-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
}

.simple-steps li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: center;
  padding: 16px 18px;
  border: 1px solid var(--line);
  background: var(--bg-raised);
}

.simple-num {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--yellow-line);
  background: rgba(245, 232, 0, 0.08);
  color: var(--yellow);
  font-family: var(--display);
  font-size: 18px;
  font-weight: 700;
}

.simple-steps h3 {
  margin: 0 0 4px;
  font-size: 17px;
}

.simple-steps p {
  margin: 0;
  font-size: 14px;
  color: var(--mute);
}

@media (max-width: 640px) {
  .vs-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .vs-mid {
    text-align: center;
  }
}

/* ——— Story block (problem / solution) ——— */
.story-block {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(200px, 0.8fr);
  gap: clamp(28px, 4vw, 52px);
  align-items: center;
}

.story-block--flip {
  direction: rtl;
}

.story-block--flip > * {
  direction: ltr;
}

.story-copy h2 {
  margin: 0 0 10px;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.1;
}

.story-kicker {
  margin: 0 0 18px;
  font-size: 16px;
  color: var(--yellow);
  font-weight: 600;
}

.story-pull {
  margin: 18px 0;
  padding: 14px 16px;
  border-left: 2px solid var(--yellow);
  background: var(--card);
  font-family: var(--display);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.45;
  color: var(--white);
}

.story-list {
  list-style: none;
  margin: 12px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.story-list li {
  position: relative;
  padding-left: 18px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--mute);
}

.story-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  background: var(--yellow);
}

.story-list--outcome li {
  color: var(--white);
}

.story-close {
  margin: 18px 0 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--mute);
}

.story-art {
  margin: 0;
  border: 1px solid var(--yellow-line);
  background:
    radial-gradient(circle at 50% 100%, rgba(245, 232, 0, 0.06), transparent 62%),
    var(--bg-raised);
  padding: clamp(16px, 2.5vw, 28px);
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: stretch;
}

.story-art img {
  width: min(100%, 380px);
  max-height: min(58vh, 460px);
  object-fit: contain;
  filter: drop-shadow(0 12px 26px rgba(0, 0, 0, 0.55));
}

.story-copy .cta-block {
  margin-top: 22px;
}

@media (max-width: 960px) {
  .story-block,
  .story-block--flip {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 22px;
  }

  .story-art {
    order: -1;
  }

  .story-art img {
    max-height: 320px;
  }
}

/* ——— Split stage: copy + illustration ——— */
.split-stage {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(220px, 0.85fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: stretch;
}

.split-stage--flip {
  direction: rtl;
}

.split-stage--flip > * {
  direction: ltr;
}

.split-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.split-copy > h2,
.split-copy .display-title {
  margin: 0 0 12px;
}

.split-copy .section-lead {
  margin-bottom: 16px;
}

.split-art {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100%;
  padding: 0;
  border: none;
  background: transparent;
  position: relative;
}

.split-art::before {
  display: none;
}

.split-art img {
  width: min(100%, 400px);
  height: auto;
  max-height: min(56vh, 440px);
  object-fit: contain;
  filter: drop-shadow(0 0 32px rgba(245, 232, 0, 0.2));
}

.split-art--sm img {
  max-height: 240px;
  width: min(100%, 260px);
}

.split-art--photo img {
  width: min(100%, 380px);
  max-height: min(70vh, 520px);
  object-fit: contain;
  filter: drop-shadow(0 0 40px rgba(245, 232, 0, 0.28));
}

.split-art--statue img {
  width: min(100%, 520px);
  max-height: min(78vh, 620px);
  filter: drop-shadow(0 10px 28px rgba(0, 0, 0, 0.55));
}

.split-art--operator img {
  width: min(100%, 420px);
  max-height: min(75vh, 580px);
  filter: drop-shadow(0 10px 28px rgba(0, 0, 0, 0.55));
}

.split-art--choice img {
  width: min(100%, 460px);
  max-height: min(78vh, 620px);
  filter: drop-shadow(0 10px 28px rgba(0, 0, 0, 0.55));
}

.split-art--compare img {
  width: min(100%, 440px);
  max-height: min(78vh, 600px);
  filter: drop-shadow(0 10px 28px rgba(0, 0, 0, 0.55));
}

.split-art--chess img {
  width: min(100%, 360px);
  max-height: min(80vh, 640px);
  filter: drop-shadow(0 12px 32px rgba(0, 0, 0, 0.5));
}

.split-art--issue img {
  width: min(100%, 280px);
  max-height: 340px;
  filter: drop-shadow(0 10px 28px rgba(0, 0, 0, 0.55));
}

/* Framed split art: image boxed beside text, equal height */
.split-framed .split-art {
  border: 1px solid #2a2a2a;
  background: var(--card);
  padding: clamp(16px, 2.5vw, 28px);
  align-self: stretch;
  min-height: 0;
}

.split-framed .split-art img {
  width: min(100%, 400px);
  height: 100%;
  max-height: 520px;
  object-fit: contain;
  filter: drop-shadow(0 12px 26px rgba(0, 0, 0, 0.55));
}

.split-framed--issue {
  align-items: center;
}

.split-framed--issue .split-copy {
  justify-content: center;
  gap: 0;
}

.split-framed--issue .split-copy .display-title {
  margin-bottom: 16px;
  font-size: clamp(26px, 3.4vw, 38px);
}

.split-framed--issue .prose-stack--issue > * + * {
  margin-top: 10px;
}

.split-framed--issue .prose-stack--issue p {
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.45;
  color: var(--mute);
}

.split-framed--issue .prose-stack--issue strong {
  color: var(--white);
  font-weight: 700;
}

.split-framed--issue .split-art {
  align-self: stretch;
  padding: clamp(14px, 2vw, 22px);
  width: 100%;
  max-width: 320px;
  justify-self: center;
}

.split-framed--issue .split-art img {
  width: min(100%, 280px);
  height: auto;
  max-height: 340px;
  object-fit: contain;
}

.split-framed .lesson {
  border: 1px solid var(--line);
  background: var(--card);
  transition: border-color 0.25s ease;
}

.split-framed .lesson:hover {
  border-color: var(--yellow-line);
}

.lessons.lessons--grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}

.lessons.lessons--grid .lesson {
  grid-template-columns: 1fr;
  padding: 9px 11px;
}

.lessons--grid .lesson h3 {
  font-size: 13px;
}

.lessons--grid .lesson p {
  font-size: 11.5px;
  line-height: 1.35;
}

.lesson--wide {
  grid-column: 1 / -1;
}

@media (max-width: 640px) {
  .split-framed .split-art {
    order: -1;
  }

  .split-framed .split-art img {
    max-height: 340px;
  }
}

/* Five use boxes for features */
.use-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  align-content: center;
}

.use-box {
  padding: 12px 12px 14px;
  border: 1px solid var(--yellow-line);
  background: var(--card);
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-height: 0;
}

.use-box--wide {
  grid-column: 1 / -1;
}

.use-box img {
  width: 100%;
  max-height: 72px;
  object-fit: contain;
  margin-bottom: 2px;
}

.use-title {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--yellow);
  margin: 0;
}

.use-line {
  font-size: 12px;
  line-height: 1.4;
  color: var(--mute);
  margin: 0;
}

.display-title {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(26px, 3.6vw, 42px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.025em;
}

.display-line {
  display: block;
}

.prose-stack {
  margin-top: 4px;
}

.prose-stack > * + * {
  margin-top: 9px;
}

.prose-stack p {
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--mute);
}

.prose-stack--tight > * + * {
  margin-top: 12px;
}

.prose-stack--tight p {
  font-size: 15px;
  line-height: 1.55;
}

.split-copy > h2 {
  margin-bottom: 18px;
  font-size: clamp(26px, 3.6vw, 36px);
  line-height: 1.15;
}

.prose-stack strong {
  color: var(--yellow);
  font-weight: 600;
}

/* ——— Scannable problem / solution ——— */
.snap {
  max-width: 820px;
  margin: 0 auto;
}

.snap-head {
  margin-bottom: 22px;
  max-width: 560px;
}

.snap-head h2 {
  margin: 0 0 8px;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.snap-lead {
  margin: 0;
  font-size: 16px;
  line-height: 1.45;
  color: var(--mute);
}

.snap-vs {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 14px;
  align-items: stretch;
  margin-bottom: 18px;
}

.snap-vs-col {
  padding: 16px 18px;
  border: 1px solid var(--line);
  background: var(--bg-raised);
}

.snap-vs-col--hot {
  border-color: var(--yellow-line);
  background: rgba(245, 232, 0, 0.06);
}

.snap-vs-tag {
  display: block;
  margin-bottom: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dim);
}

.snap-vs-col--hot .snap-vs-tag {
  color: var(--yellow);
}

.snap-vs-col p {
  margin: 0;
  font-size: 15px;
  line-height: 1.4;
  color: var(--white);
  font-weight: 500;
}

.snap-vs-mid {
  align-self: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--dim);
}

.snap-pull {
  margin: 0 0 22px;
  padding-left: 14px;
  border-left: 2px solid var(--yellow);
  font-family: var(--display);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.35;
  color: var(--white);
}

.snap-fit-label {
  margin: 0 0 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--dim);
}

.snap-fit-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.snap-fit-grid li {
  margin: 0;
  padding: 12px 14px;
  border: 1px solid var(--line);
  background: rgba(255, 254, 242, 0.02);
  font-size: 14px;
  line-height: 1.35;
  color: var(--mute);
}

.snap-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}

.snap-card {
  padding: 16px;
  border: 1px solid var(--line);
  background: var(--bg-raised);
}

.snap-num {
  display: block;
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--yellow);
}

.snap-card h3 {
  margin: 0 0 6px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.25;
}

.snap-card p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.4;
  color: var(--mute);
}

.snap-close {
  margin: 0 0 8px;
  font-size: 15px;
  line-height: 1.45;
  color: var(--mute);
}

.snap-close strong {
  color: var(--yellow);
  font-weight: 600;
}

.snap .cta-block {
  margin-top: 18px;
}

@media (max-width: 720px) {
  .snap-vs {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .snap-vs-mid {
    text-align: center;
  }

  .snap-fit-grid,
  .snap-3 {
    grid-template-columns: 1fr;
  }
}

/* ——— Features: viewport-fit board ——— */
.features-fit {
  min-height: auto;
  padding-block: clamp(28px, 4vh, 48px);
}

.features-fit .split-stage {
  min-height: min(88vh, 820px);
  max-height: none;
}

.feat-board {
  display: grid;
  grid-template-columns: minmax(160px, 0.85fr) minmax(0, 1.15fr);
  gap: 12px;
  margin-top: 8px;
  flex: 1;
  min-height: 0;
}

.feat-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-right: 1px solid var(--line);
  padding-right: 10px;
}

.feat-tab {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 8px;
  align-items: start;
  text-align: left;
  padding: 8px 8px;
  border: 1px solid transparent;
  border-radius: 2px;
  color: var(--mute);
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.feat-tab:hover {
  color: var(--white);
  background: var(--card);
}

.feat-tab.is-active {
  color: var(--white);
  border-color: var(--yellow-line);
  background: rgba(245, 232, 0, 0.08);
}

.feat-num {
  font-family: var(--pixel);
  font-size: 14px;
  color: var(--yellow);
  line-height: 1.2;
}

.feat-tab-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.feat-tab-text em {
  font-style: normal;
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--yellow);
  opacity: 0.85;
}

.feat-panels {
  min-width: 0;
  min-height: 180px;
  border: 1px solid var(--line);
  background: var(--card);
  padding: 12px 12px 10px;
  overflow: auto;
  max-height: min(42vh, 340px);
}

.feat-panel {
  display: none;
  flex-direction: column;
  gap: 8px;
}

.feat-panel.is-active {
  display: flex;
}

.feat-panel[hidden] {
  display: none !important;
}

.kit-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 12px;
  margin-top: 2px;
}

.kit-points li {
  position: relative;
  padding-left: 12px;
  font-size: 12px;
  line-height: 1.35;
  color: var(--white);
}

.kit-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 6px;
  height: 2px;
  background: var(--yellow);
}

.kit-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.kit-chips span {
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.02em;
  padding: 3px 6px;
  border: 1px solid var(--yellow-line);
  color: var(--yellow);
  background: rgba(245, 232, 0, 0.06);
}

.access-body {
  font-size: 12.5px;
  line-height: 1.45;
  color: var(--mute);
  margin: 0;
}

.mini-map {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.mini-map-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  padding: 5px 7px;
  border: 1px solid var(--line);
  background: var(--card);
  font-size: 11px;
  color: var(--mute);
}

.mini-tag {
  font-family: var(--mono);
  font-size: 9.5px;
  color: var(--yellow);
  text-align: right;
}

.asset-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  margin-top: 2px;
}

.asset-stats li {
  padding: 6px;
  border: 1px solid var(--line);
  background: #000;
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.asset-stats strong {
  font-family: var(--pixel);
  font-size: 14px;
  color: var(--yellow);
  font-weight: 400;
}

.asset-stats span {
  font-family: var(--mono);
  font-size: 8px;
  color: var(--dim);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.kit-stats {
  grid-template-columns: repeat(4, 1fr);
}

.split-copy .for-grid,
.split-copy .decision-grid {
  margin-top: 14px;
}

.split-copy .compare-grid-v2 {
  margin-top: 14px;
  grid-template-columns: 1fr;
  gap: 8px;
}

/* ——— Fit check (who + vs) ——— */
.fit-board {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 14px;
}

.fit-who {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.fit-col {
  padding: 14px 14px 12px;
  border: 1px solid var(--line);
  background: var(--bg-raised);
}

.fit-col--yes {
  border-color: var(--yellow);
  background: var(--card);
}

.fit-list {
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.fit-list li {
  position: relative;
  padding-left: 14px;
  font-size: 13.5px;
  line-height: 1.4;
  color: var(--mute);
}

.fit-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  background: var(--dim);
}

.fit-col--yes .fit-list li {
  color: var(--white);
}

.fit-col--yes .fit-list li::before {
  background: var(--yellow);
}

/* Full-width fit + choice stages */
.fit-stage,
.choice-stage {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.fit-head,
.choice-head {
  text-align: center;
}

.fit-head .label,
.choice-head .label {
  justify-content: center;
}

.fit-head .section-lead {
  max-width: 560px;
  margin: 10px auto 0;
}

.fit-who--wide {
  gap: 14px;
}

.fit-who--wide .fit-col {
  padding: 20px 20px 18px;
}

.fit-who--wide .card-kicker {
  font-size: 11px;
}

.fit-who--wide .fit-list {
  margin-top: 12px;
  gap: 10px;
}

.fit-foot,
.choice-foot {
  text-align: center;
}

.fit-foot .section-lead {
  margin: 0;
}

.agent-roster {
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
}

.agent-roster li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 11px 2px;
  border-bottom: 1px solid var(--line);
}

.agent-name {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--yellow);
  white-space: nowrap;
}

.agent-job {
  font-size: 13px;
  line-height: 1.4;
  color: var(--mute);
  text-align: right;
}

.path-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(18px, 4vw, 40px);
  text-align: left;
}

.path-title {
  margin: 0 0 12px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--yellow);
}

.path-col--dim .path-title {
  color: var(--dim);
}

.path-rows {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.path-rows p {
  margin: 0;
  padding: 10px 12px;
  border-left: 2px solid var(--yellow);
  background: var(--card);
  font-size: 13.5px;
  line-height: 1.45;
  color: var(--white);
}

.path-col--dim .path-rows p {
  border-left-color: rgba(255, 254, 242, 0.22);
  background: var(--card);
  color: var(--dim);
}

.choice-line {
  margin: 4px auto 0;
  max-width: 480px;
  text-align: center;
  font-size: 14px;
  line-height: 1.55;
  color: var(--mute);
}

.choice-line + .choice-foot {
  margin-top: 4px;
}

@media (max-width: 720px) {
  .path-grid {
    grid-template-columns: 1fr;
  }

  .agent-roster li {
    flex-direction: column;
    gap: 3px;
  }

  .agent-job {
    text-align: left;
  }
}

.choice-foot .cta-block {
  margin-top: 4px;
}

.choice-foot .seats {
  margin-inline: auto;
}

.choice-foot .trust-row {
  justify-content: center;
}

/* ——— Week cadence ——— */
.week-block {
  max-width: 1040px;
  margin: 0 auto;
}

.week-head {
  max-width: 40rem;
  margin-bottom: 22px;
}

.week-head h2 {
  margin: 0 0 8px;
}

.week-rail {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  counter-reset: week;
}

.week-step {
  position: relative;
  padding: 16px 14px 18px;
  border: 1px solid #2a2a2a;
  background: var(--card);
  min-height: 100%;
}

.week-day {
  display: inline-block;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 10px;
}

.week-step h3 {
  margin: 0 0 8px;
  font-size: 16px;
  letter-spacing: -0.02em;
  color: var(--white);
}

.week-step p {
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
  color: var(--mute);
}

.week-foot {
  margin: 16px 0 0;
  font-size: 13.5px;
  color: var(--dim);
}

/* ——— Before / after shift ——— */
.shift-block {
  max-width: 920px;
  margin: 0 auto;
}

.shift-head {
  max-width: 36rem;
  margin-bottom: 18px;
}

.shift-head h2 {
  margin: 0 0 8px;
}

.shift-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.shift-col {
  padding: 16px 16px 14px;
  border: 1px solid var(--line);
  background: var(--bg-raised);
}

.shift-col--after {
  border-color: var(--yellow);
  background: var(--card);
}

.shift-list {
  list-style: none;
  margin: 10px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.shift-list li {
  position: relative;
  padding-left: 14px;
  font-size: 13.5px;
  line-height: 1.4;
  color: var(--mute);
}

.shift-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  background: var(--dim);
}

.shift-col--after .shift-list li {
  color: var(--white);
}

.shift-col--after .shift-list li::before {
  background: var(--yellow);
}

/* ——— Operating rules ——— */
.ops-block {
  max-width: 1040px;
  margin: 0 auto;
}

.ops-head {
  max-width: 36rem;
  margin-bottom: 20px;
}

.ops-head h2 {
  margin: 0 0 8px;
}

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

.ops-card {
  padding: 16px 14px 18px;
  border: 1px solid var(--line);
  background: var(--card);
}

.ops-num {
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--yellow);
  margin-bottom: 10px;
}

.ops-card h3 {
  margin: 0 0 8px;
  font-size: 15px;
  letter-spacing: -0.02em;
  color: var(--white);
}

.ops-card p {
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
  color: var(--mute);
}

/* ——— For / decision ——— */
.for-grid,
.decision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.panel,
.for-card,
.decision-card {
  background: var(--bg-raised);
  border: 1px solid var(--line);
  padding: 16px;
}

.panel-accent,
.for-card.panel-accent,
.decision-card.panel-accent {
  border-color: var(--yellow);
  background: linear-gradient(160deg, rgba(245, 232, 0, 0.1), transparent 70%);
  box-shadow: 6px 6px 0 rgba(245, 232, 0, 0.15);
}

.card-kicker {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.card-kicker.muted {
  color: var(--dim);
}

.card-kicker.accent {
  color: var(--yellow);
}

.for-card h3,
.decision-card h3 {
  margin-bottom: 12px;
  font-size: 16px;
}

.for-card ul,
.decision-card ul {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.for-card li,
.decision-card li {
  position: relative;
  padding-left: 14px;
  font-size: 13px;
  line-height: 1.4;
  color: var(--mute);
}

.for-card li::before,
.decision-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 7px;
  height: 2px;
  background: var(--yellow);
  opacity: 0.75;
}

.panel-accent li,
.for-card.panel-accent li,
.decision-card.panel-accent li {
  color: var(--white);
}

.outcome {
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  line-height: 1.45;
  color: var(--mute);
}

.decision-note {
  color: var(--mute);
  font-size: 15px;
  margin: 24px 0 8px;
  line-height: 1.45;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  margin-top: 24px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--dim);
}

.trust-row span {
  padding: 7px 9px;
  border: 1px solid var(--line);
}

.trust-row--icons {
  gap: 10px;
  margin-top: 18px;
}

.trust-row--icons span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border: 1px solid #2a2a2a;
  background: rgba(255, 254, 242, 0.03);
  color: var(--mute);
  font-size: 11px;
  letter-spacing: 0.04em;
}

.trust-row--icons svg {
  width: 16px;
  height: 16px;
  color: var(--yellow);
  flex-shrink: 0;
}

.close-stage {
  display: none;
}

.close-yes {
  position: relative;
  max-width: 880px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid #2a2a2a;
  background:
    radial-gradient(ellipse 80% 60% at 100% 0%, rgba(245, 232, 0, 0.14), transparent 55%),
    linear-gradient(165deg, #14140e 0%, #0a0a00 55%, #0f0f08 100%);
}

.close-yes-mark {
  position: absolute;
  right: -2%;
  top: 44%;
  transform: translateY(-50%);
  font-size: clamp(90px, 18vw, 180px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.85;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(245, 232, 0, 0.16);
  pointer-events: none;
  user-select: none;
}

.close-yes-inner {
  position: relative;
  z-index: 1;
  padding: clamp(32px, 5vw, 56px);
  max-width: 640px;
}

.close-yes-inner .label {
  margin-bottom: 16px;
}

.close-title {
  margin: 0 0 22px;
  font-size: clamp(32px, 4.8vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--white);
}

.close-title span {
  color: var(--yellow);
}

.close-lead {
  margin: 0 0 14px;
  max-width: 48ch;
  font-size: 16px;
  line-height: 1.55;
  color: var(--mute);
}

.close-lead--soft {
  opacity: 0.92;
}

.close-lead--end {
  margin-bottom: 28px;
  color: var(--white);
  font-weight: 600;
}

.btn-close {
  justify-content: center;
  font-size: 16px;
  padding: 16px 28px;
  min-width: min(100%, 280px);
}

.close-yes-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.close-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.close-meta-spots,
.close-meta-trust {
  margin: 0;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.4;
  color: var(--dim);
}

.close-meta-spots strong {
  color: rgba(245, 232, 0, 0.55);
  font-weight: 700;
  font-size: 11px;
  text-shadow: none;
}

.close-yes-cta .trust-row--icons {
  margin-top: 0;
}

.close-art,
.close-board {
  display: none;
}

@media (max-width: 900px) {
  .close-yes-mark {
    opacity: 0.5;
    right: -8%;
    font-size: 140px;
  }

  .close-stage {
    grid-template-columns: 1fr;
  }

  .close-art {
    order: -1;
    min-height: 220px;
  }

  .hero-grid--pro .hero-copy {
    justify-content: flex-start;
  }
}

/* ——— Testimonials ——— */
.t-marquee {
  overflow: hidden;
  margin-top: 8px;
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.t-track {
  display: flex;
  gap: 12px;
  width: max-content;
  animation: marquee 120s linear infinite;
}

.t-track:hover {
  animation-play-state: paused;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.t-card {
  width: 280px;
  flex-shrink: 0;
  background: var(--card);
  border: 1px solid #2a2a2a;
  padding: 16px 14px 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.t-card p {
  font-size: 13.5px;
  line-height: 1.45;
  color: var(--white);
  flex: 1;
}

.t-card .who {
  font-weight: 600;
  font-size: 12px;
  color: var(--yellow);
}

.t-card .role {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--dim);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: -8px;
}

/* ——— Compare ——— */
.compare-grid-v2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.compare-col {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 14px;
}

.compare-title {
  font-size: 14px;
  margin-bottom: 12px;
}

.compare-list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 12px;
}

.compare-list li {
  font-size: 12.5px;
  line-height: 1.35;
  padding-left: 16px;
  position: relative;
  color: var(--mute);
}

.compare-list li.bad::before {
  content: "×";
  position: absolute;
  left: 0;
  color: var(--dim);
  font-weight: 600;
}

.compare-list li.good::before {
  content: "+";
  position: absolute;
  left: 0;
  color: var(--yellow);
  font-weight: 600;
}

.compare-list li.good {
  color: var(--white);
}

.compare-verdict {
  font-size: 12.5px;
  line-height: 1.4;
  color: var(--dim);
  padding-top: 12px;
  border-top: 1px solid var(--line);
  margin: 0;
}

.panel-accent .compare-verdict {
  color: var(--mute);
  border-top-color: var(--yellow-line);
}

/* ——— Math: wide copy + rooftop chess ——— */
.math-stage {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(180px, 280px);
  gap: clamp(20px, 3vw, 40px);
  align-items: center;
}

.math-copy {
  min-width: 0;
  overflow: hidden;
}

.math-copy .comparison-table-wrap {
  overflow-x: visible;
  max-width: 100%;
}

.math-copy .comparison-table--vs {
  min-width: 0 !important;
  width: 100%;
  table-layout: fixed;
}

.math-copy .comparison-table--vs th,
.math-copy .comparison-table--vs td {
  white-space: normal;
  overflow-wrap: anywhere;
  font-size: 12px;
  padding: 7px 8px;
}

.math-copy .comparison-table--vs .btn-table {
  max-width: 100%;
  white-space: nowrap;
  font-size: 11px;
  padding: 8px 10px;
}

.math-copy h2 {
  font-size: clamp(22px, 2.6vw, 32px);
  white-space: nowrap;
}

@media (max-width: 900px) {
  .math-stage {
    grid-template-columns: 1fr;
  }

  .math-stage .split-art--chess {
    display: none;
  }

  .math-copy h2 {
    white-space: normal;
  }
}

.math-copy > .label {
  justify-content: flex-start;
  margin-bottom: 8px;
}

.math-copy > h2 {
  margin: 0 0 18px;
  font-size: clamp(26px, 3.6vw, 36px);
}

.math-board {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 28px;
  align-items: start;
}

.math-col--wide {
  grid-column: 1 / -1;
}

.math-kicker {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--yellow);
  margin: 0 0 8px;
}

.math-note {
  font-size: 12.5px;
  line-height: 1.4;
  color: var(--dim);
  margin: 8px 0 0;
}

.math-rows {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin: 0;
  padding: 0;
}

.math-rows li {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: baseline;
  font-size: 13.5px;
  line-height: 1.35;
  color: var(--mute);
  padding: 5px 0;
  border-bottom: 1px solid rgba(245, 232, 0, 0.1);
}

.math-rows li span {
  text-align: left;
}

.math-rows li strong {
  font-family: var(--mono);
  font-size: 12.5px;
  font-weight: 500;
  color: var(--yellow);
  text-align: right;
  white-space: nowrap;
}

.math-rows li.math-win {
  border-bottom: none;
  margin-top: 2px;
  padding: 8px 10px;
  background: rgba(245, 232, 0, 0.08);
  border: 1px solid var(--yellow-line);
}

.math-rows li.math-win span,
.math-rows li.math-win strong {
  color: var(--white);
}

.math-rows li.math-win strong {
  color: var(--yellow);
}

.math-rows--grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 24px;
}

.math-rows--totals {
  margin-top: 8px;
  max-width: 520px;
}

.math-closer {
  font-size: 13.5px;
  line-height: 1.45;
  color: var(--mute);
  margin: 18px 0 8px;
  max-width: 54ch;
}

.math-copy .bottom-line {
  color: var(--white);
  font-weight: 700;
  font-size: 14px;
  margin: 0;
}

.math-cta {
  align-items: flex-start;
  margin-top: 18px;
}

/* ——— Washington hold (shared) + FAQ card ——— */
.math-hold,
.faq-hold {
  --wash-ledge: 77.02%;
  --wash-hands: 22.98%;
  position: relative;
  width: min(100%, 640px);
  margin: clamp(96px, 15vw, 140px) auto 0;
}

.math-wash {
  position: absolute;
  left: 50%;
  bottom: 100%;
  width: min(560px, 104%);
  transform: translate(-50%, var(--wash-hands));
  line-height: 0;
  pointer-events: none;
}

.math-wash img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.45));
}

.math-wash--back {
  z-index: 0;
}

.math-wash--back img {
  clip-path: inset(0 0 var(--wash-hands) 0);
}

.math-wash--front {
  z-index: 4;
}

.math-wash--front img {
  clip-path: inset(var(--wash-ledge) 0 0 0);
}

.faq-ledger {
  position: relative;
  z-index: 2;
  padding: 26px 24px 18px;
  border: 1px solid var(--yellow-line);
  background: var(--bg-raised);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.4);
  text-align: left;
}

.faq-ledger > .label {
  justify-content: flex-start;
  margin-bottom: 8px;
}

.faq-ledger > h2 {
  margin: 0 0 10px;
  font-size: clamp(22px, 3.2vw, 30px);
  text-align: left;
}

.faq-ledger > .section-lead {
  margin: 0 0 16px;
  max-width: none;
}

/* ——— FAQ ——— */
.faq-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
}

.faq-ledger .faq-list {
  border-top-color: var(--yellow-line);
}

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

.faq-ledger .faq-item {
  border-bottom-color: rgba(245, 232, 0, 0.12);
}

.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding: 14px 2px;
  text-align: left;
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--white);
  transition: color 0.15s ease;
}

.align-right-wrap .faq-q {
  text-align: right;
  flex-direction: row-reverse;
}

.faq-q:hover {
  color: var(--yellow);
}

.faq-q .icon {
  font-family: var(--mono);
  font-size: 18px;
  color: var(--yellow);
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.faq-item.open .faq-q .icon {
  transform: rotate(45deg);
}

.faq-a {
  display: none;
  padding: 0 2px 14px;
  color: var(--mute);
  font-size: 13.5px;
  line-height: 1.55;
  max-width: 58ch;
}

.align-right-wrap .faq-a {
  margin-left: auto;
  text-align: right;
}

.faq-item.open .faq-a {
  display: block;
}

/* ——— Sales story blocks ——— */
.ask-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 8px;
}

.ask-list p {
  margin: 0;
  padding: 10px 12px;
  border-left: 2px solid var(--yellow);
  background: var(--card);
  font-size: 13.5px;
  line-height: 1.45;
  color: var(--mute);
}

.help-block,
.learn-block,
.inside-block,
.setup-block,
.object-block,
.summary-block {
  max-width: 100%;
}

.help-head,
.learn-head,
.inside-head,
.setup-head,
.object-head,
.summary-head {
  max-width: 640px;
  margin-bottom: 22px;
}

.help-head h2,
.learn-head h2,
.inside-head h2,
.setup-head h2,
.object-head h2,
.summary-head h2 {
  margin: 0 0 10px;
}

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

.help-card {
  padding: 16px 16px 18px;
  border: 1px solid var(--yellow-line);
  background: var(--card);
}

.help-card img {
  width: 100%;
  max-height: 64px;
  object-fit: contain;
  margin-bottom: 10px;
}

.help-card h3 {
  margin: 0 0 8px;
  font-size: 15px;
  letter-spacing: -0.02em;
}

.help-card p {
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
  color: var(--mute);
}

.learn-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 16px;
}

.learn-list li {
  position: relative;
  padding: 10px 12px 10px 28px;
  border: 1px solid var(--line);
  font-size: 13.5px;
  line-height: 1.45;
  color: var(--mute);
}

.learn-list li::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 16px;
  width: 7px;
  height: 7px;
  background: var(--yellow);
}

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

.module-card {
  position: relative;
  padding: 22px 18px 24px;
  border: 1px solid #2a2a2a;
  background: var(--card);
  display: flex;
  flex-direction: column;
  gap: 9px;
  min-height: 100%;
  transition: border-color 0.25s ease, transform 0.25s ease, background-color 0.25s ease;
}

.module-card:hover {
  border-color: var(--yellow-line);
  transform: translateY(-3px);
}

.module-card img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.module-card .module-num {
  position: absolute;
  top: 20px;
  right: 18px;
}

.module-num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--yellow);
}

.module-card h3 {
  margin: 4px 0 0;
  font-size: 16px;
  letter-spacing: -0.01em;
  line-height: 1.25;
}

.module-card p {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: var(--mute);
}

.fail-list {
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.fail-list li {
  padding: 10px 12px;
  border: 1px solid var(--line);
  font-size: 13.5px;
  line-height: 1.45;
  color: var(--mute);
}

.fail-list strong {
  color: var(--text);
  font-weight: 600;
}

.setup-rail {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.setup-art {
  margin: 0 0 18px;
  max-width: 220px;
}

.setup-art img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 0 24px rgba(245, 232, 0, 0.18));
}

.setup-step {
  padding: 18px 16px;
  border: 1px solid var(--yellow-line);
  background: var(--card);
}

.setup-num {
  display: inline-block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--yellow);
  margin-bottom: 10px;
}

.setup-step h3 {
  margin: 0 0 8px;
  font-size: 16px;
}

.setup-step p {
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
  color: var(--mute);
}

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

.object-card {
  padding: 16px 16px 18px;
  border: 1px solid var(--line);
  background: var(--card);
}

.object-q {
  margin: 0 0 8px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--yellow);
}

.object-a {
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
  color: var(--mute);
}

.summary-list {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
  counter-reset: summary;
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 720px;
}

.summary-list li {
  counter-increment: summary;
  position: relative;
  padding: 12px 14px 12px 48px;
  border: 1px solid var(--line);
  font-size: 13.5px;
  line-height: 1.45;
  color: var(--mute);
}

.summary-list li::before {
  content: counter(summary);
  position: absolute;
  left: 14px;
  top: 12px;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--yellow);
}

.summary-list strong {
  color: var(--text);
  font-weight: 600;
}

.cost-inaction {
  max-width: 720px;
  padding: 18px 16px;
  border: 1px solid var(--yellow-line);
  background: var(--card);
}

.cost-inaction > p {
  margin: 0 0 10px;
  font-size: 13.5px;
  line-height: 1.45;
  color: var(--mute);
}

.cost-inaction ul {
  list-style: none;
  margin: 0 0 12px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cost-inaction li {
  font-size: 13px;
  line-height: 1.4;
  color: var(--mute);
  padding-left: 14px;
  position: relative;
}

.cost-inaction li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--yellow);
}

.features-fit .inside-block .use-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.features-fit .inside-block .use-box--wide {
  grid-column: span 2;
}

/* ——— Founder lessons ——— */
.lessons {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 6px;
}

.lesson {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 12px;
  align-items: start;
}

.lesson-num {
  font-family: var(--mono);
  font-size: 14px;
  color: var(--yellow);
  border: 1px solid var(--yellow-line);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lesson h3 {
  margin: 0 0 4px;
  font-size: 15px;
  letter-spacing: -0.02em;
}

.lesson p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--mute);
}

/* ——— Example weekly drops ——— */
.drops {
  margin: 4px 0 22px;
  padding: 18px 18px 16px;
  border: 1px solid #2a2a2a;
  background: var(--card);
}

.drops-kicker {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--yellow);
  margin: 0 0 12px;
}

.drops-list {
  list-style: none;
  margin: 0 0 12px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.drops-list li {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 12px;
  align-items: baseline;
  font-size: 13.5px;
  line-height: 1.45;
  color: var(--text);
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
}

.drops-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.drops-tag {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--yellow);
  border: 1px solid var(--yellow-line);
  padding: 3px 6px;
  text-align: center;
  white-space: nowrap;
}

/* ——— Delta kit (5-card features) ——— */
.delta-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.delta-card {
  grid-column: span 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 100%;
  padding: 14px;
  border: 1px solid #2a2a2a;
  border-radius: 0;
  background: var(--card);
  overflow: hidden;
}

.delta-card--hero {
  grid-column: span 4;
  padding: 16px;
}

.delta-viz {
  flex: 0 0 auto;
  min-height: 0;
  display: flex;
  align-items: stretch;
  justify-content: center;
  margin-bottom: 14px;
}

.delta-card:not(.delta-card--hero) .delta-viz {
  flex: 1 1 auto;
  min-height: 188px;
}

.delta-card:not(.delta-card--hero) .delta-copy {
  min-height: 96px;
}

.delta-card--hero .delta-viz {
  flex: 0 0 auto;
  min-height: 300px;
  margin-bottom: 20px;
}

.delta-copy {
  flex: 0 0 auto;
  margin-top: auto;
  padding-top: 4px;
}

.delta-card--hero .delta-copy {
  margin-top: 0;
  padding-top: 0;
}

.delta-copy h3 {
  margin: 0 0 6px;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.25;
  color: var(--white);
}

.delta-card--hero .delta-copy p {
  font-size: 13.5px;
  line-height: 1.5;
}

.delta-copy p {
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
  color: var(--mute);
}

/* Mini UI visuals — original Delta */
.mv-pdf {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: stretch;
  justify-content: center;
}

.mv-pdf-sheet {
  width: 100%;
  min-height: 300px;
  height: 100%;
  padding: 24px 20px 26px;
  border-radius: 0;
  background: rgba(255, 254, 242, 0.08);
  border: 1px solid rgba(255, 254, 242, 0.14);
  color: var(--white);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.28);
  transform: none;
  display: flex;
  flex-direction: column;
}

.mv-pdf-bar {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 16px;
}

.mv-pdf-bar span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 254, 242, 0.25);
}

.mv-pdf-bar span:nth-child(1) { background: #ff8a3d; }
.mv-pdf-bar span:nth-child(2) { background: #f5e800; }
.mv-pdf-bar span:nth-child(3) { background: #45d483; }

.mv-pdf-bar b {
  margin-left: auto;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--dim);
}

.mv-pdf-title {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 14px;
  color: var(--white);
}

.mv-pdf-lines {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
  flex: 1;
}

.mv-pdf-lines i {
  display: block;
  height: 7px;
  border-radius: 0;
  background: rgba(255, 254, 242, 0.12);
}

.mv-pdf-lines i:nth-child(1) { width: 92%; }
.mv-pdf-lines i:nth-child(2) { width: 78%; }
.mv-pdf-lines i:nth-child(3) { width: 86%; }
.mv-pdf-lines i:nth-child(4) { width: 64%; }
.mv-pdf-lines i:nth-child(5) { width: 72%; }

.mv-pdf-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
}

.mv-pdf-tags span {
  padding: 8px 12px;
  border-radius: 3px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.mv-pdf-tags .badge-y {
  background: var(--yellow);
  color: #0a0a00;
  box-shadow: 0 0 16px rgba(245, 232, 0, 0.45);
}

.mv-pdf-tags .badge-r {
  background: #ff3b3b;
  color: #fff;
  box-shadow: 0 0 16px rgba(255, 59, 59, 0.4);
}

.mv-pdf-tags .badge-b {
  background: #4da3ff;
  color: #0a0a00;
  box-shadow: 0 0 16px rgba(77, 163, 255, 0.4);
}

.mv-modal {
  width: 100%;
  border-radius: 14px;
  border: 1px solid #2a2a2a;
  background: #0f0f0a;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.mv-modal-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 12px;
  border-bottom: 1px solid #222;
  background: #141410;
}

.mv-modal-bar span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #333;
}

.mv-modal-bar span:nth-child(1) { background: #ff8a3d; }
.mv-modal-bar span:nth-child(2) { background: #f5e800; }
.mv-modal-bar span:nth-child(3) { background: #45d483; }

.mv-modal-bar b {
  margin-left: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--mute);
}

.mv-modal-body {
  padding: 14px 12px 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mv-msg {
  max-width: 92%;
}

.mv-msg--ai {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.mv-msg--ai i {
  width: 24px;
  height: 24px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  background: var(--yellow);
  color: #0a0a00;
  font-style: normal;
  font-size: 12px;
  font-weight: 800;
}

.mv-msg--ai p {
  margin: 0;
  padding: 10px 12px;
  border-radius: 12px 12px 12px 4px;
  background: #1a1a14;
  border: 1px solid #2a2a2a;
  font-size: 12.5px;
  line-height: 1.4;
  color: var(--white);
}

.mv-msg--you {
  align-self: flex-end;
}

.mv-msg--you p {
  margin: 0;
  padding: 10px 12px;
  border-radius: 12px 12px 4px 12px;
  background: rgba(245, 232, 0, 0.12);
  border: 1px solid rgba(245, 232, 0, 0.35);
  font-size: 12.5px;
  line-height: 1.45;
  color: var(--white);
}

.mv-modal-input {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 2px;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #2a2a2a;
  background: #111108;
}

.mv-modal-input span {
  font-size: 12px;
  color: var(--dim);
}

.mv-modal-input em {
  font-style: normal;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #0a0a00;
  background: var(--yellow);
  padding: 5px 10px;
  border-radius: 7px;
}

.mv-modal-input--approve em {
  background: #45d483;
  box-shadow: 0 0 16px rgba(69, 212, 131, 0.45);
}

.mv-json-row--hint span {
  color: #ff8a3d;
}

.mv-room {
  width: 100%;
  border-radius: 14px;
  border: 1px solid #2a2a2a;
  background: #0f0f0a;
  overflow: hidden;
}

.mv-room-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 14px;
  border-bottom: 1px solid #222;
  background: #141410;
}

.mv-room-head b {
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
}

.mv-room-head span,
.mv-live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #45d483;
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid rgba(69, 212, 131, 0.45);
  background: rgba(69, 212, 131, 0.12);
  box-shadow: 0 0 12px rgba(69, 212, 131, 0.2);
}

.mv-live i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #45d483;
  box-shadow: 0 0 0 4px rgba(69, 212, 131, 0.2);
  animation: live-pulse 1.6s ease-in-out infinite;
}

@keyframes live-pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(69, 212, 131, 0.18); }
  50% { box-shadow: 0 0 0 6px rgba(69, 212, 131, 0.08); }
}

.mv-room-feed {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mv-room-item {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 12px;
  align-items: center;
  padding: 12px 14px;
  border-bottom: 1px solid #1c1c18;
}

.mv-room-item:last-child {
  border-bottom: 0;
}

.mv-face {
  width: 36px;
  height: 36px;
  border-radius: 6px;
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 800;
  color: #0a0a00;
  flex-shrink: 0;
}

.mv-face--1 { background: #f5e800; }
.mv-face--2 { background: #ff8a3d; }
.mv-face--3 { background: #4da3ff; }

.mv-room-item b {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 2px;
}

.mv-room-item em {
  display: block;
  font-style: normal;
  font-size: 12px;
  color: var(--mute);
}








.mv-skillui {
  width: 100%;
  border-radius: 12px;
  border: 1px solid #2a2a2a;
  background: #0f0f0a;
  overflow: hidden;
}

.mv-skillui-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  border-bottom: 1px solid #222;
  background: #141410;
}

.mv-skillui-bar b {
  font-size: 12px;
  font-weight: 700;
  color: var(--white);
}

.mv-skillui-bar span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--dim);
}

.mv-skillui-item {
  border-bottom: 1px solid #1c1c18;
}

.mv-skillui-item:last-child {
  border-bottom: 0;
}

.mv-skillui-row {
  display: grid;
  grid-template-columns: 10px 1fr 14px;
  gap: 10px;
  align-items: center;
  padding: 11px 12px;
}

.mv-skillui-row i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.mv-skillui-row i.dot-y { background: #f5e800; }
.mv-skillui-row i.dot-o { background: #ff8a3d; }
.mv-skillui-row i.dot-b { background: #4da3ff; }
.mv-skillui-row i.dot-g { background: #45d483; }

.mv-skillui-row b {
  font-size: 13px;
  font-weight: 650;
  letter-spacing: -0.02em;
  color: var(--white);
}

.mv-skillui-row em {
  font-style: normal;
  font-size: 11px;
  color: var(--dim);
  text-align: right;
}

.mv-skillui-item.is-open {
  background: rgba(245, 232, 0, 0.04);
}

.mv-skillui-item.is-open .mv-skillui-row b {
  color: var(--yellow);
}

.mv-skillui-panel {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 0 12px 12px 30px;
}

.mv-skillui-panel span {
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1px solid #2a2a2a;
  color: var(--mute);
  background: #111108;
}

.mv-skillui-panel span.tag-pass {
  border-color: rgba(69, 212, 131, 0.45);
  background: rgba(69, 212, 131, 0.1);
  color: #45d483;
}

.mv-check-pass {
  color: #45d483 !important;
  font-weight: 800 !important;
}

.mv-json-row--hint {
  border-color: rgba(184, 255, 74, 0.35);
  background: linear-gradient(180deg, rgba(184, 255, 74, 0.06), #111108);
}

.mv-list,
.mv-json,
.mv-map,
.mv-coach {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 7px;
}

.mv-wins {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 8px;
}

.mv-win {
  padding: 12px 14px;
  border-radius: 0;
  border: 1px solid #2a2a2a;
  background: #0f0f0a;
}

.mv-win-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 8px;
}

.mv-win-pill {
  display: inline-block;
  padding: 4px 8px;
  border-radius: 3px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: #f5e800;
  color: #0a0a00;
}

.mv-win-pill--r {
  background: #ff3b3b;
  color: #fff;
}

.mv-win-pill--b {
  background: #4da3ff;
  color: #0a0a00;
}

.mv-win-top em {
  font-style: normal;
  font-size: 11px;
  font-weight: 800;
  color: #45d483;
}

.mv-win b {
  display: block;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.3;
  color: var(--white);
}

.mv-win.is-hot {
  border-color: rgba(255, 59, 59, 0.4);
  background: linear-gradient(180deg, rgba(255, 59, 59, 0.1), #0f0f0a);
  box-shadow: 0 0 20px rgba(255, 59, 59, 0.12);
}

.mv-win.is-hot .mv-win-top em {
  color: #ff8a8a;
}

.mv-list-row,
.mv-json-row {
  display: grid;
  grid-template-columns: 18px 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 8px 12px;
  border-radius: 0;
  background: #111108;
  border: 1px solid #2a2a2a;
}

.mv-list-row i {
  width: 10px;
  height: 10px;
  border-radius: 3px;
  background: var(--yellow);
}

.mv-list-row i.c-y { background: #f5e800; }
.mv-list-row i.c-o { background: #ff8a3d; }
.mv-list-row i.c-b { background: #4da3ff; }
.mv-list-row i.c-g { background: #45d483; }
.mv-list-row i.c-p { background: #b388ff; }

.mv-list-row b,
.mv-json-row b {
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
}

.mv-list-row span,
.mv-json-row span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--dim);
}

.mv-list-more {
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  color: var(--yellow);
  padding-top: 2px;
}

.mv-json-row em {
  font-style: normal;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 800;
  color: #f5e800;
}

.mv-json-row em.c-y { color: #f5e800; }
.mv-json-row em.c-o { color: #ff8a3d; }
.mv-json-row em.c-b { color: #4da3ff; }
.mv-json-row em.c-p { color: #b388ff; }
.mv-json-row em.c-g { color: #45d483; }
.mv-json-row em.c-g2 { color: #b8ff4a; }

.mv-skills-list .mv-json-row {
  grid-template-columns: 30px 1fr auto;
}

.mv-skill-ico {
  width: 30px;
  height: 30px;
  border-radius: 3px;
  display: grid !important;
  place-items: center;
  background: rgba(255, 254, 242, 0.04);
  border: 1px solid #2a2a2a;
  font-size: 0 !important;
  overflow: visible;
}

.mv-skill-ico svg {
  width: 16px;
  height: 16px;
  display: block;
  overflow: visible;
}

.mv-skill-ico.c-y {
  color: #0a0a00;
  background: #f5e800;
  border-color: #f5e800;
  box-shadow: 0 0 16px rgba(245, 232, 0, 0.55);
}

.mv-skill-ico.c-g {
  color: #0a0a00;
  background: #45d483;
  border-color: #45d483;
  box-shadow: 0 0 16px rgba(69, 212, 131, 0.5);
}

.mv-skill-ico.c-p {
  color: #fff;
  background: #8b5cff;
  border-color: #8b5cff;
  box-shadow: 0 0 16px rgba(139, 92, 255, 0.55);
}

.mv-skill-ico.c-g2 {
  color: #0a0a00;
  background: #b8ff4a;
  border-color: #b8ff4a;
  box-shadow: 0 0 16px rgba(184, 255, 74, 0.45);
}

/* Beat .mv-json-row em.c-* color so SVG strokes stay visible on glowing fills */
.mv-skills-list .mv-json-row em.mv-skill-ico.c-y { color: #0a0a00; }
.mv-skills-list .mv-json-row em.mv-skill-ico.c-g { color: #0a0a00; }
.mv-skills-list .mv-json-row em.mv-skill-ico.c-p { color: #ffffff; }
.mv-skills-list .mv-json-row em.mv-skill-ico.c-g2 { color: #0a0a00; }

/* Million-Maker Skills — skill file list */
.mv-skill-files {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.mv-skill-file {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: linear-gradient(90deg, rgba(255, 254, 242, 0.06) 0%, rgba(255, 254, 242, 0.02) 100%);
  border: 1px solid rgba(255, 254, 242, 0.1);
}

.mv-skill-file-badge {
  padding: 3px 6px;
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.1em;
  border-radius: 3px;
  line-height: 1;
}

.mv-skill-file-badge.c-y { background: #f5e800; color: #0a0a00; }
.mv-skill-file-badge.c-g { background: #45d483; color: #0a0a00; }
.mv-skill-file-badge.c-p { background: #8b5cff; color: #fff; }
.mv-skill-file-badge.c-g2 { background: #b8ff4a; color: #0a0a00; }

.mv-skill-file b {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--white);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mv-skill-file-status {
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #45d483;
  flex-shrink: 0;
}

.mv-win-line {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 12px !important;
  line-height: 1.25 !important;
  letter-spacing: -0.03em;
}

.mv-win-ico {
  display: inline-flex !important;
  align-items: center;
  gap: 6px;
}

.mv-win-ico svg {
  width: 12px;
  height: 12px;
  display: block;
}

.mv-win-top em {
  font-variant-numeric: tabular-nums;
}


.mv-json-row b {
  font-family: var(--mono);
  font-size: 12.5px;
}

.mv-coach-q {
  padding: 11px 13px;
  border-radius: 10px;
  background: #111108;
  border: 1px solid #2a2a2a;
  font-size: 12.5px;
  line-height: 1.4;
  color: var(--mute);
}

.mv-coach-a {
  padding: 12px 13px;
  border-radius: 10px;
  background: rgba(255, 138, 61, 0.07);
  border: 1px solid rgba(255, 138, 61, 0.35);
  font-size: 12.5px;
  line-height: 1.45;
  color: var(--white);
}

.mv-coach-a span {
  display: block;
  margin-bottom: 6px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ff8a3d;
}

.mv-map-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  background: #111108;
  border: 1px solid #2a2a2a;
}

.mv-map-row i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.mv-map-row i.c-y { background: #f5e800; }
.mv-map-row i.c-o { background: #ff8a3d; }
.mv-map-row i.c-b { background: #4da3ff; }
.mv-map-row i.c-g { background: #45d483; }
.mv-map-row i.c-p { background: #b388ff; }

.mv-map-row b {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 2px;
}

.mv-map-row em {
  display: block;
  font-style: normal;
  font-size: 12px;
  color: var(--mute);
  font-weight: 600;
}

.mv-map-row em {
  color: #fffef2;
}

.mv-map-row:nth-child(1) em { color: #4da3ff; }
.mv-map-row:nth-child(2) em { color: #ff8a3d; }
.mv-map-row:nth-child(3) em { color: #45d483; }
.mv-map-row:nth-child(4) em { color: #b388ff; }

.mv-map-copy {
  flex: 1;
  min-width: 0;
}

.mv-runlog {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 6px;
  padding: 2px 0;
}

.mv-runlog-head {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dim);
  padding: 0 4px 4px;
}

.mv-runlog-line {
  padding: 8px 12px;
  border-radius: 10px;
  background: #111108;
  border: 1px solid #2a2a2a;
  font-family: var(--mono);
  font-size: 11.5px;
  font-weight: 600;
  line-height: 1.35;
  color: var(--mute);
}

.mv-runlog-line--wait {
  border-color: rgba(255, 138, 61, 0.45);
  background: rgba(255, 138, 61, 0.08);
  color: #ff8a3d;
}

.mv-runlog-line--ok {
  border-color: rgba(69, 212, 131, 0.4);
  background: rgba(69, 212, 131, 0.08);
  color: #45d483;
}

@media (max-width: 900px) {
  .delta-grid {
    grid-template-columns: 1fr 1fr;
  }

  .delta-card,
  .delta-card--hero {
    grid-column: span 1;
  }

  .delta-card--hero {
    grid-column: span 2;
  }
}

@media (max-width: 560px) {
  .delta-grid {
    grid-template-columns: 1fr;
  }

  .delta-card,
  .delta-card--hero {
    grid-column: span 1;
  }
}

/* ——— Promise timeline (no cards) ——— */
.promise-board {
  max-width: 820px;
  margin: 0 auto;
}

.promise-head {
  max-width: 560px;
  margin-bottom: 28px;
}

.promise-head h2 {
  margin: 0 0 8px;
  font-size: clamp(26px, 3.4vw, 36px);
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.promise-head p {
  margin: 0;
  color: var(--mute);
  font-size: 15px;
}

.promise-timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-left: 2px solid var(--yellow);
}

.promise-timeline li {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 18px;
  padding: 0 0 28px 22px;
  position: relative;
}

.promise-timeline li:last-child {
  padding-bottom: 0;
}

.promise-timeline li::before {
  content: "";
  position: absolute;
  left: -6px;
  top: 4px;
  width: 10px;
  height: 10px;
  background: var(--yellow);
}

.pt-day {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--yellow);
  padding-top: 1px;
}

.pt-body h3 {
  margin: 0 0 8px;
  font-size: 18px;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.pt-stat {
  margin: 0 0 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
}

.pt-body > p:last-child {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--mute);
}

.promise-foot {
  margin: 24px 0 0;
  font-size: 13.5px;
  color: var(--dim);
}

@media (max-width: 560px) {
  .promise-timeline li {
    grid-template-columns: 1fr;
    gap: 6px;
    padding-left: 18px;
  }
}

/* ——— Proof / testimonials ——— */
.proof-section {
  overflow: hidden;
}

.proof-head {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0;
  margin: 0 auto 28px;
  max-width: 1040px;
}

.proof-copy {
  max-width: 720px;
  margin: 0 auto;
}

.proof-copy .label {
  text-align: center;
}

.proof-copy h2 {
  margin: 0 0 10px;
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.15;
  letter-spacing: -0.03em;
  white-space: nowrap;
}

.proof-rating-line {
  margin: 0;
  font-size: 14px;
  color: var(--mute);
}

.proof-rating {
  color: var(--yellow);
  letter-spacing: 0.08em;
  margin-right: 6px;
  text-shadow: 0 0 10px rgba(245, 232, 0, 0.55);
}

.t-marquee--dual {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 0;
}

.t-track--slow {
  animation-duration: 200s;
}

.t-track--rev {
  animation-direction: reverse;
  animation-duration: 220s;
}

.t-stars {
  color: var(--yellow);
  font-size: 12px;
  letter-spacing: 0.14em;
  line-height: 1;
  text-shadow:
    0 0 8px rgba(245, 232, 0, 0.85),
    0 0 18px rgba(245, 232, 0, 0.45);
}

.t-card {
  width: 300px;
  gap: 10px;
}

@media (max-width: 860px) {
  .proof-copy h2 {
    white-space: normal;
  }
}

@media (max-width: 640px) {
  .proof-head {
    flex-direction: column;
    align-items: center;
  }
}

/* ——— Machina-style feature bento ——— */
.bento-section {
  padding-block: 64px;
}

.bento-wrap {
  max-width: none;
  margin: 0;
}

.bento-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 36px;
}

.section-head-center {
  text-align: center;
}

.section-head-center > .label,
.section-head-center .label {
  display: inline-flex;
}

.section-head-center > .section-lead,
.section-head-center p:not(.label) {
  margin-left: auto;
  margin-right: auto;
}

.bento-head--left {
  display: none;
}

.bento-head h2 {
  margin: 0 0 10px;
  font-size: clamp(24px, 2.8vw, 34px);
  line-height: 1.15;
  letter-spacing: -0.03em;
  white-space: nowrap;
}

.bento-head p {
  margin: 0 auto;
  font-size: 15px;
  line-height: 1.5;
  color: var(--mute);
  max-width: 58ch;
}

@media (max-width: 720px) {
  .bento-head h2 {
    white-space: normal;
  }
}

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

.bento-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 384px;
  padding: 20px;
  border-radius: var(--radius);
  background: var(--card);
  border: 1px solid #2a2a2a;
  overflow: hidden;
}

.bento-card--wide {
  grid-column: span 2;
  padding: 24px;
}

.bento-visual {
  flex: 1;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 12px;
}

.bento-copy h3 {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.bento-copy p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.45;
  color: var(--mute);
}

.bento-copy p + p {
  margin-top: 6px;
}

/* Guide chat */
.bv-guide {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  width: 100%;
  max-width: 520px;
}

.bv-guide-avatar {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  background: #111;
  border: 1px solid var(--yellow-line);
  display: grid;
  place-items: center;
  font-weight: 800;
  color: var(--yellow);
  font-size: 18px;
}

.bv-bubbles {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  min-width: 0;
}

.bv-bubble {
  padding: 12px 14px;
  border-radius: var(--radius);
  background: var(--card-inner);
  border: 1px solid #2f2f2f;
  font-size: 12.5px;
  line-height: 1.4;
  color: rgba(255, 254, 242, 0.72);
}

.bv-bubble strong {
  display: block;
  margin-bottom: 4px;
  color: var(--yellow);
  font-size: 11px;
  letter-spacing: 0.04em;
}

.bv-bubble--me {
  align-self: flex-end;
  max-width: 90%;
  background: rgba(245, 232, 0, 0.12);
  border: 1px solid var(--yellow-line);
  color: var(--white);
}

/* Marquee pills */
.bv-marquee {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}

.bv-marquee-track {
  display: flex;
  gap: 8px;
  width: max-content;
  animation: bv-scroll 22s linear infinite;
}

.bv-marquee-track--rev {
  animation-direction: reverse;
  animation-duration: 26s;
}

.bv-marquee-track span {
  padding: 8px 12px;
  border-radius: var(--radius);
  background: var(--card-inner);
  border: 1px solid #2f2f2f;
  font-size: 12px;
  color: var(--mute);
  white-space: nowrap;
}

@keyframes bv-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Asset list */
.bv-assets,
.bv-map,
.bv-hub,
.bv-json {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bv-assets li,
.bv-json li {
  display: grid;
  grid-template-columns: 22px 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: var(--radius);
  background: var(--card-inner);
  border: 1px solid #2f2f2f;
  font-size: 13px;
  color: var(--white);
}

.bv-assets i,
.bv-json i,
.bv-hub i {
  width: 18px;
  height: 18px;
  border-radius: var(--radius);
  background: rgba(245, 232, 0, 0.15);
  border: 1px solid var(--yellow-line);
  position: relative;
}

.bv-assets i::after,
.bv-hub i::after {
  content: "";
  position: absolute;
  inset: 4px;
  background: var(--yellow);
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  opacity: 0.9;
}

.bv-assets em,
.bv-json em {
  font-style: normal;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dim);
}

.bv-map li {
  display: grid;
  grid-template-columns: 10px 1fr auto;
  gap: 10px;
  align-items: center;
  font-size: 12.5px;
}

.bv-map i {
  width: 8px;
  height: 8px;
  border-radius: var(--radius);
  background: var(--c, var(--yellow));
}

.bv-map span {
  color: var(--mute);
}

.bv-map strong {
  font-weight: 600;
  color: var(--white);
  text-align: right;
}

/* Ask bar */
.bv-ask {
  width: 100%;
}

.bv-ask-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 14px;
  border-radius: var(--radius);
  background: var(--card-inner);
  border: 1px solid #2f2f2f;
  font-size: 13px;
  color: var(--dim);
}

.bv-ask-bar button {
  border: 0;
  border-radius: var(--radius);
  padding: 8px 12px;
  background: var(--yellow);
  color: #000;
  font: inherit;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
  pointer-events: none;
}

.bv-ask-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}

.bv-ask-chips span {
  padding: 6px 10px;
  border-radius: var(--radius);
  background: var(--card-inner);
  border: 1px solid #2f2f2f;
  font-size: 11px;
  color: var(--mute);
}

/* Coach chat */
.bv-chat {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bv-chat-you,
.bv-chat-ai {
  padding: 10px 12px;
  border-radius: var(--radius);
  font-size: 12px;
  line-height: 1.4;
}

.bv-chat-you {
  align-self: flex-end;
  max-width: 92%;
  background: #2a2a2a;
  color: var(--mute);
}

.bv-chat-ai {
  align-self: flex-start;
  max-width: 95%;
  background: rgba(245, 232, 0, 0.1);
  border: 1px solid var(--yellow-line);
  color: var(--white);
}

.bv-chat-ai span {
  display: block;
  margin-bottom: 4px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--yellow);
}

/* Hub counts */
.bv-hub li {
  display: grid;
  grid-template-columns: 22px 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 9px 10px;
  border-radius: var(--radius);
  background: var(--card-inner);
  border: 1px solid #2f2f2f;
  font-size: 13px;
  color: var(--white);
}

.bv-hub strong {
  color: var(--yellow);
  font-weight: 700;
}

.bv-json-more {
  display: block !important;
  text-align: center;
  color: var(--dim) !important;
  background: transparent !important;
  border: 0 !important;
  padding: 4px !important;
  font-size: 12px !important;
}

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

  .bento-card--wide {
    grid-column: span 2;
  }
}

@media (max-width: 720px) {
  .bento-section {
    padding-block: 56px;
  }

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

  .bento-card,
  .bento-card--wide {
    grid-column: span 1;
    height: auto;
    min-height: 320px;
  }

  .bento-visual {
    min-height: 160px;
  }
}

@media (max-width: 640px) {
  .drops-list li {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .drops-tag {
    justify-self: start;
  }
}

/* ——— Reveal ——— */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

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

/* ——— Responsive ——— */
@media (max-width: 960px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hero-grid--pro {
    align-items: start;
  }

  .hero-grid--pro .hero-video {
    order: 0;
  }

  .hero-video {
    order: -1;
  }

  .split-stage,
  .split-stage--flip {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 20px;
  }

  .split-art {
    min-height: 200px;
    order: -1;
  }

  .split-stage--flip .split-art,
  .split-stage--flip .use-grid {
    order: -1;
  }

  .features-fit .split-stage {
    min-height: 0;
  }

  .feat-board {
    grid-template-columns: 1fr;
  }

  .feat-nav {
    border-right: none;
    border-bottom: 1px solid var(--line);
    padding-right: 0;
    padding-bottom: 8px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px;
  }

  .feat-panels {
    max-height: none;
  }

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

  .kit-points,
  .asset-stats,
  .kit-stats {
    grid-template-columns: 1fr 1fr;
  }

  .compare-grid-v2 {
    grid-template-columns: 1fr;
  }

  .fit-who {
    grid-template-columns: 1fr;
  }

  .week-rail {
    grid-template-columns: 1fr 1fr;
  }

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

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

  .help-grid,
  .learn-list,
  .object-grid {
    grid-template-columns: 1fr;
  }

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

  .setup-rail {
    grid-template-columns: 1fr;
  }

  .features-fit .inside-block .use-grid {
    grid-template-columns: 1fr 1fr;
  }

  .features-fit .inside-block .use-box--wide {
    grid-column: 1 / -1;
  }

  .math-stage {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .math-board {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .math-rows--grid {
    grid-template-columns: 1fr;
  }

  .faq-hold {
    margin-top: 80px;
    width: min(100%, 560px);
  }

  .math-wash {
    width: min(100%, 420px);
  }

  .faq-ledger {
    padding: 22px 16px 16px;
  }

  .math-rows li {
    font-size: 13px;
  }

  .math-rows li strong {
    font-size: 11.5px;
  }

  .align-right-wrap {
    margin-right: auto;
  }
}

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

  .for-grid,
  .decision-grid {
    grid-template-columns: 1fr;
  }

  .week-rail,
  .ops-grid,
  .module-grid {
    grid-template-columns: 1fr;
  }

  .kit-row {
    grid-template-columns: 36px 1fr;
    gap: 10px;
  }

  .kit-points,
  .asset-stats,
  .kit-stats {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 48px 0 40px;
  }

  .hero-brain-wrap {
    width: 0.88em;
    height: 0.88em;
  }

  .btn {
    width: 100%;
    max-width: 360px;
  }

  .cta-block.align-end {
    align-items: stretch;
  }

  .section-head.align-right,
  .align-right-wrap .faq-q,
  .align-right-wrap .faq-a {
    text-align: left;
  }

  .section-head.align-right .label {
    justify-content: flex-start;
    flex-direction: row;
  }

  .align-right-wrap .faq-q {
    flex-direction: row;
  }

  .trust-row {
    justify-content: flex-start;
  }
}

.comparison-block {
  padding: clamp(28px, 5vw, 52px);
  border: 1px solid #2a2a2a;
  background: var(--card);
}

/* Section headers outside box — matches math layout */
.comparison-stage {
  max-width: 100%;
  text-align: center;
}

.comparison-stage > .label {
  display: inline-flex;
  margin-bottom: 14px;
}

.comparison-stage > h2 {
  margin: 0;
  font-size: clamp(26px, 3.2vw, 38px);
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.comparison-stage > .section-lead {
  margin-top: 10px;
  margin-bottom: 0;
  margin-left: auto;
  margin-right: auto;
  font-size: 16px;
  max-width: 52ch;
}

.comparison-stage--who {
  max-width: 880px;
  margin: 0 auto;
}

.comparison-table-wrap--who {
  margin-top: 22px;
}

.comparison-table-wrap--options {
  margin-top: 22px;
}

.comparison-table--who {
  min-width: 0;
  width: 100%;
  table-layout: fixed;
}

.comparison-table--who th,
.comparison-table--who td {
  padding: 14px 16px;
  font-size: 14.5px;
  line-height: 1.35;
}

.comparison-table--who th {
  font-size: 11px;
  padding: 14px 16px;
}

.comparison-table--who td:first-child {
  font-size: 14.5px;
  white-space: normal;
}

.comparison-stage--options .comparison-table--options {
  min-width: 0;
  width: 100%;
  table-layout: fixed;
}

.comparison-stage--options .comparison-table--options th,
.comparison-stage--options .comparison-table--options td {
  padding: 14px 14px;
  font-size: 13.5px;
  line-height: 1.35;
  white-space: normal;
}

.comparison-stage--options .comparison-table--options th {
  font-size: 11px;
  padding: 14px 14px;
}

.comparison-stage--options .comparison-table--options td:first-child {
  font-size: 13.5px;
  width: 20%;
}

.comparison-stage--options .comparison-table--options td.comparison-no:not(:empty),
.comparison-stage--options .comparison-table--options td.comparison-yes:not(:empty) {
  font-size: 13px;
  font-weight: 600;
}

.comparison-block--compact {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(14px, 2vw, 20px);
}

.comparison-block--compact h2 {
  font-size: clamp(22px, 2.6vw, 28px);
  margin: 0;
}

.comparison-block--compact .section-lead {
  margin-top: 6px;
  font-size: 14px;
}

.comparison-block--compact .comparison-table-wrap {
  margin-top: 12px;
}

.comparison-block--compact .comparison-table {
  min-width: 0;
  width: 100%;
  table-layout: fixed;
}

.comparison-block--compact .comparison-table th,
.comparison-block--compact .comparison-table td {
  padding: 7px 8px;
  font-size: 12.5px;
  line-height: 1.25;
  white-space: nowrap;
}

.comparison-block--compact .comparison-table th {
  font-size: 10px;
  padding: 7px 8px;
}

.comparison-block--compact .comparison-table td:first-child {
  font-size: 12.5px;
  white-space: normal;
}

.comparison-block--compact .cta-block {
  margin-top: 14px;
}

.comparison-block--compact .cta-block--left {
  align-items: flex-start;
  justify-content: flex-start;
}

.comparison-block--options {
  max-width: 100%;
  margin: 0;
  padding: clamp(14px, 2vw, 20px);
}

.comparison-block--options h2 {
  font-size: clamp(20px, 2.5vw, 28px);
  margin: 0;
}

.comparison-block--options .section-lead {
  margin-top: 6px;
  font-size: 13px;
}

.comparison-block--options .comparison-table-wrap {
  margin-top: 12px;
  overflow-x: visible;
}

.comparison-table--options {
  min-width: 0;
  width: 100%;
  table-layout: fixed;
}

.comparison-table--options th,
.comparison-table--options td {
  padding: 7px 10px;
  font-size: 12px;
  line-height: 1.2;
  white-space: nowrap;
}

.comparison-table--options th {
  font-size: 10px;
  padding: 7px 10px;
}

.comparison-table--options td:first-child {
  font-size: 12px;
  text-align: left;
  white-space: nowrap;
  width: 18%;
}

.comparison-table--options th:nth-child(2),
.comparison-table--options td:nth-child(2),
.comparison-table--options th:nth-child(3),
.comparison-table--options td:nth-child(3),
.comparison-table--options th:nth-child(4),
.comparison-table--options td:nth-child(4),
.comparison-table--options th:nth-child(5),
.comparison-table--options td:nth-child(5) {
  width: 20.5%;
}

.comparison-table--options td.comparison-no:not(:empty),
.comparison-table--options td.comparison-yes:not(:empty) {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.math-copy .comparison-table-wrap {
  margin-top: 16px;
}

.btn-table {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 220px;
  padding: 10px 12px;
  font-size: 12px;
  white-space: nowrap;
}

.vs-cta-row td {
  vertical-align: middle;
}

.vs-cta-cell {
  padding: 12px 10px !important;
  white-space: normal !important;
}

.comparison-block .section-lead {
  margin-top: 12px;
}

.comparison-table-wrap {
  margin-top: 28px;
  overflow-x: auto;
  border: 1px solid #2a2a2a;
  background: var(--card);
}

.comparison-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  color: var(--white);
}

.comparison-table th,
.comparison-table td {
  padding: 15px 14px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: center;
}

.comparison-table th {
  color: var(--yellow);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.comparison-table th:first-child,
.comparison-table td:first-child {
  width: 40%;
  text-align: left;
}

.comparison-table td:first-child {
  color: var(--mute);
  font-size: 14px;
}

.comparison-table th:last-child,
.comparison-table td:last-child {
  color: var(--yellow);
  background: rgba(245, 232, 0, 0.05);
  border-right: 0;
}

.comparison-table tbody tr:last-child td {
  border-bottom: 0;
}

.comparison-table td.comparison-no {
  color: #ff5c5c;
  font-weight: 700;
}

.comparison-table td.comparison-yes {
  color: #45d483;
  font-weight: 700;
}

.comparison-table td.comparison-no:not(:empty),
.comparison-table td.comparison-yes:not(:empty) {
  font-size: 13.5px;
  letter-spacing: -0.01em;
}

.comparison-table--options td.comparison-no:not(:empty),
.comparison-table--options td.comparison-yes:not(:empty) {
  font-size: 12px;
}

.comparison-table--math {
  min-width: 520px;
}
.comparison-table--math th:first-child,
.comparison-table--math td:first-child {
  width: 44%;
}
.comparison-table--math th:last-child,
.comparison-table--math td:last-child {
  color: var(--mute);
  background: none;
  font-size: 13px;
}
.comparison-table--math td.math-cost {
  color: #ff5c5c;
  font-family: var(--mono);
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
}


.comparison-table--math tr.comparison-highlight td {
  background: rgba(245, 232, 0, 0.06);
}
.comparison-table--math tr.comparison-highlight td:first-child {
  color: var(--yellow);
}
.comparison-table--math tr.comparison-highlight td.math-cost {
  color: #45d483;
}
.comparison-table--math tr.comparison-highlight td:last-child {
  color: var(--white);
}

.comparison-table--vs {
  min-width: 0;
  width: 100%;
  table-layout: fixed;
}

.comparison-table--vs th,
.comparison-table--vs td {
  white-space: nowrap;
  font-size: 12.5px;
  padding: 8px 10px;
  line-height: 1.25;
}

.comparison-table--vs th {
  font-size: 10px;
}

.comparison-table--vs th:first-child,
.comparison-table--vs td:first-child {
  width: 22%;
  font-weight: 700;
  color: var(--white);
}

.comparison-table--vs th:nth-child(2),
.comparison-table--vs td:nth-child(2) {
  width: 39%;
}

.comparison-table--vs th:nth-child(3),
.comparison-table--vs td:nth-child(3) {
  width: 39%;
}

.comparison-table--vs td.vs-bad {
  color: #ff8a8a;
  font-weight: 600;
  background: rgba(255, 92, 92, 0.06);
}

.comparison-table--vs td.vs-good {
  color: #7dffb2;
  font-weight: 700;
  background: rgba(69, 212, 131, 0.08);
}

.comparison-table--vs th:nth-child(2) {
  color: #ff8a8a;
}

.comparison-table--vs th:nth-child(3) {
  color: #7dffb2;
}

.comparison-table--fit {
  min-width: 0;
}

.comparison-table--fit th:first-child,
.comparison-table--fit td:first-child,
.comparison-table--fit th:last-child,
.comparison-table--fit td:last-child {
  width: 50%;
  text-align: left;
  vertical-align: top;
  background: none;
  color: inherit;
}

.comparison-table--fit th.fit-th-yes {
  color: #45d483 !important;
  background: rgba(69, 212, 131, 0.06) !important;
}

.comparison-table--fit th.fit-th-no {
  color: #ff5c5c !important;
  background: rgba(255, 92, 92, 0.06) !important;
}

.comparison-table--fit td {
  font-size: 13.5px;
  line-height: 1.45;
}

.comparison-table--fit td.fit-yes {
  color: var(--white) !important;
  background: rgba(69, 212, 131, 0.04) !important;
}

.comparison-table--fit td.fit-no {
  color: var(--mute) !important;
  background: rgba(255, 92, 92, 0.03) !important;
  border-right: 0;
}

.fit-mark-yes,
.fit-mark-no {
  font-weight: 700;
  margin-right: 8px;
}

.fit-mark-yes {
  color: #45d483;
}

.fit-mark-no {
  color: #ff5c5c;
}

.comparison-block .cta-block {
  margin-top: 24px;
}

@media (max-width: 640px) {
  .comparison-table--fit th,
  .comparison-table--fit td {
    padding: 10px 10px;
  }

  .comparison-table--fit td {
    font-size: 12.5px;
  }
}

.comparison-table td.comparison-partial {
  color: #f0b84b;
  font-weight: 700;
}

@media (max-width: 640px) {
  .comparison-block {
    padding: 22px 16px;
  }

  .comparison-table-wrap {
    margin-top: 20px;
  }

  .comparison-table {
    min-width: 0;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 10px 5px;
  }

  .comparison-table th {
    font-size: 9px;
    letter-spacing: 0.03em;
  }

  .comparison-table th:first-child,
  .comparison-table td:first-child {
    width: 32%;
    padding-left: 10px;
  }

  .comparison-table td:first-child {
    font-size: 12px;
  }

  .comparison-table--math {
    min-width: 0;
  }

  .comparison-table--math th:first-child,
  .comparison-table--math td:first-child {
    width: 60%;
  }

  .comparison-table--math td:first-child {
    font-size: 12.5px;
  }

  .comparison-table--math th:last-child,
  .comparison-table--math td:last-child {
    display: none;
  }

  .comparison-table--math th:nth-child(2),
  .comparison-table--math td:nth-child(2) {
    border-right: 0;
  }
}


/* Soft corners site-wide */
.bento-card,
.t-card,
.math-card,
.opt-card,
.close-card,
.problem-panel,
.who-card,
.nav-cta,
input,
textarea,
select {
  border-radius: var(--radius);
}

.btn,
.btn-primary {
  border-radius: var(--radius-sm);
}

/* Whop checkout modal */
.checkout-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 3vh, 32px) clamp(12px, 2vw, 20px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.28s ease, visibility 0.28s ease;
}

.checkout-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

body.checkout-open {
  overflow: hidden;
}

.checkout-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.checkout-modal__panel {
  position: relative;
  z-index: 1;
  width: fit-content;
  max-width: min(calc(100vw - 24px), 864px);
  max-height: min(90vh, 740px);
  display: flex;
  flex-direction: column;
  background: #1d1d25;
  border: 1px solid var(--yellow-line);
  border-radius: 2px;
  box-shadow:
    0 0 0 1px rgba(255, 234, 0, 0.06),
    0 0 48px rgba(255, 234, 0, 0.14),
    0 28px 80px rgba(0, 0, 0, 0.72);
  overflow: hidden;
  transform: translateY(16px) scale(0.97);
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}

.checkout-modal.is-open .checkout-modal__panel {
  transform: translateY(0) scale(1);
}

.checkout-modal__close {
  position: absolute;
  top: 14px;
  right: 20px;
  z-index: 6;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(255, 254, 242, 0.42);
  cursor: pointer;
  transition: color 0.15s ease;
}

.checkout-modal__close svg {
  width: 15px;
  height: 15px;
}

.checkout-modal__close:hover {
  color: var(--white);
}

.checkout-modal__close:focus-visible {
  outline: 1px solid var(--yellow-line);
  outline-offset: 2px;
}

.checkout-modal__checkout {
  position: relative;
  width: 480px;
  flex: 0 0 480px;
  min-height: 0;
  overflow-x: auto;
  overflow-y: auto;
  background: #1d1d25;
  padding: 22px 24px 20px 24px;
  margin: 0;
  box-sizing: border-box;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 234, 0, 0.38) rgba(255, 254, 242, 0.04);
}

.checkout-modal__checkout::-webkit-scrollbar {
  width: 5px;
}

.checkout-modal__checkout::-webkit-scrollbar-track {
  background: transparent;
}

.checkout-modal__checkout::-webkit-scrollbar-thumb {
  background: rgba(255, 254, 242, 0.28);
  border-radius: 0;
}

.checkout-modal__checkout::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 234, 0, 0.5);
}

.checkout-modal__checkout #whop-checkout-embed {
  display: block;
  width: 100%;
  min-height: 0;
  margin: 0;
  padding: 0 2px 0 0;
  border: 0;
  box-shadow: none;
  background: transparent;
  box-sizing: border-box;
  overflow: visible;
}

.checkout-modal__checkout #whop-checkout-embed > div {
  width: 100% !important;
  border: 0 !important;
  box-shadow: none !important;
  outline: none !important;
  background: transparent !important;
  margin: 0 !important;
  padding: 0 !important;
  max-width: 100% !important;
}

.checkout-modal__checkout iframe {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  border: 0 !important;
  display: block;
}

/* Testimonial slider in benefits column */
.checkout-slider {
  width: 100%;
  max-width: 100%;
  margin-top: auto;
  padding-top: 28px;
}

.checkout-slider__viewport {
  position: relative;
  width: 100%;
  max-width: 340px;
}

.checkout-proof-slide {
  display: none;
  width: 100%;
  min-height: 0;
  padding-bottom: 28px;
}

.checkout-proof-slide.is-active {
  display: flex;
}

.checkout-proof-slide.hero-proof {
  padding: 12px 36px 12px 12px;
  border-radius: 10px;
}

.checkout-proof-slide .hero-proof-photo {
  width: 40px;
  height: 40px;
}

.checkout-proof-slide .hero-proof-name {
  font-size: 13px;
}

.checkout-proof-slide .hero-proof-role {
  font-size: 11px;
}

.checkout-proof-slide .hero-proof-stars svg {
  width: 10px;
  height: 10px;
}

.checkout-proof-slide .hero-proof-quote {
  margin-top: 10px;
  padding-top: 10px;
  font-size: 12px;
  line-height: 1.48;
}

.checkout-slider__arrows {
  position: absolute;
  right: 10px;
  bottom: 10px;
  display: flex;
  align-items: center;
  gap: 2px;
  z-index: 2;
}

.checkout-slider__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: none;
  color: var(--dim);
  cursor: pointer;
  transition: color 0.15s ease, transform 0.15s ease;
}

.checkout-slider__arrow svg {
  width: 18px;
  height: 18px;
}

.checkout-slider__arrow:hover {
  color: var(--yellow);
}

.checkout-slider__arrow:active {
  transform: scale(0.92);
}

/* Two-column body */
.checkout-modal__body {
  flex: 1;
  min-height: 0;
  display: flex;
  width: fit-content;
  max-width: 100%;
  overflow: hidden;
}

.checkout-modal__benefits {
  width: 360px;
  flex: 0 0 360px;
  padding: 22px 24px 20px;
  border-right: 1px solid rgba(255, 254, 242, 0.06);
  background:
    linear-gradient(135deg, rgba(255, 234, 0, 0.05) 0%, transparent 55%),
    #1d1d25;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.checkout-modal__intro {
  flex: 0 0 auto;
}

.checkout-modal__label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 8px;
}

.checkout-modal__title {
  font-family: var(--display);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.15;
  color: var(--white);
  letter-spacing: -0.025em;
  padding-right: 0;
  white-space: nowrap;
}

.checkout-modal__sub {
  margin-top: 8px;
  font-size: 13px;
  color: var(--mute);
  line-height: 1.35;
  white-space: nowrap;
}

.checkout-benefits {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.checkout-benefits li {
  position: relative;
  padding-left: 14px;
  font-size: 14px;
  line-height: 1.42;
  color: var(--white);
}

.checkout-benefits li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 2px;
  background: var(--yellow);
}

.checkout-modal__trust.hero-rating {
  margin-top: 18px;
}

@media (max-width: 780px) {
  .checkout-modal__panel {
    width: 100%;
    max-width: 520px;
    max-height: min(92vh, 820px);
  }

  .checkout-modal__body {
    flex-direction: column;
    width: 100%;
    overflow-y: auto;
  }

  .checkout-modal__benefits {
    width: 100%;
    flex: 0 0 auto;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 254, 242, 0.06);
    padding: 18px 16px 14px;
    overflow: visible;
  }

  .checkout-modal__title,
  .checkout-modal__sub {
    white-space: normal;
  }

  .checkout-modal__title {
    font-size: 20px;
  }

  .checkout-benefits {
    margin-top: 12px;
    gap: 6px;
  }

  .checkout-benefits li {
    font-size: 12.5px;
  }

  .checkout-modal__trust.hero-rating {
    margin-top: 14px;
  }

  .checkout-slider {
    padding-top: 20px;
  }

  .checkout-slider__viewport {
    max-width: 100%;
  }

  .checkout-modal__checkout {
    width: 100%;
    flex: 0 0 auto;
    padding: 18px 20px 16px 20px;
  }
}

@media (max-width: 520px) {
  .checkout-modal__title {
    font-size: 18px;
  }

  .checkout-benefits li {
    font-size: 12px;
  }

  .checkout-slider__arrow svg {
    width: 16px;
    height: 16px;
  }
}

