: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;
  --viz: "Geist", "Fustat", -apple-system, BlinkMacSystemFont, 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;
}

main {
  position: relative;
  z-index: 1;
  background: var(--bg);
}

/* ——— Site header ——— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  border-bottom: 1px solid rgba(255, 254, 242, 0.1);
  background: var(--bg);
}

.site-header.is-scrolled {
  border-bottom-color: rgba(255, 254, 242, 0.12);
}

.site-header__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 24px;
  min-height: 72px;
  position: relative;
  z-index: 1;
}

.site-header__brand,
.site-footer__brand-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  justify-self: start;
  min-width: 0;
}

.site-footer__brand-link:hover .site-header__wordmark {
  color: var(--white);
}

.site-header__logo-mark {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  flex-shrink: 0;
}

.site-header__wordmark {
  font-family: var(--display);
  font-size: 1.0625rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--white);
  transition: color 0.15s ease;
}

.site-header__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  justify-self: center;
}

.site-header__nav a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: rgba(255, 254, 242, 0.58);
  transition: color 0.15s ease;
}

.site-header__nav a:hover {
  color: var(--white);
}

.site-header__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  justify-self: end;
}

.site-header__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--yellow);
  background: var(--yellow);
  font-family: var(--display);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
  color: #000;
  white-space: nowrap;
  box-shadow:
    0 0 14px rgba(245, 232, 0, 0.45),
    0 0 32px rgba(245, 232, 0, 0.18),
    inset 0 -2px 0 rgba(0, 0, 0, 0.16);
  transition: background 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}

.site-header__cta:hover {
  background: #fff861;
  border-color: #fff861;
  color: #000;
  box-shadow:
    0 0 20px rgba(245, 232, 0, 0.65),
    0 0 48px rgba(245, 232, 0, 0.28),
    inset 0 -2px 0 rgba(0, 0, 0, 0.16);
}

.site-header__cta:active {
  transform: scale(0.985);
}

.site-header__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid rgba(255, 254, 242, 0.1);
  border-radius: var(--radius-sm);
  background: rgba(255, 254, 242, 0.03);
}

.site-header__toggle-bar {
  display: block;
  width: 16px;
  height: 1.5px;
  margin-inline: auto;
  background: var(--white);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.site-header.is-menu-open .site-header__toggle-bar:first-child {
  transform: translateY(3.75px) rotate(45deg);
}

.site-header.is-menu-open .site-header__toggle-bar:last-child {
  transform: translateY(-3.75px) rotate(-45deg);
}

.site-header__mobile {
  border-top: 1px solid rgba(255, 254, 242, 0.1);
  background: var(--bg);
}

.site-header__mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 8px 0 20px;
}

.site-header__mobile-nav a {
  padding: 14px 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--mute);
  border-bottom: 1px solid rgba(255, 254, 242, 0.06);
}

.site-header__mobile-nav a:hover {
  color: var(--white);
}

.site-header__mobile-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 16px;
  width: 100%;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--yellow);
  background: var(--yellow);
  font-family: var(--display);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #000;
  border-bottom: none;
  box-shadow:
    0 0 14px rgba(245, 232, 0, 0.45),
    inset 0 -2px 0 rgba(0, 0, 0, 0.16);
}

.site-header__mobile-nav a.site-header__mobile-cta {
  color: #000;
  border-bottom: none;
}

.site-header__mobile-nav a.site-header__mobile-cta:hover {
  color: #000;
  background: #fff861;
  border-color: #fff861;
}

.site-header__mobile-cta:hover {
  background: #fff861;
  border-color: #fff861;
  color: #000;
}

/* ——— Site footer ——— */
.site-footer {
  position: relative;
  z-index: 1;
  margin-top: 0;
  padding: 56px 0 32px;
  border-top: 1px solid rgba(255, 254, 242, 0.08);
  background: var(--bg);
}

.site-footer__inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.site-footer__top {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: start;
}

.site-footer__brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 320px;
}

.site-footer__tagline {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--dim);
}

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

.site-footer__col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.site-footer__label {
  margin: 0 0 4px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--dim);
}

.site-footer__col a {
  font-size: 14px;
  font-weight: 500;
  color: var(--mute);
  transition: color 0.15s ease;
}

.site-footer__col a:hover {
  color: var(--white);
}

.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 254, 242, 0.06);
}

.site-footer__copy,
.site-footer__meta {
  margin: 0;
  font-size: 12px;
  color: var(--dim);
}

@media (max-width: 960px) {
  .site-header__inner {
    display: flex;
    justify-content: space-between;
    min-height: 64px;
  }

  .site-header__nav,
  .site-header__cta {
    display: none;
  }

  .site-header__toggle {
    display: flex;
  }

  .site-footer__top {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .site-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (min-width: 961px) {
  .site-header__mobile {
    display: none !important;
  }
}

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 {
  color: var(--yellow);
}

.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,
  .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;
  background: var(--bg);
}

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

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

.section.band-soft {
  background: var(--bg);
}

.section.close-band {
  background: var(--bg);
}

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

/* ——— Hero ——— */
.hero {
  position: relative;
  padding: 56px 0 72px;
  overflow: hidden;
  background: var(--bg);
}

.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.08;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: var(--white);
}

.hero-pro-copy h1 .faded {
  color: inherit;
}

.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) {
  .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.ps-frame,
.split-framed .split-art.ps-frame {
  border: 1px solid var(--ps-frame-line);
  overflow: visible;
}

.split-art.ps-frame::before,
.split-art.ps-frame::after {
  display: block;
}

.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: thin border + corner ticks via .ps-frame */
.split-framed .split-art {
  background: transparent;
  padding: clamp(16px, 2.5vw, 28px);
  align-self: stretch;
  min-height: 0;
}

.split-framed .split-art:not(.ps-frame) {
  border: none;
}

.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: 20px;
  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: 300px;
  justify-self: center;
}

.split-framed--issue .split-art img {
  width: min(100%, 260px);
  height: auto;
  max-height: 280px;
  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.08;
  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;
  margin-bottom: 28px;
  max-width: none;
  white-space: nowrap;
}

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

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

.x-connect {
  display: flex;
  align-items: center;
  gap: 14px;
  width: min(100%, 340px);
  margin-top: 4px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 254, 242, 0.1);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(255, 254, 242, 0.05) 0%, rgba(255, 254, 242, 0.02) 100%);
  color: var(--white);
  text-decoration: none;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.x-connect:hover {
  border-color: rgba(245, 232, 0, 0.28);
  background: linear-gradient(135deg, rgba(245, 232, 0, 0.08) 0%, rgba(255, 254, 242, 0.03) 100%);
  transform: translateY(-1px);
}

.x-connect__icon {
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 254, 242, 0.08);
  border: 1px solid rgba(255, 254, 242, 0.12);
  color: var(--white);
}

.x-connect__icon svg {
  width: 15px;
  height: 15px;
  display: block;
}

.x-connect__copy {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.x-connect__label {
  font-family: var(--display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--white);
}

.x-connect__handle {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--mute);
}

.close-spots {
  width: min(100%, 300px);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.close-spots-bar {
  width: 100%;
  height: 9px;
  border-radius: 999px;
  background: rgba(255, 254, 242, 0.05);
  border: 1px solid rgba(255, 254, 242, 0.1);
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.45);
  overflow: hidden;
}

.close-spots-bar__fill {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(245, 232, 0, 0.92) 0%, #ffb347 42%, #ff6b4a 78%, #ff3d3d 100%);
  box-shadow:
    0 0 14px rgba(255, 107, 74, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
  transition: width 0.6s ease;
}

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

.close-meta-trust {
  color: rgba(255, 254, 242, 0.42);
}

.close-meta-spots {
  display: flex;
  align-items: baseline;
  gap: 0.35em;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: #ff5c5c;
  font-weight: 700;
}

.close-meta-spots strong {
  color: #ff5c5c;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-shadow: 0 0 18px rgba(255, 92, 92, 0.45);
}

.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: visible;
}

.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-viz b,
.delta-viz .mv-pdf-title,
.delta-viz .mv-pdf-tags span,
.delta-viz .mv-json-row b,
.delta-viz .mv-json-row span,
.delta-viz .mv-skill-file b,
.delta-viz .mv-skill-file-status,
.delta-viz .mv-skill-file-badge,
.delta-viz .mv-win-line,
.delta-viz .mv-win-pill,
.delta-viz .mv-pdf-bar b {
  font-family: var(--viz);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.delta-viz .mv-pdf-title {
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.028em;
  line-height: 1.2;
  color: var(--white);
}

.delta-viz .mv-pdf-bar b {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--dim);
}

.delta-viz .mv-pdf-tags span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.delta-viz .mv-json-row {
  grid-template-columns: 30px minmax(0, 1fr) auto;
}

.delta-viz .mv-json-row b,
.delta-viz .mv-skill-file b,
.delta-viz .mv-win-line {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.018em;
  color: var(--white);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
}

.delta-viz .mv-win-line {
  font-weight: 600;
  line-height: 1.3;
}

.delta-viz .mv-json-row span,
.delta-viz .mv-skill-file-status {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.02em;
  font-variant-numeric: tabular-nums;
  color: var(--mute);
  white-space: nowrap;
}

.delta-viz .mv-skill-file-badge {
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.delta-viz .mv-win-pill {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.delta-viz .mv-json-row em:not(.mv-skill-ico) {
  font-family: var(--viz);
  font-weight: 600;
  font-size: 11px;
}

.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-family: var(--display);
  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;
  font-weight: 500;
  color: rgba(255, 254, 242, 0.82);
}

.delta-copy p {
  margin: 0;
  font-family: var(--display);
  font-size: 13px;
  line-height: 1.45;
  font-weight: 500;
  color: rgba(255, 254, 242, 0.82);
}

/* 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-viz-sheet {
  width: 100%;
  height: 100%;
  min-height: 100%;
  padding: 14px 14px 12px;
  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 10px 24px rgba(0, 0, 0, 0.22);
  display: flex;
  flex-direction: column;
}

.mv-viz-sheet .mv-json,
.mv-viz-sheet .mv-skill-files,
.mv-viz-sheet .mv-wins {
  flex: 1 1 auto;
  min-height: 0;
}

.mv-viz-sheet .mv-json-row,
.mv-viz-sheet .mv-skill-file {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 254, 242, 0.08);
  border-radius: 0;
  padding-left: 0;
  padding-right: 0;
}

.mv-viz-sheet .mv-json-row:last-child,
.mv-viz-sheet .mv-skill-file:last-child {
  border-bottom: none;
}

.mv-viz-sheet .mv-win {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 254, 242, 0.08);
  border-radius: 0;
  padding: 8px 0 10px;
  box-shadow: none;
}

.mv-viz-sheet .mv-win:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.mv-viz-sheet .mv-win.is-hot {
  background: transparent;
  border-bottom-color: rgba(255, 59, 59, 0.22);
  box-shadow: none;
}

.mv-viz-sheet .mv-win-top {
  margin-bottom: 6px;
}

.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 .t-card {
  width: 340px;
  min-height: 180px;
}

.t-marquee--dual .t-card--short {
  width: 260px;
  min-height: 120px;
}

.t-marquee--dual .t-card--short p {
  font-size: 14.5px;
  font-weight: 600;
  line-height: 1.4;
}

.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 {
  --ps-sticky-top: 76px;
  --ps-head-h: 136px;
  padding-block: 64px;
  scroll-margin-top: var(--ps-sticky-top);
  background: var(--bg);
}

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

.bento-head {
  text-align: center;
  width: 100%;
  max-width: 720px;
  margin: 0 auto 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-head-center {
  text-align: center;
  width: 100%;
}

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

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

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

.bento-head--scroll {
  text-align: left;
  align-items: flex-start;
  max-width: none;
  width: 100%;
  margin: 0 0 36px;
  position: relative;
  z-index: 40;
  isolation: isolate;
  padding-bottom: 8px;
  background: var(--bg);
}

.bento-head--scroll .label {
  margin: 0 0 12px;
  justify-content: flex-start;
}

.bento-head--scroll h2 {
  text-align: left;
  white-space: normal;
  font-size: clamp(26px, 3vw, 38px);
  max-width: 18ch;
}

.bento-head--scroll .bento-head-sub {
  margin: 0;
  text-align: left;
  white-space: nowrap;
  max-width: none;
}

.bento-head h2 {
  margin: 0 0 10px;
  font-size: clamp(22px, 2.5vw, 32px);
  line-height: 1.15;
  letter-spacing: -0.03em;
  text-align: center;
  max-width: 100%;
  white-space: nowrap;
}

.bento-head-sub {
  margin: 0 auto;
  font-size: 15px;
  line-height: 1.5;
  color: var(--mute);
  max-width: none;
  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: 900px) {
  .bento-head h2,
  .bento-head-sub {
    white-space: normal;
  }

  .close-lead--soft {
    white-space: normal;
  }

  .btn-close {
    width: 100%;
    min-width: 0;
  }

  .close-spots {
    width: 100%;
  }
}

/* ——— Scroll-driven feature section (What you get) ——— */
.feat-scroll {
  position: relative;
}

.feat-scroll__pin {
  position: sticky;
  top: 88px;
  z-index: 2;
  min-height: min(480px, calc(100vh - 120px));
}

.feat-scroll__layout {
  display: grid;
  grid-template-columns: minmax(0, 440px) minmax(0, 1fr);
  gap: clamp(40px, 6vw, 72px);
  align-items: center;
}

/* Left — editorial copy */
.feat-scroll__copy {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
}

.feat-scroll__ticks {
  list-style: none;
  margin: 6px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.feat-scroll__ticks::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 8px;
  bottom: 8px;
  width: 1px;
  transform: translateX(-50%);
  background: rgba(255, 254, 242, 0.1);
}

.feat-scroll__ticks li {
  position: relative;
  width: 10px;
  height: 10px;
  margin: 14px auto;
  border-radius: 50%;
  background: rgba(255, 254, 242, 0.14);
  border: 1px solid rgba(255, 254, 242, 0.08);
  transition: background 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease;
}

.feat-scroll__ticks li.is-active {
  background: var(--yellow);
  border-color: rgba(245, 232, 0, 0.5);
  box-shadow: 0 0 0 4px rgba(245, 232, 0, 0.12);
  transform: scale(1.15);
}

.feat-scroll__content {
  min-width: 0;
}

.feat-scroll__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
}

.feat-scroll__index {
  margin: 0;
  flex-shrink: 0;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: rgba(255, 254, 242, 0.35);
}

.feat-scroll__index span:first-child {
  color: var(--yellow);
}

.feat-scroll__index-sep {
  margin: 0 2px;
  opacity: 0.45;
}

.feat-scroll__bar {
  flex: 1 1 auto;
  height: 2px;
  border-radius: 1px;
  background: rgba(255, 254, 242, 0.08);
  overflow: hidden;
}

.feat-scroll__bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--yellow);
  transition: width 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.feat-scroll__steps {
  position: relative;
  min-height: 220px;
}

.feat-scroll__step {
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 0.45s ease, transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.feat-scroll__step.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.feat-scroll__kicker {
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-transform: none;
}

.feat-scroll__kicker--y { color: var(--yellow); }
.feat-scroll__kicker--g { color: #5fe08a; }
.feat-scroll__kicker--b { color: #6eb4ff; }
.feat-scroll__kicker--p { color: #c9a4ff; }
.feat-scroll__kicker--r { color: #ff7b72; }

.feat-scroll__step h3 {
  margin: 0 0 16px;
  font-size: clamp(24px, 2.8vw, 32px);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.12;
  color: var(--white);
}

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

.feat-scroll__bullets li {
  position: relative;
  padding-left: 18px;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 254, 242, 0.58);
}

.feat-scroll__bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 6px;
  height: 6px;
  border-radius: 1px;
  background: rgba(255, 254, 242, 0.22);
}

.feat-scroll__step.is-active .feat-scroll__bullets li::before {
  background: var(--yellow);
}

/* Right — visual panel */
.feat-scroll__stage {
  position: relative;
}

.feat-scroll__frame {
  position: relative;
  border-radius: 10px;
  border: 1px solid #2a2a2a;
  background: #0c0c0c;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45);
  overflow: hidden;
}

.feat-scroll__frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  box-shadow: inset 0 1px 0 rgba(255, 254, 242, 0.06);
}

.feat-scroll__stack {
  position: relative;
  min-height: 320px;
}

.feat-scroll__card {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease, transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.feat-scroll__card.is-active {
  opacity: 1;
  transform: translateY(0);
  z-index: 2;
  pointer-events: auto;
}

.feat-scroll__card.is-past,
.feat-scroll__card.is-future {
  opacity: 0;
  pointer-events: none;
}

/* Compact visual blocks */
.feat-viz {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 320px;
  padding: 24px 22px 22px;
  justify-content: center;
}

.feat-viz--guide {
  align-items: center;
}

.feat-viz--guide .ps-file {
  width: 100%;
  max-width: 272px;
  min-height: 0;
}

.feat-viz__chip {
  display: inline-flex;
  align-items: center;
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1px solid rgba(245, 232, 0, 0.28);
  background: rgba(245, 232, 0, 0.08);
  color: var(--yellow);
}

.feat-viz__chip--y {
  border-color: rgba(245, 232, 0, 0.28);
  background: rgba(245, 232, 0, 0.08);
  color: var(--yellow);
}

.feat-viz__status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(255, 254, 242, 0.48);
}

.feat-viz__status--g { color: rgba(95, 224, 138, 0.85); }
.feat-viz__status--b { color: rgba(110, 180, 255, 0.85); }
.feat-viz__status--p { color: rgba(201, 164, 255, 0.85); }
.feat-viz__status--r { color: rgba(255, 123, 114, 0.85); }

.feat-viz__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.9;
}

.feat-viz .ps-hrow {
  margin-top: auto;
}

.feat-viz .ps-pod {
  min-height: 156px;
}

.feat-viz .ps-run {
  margin: 0;
}

.feat-scroll__sentinels {
  position: relative;
  pointer-events: none;
}

.feat-scroll__sentinel {
  height: 52vh;
}

.feat-scroll__sentinel:last-child {
  height: 38vh;
}

.feat-scroll__outro {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid #2a2a2a;
}

.feat-scroll__outro-label {
  margin: 0 0 10px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 254, 242, 0.32);
}

.feat-scroll__taglines {
  position: relative;
  min-height: 1.6em;
}

.feat-scroll__tagline {
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  margin: 0;
  font-size: 16px;
  line-height: 1.45;
  letter-spacing: -0.02em;
  color: rgba(255, 254, 242, 0.72);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.feat-scroll__tagline.is-active {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 960px) {
  .feat-scroll__pin {
    position: relative;
    top: auto;
    min-height: 0;
  }

  .feat-scroll__layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .feat-scroll__copy {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .feat-scroll__ticks {
    display: none;
  }

  .feat-scroll__steps {
    min-height: 200px;
  }

  .feat-scroll__stack,
  .feat-viz {
    min-height: 280px;
  }

  .feat-scroll__sentinel {
    height: 62vh;
  }

  .bento-head--scroll {
    margin-bottom: 28px;
  }
}

/* ——— Product showcase previews (legacy tab styles retained) ——— */
.product-showcase {
  --ps-stack-gap: 72vh;
  margin-top: 0;
}

.product-showcase__scroll {
  position: relative;
}

.product-showcase__stack-track {
  position: relative;
}

.product-showcase__panels--stack {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.product-showcase__panels--stack .product-showcase__panel {
  display: block !important;
  position: sticky;
  top: var(--ps-sticky-top);
  width: 100%;
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 0;
  padding-bottom: 0;
  background: var(--bg);
  box-shadow: 0 48px 0 48px var(--bg);
  opacity: 1;
  visibility: visible;
  transform: none;
  pointer-events: auto;
}

.product-showcase__stack-spacer {
  height: var(--ps-stack-gap);
  flex-shrink: 0;
  pointer-events: none;
}

.product-showcase__stack-spacer + .product-showcase__panel {
  margin-top: calc(-1 * var(--ps-stack-gap) + 4rem);
}

.product-showcase__stack-spacer--final {
  height: calc(var(--ps-stack-gap) + 12vh);
}

.product-showcase__stack-spacer--final + .product-showcase__panel {
  margin-top: calc(-1 * (var(--ps-stack-gap) + 12vh) + 4rem);
}

.product-showcase__panels--stack .product-showcase__panel:not(:last-child) {
  padding-bottom: 0;
}

.product-showcase__panels--stack .product-showcase__panel:nth-of-type(1) { z-index: 1; }
.product-showcase__panels--stack .product-showcase__panel:nth-of-type(2) { z-index: 2; }
.product-showcase__panels--stack .product-showcase__panel:nth-of-type(3) { z-index: 3; }
.product-showcase__panels--stack .product-showcase__panel:nth-of-type(4) { z-index: 4; }
.product-showcase__panels--stack .product-showcase__panel:nth-of-type(5) { z-index: 5; }

.product-showcase__panels--stack .ps-feature-card {
  background: var(--bg);
}

.product-showcase__stack-end {
  height: 56px;
  pointer-events: none;
}

@media (max-width: 900px) {
  .bento-section {
    --ps-sticky-top: 64px;
  }

  .product-showcase {
    --ps-stack-gap: 82vh;
  }

  .bento-head--scroll {
    margin-bottom: 28px;
  }

  .bento-head--scroll .bento-head-sub {
    white-space: normal;
  }
}

.product-showcase__panels {
  background: transparent;
  border: none;
  border-radius: 0;
  overflow: visible;
}

.product-showcase__panel {
  display: none;
}

.product-showcase__panel.is-active {
  display: block;
}

.product-showcase__panel[hidden] {
  display: none !important;
}

/* Gojiberry-style framed boxes — transparent, corner ticks, nested viz frame */
.ps-frame {
  --ps-frame-line: rgba(255, 254, 242, 0.12);
  --ps-frame-tick: rgba(255, 254, 242, 0.34);
  --ps-frame-tick-len: 10px;
  position: relative;
  background: transparent;
  border: 1px solid var(--ps-frame-line);
  background-image:
    linear-gradient(var(--ps-frame-tick), var(--ps-frame-tick)) 100% 0 / var(--ps-frame-tick-len) 1px no-repeat,
    linear-gradient(var(--ps-frame-tick), var(--ps-frame-tick)) 100% 0 / 1px var(--ps-frame-tick-len) no-repeat,
    linear-gradient(var(--ps-frame-tick), var(--ps-frame-tick)) 0 100% / var(--ps-frame-tick-len) 1px no-repeat,
    linear-gradient(var(--ps-frame-tick), var(--ps-frame-tick)) 0 100% / 1px var(--ps-frame-tick-len) no-repeat;
}

.ps-frame::before,
.ps-frame::after {
  content: "";
  position: absolute;
  width: var(--ps-frame-tick-len);
  height: var(--ps-frame-tick-len);
  pointer-events: none;
  border-color: var(--ps-frame-tick);
  border-style: solid;
  z-index: 1;
}

.ps-frame::before {
  top: -1px;
  left: -1px;
  border-width: 1px 0 0 1px;
}

.ps-frame::after {
  bottom: -1px;
  right: -1px;
  border-width: 0 1px 1px 0;
}

.ps-feature-card.ps-frame::before,
.ps-feature-card.ps-frame::after {
  width: 12px;
  height: 12px;
}

/* Feature card — two-column layout on page background */
.ps-feature-card {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  min-height: 340px;
}

.ps-feature-card__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 36px 40px 40px;
  border-right: 1px solid rgba(255, 254, 242, 0.1);
  background: transparent;
}

.ps-feature-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin: 0 0 22px;
  padding: 5px 11px 5px 7px;
  border-radius: 6px;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.ps-feature-card__mark {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  border-radius: 3px;
  opacity: 0.9;
}

.ps-feature-card__mark--y {
  background:
    linear-gradient(90deg, var(--yellow) 46%, transparent 46%, transparent 54%, var(--yellow) 54%) 0 0 / 100% 46% no-repeat,
    linear-gradient(90deg, var(--yellow) 46%, transparent 46%, transparent 54%, var(--yellow) 54%) 0 100% / 100% 46% no-repeat;
}

.ps-feature-card__mark--g {
  background:
    linear-gradient(90deg, #5fe08a 46%, transparent 46%, transparent 54%, #5fe08a 54%) 0 0 / 100% 46% no-repeat,
    linear-gradient(90deg, #5fe08a 46%, transparent 46%, transparent 54%, #5fe08a 54%) 0 100% / 100% 46% no-repeat;
}

.ps-feature-card__mark--b {
  background:
    linear-gradient(90deg, #6eb4ff 46%, transparent 46%, transparent 54%, #6eb4ff 54%) 0 0 / 100% 46% no-repeat,
    linear-gradient(90deg, #6eb4ff 46%, transparent 46%, transparent 54%, #6eb4ff 54%) 0 100% / 100% 46% no-repeat;
}

.ps-feature-card__mark--p {
  background:
    linear-gradient(90deg, #c9a4ff 46%, transparent 46%, transparent 54%, #c9a4ff 54%) 0 0 / 100% 46% no-repeat,
    linear-gradient(90deg, #c9a4ff 46%, transparent 46%, transparent 54%, #c9a4ff 54%) 0 100% / 100% 46% no-repeat;
}

.ps-feature-card__mark--r {
  background:
    linear-gradient(90deg, #ff7b72 46%, transparent 46%, transparent 54%, #ff7b72 54%) 0 0 / 100% 46% no-repeat,
    linear-gradient(90deg, #ff7b72 46%, transparent 46%, transparent 54%, #ff7b72 54%) 0 100% / 100% 46% no-repeat;
}

.ps-feature-card--guide .ps-feature-card__badge {
  color: var(--yellow);
  background: rgba(245, 232, 0, 0.1);
}

.ps-feature-card--cloud .ps-feature-card__badge {
  color: #5fe08a;
  background: rgba(52, 199, 89, 0.12);
}

.ps-feature-card--skills .ps-feature-card__badge {
  color: #6eb4ff;
  background: rgba(77, 163, 255, 0.12);
}

.ps-feature-card--inject .ps-feature-card__badge {
  color: #c9a4ff;
  background: rgba(179, 136, 255, 0.14);
}

.ps-feature-card--pulse .ps-feature-card__badge {
  color: #ff7b72;
  background: rgba(255, 69, 58, 0.12);
}

.ps-feature-card__copy h3 {
  margin: 0 0 14px;
  font-size: clamp(1.45rem, 2.4vw, 1.85rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.12;
  color: var(--white);
}

.ps-feature-card__copy p {
  margin: 0;
  max-width: 40ch;
  font-size: 15px;
  line-height: 1.58;
  color: rgba(255, 254, 242, 0.58);
}

.ps-feature-card__subline {
  max-width: 42ch;
  line-height: 1.55;
}

.ps-feature-card--pulse .ps-feature-card__subline {
  max-width: 48ch;
}

.ps-feature-card__viz {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px 32px;
  background: transparent;
}

.ps-feature-card__viz-frame {
  width: 100%;
  max-width: 420px;
  min-height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 20px;
}

.ps-feature-card__viz-frame .ps-file {
  width: 100%;
  max-width: none;
  min-height: 0;
  margin: 0;
  box-shadow: none;
  background: transparent;
}

.ps-feature-card__viz-frame .ps-hrow {
  width: 100%;
  max-width: none;
}

/* Original bento content — adapted inside Gojiberry frames */
.ps-viz-stack {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ps-viz-stack--pills .ps-pill {
  display: block;
  width: 100%;
  padding: 12px 14px;
  text-align: center;
  font-size: 12px;
  border-radius: 4px;
}

.ps-viz-stack--pills .ps-pill--y {
  box-shadow: 0 0 22px rgba(245, 232, 0, 0.14);
}

.ps-viz-stack--pills .ps-pill--r {
  box-shadow: 0 0 22px rgba(255, 69, 58, 0.14);
}

.ps-viz-stack--pills .ps-pill--b {
  box-shadow: 0 0 22px rgba(77, 163, 255, 0.14);
}

.ps-viz-stack--log {
  gap: 0;
}

.mv-list-row--rich {
  grid-template-columns: 30px 1fr auto;
  align-items: center;
}

.mv-list-row--rich .mv-skill-ico {
  width: 26px;
  height: 26px;
}

.mv-list-row--rich .mv-skill-ico svg {
  width: 13px;
  height: 13px;
}

.ps-feature-card__viz-frame .mv-pdf-sheet {
  background: transparent;
  border: none;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  min-height: 0;
  height: auto;
  padding: 0;
}

.mv-pdf--compact {
  width: 100%;
  height: auto;
}

.mv-pdf--compact .mv-pdf-bar {
  margin-bottom: 12px;
}

.mv-pdf--compact .mv-pdf-title {
  font-size: 17px;
  margin-bottom: 12px;
}

.mv-pdf--compact .mv-pdf-lines {
  margin-bottom: 14px;
}

.mv-pdf--compact .mv-pdf-tags {
  flex-direction: column;
  align-items: stretch;
}

.mv-pdf--compact .mv-pdf-tags span {
  display: block;
  text-align: center;
  padding: 10px 12px;
}

.ps-feature-card__viz-frame .mv-json,
.ps-feature-card__viz-frame .mv-skill-files,
.ps-feature-card__viz-frame .mv-wins,
.ps-feature-card__viz-frame .ps-viz-stack--log {
  gap: 0;
}

.ps-feature-card__viz-frame .mv-list-row,
.ps-feature-card__viz-frame .mv-list-row--rich,
.ps-feature-card__viz-frame .mv-json-row,
.ps-feature-card__viz-frame .mv-skill-file,
.ps-feature-card__viz-frame .mv-win {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 254, 242, 0.1);
  border-radius: 0;
  padding-left: 0;
  padding-right: 0;
}

.ps-feature-card__viz-frame .mv-skill-file {
  padding: 10px 0;
}

.ps-feature-card__viz-frame .mv-list-row,
.ps-feature-card__viz-frame .mv-list-row--rich,
.ps-feature-card__viz-frame .mv-json-row {
  padding: 10px 0;
}

.ps-feature-card__viz-frame .mv-list-row:last-child,
.ps-feature-card__viz-frame .mv-list-row--rich:last-child,
.ps-feature-card__viz-frame .mv-json-row:last-child,
.ps-feature-card__viz-frame .mv-skill-file:last-child,
.ps-feature-card__viz-frame .mv-win:last-child {
  border-bottom: none;
}

.ps-feature-card__viz-frame .mv-win {
  padding: 10px 0 12px;
}

.ps-feature-card__viz-frame .mv-win.is-hot {
  background: transparent;
  box-shadow: none;
  border-bottom-color: rgba(255, 69, 58, 0.22);
}

.ps-feature-card__viz-frame .mv-list-row b,
.ps-feature-card__viz-frame .mv-json-row b {
  font-size: 11px;
}

.ps-feature-card__viz-frame .mv-win b {
  font-size: 12px;
  line-height: 1.35;
}

.ps-feature-card__viz-frame .mv-json-row em {
  font-size: 10px;
}

/* Skills viz — skill file code (not guide steps) */
.ps-skill-doc {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ps-skill-doc__head {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ps-skill-doc__badge {
  padding: 3px 7px;
  border-radius: 3px;
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: #0a0a00;
  background: #4da3ff;
}

.ps-skill-doc__fname {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--white);
}

.ps-skill-doc__code {
  margin: 0;
  padding: 14px 14px 12px;
  border: 1px solid rgba(77, 163, 255, 0.22);
  background: transparent;
  font-size: 10px;
  line-height: 1.6;
  color: rgba(255, 254, 242, 0.62);
}

.ps-skill-doc__code code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  white-space: pre-wrap;
}

.ps-skill-doc__code .tok-k {
  color: #6eb4ff;
  font-weight: 600;
}

.ps-skill-doc__note {
  margin: 0;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(255, 254, 242, 0.38);
}

/* Inject viz — generated hooks (not guide steps) */
.ps-inject-out {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ps-inject-out__head {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ps-inject-out__badge {
  padding: 3px 7px;
  border-radius: 3px;
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: #fff;
  background: #8b5cff;
}

.ps-inject-out__fname {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--white);
}

.ps-inject-out__hooks {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ps-inject-out__hooks li {
  padding: 11px 12px;
  border: 1px solid rgba(179, 136, 255, 0.22);
  background: transparent;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -0.02em;
  color: rgba(255, 254, 242, 0.88);
}

.ps-inject-out__hooks li:first-child {
  border-color: rgba(179, 136, 255, 0.38);
  color: var(--white);
}

.ps-inject-out__note {
  margin: 0;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(255, 254, 242, 0.38);
}

.ps-feature-card .ps-pod {
  background: transparent;
  box-shadow: none;
}

.ps-feature-card .ps-pod__ico {
  background: transparent;
  border-color: rgba(255, 254, 242, 0.14);
}

.ps-feature-card .ps-pod.ps-pod--g,
.ps-feature-card .ps-pod.ps-pod--y,
.ps-feature-card .ps-pod.ps-pod--b,
.ps-feature-card .ps-pod.ps-pod--r,
.ps-feature-card .ps-pod.ps-pod--p {
  background: transparent;
}

.ps-feature-card .ps-file,
.ps-feature-card .ps-file--skills,
.ps-feature-card .ps-file--inject {
  background: transparent;
}

.ps-feature-card__viz-frame.ps-frame {
  background-image:
    linear-gradient(var(--ps-frame-tick), var(--ps-frame-tick)) 100% 0 / var(--ps-frame-tick-len) 1px no-repeat,
    linear-gradient(var(--ps-frame-tick), var(--ps-frame-tick)) 100% 0 / 1px var(--ps-frame-tick-len) no-repeat,
    linear-gradient(var(--ps-frame-tick), var(--ps-frame-tick)) 0 100% / var(--ps-frame-tick-len) 1px no-repeat,
    linear-gradient(var(--ps-frame-tick), var(--ps-frame-tick)) 0 100% / 1px var(--ps-frame-tick-len) no-repeat;
}

.ps-file__name {
  margin: 0 0 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--white);
}

/* Node-lane viz (cloud tab) */
.ps-viz-lanes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
  min-height: 200px;
}

.ps-viz-lane {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 0 10px;
  border-right: 1px solid rgba(255, 254, 242, 0.1);
}

.ps-viz-lane:first-child {
  border-left: 1px solid rgba(255, 254, 242, 0.1);
}

.ps-viz-lane span {
  margin: 14px 0 4px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: rgba(255, 254, 242, 0.42);
}

.ps-viz-nodes {
  position: relative;
  flex: 1;
  width: 100%;
  min-height: 150px;
}

.ps-viz-nodes::before {
  content: "";
  position: absolute;
  inset: 8%;
  pointer-events: none;
  opacity: 0.45;
}

.ps-feature-card--cloud .ps-viz-nodes::before {
  background:
    linear-gradient(118deg, transparent 48%, rgba(95, 224, 138, 0.55) 49%, rgba(95, 224, 138, 0.55) 51%, transparent 52%) 18% 42% / 42% 1px no-repeat,
    linear-gradient(62deg, transparent 48%, rgba(95, 224, 138, 0.45) 49%, rgba(95, 224, 138, 0.45) 51%, transparent 52%) 38% 28% / 38% 1px no-repeat,
    linear-gradient(145deg, transparent 48%, rgba(95, 224, 138, 0.4) 49%, rgba(95, 224, 138, 0.4) 51%, transparent 52%) 52% 55% / 45% 1px no-repeat,
    linear-gradient(28deg, transparent 48%, rgba(95, 224, 138, 0.35) 49%, rgba(95, 224, 138, 0.35) 51%, transparent 52%) 8% 62% / 55% 1px no-repeat;
}

.ps-viz-nodes i {
  position: absolute;
  display: block;
  border-radius: 50%;
  background: #5fe08a;
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.35);
}

.ps-viz-nodes--sm i:nth-child(1) { width: 8px; height: 8px; left: 28%; top: 46%; }
.ps-viz-nodes--sm i:nth-child(2) { width: 11px; height: 11px; right: 26%; top: 50%; }

.ps-viz-nodes--md i:nth-child(1) { width: 7px; height: 7px; left: 18%; top: 32%; }
.ps-viz-nodes--md i:nth-child(2) { width: 9px; height: 9px; left: 42%; top: 22%; }
.ps-viz-nodes--md i:nth-child(3) { width: 6px; height: 6px; right: 22%; top: 38%; }
.ps-viz-nodes--md i:nth-child(4) { width: 10px; height: 10px; left: 30%; top: 58%; }
.ps-viz-nodes--md i:nth-child(5) { width: 8px; height: 8px; right: 28%; top: 62%; }

.ps-viz-nodes--lg i:nth-child(1) { width: 6px; height: 6px; left: 12%; top: 18%; }
.ps-viz-nodes--lg i:nth-child(2) { width: 9px; height: 9px; left: 28%; top: 28%; }
.ps-viz-nodes--lg i:nth-child(3) { width: 7px; height: 7px; left: 48%; top: 14%; }
.ps-viz-nodes--lg i:nth-child(4) { width: 11px; height: 11px; right: 18%; top: 22%; }
.ps-viz-nodes--lg i:nth-child(5) { width: 8px; height: 8px; left: 16%; top: 52%; }
.ps-viz-nodes--lg i:nth-child(6) { width: 10px; height: 10px; left: 38%; top: 48%; }
.ps-viz-nodes--lg i:nth-child(7) { width: 7px; height: 7px; right: 24%; top: 44%; }
.ps-viz-nodes--lg i:nth-child(8) { width: 9px; height: 9px; right: 14%; top: 58%; }

@media (max-width: 820px) {
  .ps-feature-card {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .ps-feature-card__copy {
    padding: 28px 24px 24px;
    border-right: none;
    border-bottom: 1px solid rgba(255, 254, 242, 0.1);
  }

  .ps-feature-card__copy p {
    max-width: none;
  }

  .ps-feature-card__viz {
    padding: 20px 16px 24px;
  }

  .ps-feature-card__viz-frame {
    max-width: none;
    min-height: 200px;
  }
}

.product-showcase__panel-inner {
  display: flex;
  flex-direction: column;
}

.product-showcase__preview {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 254, 242, 0.08);
  background: #0c0c10;
}

.product-showcase__preview::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255, 254, 242, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 254, 242, 0.02) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: linear-gradient(180deg, transparent 0%, #000 25%, #000 100%);
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 25%, #000 100%);
}

.product-showcase__preview::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.55;
}

.product-showcase__preview--guide::before {
  background:
    radial-gradient(ellipse 70% 80% at 88% 18%, rgba(245, 232, 0, 0.14), transparent 55%),
    radial-gradient(ellipse 50% 60% at 12% 90%, rgba(77, 163, 255, 0.08), transparent 50%);
}

.product-showcase__preview--cloud::before {
  background:
    radial-gradient(ellipse 65% 75% at 85% 22%, rgba(52, 199, 89, 0.16), transparent 55%),
    radial-gradient(ellipse 45% 55% at 10% 85%, rgba(77, 163, 255, 0.1), transparent 50%);
}

.product-showcase__preview--skills::before {
  background:
    radial-gradient(ellipse 60% 70% at 90% 20%, rgba(77, 163, 255, 0.14), transparent 55%),
    radial-gradient(ellipse 50% 60% at 8% 88%, rgba(245, 232, 0, 0.1), transparent 50%);
}

.product-showcase__preview--inject::before {
  background:
    radial-gradient(ellipse 65% 75% at 88% 18%, rgba(179, 136, 255, 0.16), transparent 55%),
    radial-gradient(ellipse 45% 55% at 12% 90%, rgba(245, 232, 0, 0.08), transparent 50%);
}

.product-showcase__preview--pulse::before {
  background:
    radial-gradient(ellipse 60% 70% at 90% 20%, rgba(255, 69, 58, 0.12), transparent 55%),
    radial-gradient(ellipse 50% 60% at 10% 85%, rgba(77, 163, 255, 0.1), transparent 50%);
}

/* App preview — aesthetic / color-coded */
.ps-app {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  min-height: 300px;
  font-family: var(--font);
  font-size: 12px;
  line-height: 1.4;
  letter-spacing: -0.01em;
}

.ps-app__shell {
  display: grid;
  grid-template-columns: minmax(168px, 182px) minmax(0, 1fr);
  flex: 1 1 auto;
  min-height: 0;
}

.ps-app__bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 14px;
  border-bottom: 1px solid rgba(255, 254, 242, 0.06);
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.ps-app__dots {
  display: flex;
  gap: 5px;
  flex-shrink: 0;
}

.ps-app__dots i {
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 254, 242, 0.14);
}

.ps-app__dots i:nth-child(1) { background: rgba(255, 69, 58, 0.55); }
.ps-app__dots i:nth-child(2) { background: rgba(245, 232, 0, 0.45); }
.ps-app__dots i:nth-child(3) { background: rgba(52, 199, 89, 0.45); }

.ps-app__path {
  flex: 1 1 auto;
  min-width: 0;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: rgba(255, 254, 242, 0.38);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

.ps-app__bar-status {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 254, 242, 0.42);
}

.ps-app__bar-status--live {
  color: #5fe08a;
}

.ps-app__bar-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
}

.ps-app__bar-status--live .ps-app__bar-dot {
  animation: ps-pulse 1.8s ease-in-out infinite;
}

.ps-app__side {
  display: flex;
  flex-direction: column;
  padding: 16px 12px 14px;
  border-right: 1px solid rgba(255, 254, 242, 0.07);
  background: rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.ps-app--guide .ps-app__nav-item.is-active { color: var(--yellow); background: rgba(245, 232, 0, 0.1); }
.ps-app--cloud .ps-app__nav-item.is-active { color: #5fe08a; background: rgba(52, 199, 89, 0.12); }
.ps-app--skills .ps-app__nav-item.is-active { color: #6eb4ff; background: rgba(77, 163, 255, 0.12); }
.ps-app--inject .ps-app__nav-item.is-active { color: #c9a4ff; background: rgba(179, 136, 255, 0.12); }
.ps-app--pulse .ps-app__nav-item.is-active { color: #ff7b72; background: rgba(255, 69, 58, 0.12); }

.ps-app__brand {
  margin-bottom: 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: -0.025em;
}

.ps-app__cursor {
  display: inline-block;
  width: 5px;
  height: 11px;
  margin-left: 2px;
  background: var(--yellow);
  vertical-align: -1px;
  animation: ps-blink 1.2s step-end infinite;
}

@keyframes ps-blink {
  50% { opacity: 0; }
}

.ps-app__sub {
  margin: 5px 0 14px;
  font-size: 11px;
  color: rgba(255, 254, 242, 0.48);
}

.ps-app__label {
  margin: 0 0 8px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(255, 254, 242, 0.34);
}

.ps-app__nav {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.ps-app__nav-item {
  display: flex;
  align-items: flex-start;
  gap: 0;
  padding: 6px 8px;
  border-radius: 4px;
  color: rgba(255, 254, 242, 0.55);
  font-size: 10.5px;
  line-height: 1.4;
  word-break: normal;
  overflow-wrap: normal;
  transition: color 0.15s ease, background 0.15s ease;
}

.ps-nav__icon {
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  margin: 5px 7px 0 0;
  border-radius: 2px;
  background: rgba(255, 254, 242, 0.16);
}

.ps-nav__icon--y { background: var(--yellow); box-shadow: 0 0 8px rgba(245, 232, 0, 0.4); }
.ps-nav__icon--g { background: #5fe08a; box-shadow: 0 0 8px rgba(52, 199, 89, 0.35); }
.ps-nav__icon--b { background: #6eb4ff; box-shadow: 0 0 8px rgba(77, 163, 255, 0.35); }
.ps-nav__icon--p { background: #c9a4ff; box-shadow: 0 0 8px rgba(179, 136, 255, 0.35); }
.ps-nav__icon--r { background: #ff7b72; box-shadow: 0 0 8px rgba(255, 69, 58, 0.35); }

.ps-app__side-meta {
  margin: auto 0 0;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 254, 242, 0.06);
  font-size: 9.5px;
  line-height: 1.35;
  color: rgba(255, 254, 242, 0.32);
}

.ps-app__main {
  padding: 16px 20px 18px;
  background: transparent;
  background-image:
    radial-gradient(ellipse 80% 60% at 100% 0%, rgba(255, 254, 242, 0.03), transparent 55%);
}

.ps-app__main--wide {
  display: flex;
  flex-direction: column;
  gap: 0;
  min-width: 0;
  width: 100%;
}

.ps-main-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.ps-main-head .ps-app__title {
  margin: 0 0 6px;
}

.ps-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ps-meta-row li {
  display: inline-flex;
  align-items: center;
  font-size: 10px;
  font-weight: 500;
  color: rgba(255, 254, 242, 0.42);
  letter-spacing: 0.01em;
}

.ps-meta-row li:not(:last-child)::after {
  content: "·";
  margin: 0 7px;
  color: rgba(255, 254, 242, 0.22);
  font-weight: 400;
}

.ps-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
  flex-wrap: nowrap;
}

.ps-head .ps-app__title {
  margin: 0;
}

.ps-head h4 {
  margin: 0 0 6px;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--white);
}

.ps-app__title {
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--white);
}

.ps-chip {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 9px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.ps-chip__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  animation: ps-pulse 1.8s ease-in-out infinite;
}

.ps-chip--y { color: #0a0a00; background: var(--yellow); }
.ps-chip--g { color: #d6ffe3; background: rgba(52, 199, 89, 0.22); border: 1px solid rgba(52, 199, 89, 0.45); }
.ps-chip--b { color: #d6ebff; background: rgba(77, 163, 255, 0.2); border: 1px solid rgba(77, 163, 255, 0.4); }
.ps-chip--r { color: #ffe0dd; background: rgba(255, 69, 58, 0.2); border: 1px solid rgba(255, 69, 58, 0.42); }
.ps-chip--p { color: #ead9ff; background: rgba(179, 136, 255, 0.2); border: 1px solid rgba(179, 136, 255, 0.42); }

.ps-app__lead {
  margin: 0 0 14px;
  width: 100%;
  max-width: none;
  font-size: 13px;
  line-height: 1.45;
  color: rgba(255, 254, 242, 0.78);
}

.ps-app__lead em,
.ps-app__hi {
  font-style: normal;
  color: var(--white);
  font-weight: 500;
}

/* Focus column + horizontal tall pods */
.ps-focus {
  width: 100%;
  max-width: 360px;
}

.ps-app__main--wide .ps-focus:not(:has(.ps-file)) {
  max-width: none;
}

.ps-focus:has(.ps-file) {
  max-width: 272px;
}

.ps-hrow {
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: stretch;
}

.ps-pod {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
  min-height: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  gap: 0;
  padding: 16px 10px 12px;
  border-radius: 5px;
  border: 1px solid rgba(255, 254, 242, 0.1);
  background: rgba(0, 0, 0, 0.32);
  box-shadow: inset 0 1px 0 rgba(255, 254, 242, 0.05);
}

.ps-pod__ico {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  margin: 0 0 10px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 254, 242, 0.12);
  background: rgba(0, 0, 0, 0.45);
  color: rgba(255, 254, 242, 0.92);
}

.ps-pod__ico svg {
  width: 20px;
  height: 20px;
  display: block;
}

.ps-pod__stat {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  margin: 0 0 7px;
}

.ps-pod__label {
  margin: 0;
  font-size: 10px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: rgba(255, 254, 242, 0.88);
}

.ps-pod__foot {
  display: block;
  margin-top: auto;
  padding-top: 6px;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: rgba(255, 254, 242, 0.38);
}

/* Shared pod accents — Market Pulse pattern for all tabs */
.ps-pod.ps-pod--g {
  border-color: rgba(52, 199, 89, 0.28);
  background: linear-gradient(180deg, rgba(52, 199, 89, 0.12) 0%, rgba(0, 0, 0, 0.34) 100%);
}

.ps-pod.ps-pod--g .ps-pod__ico {
  color: #5fe08a;
  border-color: rgba(52, 199, 89, 0.35);
  background: rgba(52, 199, 89, 0.1);
}

.ps-pod.ps-pod--g .ps-pod__stat { color: #5fe08a; }

.ps-pod.ps-pod--y {
  border-color: rgba(245, 232, 0, 0.3);
  background: linear-gradient(180deg, rgba(245, 232, 0, 0.12) 0%, rgba(0, 0, 0, 0.34) 100%);
}

.ps-pod.ps-pod--y .ps-pod__ico {
  color: var(--yellow);
  border-color: rgba(245, 232, 0, 0.35);
  background: rgba(245, 232, 0, 0.1);
}

.ps-pod.ps-pod--y .ps-pod__stat { color: var(--yellow); }

.ps-pod.ps-pod--b {
  border-color: rgba(77, 163, 255, 0.28);
  background: linear-gradient(180deg, rgba(77, 163, 255, 0.12) 0%, rgba(0, 0, 0, 0.34) 100%);
}

.ps-pod.ps-pod--b .ps-pod__ico {
  color: #6eb4ff;
  border-color: rgba(77, 163, 255, 0.32);
  background: rgba(77, 163, 255, 0.1);
}

.ps-pod.ps-pod--b .ps-pod__stat { color: #6eb4ff; }

.ps-pod.ps-pod--r {
  border-color: rgba(255, 69, 58, 0.32);
  background: linear-gradient(180deg, rgba(255, 69, 58, 0.13) 0%, rgba(0, 0, 0, 0.34) 100%);
}

.ps-pod.ps-pod--r .ps-pod__ico {
  color: #ff7b72;
  border-color: rgba(255, 69, 58, 0.35);
  background: rgba(255, 69, 58, 0.1);
}

.ps-pod.ps-pod--r .ps-pod__stat { color: #ff7b72; }

.ps-pod.ps-pod--p {
  border-color: rgba(179, 136, 255, 0.3);
  background: linear-gradient(180deg, rgba(179, 136, 255, 0.14) 0%, rgba(0, 0, 0, 0.34) 100%);
}

.ps-pod.ps-pod--p .ps-pod__ico {
  color: #c9a4ff;
  border-color: rgba(179, 136, 255, 0.34);
  background: rgba(179, 136, 255, 0.1);
}

.ps-pod.ps-pod--p .ps-pod__stat { color: #c9a4ff; }

.ps-pod.is-selected {
  box-shadow:
    0 10px 32px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 254, 242, 0.08);
  transform: translateY(-1px);
}

.ps-pod.is-selected .ps-pod__ico {
  color: #fff;
}

.ps-pod.ps-pod--g.is-selected .ps-pod__ico {
  background: rgba(52, 199, 89, 0.55);
  border-color: rgba(95, 224, 138, 0.65);
}

.ps-pod.ps-pod--y.is-selected .ps-pod__ico {
  background: rgba(245, 232, 0, 0.55);
  border-color: rgba(245, 232, 0, 0.65);
  animation: ps-pulse 1.8s ease-in-out infinite;
}

.ps-pod.ps-pod--y.is-selected .ps-pod__foot {
  color: var(--yellow);
}

.ps-pod.ps-pod--b.is-selected .ps-pod__ico {
  background: rgba(77, 163, 255, 0.55);
  border-color: rgba(110, 180, 255, 0.65);
}

.ps-pod.ps-pod--r.is-selected .ps-pod__ico {
  background: rgba(255, 69, 58, 0.5);
  border-color: rgba(255, 123, 114, 0.65);
}

.ps-pod.ps-pod--p.is-selected .ps-pod__ico {
  background: rgba(179, 136, 255, 0.55);
  border-color: rgba(201, 164, 255, 0.65);
}

.ps-run__meta {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 6px;
  font-size: 9.5px;
  font-weight: 500;
  color: rgba(255, 254, 242, 0.42);
}

/* Guide file preview — pack card */
.ps-file {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 220px;
  padding: 14px 14px 12px;
  border-radius: 6px;
  border: 1px solid rgba(245, 232, 0, 0.22);
  background: linear-gradient(165deg, rgba(245, 232, 0, 0.07) 0%, rgba(255, 254, 242, 0.03) 100%);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.35);
}

.ps-steps {
  margin: 0 0 12px;
  padding: 0;
  list-style: none;
  flex: 1 1 auto;
}

.ps-steps li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 4px 0;
  font-size: 10.5px;
  line-height: 1.35;
  color: rgba(255, 254, 242, 0.38);
}

.ps-step__n {
  flex-shrink: 0;
  width: 18px;
  font-size: 9px;
  font-weight: 700;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  color: rgba(255, 254, 242, 0.22);
}

.ps-steps li.is-done {
  color: rgba(255, 254, 242, 0.58);
}

.ps-steps li.is-done .ps-step__n {
  color: #5fe08a;
}

.ps-steps li.is-active {
  color: var(--white);
  font-weight: 500;
}

.ps-steps li.is-active .ps-step__n {
  color: var(--yellow);
}

.ps-file__badges {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
  margin-bottom: 10px;
}

.ps-file__badges .ps-pill {
  min-width: 0;
  padding: 6px 5px;
  font-size: 9.5px;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ps-file__foot {
  margin: 0;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 254, 242, 0.07);
  font-size: 9.5px;
  line-height: 1.4;
  color: rgba(255, 254, 242, 0.34);
}

.ps-file--skills {
  border-color: rgba(77, 163, 255, 0.28);
  background: linear-gradient(165deg, rgba(77, 163, 255, 0.08) 0%, rgba(255, 254, 242, 0.03) 100%);
}

.ps-file--skills .ps-steps li.is-active .ps-step__n {
  color: #6eb4ff;
}

.ps-file--inject {
  border-color: rgba(179, 136, 255, 0.3);
  background: linear-gradient(165deg, rgba(179, 136, 255, 0.1) 0%, rgba(255, 254, 242, 0.03) 100%);
}

.ps-file--inject .ps-steps li.is-active .ps-step__n {
  color: #c9a4ff;
}

.ps-run {
  margin-bottom: 10px;
}

.ps-run__top {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 6px;
  font-size: 10px;
  font-weight: 500;
  color: rgba(255, 254, 242, 0.45);
}

.ps-progress {
  height: 4px;
  border-radius: 3px;
  background: rgba(255, 254, 242, 0.08);
  overflow: hidden;
}

.ps-progress__fill {
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #34c759, #5fe08a);
  box-shadow: 0 0 12px rgba(52, 199, 89, 0.45);
}

/* Activity log */
.ps-log {
  margin-top: 10px;
  padding: 8px 10px;
  border-radius: 4px;
  border: 1px solid rgba(255, 254, 242, 0.06);
  background: rgba(0, 0, 0, 0.35);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

.ps-log__line {
  margin: 0;
  padding: 2px 0;
  font-size: 9.5px;
  line-height: 1.45;
  color: rgba(255, 254, 242, 0.38);
}

.ps-log__line time {
  display: inline-block;
  min-width: 32px;
  margin-right: 8px;
  color: rgba(52, 199, 89, 0.75);
}

/* Skill / inject layouts */
.ps-skill-layout,
.ps-inject-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(108px, 128px);
  gap: 10px;
  align-items: stretch;
}

.ps-code-preview {
  margin: 0;
  padding: 10px 10px;
  border-radius: 5px;
  border: 1px solid rgba(77, 163, 255, 0.22);
  background: rgba(0, 0, 0, 0.45);
  overflow: hidden;
  font-size: 8.5px;
  line-height: 1.55;
  color: rgba(255, 254, 242, 0.55);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.ps-code-preview code {
  display: block;
  white-space: pre-wrap;
  word-break: break-word;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

.ps-code-preview .tok-k { color: #6eb4ff; }
.ps-code-preview .tok-c { color: rgba(255, 254, 242, 0.28); }

.ps-code-preview--inject {
  border-color: rgba(179, 136, 255, 0.28);
}

.ps-code-preview--inject .tok-k { color: #c9a4ff; }

.ps-pill {
  flex: 0 0 auto;
  padding: 7px 10px;
  border-radius: 4px;
  font-size: 10.5px;
  font-weight: 600;
  line-height: 1.25;
  white-space: normal;
}

.ps-pill--y { color: #0a0a00; background: var(--yellow); }
.ps-pill--r { color: #fff; background: #ff453a; }
.ps-pill--b { color: #0a0a00; background: #4da3ff; }

.ps-surface__mark {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--yellow);
}

/* Card grid — full width */
.ps-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  width: 100%;
}

.ps-cards--cloud,
.ps-cards--skills,
.ps-cards--inject,
.ps-cards--pulse {
  grid-template-columns: 1fr;
  gap: 6px;
}

.ps-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
  padding: 10px 12px;
  border-radius: 5px;
  border: 1px solid rgba(255, 254, 242, 0.08);
  background: rgba(255, 254, 242, 0.04);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.ps-card--row {
  flex-direction: row;
  align-items: center;
  gap: 10px;
}

.ps-card--row .ps-card__text {
  flex: 1 1 auto;
  min-width: 0;
}

.ps-card__body {
  flex: 1 1 auto;
  min-width: 0;
}

.ps-card__sub {
  margin: 3px 0 0;
  font-size: 10px;
  line-height: 1.35;
  color: rgba(255, 254, 242, 0.42);
}

.ps-card__time,
.ps-card__source {
  flex-shrink: 0;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: rgba(255, 254, 242, 0.32);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

.ps-card--deep {
  padding: 9px 11px;
  box-shadow: 0 1px 0 rgba(255, 254, 242, 0.04) inset;
}

.ps-trend {
  font-size: 9.5px;
  font-weight: 600;
  color: rgba(255, 254, 242, 0.45);
}

.ps-trend--up {
  color: #5fe08a;
}

.ps-card--row .ps-card__meta {
  flex-shrink: 0;
  margin-left: auto;
}

.ps-card--row .ps-card__stat {
  flex-shrink: 0;
  min-width: 52px;
}

.ps-card__icon {
  flex-shrink: 0;
  width: 16px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
}

.ps-card__tag {
  flex-shrink: 0;
  padding: 2px 6px;
  border-radius: 3px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.ps-card__text {
  margin: 0;
  font-size: 11px;
  line-height: 1.35;
  color: rgba(255, 254, 242, 0.88);
}

.ps-card__text strong {
  color: var(--white);
  font-weight: 600;
}

.ps-card__meta {
  font-size: 10px;
  font-weight: 600;
  color: rgba(255, 254, 242, 0.42);
  white-space: nowrap;
}

.ps-card__stat {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  white-space: nowrap;
}

.ps-card--y {
  border-color: rgba(245, 232, 0, 0.28);
  background: linear-gradient(160deg, rgba(245, 232, 0, 0.12), rgba(255, 254, 242, 0.03));
}
.ps-card--y .ps-card__icon,
.ps-card--y .ps-card__stat { color: var(--yellow); }
.ps-card--y .ps-card__tag { color: #0a0a00; background: var(--yellow); }

.ps-card--g {
  border-color: rgba(52, 199, 89, 0.3);
  background: linear-gradient(160deg, rgba(52, 199, 89, 0.12), rgba(255, 254, 242, 0.03));
}
.ps-card--g .ps-card__icon,
.ps-card--g .ps-card__stat { color: #5fe08a; }
.ps-card--g .ps-card__tag { color: #0a0a00; background: #45d483; }

.ps-card--b {
  border-color: rgba(77, 163, 255, 0.3);
  background: linear-gradient(160deg, rgba(77, 163, 255, 0.12), rgba(255, 254, 242, 0.03));
}
.ps-card--b .ps-card__icon,
.ps-card--b .ps-card__stat { color: #6eb4ff; }
.ps-card--b .ps-card__tag { color: #0a0a00; background: #4da3ff; }

.ps-card--r {
  border-color: rgba(255, 69, 58, 0.32);
  background: linear-gradient(160deg, rgba(255, 69, 58, 0.12), rgba(255, 254, 242, 0.03));
}
.ps-card--r .ps-card__icon,
.ps-card--r .ps-card__stat { color: #ff7b72; }
.ps-card--r .ps-card__tag { color: #fff; background: #ff453a; }

.ps-card--p {
  border-color: rgba(179, 136, 255, 0.32);
  background: linear-gradient(160deg, rgba(179, 136, 255, 0.12), rgba(255, 254, 242, 0.03));
}
.ps-card--p .ps-card__tag { color: #fff; background: #8b5cff; }

.ps-card.is-selected {
  box-shadow: 0 0 0 1px rgba(255, 254, 242, 0.14), 0 12px 32px rgba(0, 0, 0, 0.35);
  transform: translateY(-1px);
}

.ps-card.is-live .ps-card__icon {
  color: var(--yellow);
  animation: ps-pulse 1.8s ease-in-out infinite;
}

@keyframes ps-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.ps-cards--skills .ps-card.is-selected .ps-card__meta,
.ps-cards--inject .ps-card.is-selected .ps-card__meta {
  color: #5fe08a;
}

.product-showcase__footer {
  padding: 22px 24px 24px;
}

.product-showcase__footer h3 {
  margin: 0 0 6px;
  font-size: clamp(20px, 2.2vw, 24px);
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.product-showcase__tagline {
  margin: 0;
  max-width: none;
  font-size: 14px;
  line-height: 1.5;
  color: var(--mute);
}

.product-showcase__points-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #2a2a2a;
}

.product-showcase__point-icon {
  display: inline-flex;
  color: var(--yellow);
}

.product-showcase__point-icon svg {
  width: 18px;
  height: 18px;
}

.product-showcase__point strong {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--yellow);
  margin: 10px 0 6px;
}

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

@media (max-width: 860px) {
  .product-showcase__points-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .product-showcase__preview {
    min-height: auto;
  }

  .ps-app {
    min-height: auto;
  }

  .ps-app__shell {
    grid-template-columns: 1fr;
  }

  .ps-app__bar {
    padding: 6px 12px;
  }

  .ps-app__path {
    font-size: 9px;
  }

  .ps-app__side {
    border-right: none;
    border-bottom: 1px solid rgba(255, 254, 242, 0.06);
    padding: 14px 12px;
  }

  .ps-app__side-meta {
    display: none;
  }

  .ps-app__nav {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 6px;
  }

  .ps-app__nav-item {
    flex: 0 1 auto;
    border-radius: 4px;
  }

  .ps-nav__icon {
    display: none;
  }

  .ps-app__lead {
    white-space: normal;
  }

  .ps-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .product-showcase__footer {
    padding: 16px;
  }
}

.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% - 40px, 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 — left-aligned like math section */
.comparison-stage {
  max-width: 100%;
  text-align: left;
}

.comparison-stage > .label {
  display: inline-flex;
  justify-content: flex-start;
  margin-bottom: 8px;
}

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

.comparison-stage > .section-lead {
  margin: 0 0 0;
  font-size: 16px;
  max-width: none;
  text-align: left;
}

.comparison-stage--who {
  max-width: none;
  margin: 0;
}

.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: 100%;
  padding: 12px 16px;
  font-size: 11px;
  white-space: nowrap;
  box-sizing: border-box;
}

.comparison-stage--options .comparison-table--options th:last-child,
.comparison-stage--options .comparison-table--options td:last-child {
  width: 24%;
  min-width: 196px;
}

.comparison-stage--options .btn-table {
  padding: 12px 18px;
  font-size: 11px;
  letter-spacing: -0.01em;
}

.comparison-stage--options .vs-cta-cell {
  padding: 14px 12px !important;
}

.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: visible;
  background: transparent;
}

.comparison-table-wrap:not(.ps-frame) {
  border: none;
}

/* Section tables — thin border + corner brackets (matches What you get cards) */
.comparison-table-wrap.ps-frame {
  position: relative;
  padding: 0;
  overflow: visible;
  border: 1px solid var(--ps-frame-line);
  background: transparent;
}

.comparison-table-wrap.ps-frame::before,
.comparison-table-wrap.ps-frame::after {
  content: "";
  display: block;
}

.comparison-stage--who .comparison-table-wrap,
.comparison-stage--options .comparison-table-wrap,
.math-copy .comparison-table-wrap {
  overflow: visible;
}

.comparison-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  color: var(--white);
}

.comparison-table--who,
.comparison-table--options,
.comparison-table--vs {
  min-width: 0;
}

.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;
}

body.checkout-success-open {
  overflow: hidden;
}

.checkout-success {
  position: fixed;
  inset: 0;
  z-index: 10010;
  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-success.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.checkout-success__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.checkout-success__panel {
  position: relative;
  z-index: 1;
  width: min(100%, 420px);
  padding: 36px 32px 28px;
  background:
    radial-gradient(120% 80% at 50% -20%, rgba(69, 212, 131, 0.12) 0%, transparent 55%),
    linear-gradient(180deg, #22222c 0%, #1a1a22 100%);
  border: 1px solid rgba(69, 212, 131, 0.22);
  border-radius: 4px;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04) inset,
    0 24px 64px rgba(0, 0, 0, 0.55),
    0 0 80px rgba(69, 212, 131, 0.08);
  text-align: center;
  transform: translateY(20px) scale(0.96);
  transition: transform 0.34s cubic-bezier(0.22, 1, 0.36, 1);
}

.checkout-success.is-open .checkout-success__panel {
  transform: translateY(0) scale(1);
}

.checkout-success__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: linear-gradient(180deg, #4ade80 0%, #22c55e 100%);
  color: #fff;
  box-shadow:
    0 0 0 4px rgba(34, 197, 94, 0.15),
    0 8px 24px rgba(34, 197, 94, 0.28);
}

.checkout-success__badge svg {
  width: 26px;
  height: 26px;
}

.checkout-success__eyebrow {
  margin: 0;
  font-family: var(--display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #4ade80;
}

.checkout-success__panel h2 {
  margin: 10px 0 0;
  font-family: var(--display);
  font-size: clamp(26px, 4.5vw, 32px);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.08;
  color: #fffef2;
}

.checkout-success__thanks {
  margin: 18px 0 0;
  font-family: var(--display);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: -0.02em;
  color: rgba(255, 254, 242, 0.92);
}

.checkout-success__access {
  margin: 12px 0 0;
  font-family: var(--display);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -0.01em;
  color: rgba(255, 254, 242, 0.55);
}

.checkout-success__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 28px;
}

.checkout-success__whop {
  width: 100%;
  justify-content: center;
  min-height: 48px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.02em;
  box-shadow: 0 8px 28px rgba(245, 232, 0, 0.18);
}

.checkout-success__dismiss {
  width: 100%;
  height: 40px;
  border: 0;
  border-radius: 2px;
  background: transparent;
  font-family: var(--display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: rgba(255, 254, 242, 0.4);
  cursor: pointer;
  transition: color 0.15s ease;
}

.checkout-success__dismiss:hover {
  color: rgba(255, 254, 242, 0.72);
}

@media (max-width: 480px) {
  .checkout-success__panel {
    padding: 32px 24px 24px;
  }

  .checkout-success__thanks {
    font-size: 15px;
  }

  .checkout-success__access {
    font-size: 13.5px;
  }
}

.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: 16px;
  padding-top: 0;
}

.checkout-slider__viewport {
  position: relative;
  width: 100%;
  max-width: 340px;
  overflow: hidden;
  min-height: 148px;
}

.checkout-proof-slide {
  display: none !important;
  width: 100%;
  min-height: 0;
  padding-bottom: 12px;
}

.checkout-proof-slide.is-active {
  display: flex !important;
}

.checkout-proof-slide.hero-proof {
  padding: 12px;
  border-radius: 10px;
}

.checkout-proof-slide .hero-proof-top {
  padding-right: 54px;
}

.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;
  top: 16px;
  right: 12px;
  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-summary {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 20px 18px 18px;
  border: 1px solid rgba(10, 10, 0, 0.08);
  border-radius: 4px;
  background: linear-gradient(180deg, #fffef0 0%, #f5e800 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.45),
    0 8px 24px rgba(245, 232, 0, 0.14);
}

.checkout-summary__brand {
  margin: 0;
  font-family: var(--display);
  font-size: 21px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: #0a0a00;
}

.checkout-summary__name {
  margin: 5px 0 0;
  font-family: var(--display);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: rgba(10, 10, 0, 0.62);
}

.checkout-summary__price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(10, 10, 0, 0.1);
}

.checkout-summary__amount {
  font-family: var(--display);
  font-size: 32px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.045em;
  color: #0a0a00;
}

.checkout-summary__period {
  font-family: var(--display);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: rgba(10, 10, 0, 0.58);
}

.checkout-included {
  margin-top: 20px;
}

.checkout-included__label {
  margin: 0 0 12px;
  font-family: var(--display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 254, 242, 0.38);
}

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

.checkout-benefits li {
  position: relative;
  padding: 0 0 0 22px;
  font-family: var(--display);
  font-size: 13.5px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: rgba(255, 254, 242, 0.82);
}

.checkout-benefits li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.1em;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  color: var(--yellow);
  background: none;
  width: auto;
  height: auto;
}

.x-connect--checkout {
  width: 100%;
  margin-top: auto;
  padding: 12px 14px;
}

.x-connect--checkout .x-connect__label {
  font-size: 13px;
}

.checkout-modal__trust.hero-rating {
  margin-top: 16px;
}

@media (max-width: 780px) {
  .checkout-modal {
    padding: 0;
    align-items: stretch;
  }

  .checkout-modal__panel {
    width: 100%;
    max-width: 100%;
    height: 100%;
    max-height: 100dvh;
    border-radius: 0;
    border-left: 0;
    border-right: 0;
    transform: none;
  }

  .checkout-modal.is-open .checkout-modal__panel {
    transform: none;
  }

  .checkout-modal__body {
    flex-direction: column;
    width: 100%;
    flex: 1;
    min-height: 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .checkout-modal__benefits {
    width: 100%;
    flex: 0 0 auto;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 254, 242, 0.06);
    padding: 20px 18px 24px;
    overflow: visible;
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .checkout-summary__brand {
    font-size: 19px;
  }

  .checkout-summary__name {
    font-size: 13px;
  }

  .checkout-summary__amount {
    font-size: 28px;
  }

  .checkout-benefits li {
    white-space: normal;
    font-size: 12.5px;
  }

  .checkout-included {
    margin-top: 14px;
  }

  .checkout-benefits {
    gap: 6px;
  }

  .checkout-slider {
    margin-top: 22px;
    margin-bottom: 0;
    padding-top: 0;
    flex-shrink: 0;
  }

  .checkout-slider__viewport {
    max-width: 100%;
    min-height: 168px;
  }

  .checkout-proof-slide.hero-proof {
    padding-bottom: 4px;
  }

  .checkout-proof-slide .hero-proof-quote {
    margin-bottom: 0;
    padding-bottom: 0;
  }

  .x-connect--checkout {
    margin-top: 20px;
    margin-bottom: 0;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 254, 242, 0.08);
    flex-shrink: 0;
    position: relative;
    z-index: 1;
  }

  .checkout-modal__checkout {
    width: 100%;
    flex: 0 0 auto;
    padding: 18px 20px 24px 20px;
  }

  .checkout-modal__close {
    position: fixed;
    top: max(12px, env(safe-area-inset-top, 12px));
    right: max(14px, env(safe-area-inset-right, 14px));
    z-index: 10002;
    width: 44px;
    height: 44px;
    background: rgba(29, 29, 37, 0.96);
    border: 1px solid rgba(255, 254, 242, 0.16);
    border-radius: var(--radius-sm);
    color: var(--white);
  }

  .checkout-modal__close svg {
    width: 18px;
    height: 18px;
  }
}

@media (max-width: 520px) {
  .checkout-summary__amount {
    font-size: 22px;
  }

  .checkout-benefits li {
    font-size: 12px;
  }

  .checkout-slider__arrow svg {
    width: 16px;
    height: 16px;
  }
}

/* ——— Mobile polish (desktop unchanged) ——— */
@media (max-width: 640px) {
  .section {
    padding: clamp(40px, 10vw, 52px) 0;
  }

  .section.tight {
    padding: clamp(32px, 8vw, 40px) 0;
  }

  /* Hero */
  .hero {
    padding: 40px 0 36px;
  }

  .hero-pro-copy {
    width: 100%;
    align-items: center;
    padding: 0 2px;
  }

  .hero-pro-copy h1 {
    font-size: clamp(27px, 7.4vw, 36px);
    line-height: 1.1;
    letter-spacing: -0.032em;
    text-wrap: balance;
    max-width: 100%;
  }

  .hero-pro .hero-sub {
    width: 100%;
    max-width: 100%;
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 0;
  }

  .hero-sub-line {
    display: block;
    min-height: 0;
    padding: 0;
    font-size: 12.5px;
    line-height: 1.35;
    text-align: center;
  }

  .hero-rating {
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-top: 18px;
  }

  .hero-cta-stack {
    width: 100%;
    max-width: 340px;
    margin-top: 20px;
  }

  .btn-hero {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    padding: 15px 20px;
  }

  .btn-hero-main {
    font-size: 15px;
  }

  .btn-hero-price {
    font-size: 12px;
  }

  .hero-proof-row {
    display: flex;
    flex-direction: column;
    overflow-x: visible;
    scroll-snap-type: none;
    gap: 12px;
    width: 100%;
    margin-top: 28px;
    margin-left: 0;
    padding-right: 0;
    padding-bottom: 0;
  }

  .hero-proof {
    flex: none;
    width: 100%;
    min-height: 0;
    padding: 16px 16px 18px;
  }

  .hero-proof-quote {
    margin-top: 14px;
    padding-top: 14px;
    font-size: 13px;
    line-height: 1.5;
  }

  /* Real issue — hide statue on mobile */
  .split-framed--issue .split-art {
    display: none;
  }

  .split-framed--issue .split-copy {
    width: 100%;
  }

  .split-framed--issue .split-copy .display-title {
    font-size: clamp(24px, 6.5vw, 32px);
  }

  .split-framed--issue .prose-stack--issue p {
    font-size: 14px;
  }

  /* Delta cards */
  .delta-card,
  .delta-card--hero {
    padding: 12px;
  }

  .delta-card:not(.delta-card--hero) .delta-viz {
    min-height: 150px;
  }

  .delta-card--hero .delta-viz {
    min-height: 220px;
  }

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

  .delta-copy h3 {
    font-size: 16px;
  }

  .delta-copy p,
  .delta-card--hero .delta-copy p {
    font-size: 13px;
    line-height: 1.48;
  }

  /* Proof marquee */
  .proof-copy h2 {
    white-space: normal;
  }

  .t-marquee--dual .t-card {
    width: min(78vw, 300px);
    min-height: 160px;
  }

  .t-marquee--dual .t-card--short {
    width: min(68vw, 240px);
  }

  /* Math VS table */
  .math-copy {
    overflow: visible;
  }

  .math-copy > h2 {
    font-size: clamp(22px, 6vw, 28px);
  }

  .math-copy .comparison-table-wrap {
    overflow: visible;
  }

  .comparison-table--vs th,
  .comparison-table--vs td,
  .math-copy .comparison-table--vs th,
  .math-copy .comparison-table--vs td {
    white-space: normal;
    overflow-wrap: anywhere;
    font-size: 11px;
    padding: 7px 6px;
    line-height: 1.35;
  }

  .math-copy .comparison-table--vs .btn-table {
    white-space: normal;
    font-size: 10px;
    padding: 8px 6px;
    line-height: 1.25;
    hyphens: auto;
  }

  .comparison-table--vs th:first-child,
  .comparison-table--vs td:first-child {
    width: 24%;
  }

  .comparison-table--vs th:nth-child(2),
  .comparison-table--vs td:nth-child(2),
  .comparison-table--vs th:nth-child(3),
  .comparison-table--vs td:nth-child(3) {
    width: 38%;
  }

  /* Section headers — left-aligned on mobile */
  .bento-head,
  .section-head-center,
  .comparison-stage,
  .proof-head,
  .proof-copy {
    text-align: left;
    align-items: flex-start;
  }

  .bento-head {
    display: block;
    max-width: none;
    margin: 0 0 28px;
  }

  .bento-head .label,
  .section-head-center > .label,
  .section-head-center .label,
  .comparison-stage > .label,
  .math-copy > .label,
  .proof-copy .label {
    justify-content: flex-start;
  }

  .bento-head h2,
  .bento-head-sub,
  .bento-head p,
  .section-head-center h2,
  .section-head-center > .section-lead,
  .section-head-center > p:not(.label),
  .comparison-stage > h2,
  .comparison-stage > .section-lead,
  .proof-copy h2,
  .proof-copy .section-lead {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
    white-space: normal;
  }

  .math-copy {
    text-align: left;
  }

  .math-copy > h2,
  .math-copy > .section-lead {
    text-align: left;
  }

  /* Options comparison table — fit viewport, no horizontal scroll */
  .comparison-stage--options {
    padding: 0;
  }

  .comparison-stage--options h2 {
    font-size: clamp(20px, 5.5vw, 26px);
  }

  .comparison-stage--options .section-lead {
    font-size: 13px;
    line-height: 1.45;
    max-width: none;
  }

  .comparison-block--options .comparison-table-wrap,
  .comparison-stage--options .comparison-table-wrap {
    overflow: visible;
    border-radius: 0;
    margin-top: 16px;
  }

  .comparison-stage--options .comparison-table--options {
    min-width: 0 !important;
    width: 100%;
    max-width: 100%;
    table-layout: fixed;
  }

  .comparison-stage--options .comparison-table--options th:first-child,
  .comparison-stage--options .comparison-table--options td:first-child {
    width: 22%;
  }

  .comparison-stage--options .comparison-table--options th:nth-child(2),
  .comparison-stage--options .comparison-table--options td:nth-child(2),
  .comparison-stage--options .comparison-table--options th:nth-child(3),
  .comparison-stage--options .comparison-table--options td:nth-child(3),
  .comparison-stage--options .comparison-table--options th:nth-child(4),
  .comparison-stage--options .comparison-table--options td:nth-child(4),
  .comparison-stage--options .comparison-table--options th:nth-child(5),
  .comparison-stage--options .comparison-table--options td:nth-child(5) {
    width: 19.5%;
  }

  .comparison-stage--options .comparison-table--options th:last-child,
  .comparison-stage--options .comparison-table--options td:last-child {
    min-width: 0;
  }

  .comparison-table--options th,
  .comparison-table--options td,
  .comparison-stage--options .comparison-table--options th,
  .comparison-stage--options .comparison-table--options td {
    white-space: normal;
    overflow-wrap: break-word;
    font-size: 7.5px;
    padding: 6px 3px;
    line-height: 1.2;
  }

  .comparison-stage--options .comparison-table--options th {
    font-size: 6.5px;
    letter-spacing: 0.03em;
    padding: 6px 3px;
    line-height: 1.15;
  }

  .comparison-table--options td:first-child,
  .comparison-stage--options .comparison-table--options td:first-child {
    font-size: 7.5px;
    font-weight: 600;
  }

  .comparison-stage--options .comparison-table--options td.comparison-no:not(:empty),
  .comparison-stage--options .comparison-table--options td.comparison-yes:not(:empty) {
    font-size: 7px;
  }

  .comparison-stage--options .btn-table {
    white-space: normal;
    font-size: 6.5px;
    padding: 5px 3px;
    line-height: 1.2;
  }

  .comparison-stage--options .vs-cta-cell {
    padding: 6px 3px !important;
  }

  /* Section breathing room */
  .comparison-table-wrap,
  .math-copy .comparison-table-wrap {
    border-radius: var(--radius);
  }

  .close-yes {
    border-radius: var(--radius);
  }

  .faq-ledger {
    border-radius: var(--radius);
  }

  .delta-grid {
    gap: 12px;
  }

  /* Who / options comparison sections */
  .comparison-stage > h2 {
    font-size: clamp(22px, 6vw, 28px);
    line-height: 1.12;
    margin-bottom: 14px;
  }

  .comparison-stage > .section-lead {
    font-size: 14px;
    line-height: 1.5;
    white-space: normal;
  }

  .comparison-stage--who,
  .comparison-stage--options {
    width: 100%;
    min-width: 0;
  }

  .comparison-table-wrap--who,
  .comparison-table-wrap--options,
  .math-copy .comparison-table-wrap {
    margin-top: 18px;
    max-width: 100%;
  }

  .comparison-table-wrap.ps-frame {
    max-width: 100%;
    box-sizing: border-box;
  }

  /* Who table */
  .comparison-table--who th,
  .comparison-table--who td {
    padding: 10px 8px;
    font-size: 12px;
    line-height: 1.35;
  }

  /* FAQ */
  .faq-hold {
    margin-top: 52px;
    width: 100%;
  }

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

  .faq-ledger {
    padding: 18px 14px 14px;
  }

  .faq-ledger > h2 {
    font-size: clamp(20px, 5.5vw, 26px);
  }

  .faq-q {
    font-size: 13.5px;
    padding: 12px 0;
    gap: 10px;
  }

  .faq-a {
    font-size: 13px;
    line-height: 1.55;
  }

  /* Close band */
  .close-yes-mark {
    display: none;
  }

  .close-yes-inner {
    padding: 28px 20px;
    max-width: none;
  }

  .close-title {
    font-size: clamp(26px, 7vw, 34px);
  }

  .close-lead {
    font-size: 15px;
  }

  .x-connect {
    width: 100%;
    max-width: 100%;
  }

  .x-connect__label {
    font-size: 13px;
    line-height: 1.35;
  }

  /* Bento / solution header */
  .bento-head h2 {
    font-size: clamp(22px, 6vw, 28px);
  }

  .bento-head p {
    font-size: 14px;
  }

  .checkout-modal__benefits {
    padding-top: max(56px, calc(env(safe-area-inset-top, 0px) + 52px));
  }

  .checkout-proof-slide .hero-proof-quote {
    white-space: normal;
  }
}

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

  .hero-pro-copy h1 {
    font-size: clamp(25px, 6.8vw, 30px);
    line-height: 1.12;
  }

  .hero-sub-line {
    font-size: 12px;
    line-height: 1.32;
  }

  .hero-cta-stack {
    max-width: 100%;
  }

  .comparison-stage--options .comparison-table--options th,
  .comparison-stage--options .comparison-table--options td {
    font-size: 7px;
    padding: 5px 2px;
  }

  .comparison-stage--options .comparison-table--options th {
    font-size: 6px;
  }

  .comparison-stage--options .btn-table {
    font-size: 6px;
    padding: 4px 2px;
  }

  .math-copy .comparison-table--vs .btn-table {
    font-size: 9px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .t-track {
    animation: none;
  }
}
