/* ============================================================
   Versorix.com site styles
   ============================================================ */

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--vx-black);
  color: var(--vx-fg);
  font-family: var(--vx-font-sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

::selection { background: var(--vx-yellow); color: var(--vx-black); }

/* =========== Accent swap (Tweaks) =========== */
body[data-accent="lime"] { --vx-yellow: #B8FF00; --vx-yellow-600: #98D400; --vx-yellow-700: #7AAA00; --vx-accent: #B8FF00; }
body[data-accent="orange"] { --vx-yellow: #FF7A1A; --vx-yellow-600: #D45E00; --vx-yellow-700: #AA4A00; --vx-accent: #FF7A1A; }

/* =========== Grid density =========== */
body[data-grid="subtle"] { --vx-grid-dark-line: rgba(255,255,255,0.035); }
body[data-grid="visible"] { --vx-grid-dark-line: rgba(255,255,255,0.09); }
body[data-grid="off"] .vx-grid-bg { background-image: none; }

/* =========== Theme =========== */
body[data-theme="cream"] {
  --vx-bg: var(--vx-cream);
  --vx-bg-elevated: #FFFFFF;
  --vx-fg: var(--vx-black);
  --vx-fg-muted: #4A4640;
  --vx-border: rgba(17,17,16,0.10);
  --vx-border-strong: rgba(17,17,16,0.16);
  --vx-grid-dark-line: rgba(17,17,16,0.06);
  background: var(--vx-cream);
  color: var(--vx-black);
}
body[data-theme="cream"] .is-dark-always { color: var(--vx-white); }

/* ---------- Layout primitives ---------- */
.wrap { max-width: 1280px; margin: 0 auto; padding: 0 40px; }
.wrap-narrow { max-width: 960px; margin: 0 auto; padding: 0 40px; }
@media (max-width: 720px) { .wrap, .wrap-narrow { padding: 0 20px; } }

section { position: relative; }
.sec-pad { padding: 120px 0; }
.sec-pad-sm { padding: 80px 0; }
@media (max-width: 720px) {
  .sec-pad { padding: 80px 0; }
  .sec-pad-sm { padding: 56px 0; }
}

.bg-black { background: var(--vx-black); }
.bg-charcoal { background: var(--vx-charcoal); }
.bg-cream { background: var(--vx-cream); color: var(--vx-black); }
.bg-yellow { background: var(--vx-yellow); color: var(--vx-black); }

/* ---------- Grid background overlay ---------- */
.grid-bg {
  position: relative;
  background-image:
    linear-gradient(to right, var(--vx-grid-dark-line) 1px, transparent 1px),
    linear-gradient(to bottom, var(--vx-grid-dark-line) 1px, transparent 1px);
  background-size: 32px 32px;
}
.grid-bg-major {
  background-image:
    linear-gradient(to right, var(--vx-grid-dark-line) 1px, transparent 1px),
    linear-gradient(to bottom, var(--vx-grid-dark-line) 1px, transparent 1px),
    linear-gradient(to right, rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 32px 32px, 32px 32px, 128px 128px, 128px 128px;
}

/* ---------- Type helpers ---------- */
.display {
  font-family: var(--vx-font-display);
  font-weight: 700;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 0.98;
}
.display-mega { font-size: clamp(56px, 9vw, 152px); }
.display-xl   { font-size: clamp(44px, 6vw, 96px); }
.display-lg   { font-size: clamp(36px, 4.8vw, 72px); }
.display-md   { font-size: clamp(28px, 3.2vw, 44px); }

.h-bold { font-family: var(--vx-font-sans); font-weight: 900; letter-spacing: -0.02em; line-height: 1.05; }
.h-bold-lg { font-size: clamp(36px, 4.6vw, 68px); }
.h-bold-md { font-size: clamp(28px, 3vw, 44px); }

.eyebrow {
  font-family: var(--vx-font-sans);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--vx-yellow);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow img { display: block; flex-shrink: 0; }
.eyebrow.no-bar::before { display: none; }

.mono { font-family: var(--vx-font-mono); letter-spacing: -0.01em; }
.muted { color: var(--vx-fg-muted); }
.subtle { color: var(--vx-stone); }

.lede {
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.55;
  color: var(--vx-fg-muted);
  max-width: 62ch;
}

.strike { color: var(--vx-yellow); }
.ghost { color: var(--vx-stone); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.01em;
  line-height: 1;
  transition: transform 100ms ease-out, background 150ms ease-out, box-shadow 150ms ease-out, color 150ms ease-out, border-color 150ms ease-out;
  white-space: nowrap;
  will-change: transform;
}
.btn:active { transform: scale(0.98); }
.btn-primary {
  background: var(--vx-yellow);
  color: var(--vx-black);
  box-shadow: 0 1px 0 rgba(255,255,255,0.3) inset, 0 6px 22px rgba(255,225,0,0.15);
}
.btn-primary:hover { background: var(--vx-yellow-600, var(--vx-yellow)); }
.btn-ghost {
  background: transparent;
  color: var(--vx-yellow);
  border: 1px solid var(--vx-yellow);
}
.btn-ghost:hover { background: rgba(255,225,0,0.08); }
.btn-dark {
  background: var(--vx-black);
  color: var(--vx-white);
  border: 1px solid rgba(255,255,255,0.14);
}
.btn-dark:hover { background: #222; }
.btn-lg { padding: 20px 36px; font-size: 17px; }
.btn-xl { padding: 24px 48px; font-size: 19px; border-radius: 12px; }
.btn-sm { padding: 10px 18px; font-size: 14px; border-radius: 8px; }
.btn-arrow::after { content: "→"; font-family: var(--vx-font-mono); }

/* ---------- Nav (floating pill + sticky) ---------- */
.nav-slot { position: fixed; top: 16px; left: 0; right: 0; z-index: 100; pointer-events: none; transition: top 250ms ease-out; }
.nav-slot.stuck { top: 0; }

.nav {
  pointer-events: auto;
  margin: 0 auto;
  max-width: 1160px;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 10px 10px 10px 20px;
  background: var(--vx-cream);
  color: var(--vx-black);
  border-radius: 999px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.25);
  border: 1px solid rgba(17,17,16,0.08);
  transition: border-radius 250ms ease-out, max-width 250ms ease-out, padding 250ms ease-out, background 250ms ease-out;
}
.nav-slot.stuck .nav {
  border-radius: 0;
  max-width: 100%;
  padding: 12px 40px;
  box-shadow: 0 1px 0 rgba(0,0,0,0.3), 0 10px 30px rgba(0,0,0,0.35);
  background: rgba(17,17,16,0.94);
  color: var(--vx-white);
  border-color: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--vx-font-display);
  font-style: italic;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.nav-logo img { height: 22px; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}
.nav-links a {
  font-family: var(--vx-font-display);
  font-weight: 700;
  font-style: italic;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px 14px;
  border-radius: 999px;
  transition: background 150ms;
  white-space: nowrap;
}
.nav-links a:hover { background: rgba(17,17,16,0.06); }
.nav-slot.stuck .nav-links a:hover { background: rgba(255,255,255,0.08); }
.nav-links a.active { color: var(--vx-yellow-800, #7B6C00); }
.nav-slot.stuck .nav-links a.active { color: var(--vx-yellow); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--vx-yellow);
  color: var(--vx-black);
  padding: 12px 22px;
  border-radius: 999px;
  font-family: var(--vx-font-display);
  font-weight: 700;
  font-style: italic;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 150ms;
}
.nav-cta:hover { background: var(--vx-yellow-600); }

.nav-mobile-toggle { display: none; margin-left: auto; width: 40px; height: 40px; border-radius: 999px; align-items: center; justify-content: center; }
.nav-mobile-toggle span { width: 18px; height: 2px; background: currentColor; box-shadow: 0 -5px 0 currentColor, 0 5px 0 currentColor; }

@media (max-width: 960px) {
  .nav-links { display: none; }
  .nav-mobile-toggle { display: inline-flex; }
}
@media (max-width: 1180px) and (min-width: 961px) {
  .nav-links { gap: 2px; }
  .nav-links a { padding: 10px 10px; font-size: 12px; }
}

/* Mobile drawer */
.mobile-drawer {
  position: fixed; inset: 0; background: rgba(17,17,16,0.96); z-index: 200;
  display: none; padding: 24px; flex-direction: column; gap: 8px;
  color: var(--vx-white);
}
.mobile-drawer.open { display: flex; }
.mobile-drawer a { font-family: var(--vx-font-display); font-style: italic; font-weight: 700; font-size: 22px; text-transform: uppercase; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
.mobile-drawer .close { position: absolute; top: 18px; right: 18px; width: 44px; height: 44px; border-radius: 999px; background: rgba(255,255,255,0.08); color: white; font-size: 22px; display: inline-flex; align-items: center; justify-content: center; }

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 160px 0 120px;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero { padding: 140px 0 80px; }
}

.hero-eyebrow { margin-bottom: 32px; }

.hero-h1 {
  font-family: var(--vx-font-sans);
  font-weight: 900;
  font-size: clamp(44px, 6.4vw, 88px);
  letter-spacing: -0.035em;
  line-height: 0.98;
  margin: 0 0 28px;
  text-wrap: balance;
}
.hero-h1 em {
  font-style: normal;
  color: var(--vx-yellow);
  position: relative;
}
.hero-h1 em::after {
  content: "";
  position: absolute;
  left: -2%; right: -2%; bottom: 0.08em; height: 0.16em;
  background: var(--vx-yellow);
  opacity: 0.15;
  z-index: -1;
}

.hero-sub { margin-bottom: 36px; max-width: 58ch; }

.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; margin-bottom: 18px; }
.hero-micro { font-size: 13px; color: var(--vx-stone); margin-bottom: 48px; }

.hero-trust {
  display: flex; flex-wrap: wrap; gap: 28px;
  padding: 20px 0;
  border-top: 1px solid var(--vx-border);
  border-bottom: 1px solid var(--vx-border);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--vx-stone);
  font-weight: 600;
}
.hero-trust span { display: inline-flex; align-items: center; gap: 10px; }
.hero-trust .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--vx-yellow); }

/* Hero visual (photo placeholder) */
.hero-photo {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 14px;
  overflow: hidden;
  background: #0a0a09;
  border: 1px solid var(--vx-border);
}
.hero-photo.has-image {
  background: var(--vx-yellow);
}
.hero-photo .subject-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  display: block;
}
.hero-photo.has-image .noise { opacity: 0.35; mix-blend-mode: multiply; }

/* ---- Perspective marquee (trusted-by strip) ---- */
.pm-wrap {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
  margin-top: 80px;
}
.pm-stage {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  transform-style: preserve-3d;
  will-change: transform;
}
.pm-track {
  display: flex;
  align-items: center;
  white-space: nowrap;
  will-change: transform;
}
.pm-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  height: 100%;
}
.pm-item img {
  display: block;
  width: auto;
  max-width: none;
  object-fit: contain;
  opacity: 0.92;
  transition: opacity 200ms, transform 200ms;
  -webkit-user-drag: none;
}
.pm-item img:hover { opacity: 1; transform: translateY(-2px); }
.pm-fade {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
}

body[data-theme="cream"] .pm-item img { opacity: 0.92; }

@media (max-width: 820px) {
  .pm-wrap { height: 180px; margin-top: 56px; }
}

/* Hero marquee label */
.hero-marquee-wrap {
  margin-top: 64px;
  position: relative;
}
.hero-marquee-label {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--vx-font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--vx-stone);
  margin-bottom: 24px;
}
.hero-marquee-label .line {
  flex: 1;
  height: 1px;
  background: var(--vx-border);
}
.hero-marquee-label .text {
  white-space: nowrap;
}
.hero-slot {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---- Layered isometric text ---- */
.layered-text {
  font-family: var(--vx-font-sans);
  font-weight: 900;
  letter-spacing: -2px;
  text-transform: uppercase;
  color: var(--vx-yellow);
  cursor: pointer;
  user-select: none;
  -webkit-font-smoothing: antialiased;
  padding: 24px;
  width: 100%;
}
.layered-text ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.layered-text li {
  overflow: hidden;
  position: relative;
  transform-origin: center center;
  height: var(--lh);
}
.layered-text li p {
  margin: 0;
  padding: 0 15px;
  white-space: nowrap;
  height: var(--lh);
  line-height: calc(var(--lh) - 6px);
  transform: translateY(0);
  transition: transform 760ms cubic-bezier(.2,.8,.2,1);
  transition-delay: calc(var(--i, 0) * 80ms);
  will-change: transform;
}
.layered-text.play li p {
  transform: translateY(calc(-1 * var(--lh)));
}

@media (max-width: 820px) {
  .layered-text { --lh: 38px; padding: 12px; transform: scale(0.7); transform-origin: center; }
  .layered-text li { height: 38px; }
  .layered-text li p { height: 38px; line-height: 32px; }
}
@media (max-width: 480px) {
  .layered-text { transform: scale(0.55); }
}

@media (prefers-reduced-motion: reduce) {
  .layered-text li p { transition: none; }
}
.hero-photo .noise, .photo-frame .noise {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 30% 20%, rgba(255,225,0,0.07), transparent 50%),
    radial-gradient(circle at 75% 80%, rgba(58,82,112,0.12), transparent 55%),
    url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHdpZHRoPScyMDAnIGhlaWdodD0nMjAwJz48ZmlsdGVyIGlkPSduJz48ZmVUdXJidWxlbmNlIGJhc2VGcmVxdWVuY3k9JzAuOScgbnVtT2N0YXZlcz0nMicgc2VlZD0nMicvPjxmZUNvbG9yTWF0cml4IHZhbHVlcz0nMCAwIDAgMCAwLjYgMCAwIDAgMCAwLjU1IDAgMCAwIDAgMC40NSAwIDAgMCAwLjI1IDAnLz48L2ZpbHRlcj48cmVjdCB3aWR0aD0nMjAwJyBoZWlnaHQ9JzIwMCcgZmlsdGVyPSd1cmwoJTIzbiknLz48L3N2Zz4=");
  mix-blend-mode: screen;
  opacity: 0.9;
  pointer-events: none;
}
.hero-photo .subject {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 78%;
  height: 82%;
  background:
    linear-gradient(180deg, transparent 0%, transparent 55%, rgba(0,0,0,0.5) 90%),
    linear-gradient(180deg, #4a4038 0%, #2a231d 40%, #16110c 100%);
  clip-path: polygon(18% 0, 82% 0, 95% 25%, 100% 100%, 0 100%, 5% 25%);
}
.hero-photo .subject::before {
  content: "";
  position: absolute;
  left: 30%; top: 3%; width: 40%; height: 30%;
  background: radial-gradient(ellipse at 50% 40%, #8a7a6a 0%, #5a4a3a 60%, transparent 75%);
  border-radius: 50%;
  filter: blur(0.5px);
}
.hero-photo .subject::after {
  content: ""; position: absolute;
  left: 34%; top: 0; width: 32%; height: 14%;
  background: #0d0b09;
  border-radius: 50% 50% 10% 10%;
}
.hero-photo-chrome {
  position: absolute;
  inset: 12px;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.hero-photo-chrome .tl, .hero-photo-chrome .tr, .hero-photo-chrome .bl, .hero-photo-chrome .br {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--vx-font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.75);
  text-transform: uppercase;
}
.hero-photo-chrome .row { display: flex; justify-content: space-between; }
.hero-photo-chrome .rec { color: var(--vx-yellow); display: inline-flex; align-items: center; gap: 6px; }
.hero-photo-chrome .rec::before { content: ""; width: 8px; height: 8px; background: var(--vx-red); border-radius: 50%; animation: blink 1.4s infinite; box-shadow: 0 0 10px rgba(217,68,68,0.6); }
@keyframes blink { 0%, 50% { opacity: 1; } 51%, 100% { opacity: 0.25; } }
.hero-photo-chrome .corner {
  position: absolute; width: 22px; height: 22px; border: 1.5px solid rgba(255,255,255,0.55);
}
.hero-photo-chrome .corner.tl { top: 0; left: 0; border-right: 0; border-bottom: 0; }
.hero-photo-chrome .corner.tr { top: 0; right: 0; border-left: 0; border-bottom: 0; left: auto; }
.hero-photo-chrome .corner.bl { bottom: 0; left: 0; top: auto; border-right: 0; border-top: 0; }
.hero-photo-chrome .corner.br { bottom: 0; right: 0; left: auto; top: auto; border-left: 0; border-top: 0; }

/* Hero KPI chrome row below photo */
.hero-chips {
  position: absolute;
  right: -12px;
  bottom: -18px;
  display: flex;
  gap: 8px;
}
.chip {
  background: var(--vx-yellow);
  color: var(--vx-black);
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 10px 30px rgba(255,225,0,0.3);
}
.chip.dark { background: var(--vx-black); color: var(--vx-white); border: 1px solid var(--vx-border); box-shadow: none; }

/* ============ Yellow ribbon ticker ============ */
.ribbon {
  position: relative;
  overflow: hidden;
  background: var(--vx-yellow);
  color: var(--vx-black);
  padding: 14px 0;
  border-block: 1px solid rgba(0,0,0,0.15);
}
.ribbon.skew { transform: rotate(-1deg); margin: -10px -2%; }
.ribbon-track {
  display: flex;
  white-space: nowrap;
  animation: ribbon 38s linear infinite;
  font-family: var(--vx-font-display);
  font-style: italic;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  will-change: transform;
}
.ribbon-set {
  display: flex;
  align-items: center;
  gap: 40px;
  padding-right: 40px;       /* gap continues across the seam */
  flex-shrink: 0;
}
.ribbon-track .bullet { color: var(--vx-black); opacity: 0.55; }
@keyframes ribbon { from { transform: translate3d(0,0,0); } to { transform: translate3d(-50%,0,0); } }
@media (max-width: 720px) {
  .ribbon-track {
    animation-duration: 10s;
    font-size: 15px;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform-style: preserve-3d;
  }
  .ribbon-set { gap: 28px; padding-right: 28px; }
}

/* ============ Section headers ============ */
.section-head { margin-bottom: 56px; max-width: 900px; }
.section-head .eyebrow { margin-bottom: 20px; }
.section-head h2 { margin: 0 0 20px; }
.section-head p { margin: 0; }

/* ============ Pain cards ============ */
.pain-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
@media (max-width: 820px) { .pain-grid { grid-template-columns: 1fr; } }
.pain-card {
  background: var(--vx-black);
  border: 1px solid var(--vx-border);
  border-left: 4px solid var(--vx-red);
  border-radius: 12px;
  padding: 32px;
  transition: transform 200ms ease-out, border-color 200ms;
}
body[data-theme="cream"] .pain-card { background: #fff; border-color: rgba(17,17,16,0.10); }
.pain-card:hover { transform: translateY(-3px); }
.pain-card .label {
  font-family: var(--vx-font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--vx-yellow);
  margin-bottom: 14px;
}
.pain-card .quote {
  font-size: 22px;
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.015em;
  margin: 0 0 14px;
}
.pain-card p { margin: 0; color: var(--vx-fg-muted); line-height: 1.55; }
.pain-card.amber { border-left-color: var(--vx-amber); }
.pain-card.blue { border-left-color: var(--vx-blue); }
.pain-card.grey { border-left-color: var(--vx-stone); }

/* ============ Trade selector ============ */
.trade-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
@media (max-width: 1060px) { .trade-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px) { .trade-grid { grid-template-columns: repeat(2, 1fr); } }
.trade-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 22px;
  background: var(--vx-charcoal);
  border: 1px solid var(--vx-border);
  border-radius: 14px;
  transition: transform 180ms, border-color 180ms, background 180ms;
  position: relative;
  overflow: hidden;
}
body[data-theme="cream"] .trade-card { background: #fff; border-color: rgba(17,17,16,0.10); }
.trade-card:hover { transform: translateY(-2px); border-color: rgba(255,225,0,0.45); }
.trade-card:hover .trade-icon { background: var(--vx-yellow); color: var(--vx-black); }
.trade-icon {
  width: 44px; height: 44px;
  border-radius: 8px;
  background: var(--vx-black);
  border: 1px solid var(--vx-border);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--vx-yellow);
  transition: all 180ms;
}
.trade-card .t-name { font-family: var(--vx-font-sans); font-weight: 800; font-size: 18px; letter-spacing: -0.01em; }
.trade-card .t-sub { font-size: 13px; color: var(--vx-fg-muted); }
.trade-card .arrow {
  position: absolute; top: 22px; right: 22px;
  width: 28px; height: 28px; border-radius: 6px;
  background: var(--vx-yellow); color: var(--vx-black);
  display: inline-flex; align-items: center; justify-content: center;
  opacity: 0; transform: translate(-4px, 4px);
  transition: all 180ms;
}
.trade-card:hover .arrow { opacity: 1; transform: none; }

/* ============ Services pillar cards ============ */
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 960px) { .pillars { grid-template-columns: 1fr; } }
.pillar {
  background: var(--vx-black);
  border: 1px solid var(--vx-border);
  border-top: 4px solid var(--vx-yellow);
  border-radius: 14px;
  padding: 36px;
  display: flex; flex-direction: column;
  transition: transform 200ms, border-color 200ms;
}
body[data-theme="cream"] .pillar { background: #fff; }
.pillar:hover { transform: translateY(-4px); }
.pillar.amber { border-top-color: var(--vx-amber); }
.pillar.blue { border-top-color: var(--vx-blue); }
.pillar .num { font-family: var(--vx-font-mono); font-size: 12px; color: var(--vx-yellow); letter-spacing: 0.14em; margin-bottom: 14px; }
.pillar.amber .num { color: var(--vx-amber); }
.pillar.blue .num { color: #8aa4c2; }
.pillar h3 {
  font-family: var(--vx-font-display);
  font-style: italic;
  font-weight: 700;
  font-size: 30px;
  letter-spacing: 0;
  text-transform: uppercase;
  margin: 0 0 6px;
}
.pillar .tag { font-size: 17px; color: var(--vx-yellow); font-weight: 700; margin-bottom: 18px; }
.pillar.amber .tag { color: var(--vx-amber); }
.pillar.blue .tag { color: #8aa4c2; }
.pillar p { color: var(--vx-fg-muted); line-height: 1.6; margin: 0 0 24px; }
.pillar ul { list-style: none; padding: 0; margin: 0 0 24px; display: flex; flex-direction: column; gap: 10px; }
.pillar li { font-size: 15px; line-height: 1.45; padding-left: 22px; position: relative; }
.pillar li::before {
  content: "→"; position: absolute; left: 0; top: 0;
  color: var(--vx-yellow); font-family: var(--vx-font-mono);
}
.pillar.amber li::before { color: var(--vx-amber); }
.pillar.blue li::before { color: #8aa4c2; }
.pillar .learn {
  margin-top: auto;
  font-family: var(--vx-font-mono);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--vx-yellow);
  display: inline-flex; gap: 8px;
  padding-top: 18px;
  border-top: 1px solid var(--vx-border);
}

/* ============ Method phases ============ */
.method-phases { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; position: relative; }
@media (max-width: 900px) { .method-phases { grid-template-columns: 1fr; } }
.phase {
  background: var(--vx-charcoal);
  border: 1px solid var(--vx-border);
  border-radius: 14px;
  padding: 36px;
  position: relative;
  overflow: hidden;
}
body[data-theme="cream"] .phase { background: #fff; }
.phase .phase-num {
  font-family: var(--vx-font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--vx-yellow);
  margin-bottom: 12px;
}
.phase h3 {
  font-family: var(--vx-font-display);
  font-style: italic;
  text-transform: uppercase;
  font-weight: 700;
  font-size: clamp(32px, 4vw, 48px);
  margin: 0 0 10px;
  letter-spacing: -0.01em;
}
.phase .outcome {
  color: var(--vx-yellow);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 18px;
}
.phase p { color: var(--vx-fg-muted); line-height: 1.55; margin: 0; }
.phase .watermark {
  position: absolute;
  top: -30px; right: -20px;
  font-family: var(--vx-font-display);
  font-style: italic;
  font-weight: 700;
  font-size: 220px;
  letter-spacing: -0.03em;
  color: rgba(255,225,0,0.05);
  pointer-events: none;
}

/* ============ Offer section ============ */
.offer-frame {
  background: var(--vx-charcoal);
  border: 1px solid rgba(255,225,0,0.25);
  border-radius: 24px;
  padding: 72px 56px;
  position: relative;
  overflow: hidden;
}
body[data-theme="cream"] .offer-frame { background: #fff; }
.offer-frame::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, transparent, var(--vx-yellow), transparent);
}
@media (max-width: 720px) { .offer-frame { padding: 40px 24px; } }

.offer-steps { display: grid; grid-template-columns: 1fr; gap: 0; margin: 48px 0; }
.offer-step {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 32px;
  padding: 32px 0;
  border-bottom: 1px solid var(--vx-border);
}
.offer-step:last-child { border-bottom: 0; }
@media (max-width: 720px) { .offer-step { grid-template-columns: 1fr; gap: 12px; padding: 24px 0; } }
.offer-step .num {
  font-family: var(--vx-font-mono);
  font-size: 48px;
  color: var(--vx-yellow);
  line-height: 1;
  letter-spacing: -0.04em;
}
.offer-step h4 {
  font-family: var(--vx-font-sans);
  font-weight: 800;
  font-size: 26px;
  letter-spacing: -0.02em;
  margin: 0 0 10px;
}
.offer-step p { color: var(--vx-fg-muted); margin: 0; line-height: 1.6; max-width: 60ch; }

.why-free {
  background: rgba(255,225,0,0.05);
  border-left: 4px solid var(--vx-yellow);
  border-radius: 12px;
  padding: 32px;
  margin: 32px 0;
}
.why-free .q { font-weight: 800; font-size: 19px; margin: 0 0 12px; }
.why-free p { color: var(--vx-fg-muted); line-height: 1.6; }

.offer-quote {
  font-family: var(--vx-font-display);
  font-weight: 700;
  font-style: italic;
  font-size: clamp(28px, 3.5vw, 48px);
  text-transform: uppercase;
  color: var(--vx-yellow);
  text-align: center;
  margin: 32px 0;
  letter-spacing: -0.01em;
  line-height: 1.1;
}

/* ============ About/Founder block ============ */
.founder { display: grid; grid-template-columns: 0.8fr 1fr; gap: 64px; align-items: center; }
@media (max-width: 900px) { .founder { grid-template-columns: 1fr; gap: 40px; } }
.photo-frame {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 14px;
  overflow: hidden;
  background: #141210;
  border: 1px solid var(--vx-border);
}
.photo-frame .subject {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 35%, #4a3f36 0%, #2a221b 50%, #15110c 100%);
}
.photo-frame .subject::before {
  content: ""; position: absolute;
  left: 25%; top: 15%; width: 50%; height: 45%;
  background: radial-gradient(ellipse at 50% 45%, #8a7864 0%, #4a3d2f 60%, transparent 75%);
  border-radius: 50%;
}
.photo-frame .subject::after {
  content: ""; position: absolute;
  left: 28%; top: 12%; width: 44%; height: 20%;
  background: #0a0806;
  border-radius: 50% 50% 15% 15%;
}

.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 32px; }
@media (max-width: 720px) { .stats-row { grid-template-columns: repeat(2, 1fr); } }
.stat-cell {
  background: var(--vx-charcoal);
  border: 1px solid var(--vx-border);
  border-radius: 12px;
  padding: 22px;
}
body[data-theme="cream"] .stat-cell { background: #fff; }
.stat-cell .n {
  font-family: var(--vx-font-mono);
  font-size: 32px;
  font-weight: 700;
  color: var(--vx-yellow);
  line-height: 1;
  letter-spacing: -0.03em;
}
.stat-cell .l {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--vx-stone);
  margin-top: 8px;
}

/* ============ Pricing ============ */
.tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }
@media (max-width: 960px) { .tiers { grid-template-columns: 1fr; } }
.tier {
  background: var(--vx-charcoal);
  border: 1px solid var(--vx-border);
  border-radius: 18px;
  padding: 40px 32px;
  display: flex; flex-direction: column;
  position: relative;
  transition: transform 200ms, border-color 200ms, box-shadow 200ms;
}
body[data-theme="cream"] .tier { background: #fff; }
.tier:hover { transform: translateY(-4px); border-color: rgba(255,225,0,0.3); }
.tier.feat {
  border: 2px solid var(--vx-yellow);
  box-shadow: 0 20px 60px rgba(255,225,0,0.1);
  transform: scale(1.02);
}
@media (max-width: 960px) { .tier.feat { transform: none; } }
.tier .badge {
  position: absolute;
  top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--vx-yellow);
  color: var(--vx-black);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.tier .t-label { font-family: var(--vx-font-mono); font-size: 11px; letter-spacing: 0.14em; color: var(--vx-stone); text-transform: uppercase; margin-bottom: 12px; }
.tier .t-name { font-family: var(--vx-font-display); font-style: italic; font-weight: 700; text-transform: uppercase; font-size: 22px; margin: 0 0 18px; letter-spacing: -0.01em; }
.tier .t-price { font-family: var(--vx-font-mono); font-size: 42px; font-weight: 700; color: var(--vx-yellow); line-height: 1; letter-spacing: -0.03em; margin-bottom: 4px; }
.tier .t-price-sub { font-size: 13px; color: var(--vx-stone); margin-bottom: 22px; }
.tier ul { list-style: none; padding: 0; margin: 0 0 28px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.tier li { font-size: 14px; line-height: 1.5; padding-left: 22px; position: relative; color: var(--vx-fg-muted); }
.tier li::before { content: "→"; position: absolute; left: 0; color: var(--vx-yellow); font-family: var(--vx-font-mono); }
.tier .t-cta { margin-top: auto; }

/* ============ FAQ ============ */
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: var(--vx-charcoal);
  border: 1px solid var(--vx-border);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 200ms;
}
body[data-theme="cream"] .faq-item { background: #fff; }
.faq-item[open] { border-color: rgba(255,225,0,0.3); }
.faq-item summary {
  list-style: none;
  padding: 24px 28px;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.01em;
  cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-family: var(--vx-font-mono);
  font-size: 26px; font-weight: 400;
  color: var(--vx-yellow);
  transition: transform 200ms;
  flex: none;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item .answer {
  padding: 0 28px 28px;
  color: var(--vx-fg-muted);
  line-height: 1.65;
  font-size: 16px;
}

/* ============ Footer (minimal) ============ */
.footer-band { background: var(--vx-black); color: var(--vx-cream); border-top: 1px solid rgba(255,255,255,0.06); }
.footer-min {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  padding: 72px 0 40px;
  align-items: start;
}
@media (max-width: 720px) { .footer-min { grid-template-columns: 1fr; gap: 40px; } }
.footer-brand .brand-row {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.footer-brand .brand-row strong {
  font-family: var(--vx-font-display);
  font-style: italic;
  letter-spacing: 0.04em;
  font-size: 18px;
}
.footer-brand p { color: var(--vx-stone); line-height: 1.6; margin: 16px 0 20px; max-width: 38ch; font-size: 14px; }
.footer-brand .contact { font-size: 13px; color: var(--vx-stone); display: flex; flex-direction: column; gap: 6px; }
.footer-brand .contact a { color: var(--vx-cream); }
.footer-links {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 48px;
  justify-self: end;
}
@media (max-width: 820px) { .footer-links { grid-template-columns: repeat(2, 1fr); gap: 36px; } }
@media (max-width: 720px) { .footer-links { justify-self: start; gap: 32px; } }
.footer-links h5 { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--vx-stone); margin: 0 0 14px; font-weight: 700; }
.footer-links ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; font-size: 14px; }
.footer-links li a { color: var(--vx-cream); opacity: 0.85; transition: opacity 150ms, color 150ms; }
.footer-links li a:hover { opacity: 1; color: var(--vx-yellow); }

/* Footer socials */
.footer-socials li a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.footer-socials li a svg { flex-shrink: 0; }

/* About — personal socials */
.personal-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}
.personal-socials a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border: 1px solid var(--vx-border);
  border-radius: 999px;
  font-family: var(--vx-font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--vx-fg);
  text-transform: lowercase;
  transition: border-color 180ms, color 180ms, transform 180ms, background 180ms;
  background: rgba(255,255,255,0.02);
}
.personal-socials a:hover {
  border-color: var(--vx-yellow);
  color: var(--vx-yellow);
  transform: translateY(-2px);
  background: rgba(255,225,0,0.04);
}
.personal-socials a svg { flex-shrink: 0; }
body[data-theme="cream"] .personal-socials a { background: rgba(0,0,0,0.02); }
.footer-bottom {
  padding: 24px 0 40px;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 12px;
  color: var(--vx-stone);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-signature {
  height: 10px;
  background: var(--vx-yellow);
}

/* ============ Generic cards / comparison / bullets ============ */
.compare { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 720px) { .compare { grid-template-columns: 1fr; } }
.col-card {
  background: var(--vx-charcoal);
  border: 1px solid var(--vx-border);
  border-radius: 14px;
  padding: 32px;
}
body[data-theme="cream"] .col-card { background: #fff; }
.col-card h4 { font-size: 22px; font-weight: 800; margin: 0 0 18px; letter-spacing: -0.015em; }
.col-card .lbl {
  font-family: var(--vx-font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--vx-stone);
  margin-bottom: 8px;
}
.col-card .lbl.yel { color: var(--vx-yellow); }
.col-card p { color: var(--vx-fg-muted); margin: 0 0 14px; line-height: 1.6; }

/* ============ Tweaks panel ============ */
.tweaks-panel {
  position: fixed;
  right: 20px; bottom: 20px;
  background: rgba(17,17,16,0.96);
  color: var(--vx-white);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 14px;
  padding: 20px;
  width: 280px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  z-index: 300;
  backdrop-filter: blur(10px);
  font-family: var(--vx-font-sans);
  display: none;
}
.tweaks-panel.show { display: block; }
.tweaks-panel h6 {
  margin: 0 0 14px;
  font-family: var(--vx-font-display);
  font-style: italic;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--vx-yellow);
}
.tweaks-panel .row { margin-bottom: 14px; }
.tweaks-panel .row:last-child { margin-bottom: 0; }
.tweaks-panel label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--vx-stone);
  margin-bottom: 6px;
}
.tweaks-panel .opts { display: flex; gap: 4px; background: rgba(255,255,255,0.05); padding: 3px; border-radius: 8px; }
.tweaks-panel .opts button {
  flex: 1;
  padding: 7px 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--vx-cream);
  border-radius: 6px;
  transition: background 150ms;
}
.tweaks-panel .opts button.active { background: var(--vx-yellow); color: var(--vx-black); }
.tweaks-panel .opts button:hover:not(.active) { background: rgba(255,255,255,0.08); }

/* ============ KPI timeline for method ============ */
.kpi-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
@media (max-width: 720px) { .kpi-grid { grid-template-columns: repeat(2, 1fr); } }
.kpi-cell {
  background: var(--vx-black);
  border: 1px solid var(--vx-border);
  border-left: 3px solid var(--vx-yellow);
  border-radius: 10px;
  padding: 22px;
}
.kpi-cell .k { font-family: var(--vx-font-mono); font-size: 12px; color: var(--vx-stone); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 8px; }
.kpi-cell .v { font-family: var(--vx-font-mono); font-size: 24px; color: var(--vx-yellow); font-weight: 700; letter-spacing: -0.02em; }

/* ============ Final big CTA ============ */
.final-cta { text-align: center; position: relative; }
.final-cta-strip {
  width: 80px;
  height: 6px;
  background: var(--vx-yellow);
  margin: 0 auto 36px;
}
.final-cta h2 {
  font-family: var(--vx-font-sans);
  font-weight: 900;
  font-size: clamp(36px, 5vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin: 0 0 24px;
  text-wrap: balance;
  max-width: 22ch;
  margin-left: auto;
  margin-right: auto;
}
.final-cta h2 em { font-style: normal; color: var(--vx-yellow); }
.final-cta p { max-width: 56ch; margin: 0 auto 40px; color: var(--vx-fg-muted); font-size: 18px; line-height: 1.6; }

/* ============ Sound familiar? (sticky-title pain scroll) ============ */
.pain-scroll {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
.pain-scroll-title {
  position: sticky;
  top: 30vh;
  text-align: center;
  z-index: 1;
  pointer-events: none;
  margin-bottom: -8vh;
}
.pain-scroll-title h2 {
  font-family: var(--vx-font-sans);
  font-weight: 900;
  font-size: clamp(40px, 6vw, 84px);
  letter-spacing: -0.03em;
  line-height: 1;
  margin: 0;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  text-wrap: balance;
}
.pain-scroll-cards {
  display: flex;
  flex-direction: column;
  gap: 28vh;
  padding: 24vh 0;
  position: relative;
  z-index: 2;
}
.pain-line {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}
.pain-line.left  { justify-items: start; }
.pain-line.right { justify-items: end; }
.pain-line.center { grid-template-columns: 1fr; justify-items: center; }
.pain-line.left  > .pain-bubble { grid-column: 1; }
.pain-line.right > .pain-bubble { grid-column: 2; }
.pain-bubble {
  background: var(--vx-charcoal);
  border: 1px solid var(--vx-border);
  border-left: 4px solid var(--vx-yellow);
  border-radius: 14px;
  padding: 28px 32px;
  max-width: 28ch;
  font-family: var(--vx-font-sans);
  font-weight: 800;
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.18;
  letter-spacing: -0.015em;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
body[data-theme="cream"] .pain-bubble { background: #fff; border-color: rgba(17,17,16,0.12); }
.pain-line:nth-child(2) .pain-bubble { border-left-color: var(--vx-amber); }
.pain-line:nth-child(4) .pain-bubble { border-left-color: var(--vx-blue); }
.pain-line:nth-child(5) .pain-bubble { border-left-color: var(--vx-green); }

@media (max-width: 720px) {
  .pain-scroll-title { position: relative; top: auto; margin-bottom: 32px; }
  .pain-scroll-cards { gap: 32px; padding: 0; }
  .pain-line, .pain-line.left, .pain-line.right, .pain-line.center { grid-template-columns: 1fr; justify-items: stretch; }
  .pain-line > .pain-bubble { grid-column: 1; max-width: none; }
}

/* ============ Step stack (Discovery / Build / Launch) ============ */
.step-stack {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  position: relative;
}
.step-card {
  background: var(--vx-charcoal);
  border: 1px solid var(--vx-border);
  border-radius: 18px;
  padding: 56px;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: center;
  position: sticky;
  top: 100px;
}
body[data-theme="cream"] .step-card { background: #fff; }
.step-card:nth-child(1) { top: 100px; }
.step-card:nth-child(2) { top: 140px; }
.step-card:nth-child(3) { top: 180px; }
@media (max-width: 820px) {
  .step-card { grid-template-columns: 1fr; padding: 36px; position: relative; top: auto !important; gap: 28px; }
}
.step-fold {
  position: absolute;
  top: 0; right: 0;
  width: 130px;
  padding: 14px 18px 22px;
  color: var(--vx-black);
  font-family: var(--vx-font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: right;
  font-weight: 700;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 22px 100%, 0 calc(100% - 22px));
}
.step-fold .small { display: block; font-size: 10px; opacity: 0.7; margin-bottom: 2px; }
.step-fold .big { font-size: 18px; letter-spacing: -0.01em; }
.step-card .step-body h3 {
  font-family: var(--vx-font-display);
  font-style: italic;
  text-transform: uppercase;
  font-weight: 700;
  font-size: clamp(40px, 4.5vw, 64px);
  margin: 0 0 18px;
  letter-spacing: -0.01em;
  line-height: 0.98;
}
.step-card .step-body p {
  color: var(--vx-fg-muted);
  font-size: 17px;
  line-height: 1.6;
  margin: 0;
  max-width: 38ch;
}
.step-stat {
  border-left: 4px solid currentColor;
  padding-left: 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.step-stat .n {
  font-family: var(--vx-font-mono);
  font-size: clamp(56px, 6.5vw, 96px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
}
.step-stat .l {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--vx-stone);
}

/* ============ Mechanism (3 horizontal cards) ============ */
.mech-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 900px) { .mech-grid { grid-template-columns: 1fr; } }
.mech-card {
  background: var(--vx-charcoal);
  border: 1px solid var(--vx-border);
  border-top: 4px solid var(--vx-yellow);
  border-radius: 14px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
body[data-theme="cream"] .mech-card { background: #fff; }
.mech-card.amber { border-top-color: var(--vx-amber); }
.mech-card.blue  { border-top-color: var(--vx-blue); }
.mech-card .mech-num {
  font-family: var(--vx-font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--vx-yellow);
}
.mech-card.amber .mech-num { color: var(--vx-amber); }
.mech-card.blue  .mech-num { color: #8aa4c2; }
.mech-card h3 {
  font-family: var(--vx-font-display);
  font-style: italic;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 32px;
  margin: 0;
  letter-spacing: -0.005em;
}
.mech-card p { color: var(--vx-fg-muted); line-height: 1.6; margin: 0; }

/* ============ Commitment comparison (rotated cards) ============ */
.commit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 56px;
}
@media (max-width: 820px) { .commit-grid { grid-template-columns: 1fr; gap: 20px; } }
.commit-card {
  background: var(--vx-charcoal);
  border: 1px solid var(--vx-border);
  border-radius: 16px;
  padding: 40px 32px;
  transition: transform 200ms;
}
body[data-theme="cream"] .commit-card { background: #fff; }
.commit-card.left  { transform: rotate(-1.5deg); }
.commit-card.right { transform: rotate(1.5deg); border-color: rgba(255,225,0,0.35); }
.commit-card.right { background: linear-gradient(180deg, rgba(255,225,0,0.04), transparent 50%), var(--vx-charcoal); }
body[data-theme="cream"] .commit-card.right { background: linear-gradient(180deg, rgba(255,225,0,0.08), transparent 50%), #fff; }
.commit-card:hover { transform: rotate(0deg) translateY(-2px); }
.commit-card h3 {
  font-family: var(--vx-font-display);
  font-style: italic;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 26px;
  margin: 0 0 24px;
  letter-spacing: -0.005em;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--vx-border);
}
.commit-card.right h3 { color: var(--vx-yellow); }
.commit-card ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 14px; }
.commit-card li {
  font-size: 16px;
  line-height: 1.45;
  padding-left: 28px;
  position: relative;
  color: var(--vx-fg-muted);
}
.commit-card.left li::before {
  content: ""; position: absolute; left: 0; top: 6px;
  width: 14px; height: 14px;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHZpZXdCb3g9JzAgMCAyNCAyNCcgZmlsbD0nbm9uZScgc3Ryb2tlPSclMjM4ODg1ODAnIHN0cm9rZS13aWR0aD0nMi40JyBzdHJva2UtbGluZWNhcD0ncm91bmQnPjxwYXRoIGQ9J00xOCA2TDYgMThNNiA2bDEyIDEyJy8+PC9zdmc+");
  background-size: contain;
  background-repeat: no-repeat;
}
.commit-card.right li {
  color: var(--vx-fg);
}
.commit-card.right li::before {
  content: ""; position: absolute; left: 0; top: 5px;
  width: 16px; height: 16px; border-radius: 4px;
  background: var(--vx-yellow);
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHZpZXdCb3g9JzAgMCAyNCAyNCcgZmlsbD0nbm9uZScgc3Ryb2tlPSclMjMxMTExMTAnIHN0cm9rZS13aWR0aD0nMycgc3Ryb2tlLWxpbmVjYXA9J3JvdW5kJyBzdHJva2UtbGluZWpvaW49J3JvdW5kJz48cGF0aCBkPSdNMjAgNkw5IDE3bC01LTUnLz48L3N2Zz4=");
  background-size: 70%;
  background-position: center;
  background-repeat: no-repeat;
}

/* ============ Statement section (yellow callout) ============ */
.bg-yellow-statement {
  background: var(--vx-yellow);
  color: var(--vx-black);
  padding: 144px 0;
  position: relative;
}
.bg-yellow-statement::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(17,17,16,0.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(17,17,16,0.06) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}
.bg-yellow-statement .wrap { position: relative; z-index: 1; }
.bg-yellow-statement h2 {
  font-family: var(--vx-font-sans);
  font-weight: 900;
  font-size: clamp(42px, 6.4vw, 96px);
  letter-spacing: -0.035em;
  line-height: 0.96;
  margin: 0 0 32px;
  text-wrap: balance;
  max-width: 18ch;
}
.bg-yellow-statement .lede { color: rgba(17,17,16,0.78); max-width: 60ch; font-size: clamp(17px, 1.4vw, 20px); }
.bg-yellow-statement .pull-callout {
  margin-top: 56px;
  font-family: var(--vx-font-display);
  font-style: italic;
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(40px, 7vw, 96px);
  letter-spacing: -0.02em;
  line-height: 0.96;
  border-top: 4px solid var(--vx-black);
  padding-top: 40px;
  max-width: 18ch;
}

/* ============ Principles (horizontal rule list) ============ */
.principles {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--vx-border);
}
.principle {
  padding: 36px 0;
  border-bottom: 1px solid var(--vx-border);
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  align-items: baseline;
}
.principle .num {
  font-family: var(--vx-font-mono);
  font-size: 14px;
  letter-spacing: 0.14em;
  color: var(--vx-yellow);
}
.principle h4 {
  font-family: var(--vx-font-sans);
  font-weight: 800;
  font-size: clamp(24px, 2.4vw, 36px);
  letter-spacing: -0.02em;
  margin: 0;
  line-height: 1.1;
}

/* ============ "Why most ads fail" — 3x2 grid ============ */
.fail-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 980px) { .fail-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .fail-grid { grid-template-columns: 1fr; } }
.fail-card {
  background: var(--vx-charcoal);
  border: 1px solid var(--vx-border);
  border-radius: 14px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 180ms, border-color 180ms;
}
body[data-theme="cream"] .fail-card { background: #fff; }
.fail-card:hover { transform: translateY(-3px); border-color: rgba(255,225,0,0.35); }
.fail-card .lbl {
  font-family: var(--vx-font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--vx-yellow);
  text-transform: uppercase;
}
.fail-card h3 {
  font-family: var(--vx-font-sans);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.015em;
  margin: 0;
  line-height: 1.2;
}
.fail-card p { color: var(--vx-fg-muted); line-height: 1.6; margin: 0; font-size: 15px; }

/* ============ Step-card visuals (Home & Method) ============ */
.step-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.step-visual img {
  width: 100%;
  height: auto;
  max-height: 320px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 16px 40px rgba(255,225,0,0.08));
}
.step-stat-inline {
  margin-top: 28px;
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding-top: 22px;
  border-top: 1px solid var(--vx-border);
}
.step-stat-inline .n {
  font-family: var(--vx-font-mono);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
}
.step-stat-inline .l {
  font-family: var(--vx-font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--vx-stone);
}
.method-step-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.method-step-visual img {
  width: 100%;
  height: auto;
  max-height: 380px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 18px 50px rgba(255,225,0,0.1));
}
/* Framed variant — for full-bleed images that need to be contained (e.g. network nodes) */
.method-step-visual--framed img {
  border-radius: 18px;
  border: 1px solid rgba(255,225,0,0.18);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.02) inset,
    0 22px 60px rgba(255,225,0,0.08),
    0 8px 24px rgba(0,0,0,0.5);
  background: #0a0a09;
  object-fit: cover;
  max-height: 360px;
  filter: none;
}
@media (max-width: 900px) {
  .step-visual img, .method-step-visual img { max-height: 260px; }
}

/* ============ Method-step (Test in parallel etc) ============ */
.method-step {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  background: var(--vx-charcoal);
  border: 1px solid var(--vx-border);
  border-radius: 18px;
  padding: 56px;
}
body[data-theme="cream"] .method-step { background: #fff; }
@media (max-width: 900px) { .method-step { grid-template-columns: 1fr; gap: 32px; padding: 36px; } }
.method-step h3 {
  font-family: var(--vx-font-display);
  font-style: italic;
  text-transform: uppercase;
  font-weight: 700;
  font-size: clamp(36px, 4vw, 60px);
  margin: 0 0 24px;
  letter-spacing: -0.01em;
  line-height: 0.98;
}
.method-step p {
  color: var(--vx-fg-muted);
  font-size: 16px;
  line-height: 1.65;
  margin: 0;
}
.method-step .step-stat-big {
  background: rgba(255,225,0,0.06);
  border: 1px solid rgba(255,225,0,0.25);
  border-radius: 14px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.method-step .step-stat-big .v {
  font-family: var(--vx-font-mono);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  color: var(--vx-yellow);
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.method-step .step-stat-big .k {
  font-family: var(--vx-font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--vx-stone);
  text-transform: uppercase;
}

/* ============ Contact form card ============ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; gap: 32px; } }
.contact-card {
  background: var(--vx-yellow);
  color: var(--vx-black);
  border-radius: 18px;
  padding: 40px;
  position: relative;
  overflow: hidden;
}
.contact-card h3 {
  font-family: var(--vx-font-sans);
  font-weight: 900;
  font-size: clamp(24px, 2.6vw, 32px);
  letter-spacing: -0.02em;
  margin: 0 0 24px;
  line-height: 1.1;
}
.contact-card label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(17,17,16,0.7);
  font-weight: 700;
  margin-bottom: 6px;
}
.contact-card .field { margin-bottom: 18px; }
.contact-card input, .contact-card textarea {
  background: #fff;
  border: 1px solid rgba(17,17,16,0.18);
  color: var(--vx-black);
}
.contact-card input:focus, .contact-card textarea:focus {
  border-color: var(--vx-black);
  background: #fff;
}
.contact-card button[type="submit"] {
  background: var(--vx-black);
  color: var(--vx-yellow);
  width: 100%;
  padding: 18px 24px;
  border-radius: 10px;
  font-weight: 800;
  font-size: 16px;
  letter-spacing: -0.01em;
  transition: background 150ms;
}
.contact-card button[type="submit"]:hover { background: #2a2925; }

.contact-bullets { display: flex; flex-direction: column; gap: 24px; }
.contact-bullet h4 {
  font-family: var(--vx-font-sans);
  font-weight: 800;
  font-size: 18px;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}
.contact-bullet p { color: var(--vx-fg-muted); margin: 0; line-height: 1.6; }

.fine-print {
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid var(--vx-border);
  color: var(--vx-fg-muted);
  font-size: 15px;
  line-height: 1.65;
  max-width: 68ch;
}
.fine-print a { color: var(--vx-yellow); }

/* ============ v2 additions ============ */
/* Pain bridge — quiet statement under the bubbles */
.pain-bridge {
  text-align: center;
  max-width: 44ch;
  margin: 48px auto 0;
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.55;
  color: var(--vx-fg);
  font-weight: 600;
  letter-spacing: -0.01em;
}

/* Offer list (What you get) — numbered rule rows, asymmetric two-column */
.offer-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 64px;
  border-top: 1px solid var(--vx-border);
}
@media (max-width: 820px) { .offer-list { grid-template-columns: 1fr; gap: 0; } }
.offer-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  align-items: start;
  padding: 32px 0;
  border-bottom: 1px solid var(--vx-border);
}
.offer-item .num {
  font-family: var(--vx-font-mono);
  font-size: 13px;
  letter-spacing: 0.14em;
  color: var(--vx-yellow);
  padding-top: 4px;
}
.offer-item .body h4 {
  font-family: var(--vx-font-sans);
  font-weight: 800;
  font-size: clamp(18px, 1.8vw, 24px);
  letter-spacing: -0.015em;
  margin: 0 0 8px;
  line-height: 1.25;
}
.offer-item .body p {
  color: var(--vx-fg-muted);
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}
.offer-close {
  margin: 48px auto 0;
  text-align: center;
  max-width: 52ch;
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.55;
  color: var(--vx-fg);
  font-weight: 600;
  letter-spacing: -0.01em;
}
.refer-steps { grid-template-columns: 1fr; }

/* Commit capstone line */
.commit-capstone {
  text-align: center;
  margin: 40px auto 0;
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--vx-fg-muted);
  font-weight: 600;
}

/* Timeline strip (How it works) */
.timeline-strip {
  display: flex;
  align-items: center;
  gap: clamp(16px, 4vw, 48px);
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.timeline-strip .step-stat {
  border-left: 4px solid currentColor;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.timeline-strip .step-stat .n {
  font-family: var(--vx-font-mono);
  font-size: clamp(40px, 4.5vw, 64px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
}
.timeline-strip .step-stat .l {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--vx-stone);
}
.timeline-arrow {
  color: var(--vx-stone);
  font-size: 24px;
}
@media (max-width: 720px) {
  .timeline-strip { gap: 16px; }
  .timeline-arrow { display: none; }
  .timeline-strip .step-stat .n { font-size: 32px; }
}

/* Smaller step-card headings for the merged How it works */
.step-card .step-body h3.step-h3-sm {
  font-size: clamp(26px, 2.8vw, 40px);
  text-transform: none;
  font-family: var(--vx-font-sans);
  font-style: normal;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

/* FinalCTA quiet secondary link */
.final-cta-alt {
  margin: 28px auto 0 !important;
  font-size: 15px !important;
}
.final-cta-alt a {
  color: var(--vx-fg-muted);
  border-bottom: 1px solid var(--vx-border);
  transition: color 180ms, border-color 180ms;
}
.final-cta-alt a:hover { color: var(--vx-yellow); border-bottom-color: var(--vx-yellow); }

/* Booking escape link */
.booking-escape {
  text-align: center;
  font-size: 14px;
  color: var(--vx-stone);
  margin: 12px 0 32px;
}
.booking-escape a { color: var(--vx-yellow); }

/* Mini-audit form */
.audit-block { text-align: center; }
.audit-lede {
  color: var(--vx-fg-muted);
  font-size: 17px;
  line-height: 1.65;
  max-width: 56ch;
  margin: 0 auto 36px;
}
.audit-card {
  background: var(--vx-charcoal);
  border: 1px solid var(--vx-border);
  border-radius: 18px;
  padding: 40px;
  max-width: 560px;
  margin: 0 auto;
  text-align: left;
}
body[data-theme="cream"] .audit-card { background: #fff; }
.audit-card .field { margin-bottom: 18px; }
.audit-card label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--vx-stone);
  font-weight: 700;
  margin-bottom: 6px;
}
.audit-card label .opt { text-transform: none; letter-spacing: 0.02em; color: var(--vx-stone); font-weight: 400; }
.audit-submit { width: 100%; justify-content: center; margin-top: 6px; }
.audit-note {
  margin: 18px 0 0;
  font-size: 13px;
  line-height: 1.6;
  color: var(--vx-stone);
  text-align: center;
}
.audit-confirm p { margin: 0 0 10px; font-size: 16px; line-height: 1.6; color: var(--vx-fg-muted); }
.audit-confirm p strong { color: var(--vx-fg); font-size: 18px; }

/* Cross-grid 3-up */
.cross-grid-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 900px) { .cross-grid-3 { grid-template-columns: 1fr; } }

/* Method "what lands in your lap" prose */
.method-lands {
  font-size: clamp(18px, 1.8vw, 24px);
  line-height: 1.6;
  color: var(--vx-fg);
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0;
  max-width: 60ch;
}

/* Thanks page */
.thanks-hero { min-height: 60vh; display: flex; align-items: center; }

/* Fail grid 4-up (2x2) */
.fail-grid-4 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 640px) { .fail-grid-4 { grid-template-columns: 1fr; } }

/* ============ Section link (inline arrow pointer) ============ */
.section-link {
  display: inline-flex;
  align-items: baseline;
  gap: 12px;
  margin-top: 36px;
  padding: 14px 0 4px;
  border-top: 1px solid var(--vx-border);
  color: var(--vx-fg);
  text-decoration: none;
  font-family: var(--vx-font-sans);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.01em;
  transition: color 180ms, gap 220ms;
  border-bottom: 0;
}
.section-link-eyebrow {
  font-family: var(--vx-font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--vx-stone);
  font-weight: 700;
  margin-right: 4px;
}
.section-link-label { flex: 1; min-width: 0; }
.section-link-arrow {
  color: var(--vx-yellow);
  font-weight: 400;
  font-size: 20px;
  transition: transform 240ms cubic-bezier(.2,.8,.2,1);
  display: inline-block;
}
.section-link:hover { color: var(--vx-yellow); gap: 16px; }
.section-link:hover .section-link-arrow { transform: translateX(6px); }

/* ============ Read-next pagination strip ============ */
.read-next-section { padding: 80px 0 0; }
.read-next-section .wrap { padding-top: 24px; padding-bottom: 24px; }
.read-next {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px 40px;
  align-items: center;
  padding: 36px 40px;
  border: 1px solid var(--vx-border);
  border-radius: 18px;
  text-decoration: none;
  color: var(--vx-fg);
  position: relative;
  overflow: hidden;
  transition: border-color 240ms, transform 240ms;
  background:
    radial-gradient(circle at 100% 50%, rgba(255,225,0,0.04), transparent 60%),
    var(--vx-charcoal);
}
body[data-theme="cream"] .read-next {
  background: radial-gradient(circle at 100% 50%, rgba(255,225,0,0.08), transparent 60%), #fff;
}
.read-next::before {
  content: "";
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 4px;
  background: var(--vx-yellow);
  transition: width 280ms cubic-bezier(.2,.8,.2,1);
}
.read-next:hover {
  border-color: rgba(255,225,0,0.4);
  transform: translateY(-3px);
}
.read-next:hover::before { width: 8px; }
.read-next-kicker {
  grid-column: 1 / -1;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--vx-font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--vx-yellow);
  margin-bottom: -16px;
}
.read-next-kicker .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--vx-yellow);
  box-shadow: 0 0 10px rgba(255,225,0,0.6);
}
.read-next-body h3 {
  font-family: var(--vx-font-sans);
  font-weight: 900;
  font-size: clamp(28px, 3vw, 44px);
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin: 0 0 10px;
  transition: color 180ms;
}
.read-next:hover .read-next-body h3 { color: var(--vx-yellow); }
.read-next-body p {
  font-size: 16px;
  line-height: 1.55;
  color: var(--vx-fg-muted);
  margin: 0;
  max-width: 56ch;
}
.read-next-arrow {
  color: var(--vx-yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1px solid rgba(255,225,0,0.3);
  flex-shrink: 0;
  transition: background 220ms, transform 240ms cubic-bezier(.2,.8,.2,1);
}
.read-next:hover .read-next-arrow {
  background: var(--vx-yellow);
  color: var(--vx-black);
  transform: translateX(6px);
}
@media (max-width: 720px) {
  .read-next-section { padding-top: 48px; }
  .read-next { padding: 28px 24px; grid-template-columns: 1fr; gap: 18px; }
  .read-next-arrow { width: 48px; height: 48px; }
  .read-next-arrow svg { width: 28px; height: 28px; }
  .read-next-kicker { margin-bottom: 0; }
  .section-link { font-size: 16px; margin-top: 28px; }
}

/* ============ Hero secondary link (sits next to primary CTA) ============ */
.hero-secondary-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 4px;
  color: var(--vx-fg);
  font-family: var(--vx-font-sans);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.01em;
  border-bottom: 0;
  position: relative;
  text-decoration: none;
  transition: color 180ms;
}
.hero-secondary-link::after {
  content: "";
  position: absolute;
  left: 4px;
  right: 28px;
  bottom: 10px;
  height: 1px;
  background: currentColor;
  opacity: 0.3;
  transition: opacity 200ms, right 240ms cubic-bezier(.2,.8,.2,1);
}
.hero-secondary-link .arrow {
  color: var(--vx-yellow);
  font-size: 18px;
  transition: transform 240ms cubic-bezier(.2,.8,.2,1);
  display: inline-block;
}
.hero-secondary-link:hover { color: var(--vx-yellow); }
.hero-secondary-link:hover::after { opacity: 0.7; right: 22px; }
.hero-secondary-link:hover .arrow { transform: translateX(5px); }
@media (max-width: 720px) {
  .hero-secondary-link { font-size: 14px; padding: 10px 4px; }
  .hero-secondary-link::after { display: none; }
}

/* ============ Contact cross-links (Not ready yet?) ============ */
.contact-cross-links {
  margin-top: 80px;
  padding-top: 48px;
  border-top: 1px solid var(--vx-border);
}
.cross-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--vx-font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--vx-stone);
  margin-bottom: 24px;
}
.cross-eyebrow .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--vx-yellow);
}
.cross-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 720px) {
  .cross-grid { grid-template-columns: 1fr; }
  .contact-cross-links { margin-top: 56px; padding-top: 36px; }
}
.cross-card {
  display: grid;
  grid-template-areas:
    "num arrow"
    "label arrow"
    "desc arrow";
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 4px 16px;
  padding: 24px 28px;
  background: var(--vx-charcoal);
  border: 1px solid var(--vx-border);
  border-radius: 14px;
  text-decoration: none;
  color: var(--vx-fg);
  transition: border-color 220ms, transform 220ms, background 220ms;
}
body[data-theme="cream"] .cross-card { background: #fff; }
.cross-card:hover {
  border-color: rgba(255,225,0,0.4);
  transform: translateY(-2px);
}
.cross-num {
  grid-area: num;
  font-family: var(--vx-font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--vx-yellow);
}
.cross-label {
  grid-area: label;
  font-family: var(--vx-font-sans);
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.015em;
}
.cross-desc {
  grid-area: desc;
  font-size: 14px;
  color: var(--vx-fg-muted);
  line-height: 1.5;
}
.cross-arrow {
  grid-area: arrow;
  font-size: 22px;
  color: var(--vx-yellow);
  transition: transform 240ms cubic-bezier(.2,.8,.2,1);
}
.cross-card:hover .cross-arrow { transform: translateX(6px); }

/* ============ Legal pages (Privacy / Terms) ============ */
.legal-grid {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 980px) {
  .legal-grid { grid-template-columns: 1fr; gap: 32px; }
}

.legal-toc {
  position: sticky;
  top: 100px;
  padding: 24px 20px;
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--vx-border);
  border-radius: 12px;
  align-self: start;
}
@media (max-width: 980px) {
  .legal-toc { position: relative; top: auto; }
}
.legal-toc h6 {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--vx-stone);
  margin: 0 0 14px;
  font-weight: 700;
}
.legal-toc ol {
  list-style: none;
  counter-reset: tocsteps;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.legal-toc ol li {
  counter-increment: tocsteps;
  font-size: 13px;
  line-height: 1.4;
}
.legal-toc ol li::before {
  content: counter(tocsteps, decimal-leading-zero) " ";
  font-family: var(--vx-font-mono);
  color: var(--vx-yellow);
  font-size: 10px;
  letter-spacing: 0.1em;
  margin-right: 6px;
}
.legal-toc ol li a {
  color: var(--vx-fg-muted);
  transition: color 150ms;
}
.legal-toc ol li a:hover { color: var(--vx-yellow); }

.legal-body {
  display: flex;
  flex-direction: column;
  gap: 56px;
  max-width: 72ch;
}
.legal-section h2 {
  font-family: var(--vx-font-sans);
  font-weight: 800;
  font-size: clamp(22px, 2.2vw, 30px);
  letter-spacing: -0.02em;
  margin: 0 0 18px;
  line-height: 1.2;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--vx-border);
  scroll-margin-top: 100px;
}
.legal-prose {
  color: var(--vx-fg-muted);
  font-size: 16px;
  line-height: 1.7;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.legal-prose p { margin: 0; }
.legal-prose strong { color: var(--vx-fg); font-weight: 700; }
.legal-prose em { color: var(--vx-fg); font-style: italic; }
.legal-prose a { color: var(--vx-yellow); border-bottom: 1px solid rgba(255,225,0,0.3); transition: border-color 150ms; }
.legal-prose a:hover { border-bottom-color: var(--vx-yellow); }
.legal-prose ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.legal-prose ul li {
  position: relative;
  padding-left: 22px;
}
.legal-prose ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 1px;
  background: var(--vx-yellow);
}
.legal-prose code {
  font-family: var(--vx-font-mono);
  font-size: 13px;
  padding: 1px 6px;
  background: rgba(255,225,0,0.08);
  border-radius: 3px;
  color: var(--vx-yellow);
}
@media (max-width: 720px) {
  .legal-body { gap: 40px; }
  .legal-prose { font-size: 15px; }
  .legal-section h2 { font-size: 22px; margin-bottom: 14px; padding-bottom: 10px; }
}

/* ============ Loading screen ============ */
#vx-loading {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--vx-black);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 600ms ease-out;
  cursor: pointer;
  overflow: hidden;
}
#vx-loading.vx-out {
  opacity: 0;
  pointer-events: none;
}
#vx-loading .vx-loading-shader {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
#vx-loading .vx-loading-shader canvas {
  width: 100% !important;
  height: 100% !important;
  display: block;
}
#vx-loading .vx-loading-mark {
  position: relative;
  z-index: 2;
  width: min(72vw, 720px);
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 0 60px rgba(0,0,0,0.6));
  animation: vxLoadMark 1800ms cubic-bezier(.2,.8,.2,1) both;
}
#vx-loading .vx-loading-mark img {
  width: 100%;
  height: auto;
  display: block;
}
#vx-loading .vx-loading-tag {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--vx-font-mono);
  font-size: 11px;
  letter-spacing: 0.4em;
  color: rgba(255,255,255,0.5);
  z-index: 2;
  animation: vxLoadPulse 1.4s ease-in-out infinite;
}
@keyframes vxLoadMark {
  0%   { opacity: 0; transform: scale(0.94); }
  40%  { opacity: 1; transform: scale(1); }
  100% { opacity: 1; transform: scale(1); }
}
@keyframes vxLoadPulse {
  0%, 100% { opacity: 0.35; }
  50%      { opacity: 0.85; }
}
@media (max-width: 720px) {
  #vx-loading .vx-loading-mark { width: 78vw; }
  #vx-loading .vx-loading-tag { bottom: 28px; font-size: 10px; letter-spacing: 0.3em; }
}
@media (prefers-reduced-motion: reduce) {
  #vx-loading .vx-loading-mark { animation: none; }
  #vx-loading .vx-loading-tag { animation: none; opacity: 0.6; }
}

/* ============ Booking widget (LeadConnector iframe) ============ */
.booking-intro {
  max-width: 700px;
  margin: 0 auto 40px;
  text-align: center;
}
.booking-widget {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,225,0,0.18);
  margin: 0 auto 48px;
  max-width: 980px;
  position: relative;
}
.booking-widget iframe {
  border: 0;
  display: block;
  width: 100%;
}

/* ===================================================================
   MOTION — kinetic type, magnetic, cursor bolt, page wipes, strike, glitch
   =================================================================== */

/* ---- KineticHeadline ---- */
.kinetic-h1 {
  font-family: var(--vx-font-sans);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 0.98;
  margin: 0 0 28px;
  text-wrap: balance;
}
.kinetic-h1 .kw {
  display: inline-block;
  opacity: 0;
  transform: translateY(50px) skewY(6deg);
  transition: opacity 720ms cubic-bezier(.2,.8,.2,1),
              transform 720ms cubic-bezier(.2,.8,.2,1);
  white-space: pre;
  will-change: transform, opacity;
}
.kinetic-h1.in .kw {
  opacity: 1;
  transform: none;
}
.kinetic-h1 .kw-hl {
  position: relative;
  color: var(--vx-black);
  padding: 0 0.12em;
  margin: 0 -0.04em;
  z-index: 0;
}
.kinetic-h1 .kw-hl::before {
  content: "";
  position: absolute;
  inset: 0.08em -0.04em 0.08em -0.04em;
  background: var(--vx-yellow);
  z-index: -1;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 520ms cubic-bezier(.65,0,.25,1);
  transition-delay: var(--hl-delay, 460ms);
  box-shadow: 0 0 0 1px var(--vx-yellow);
}
.kinetic-h1.in .kw-hl::before {
  transform: scaleX(1);
}
body[data-theme="cream"] .kinetic-h1 .kw-hl { color: var(--vx-black); }

@media (prefers-reduced-motion: reduce) {
  .kinetic-h1 .kw { opacity: 1; transform: none; transition: none; }
  .kinetic-h1 .kw-hl::before { transform: scaleX(1); transition: none; }
}

/* ---- CursorBolt ---- */
.cursor-bolt {
  position: absolute;
  top: 0; left: 0;
  width: 44px; height: 44px;
  margin: -22px 0 0 -22px;
  pointer-events: none;
  opacity: 0;
  z-index: 4;
  transition: opacity 200ms ease-out;
  filter: drop-shadow(0 0 14px rgba(255,225,0,0.55));
  will-change: transform;
}
.cursor-bolt.on { opacity: 0.85; }
@media (pointer: coarse) { .cursor-bolt { display: none; } }

/* ---- MagneticCTA ---- */
.magnetic-wrap {
  display: inline-block;
  position: relative;
}
.magnetic-inner {
  display: inline-block;
  transition: transform 250ms cubic-bezier(.2,.8,.2,1);
  will-change: transform;
}
@media (pointer: coarse) { .magnetic-wrap { padding: 0 !important; } }

/* ---- StrikeDivider ---- */
.strike-divider {
  position: relative;
  padding: 24px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  background: inherit;
}
.strike-divider .strike-line {
  display: block;
  height: 4px;
  background: var(--vx-yellow);
  width: 0;
  transition: width 1100ms cubic-bezier(.2,.8,.2,1) 60ms;
  box-shadow: 0 0 0 1px rgba(255,225,0,0.4), 0 0 24px rgba(255,225,0,0.25);
}
.strike-divider .strike-label {
  font-family: var(--vx-font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--vx-yellow);
  white-space: nowrap;
  opacity: 0;
  transition: opacity 400ms ease-out 800ms;
}
.strike-divider.in .strike-label { opacity: 1; }

/* ---- PageWipe ---- */
.page-wipe {
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  overflow: hidden;
}
.page-wipe-bar {
  position: absolute;
  inset: 0;
  background: var(--vx-yellow);
  transform: translateX(-100%) skewX(-12deg);
  animation: pageWipeBar 850ms cubic-bezier(.7,0,.3,1) forwards;
}
.page-wipe-mark {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(0.6);
  opacity: 0;
  color: var(--vx-black);
  animation: pageWipeMark 850ms cubic-bezier(.7,0,.3,1) forwards;
}
@keyframes pageWipeBar {
  0%   { transform: translateX(-110%) skewX(-12deg); }
  45%  { transform: translateX(0%) skewX(-12deg); }
  55%  { transform: translateX(0%) skewX(-12deg); }
  100% { transform: translateX(110%) skewX(-12deg); }
}
@keyframes pageWipeMark {
  0%, 30%   { opacity: 0; transform: translate(-50%, -50%) scale(0.55); }
  45%, 55%  { opacity: 1; transform: translate(-50%, -50%) scale(1); }
  70%, 100% { opacity: 0; transform: translate(-50%, -50%) scale(1.15); }
}
@media (prefers-reduced-motion: reduce) {
  .page-wipe { display: none; }
}

/* ============ Cross-document page transitions ============ */
/* Our JS click interceptor in src/page-transitions.js handles the yellow-bar
   wipe animation universally — works on every browser, every environment
   (production, file://, standalone bundle). We intentionally do NOT enable
   `@view-transition { navigation: auto }` because it conflicts with our
   preventDefault-based interception (the browser starts a native transition
   that immediately gets skipped, generating a console warning). The JS path
   is the single source of truth for the wipe. */

/* Page Wipe — runtime version applied by src/page-transitions.js */
.page-wipe-runtime {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  overflow: hidden;
}

/* ---- TypeOut ---- */
.typeout { display: inline-block; }
.typeout-caret {
  display: inline-block;
  margin-left: 0.04em;
  color: currentColor;
  animation: caretBlink 800ms steps(2, end) infinite;
}
@keyframes caretBlink { 50% { opacity: 0; } }

/* ---- Glitch wordmark ---- */
.nav-logo span {
  position: relative;
  display: inline-block;
}
.nav-logo:hover span {
  animation: glitch 520ms steps(3, end);
}
@keyframes glitch {
  0%   { text-shadow: none; transform: none; }
  20%  { text-shadow: -2px 0 #FFE100, 2px 0 #3A5270; transform: translateX(-1px); }
  40%  { text-shadow: 2px 0 #FFE100, -2px 0 #2D5A3D; transform: translateX(1px); }
  60%  { text-shadow: -1px 0 #C47B00, 1px 0 #FFE100; transform: translateX(-0.5px); }
  80%  { text-shadow: 1px 0 #FFE100; }
  100% { text-shadow: none; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  .nav-logo:hover span { animation: none; }
}

/* ---- Display headline slant-in (data-motion="slant") ---- */
[data-motion="slant"] {
  display: inline-block;
  opacity: 0;
  transform: skewX(-12deg) translateY(20px);
  transition: opacity 700ms cubic-bezier(.2,.8,.2,1), transform 800ms cubic-bezier(.2,.8,.2,1);
}
[data-motion="slant"].in {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  [data-motion="slant"] { opacity: 1; transform: none; }
}

/* ---- Pain bubbles fly in from sides ---- */
.pain-line[data-reveal] { opacity: 1; transform: none; transition: none; }
.pain-line .pain-bubble {
  opacity: 0;
  transition: opacity 700ms cubic-bezier(.2,.8,.2,1),
              transform 800ms cubic-bezier(.2,.8,.2,1);
  will-change: transform, opacity;
}
.pain-line.left .pain-bubble  { transform: translateX(-160px) rotate(-3deg); }
.pain-line.right .pain-bubble { transform: translateX(160px) rotate(3deg); }
.pain-line.center .pain-bubble { transform: translateY(40px) scale(0.95); }
.pain-line[data-reveal].in .pain-bubble {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .pain-line .pain-bubble { opacity: 1; transform: none; }
}

/* ---- Mechanism number flip-in ---- */
.mech-card[data-reveal] .mech-num {
  display: inline-block;
  transform-origin: left center;
  transform: rotateX(-90deg);
  opacity: 0;
  transition: transform 600ms cubic-bezier(.2,.8,.2,1) 200ms, opacity 400ms ease-out 200ms;
}
.mech-card[data-reveal].in .mech-num { transform: none; opacity: 1; }
@media (prefers-reduced-motion: reduce) {
  .mech-card[data-reveal] .mech-num { transform: none; opacity: 1; }
}

/* ---- Pain title (always visible, gentle pulse) ---- */
.pain-scroll-title h2 {
  position: relative;
  display: inline-block;
}
.pain-scroll-title h2::after {
  content: "?";
  position: absolute;
  top: 0; right: -0.15em;
  color: var(--vx-yellow);
  animation: pulseQ 2.4s ease-in-out infinite;
  display: none; /* the ? is already in the text */
}
@keyframes pulseQ {
  0%, 100% { opacity: 1; transform: none; }
  50% { opacity: 0.5; transform: translateY(-2px); }
}

/* ---- Hero subtle grid parallax (CSS-only) ---- */
.hero.grid-bg-major {
  background-attachment: fixed;
}
@media (max-width: 720px) {
  .hero.grid-bg-major { background-attachment: scroll; }
}

/* ---- Hero CTAs spacing within magnetic wrap ---- */
.hero-ctas .magnetic-wrap { margin: -12px -12px; }
.final-cta .magnetic-wrap { margin: -16px -16px; }

/* ============ Story prose (About) ============ */
.story-prose { display: flex; flex-direction: column; gap: 22px; }
.story-prose p {
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.6;
  color: var(--vx-fg-muted);
  margin: 0;
}
.story-prose p:first-child {
  color: var(--vx-fg);
  font-weight: 700;
  font-size: clamp(20px, 1.8vw, 26px);
  line-height: 1.4;
  letter-spacing: -0.015em;
}

/* ============ Is / Isn't (About §4) ============ */
.is-isnt {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 20px;
  margin-bottom: 40px;
}
@media (max-width: 820px) { .is-isnt { grid-template-columns: 1fr; } }
.is-card {
  background: var(--vx-charcoal);
  border: 1px solid var(--vx-border);
  border-radius: 16px;
  padding: 36px;
}
body[data-theme="cream"] .is-card { background: #fff; }
.is-card.is { border-left: 4px solid var(--vx-yellow); }
.is-card.isnt { border-left: 4px solid var(--vx-stone); }
.is-card .lbl {
  font-family: var(--vx-font-display);
  font-style: italic;
  font-weight: 700;
  font-size: 28px;
  text-transform: uppercase;
  letter-spacing: -0.005em;
  margin-bottom: 18px;
}
.is-card.is .lbl { color: var(--vx-yellow); }
.is-card.isnt .lbl { color: var(--vx-stone); }
.is-card p {
  margin: 0;
  font-size: 18px;
  line-height: 1.55;
  color: var(--vx-fg);
}
.is-card ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.is-card ul li {
  position: relative;
  padding-left: 22px;
  font-size: 16px;
  line-height: 1.5;
  color: var(--vx-fg-muted);
}
.is-card ul li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--vx-stone);
}
.is-tag {
  text-align: center;
  font-family: var(--vx-font-display);
  font-style: italic;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: clamp(20px, 2vw, 28px);
  color: var(--vx-yellow);
}

/* ============ Page transitions ============ */
.route {
  animation: routeFadeIn 350ms ease-out;
}
@keyframes routeFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: none; }
}

/* ============ Scroll reveal ============ */
[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity 600ms ease-out, transform 600ms cubic-bezier(.2,.8,.2,1); }
[data-reveal].in { opacity: 1; transform: none; }

/* ============ Page header block (inner pages) ============ */
.page-hero {
  padding: 160px 0 80px;
  border-bottom: 1px solid var(--vx-border);
}
.page-hero h1 {
  font-family: var(--vx-font-sans);
  font-weight: 900;
  font-size: clamp(40px, 5.6vw, 80px);
  letter-spacing: -0.03em;
  line-height: 0.98;
  margin: 22px 0 24px;
  text-wrap: balance;
}
.page-hero h1 em { font-style: normal; color: var(--vx-yellow); }

/* ---------- Meta markers ---------- */
.meta-bar {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--vx-font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--vx-stone);
  padding: 6px 10px;
  border: 1px solid var(--vx-border);
  border-radius: 999px;
}
.meta-bar .dot { width: 6px; height: 6px; background: var(--vx-yellow); border-radius: 50%; }

/* ============ Pain agitation full-bleed ============ */
.big-number {
  font-family: var(--vx-font-display);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(120px, 24vw, 360px);
  letter-spacing: -0.04em;
  line-height: 0.85;
  color: var(--vx-yellow);
  text-transform: uppercase;
}

/* ====================================================================
   MOBILE OPTIMIZATIONS — additive layer; doesn't replace earlier rules
   ==================================================================== */

/* Global: smooth in-page jumps, lock touch panning to vertical only.
   Note: do NOT add overflow-x:clip to html — it breaks viewport propagation
   of body's overflow-x:hidden, which makes body a non-scrolling scroll
   container and breaks position:sticky for all descendants. The existing
   body { overflow-x: hidden } at the top of this file handles horizontal
   clipping correctly via viewport propagation. */
html {
  scroll-behavior: smooth;
}
body {
  overscroll-behavior-x: contain;
  touch-action: pan-y;
  -webkit-text-size-adjust: 100%;
}

/* Belt-and-suspenders containment for components that animate off their
   own bounding box. Each must contain horizontally only — full overflow:hidden
   on sticky parents breaks position:sticky relative to page scroll. */
.pain-line { overflow: hidden; }
.commit-card { transform-origin: center; will-change: auto; }

/* ---- Nav: hide the inline CTA on narrow screens, the hamburger drawer covers it ---- */
@media (max-width: 720px) {
  .nav { gap: 12px; }
  .nav-cta { display: none; }
  .nav-mobile-toggle { width: 40px; height: 40px; }
  .nav-logo span { font-size: 14px; }
}

/* ---- Hero on mobile: tighter rhythm, smaller chrome, headline never overflows ---- */
@media (max-width: 720px) {
  .hero { padding: 110px 0 60px; }
  .hero-slot { aspect-ratio: 16/10; max-height: 360px; }
  .hero-eyebrow { margin-bottom: 20px; font-size: 11px; }
  .hero-h1 { letter-spacing: -0.025em; }
  .kinetic-h1 .kw { white-space: normal; }   /* let words wrap if they need to */
  .hero-sub { margin-bottom: 24px; font-size: 16px; }
  .hero-trust { gap: 14px; padding: 14px 0; font-size: 11px; }
  .hero-trust span { gap: 8px; }
  .hero-ctas { margin-top: 24px !important; gap: 10px; }
  .hero-ctas .magnetic-wrap { margin: 0; }   /* don't reach beyond viewport on phone */
  .hero-micro { margin-bottom: 24px; }
  .hero-grid { gap: 32px !important; grid-template-columns: 1fr !important; }
  .hero-grid > div:last-child { display: none; }
  .hero-marquee-wrap { margin-top: 40px; }
}

/* ---- Section heads + display type: tame the giant clamps on small screens ---- */
@media (max-width: 720px) {
  .display.display-lg,
  .pain-scroll-title h2,
  .bg-yellow-statement h2,
  .final-cta h2,
  .bg-yellow-statement .pull-callout {
    font-size: clamp(32px, 8.5vw, 44px);
    line-height: 1.04;
    letter-spacing: -0.025em;
  }
  .display.display-md { font-size: clamp(28px, 7vw, 38px); }
  .section-head { margin-bottom: 32px !important; }
  .lede { font-size: 16px; line-height: 1.55; }
  .page-hero h1 { font-size: clamp(36px, 9vw, 56px); }
}

/* ---- Step cards (Home 3-step): tighter padding, no sticky stack on mobile ---- */
@media (max-width: 720px) {
  .step-card {
    padding: 28px 22px !important;
    border-radius: 14px;
    gap: 22px !important;
  }
  .step-fold {
    width: 96px;
    padding: 10px 12px 16px;
  }
  .step-fold .big { font-size: 15px; }
  .step-fold .small { font-size: 9px; }
  .step-card .step-body h3 { font-size: clamp(26px, 7vw, 38px); margin: 0 0 12px; letter-spacing: -0.02em; }
  .step-card .step-body p { font-size: 15px; }
  .step-stat-inline { margin-top: 20px; padding-top: 16px; gap: 12px; }
  .step-stat-inline .n { font-size: clamp(34px, 9vw, 48px); }
  .step-visual img { max-height: 240px; }
}

/* ---- Method-step (Method §4/5/6): tighter padding and stat block on mobile ---- */
@media (max-width: 720px) {
  .method-step { padding: 28px 22px !important; gap: 24px !important; border-radius: 14px; }
  .method-step p { font-size: 15px; }
  .method-step .step-stat-big { padding: 20px; margin-top: 20px !important; }
  .method-step .step-stat-big .v { font-size: clamp(26px, 7vw, 36px); }
  .method-step-visual img { max-height: 220px; }
}

/* ---- Yellow statement section (Method §3): less padding, less giant pull-quote ---- */
@media (max-width: 720px) {
  .bg-yellow-statement { padding: 80px 0; }
  .bg-yellow-statement .pull-callout {
    padding-top: 24px;
    margin-top: 36px;
    border-top-width: 3px;
  }
}

/* ---- Mechanism / Commit cards / Fail grid / Is-isnt: less ornament on mobile ---- */
@media (max-width: 720px) {
  .mech-card { padding: 26px 22px; }
  .mech-card h3 { font-size: 24px; }
  .commit-card { transform: none !important; padding: 28px 22px; }
  .commit-card h3 { font-size: 22px; margin-bottom: 18px; padding-bottom: 14px; }
  .commit-card li { font-size: 15px; padding-left: 24px; }
  .fail-card { padding: 24px 22px; }
  .is-card { padding: 26px 22px; }
}

/* ---- Pain bubbles: full-width, no horizontal translation on mobile ---- */
@media (max-width: 720px) {
  .pain-bubble {
    max-width: none;
    padding: 22px 24px;
    font-size: 18px;
    border-radius: 10px;
  }
  .pain-line .pain-bubble,
  .pain-line.left .pain-bubble,
  .pain-line.right .pain-bubble {
    transform: translateY(40px) !important;
  }
  .pain-line[data-reveal].in .pain-bubble { transform: none !important; }
}

/* ---- Final CTA strip ---- */
@media (max-width: 720px) {
  .final-cta-strip { width: 56px; height: 4px; margin-bottom: 24px; }
  .final-cta p { font-size: 16px; margin-bottom: 28px; }
  .final-cta .magnetic-wrap { margin: 0; }
}

/* ---- Founder block / personal socials ---- */
@media (max-width: 720px) {
  .founder { gap: 32px !important; }
  .personal-socials { gap: 10px; margin-top: 24px; }
  .personal-socials a { padding: 10px 14px; font-size: 11px; }
  .stats-row { gap: 10px !important; }
  .stat-cell { padding: 16px 14px; }
}

/* ---- Booking iframe: shorter on phones; widget reflows itself ---- */
@media (max-width: 720px) {
  
  .booking-intro { margin-bottom: 28px; }
  .contact-bullets { gap: 16px; }
  .contact-bullet h4 { font-size: 16px; }
  .contact-bullet p { font-size: 15px; }
  .fine-print { margin-top: 32px; padding-top: 24px; font-size: 14px; }
}

/* ---- FAQ ---- */
@media (max-width: 720px) {
  .faq-item summary { font-size: 16px; padding: 18px 0; }
  .faq-item .answer { font-size: 15px; }
}

/* ---- Footer ---- */
@media (max-width: 720px) {
  .footer-min { padding: 56px 0 32px; }
  .footer-brand p { font-size: 13px; }
  .footer-bottom { flex-direction: column; gap: 8px; align-items: flex-start; font-size: 12px; }
}

/* ---- Perspective marquee: tighter on mobile, less aggressive angle ---- */
@media (max-width: 720px) {
  .pm-wrap { height: 130px; margin-top: 32px; }
  .pm-item img { height: 40px !important; }
}

/* ============ v4 additions ============ */
/* Hero layered-text nudged up for balance against the H1 */
@media (min-width: 821px) {
  .hero-slot { margin-top: -48px; }
}
/* Marquee: smaller, tighter, shorter band */
.pm-wrap { height: 150px; margin-top: 56px; }
/* Calendar captions: breathing room, no clipping */
.quiz-cal .booking-escape { margin: 16px 0 8px; }
.booking-widget { overflow: visible; }
.booking-widget iframe { min-height: 560px; }

/* ---- Mobile drawer polish ---- */
@media (max-width: 720px) {
  .mobile-drawer { padding: 96px 32px 32px; }
  .mobile-drawer a { font-size: 28px; padding: 12px 0; }
}

/* ---- Strike dividers tighter on mobile ---- */
@media (max-width: 720px) {
  .strike-divider { padding: 16px 0; }
  .strike-divider .strike-line { width: 60% !important; }
}

/* ---- Disable parallax + magnetic + cursor bolt on touch ---- */
@media (pointer: coarse) {
  .hero.grid-bg-major { background-attachment: scroll; }
  .magnetic-inner { transform: none !important; }
}

/* ============ v3 additions ============ */
/* Marquee label: bolt glyph, centered, no flanking rules */
.hero-marquee-label { justify-content: center; }
.hero-marquee-label img { display: block; }

/* Commit-card variants for My job / Your job */
.commit-card.tilt-left { transform: rotate(-1.5deg); }
.commit-card.tilt-left:hover { transform: rotate(0deg) translateY(-2px); }
.commit-endnote { margin: 18px 0 0; font-family: var(--vx-font-mono); font-size: 13px; letter-spacing: 0.08em; color: var(--vx-stone); text-transform: uppercase; }

/* Framed step visual (network nodes inside a step card) */
.step-visual--framed img { border-radius: 14px; border: 1px solid rgba(255,225,0,0.18); object-fit: cover; background: #0a0a09; filter: none; box-shadow: 0 12px 36px rgba(0,0,0,0.45); }

/* What-you-get pieces */
.piece { max-width: 720px; }
.piece-r { margin-left: auto; }
.piece-num { font-family: var(--vx-font-mono); font-size: 14px; letter-spacing: 0.16em; color: var(--vx-yellow); margin-bottom: 16px; }
.piece h2 { margin: 0 0 20px; }
.piece-body { color: var(--vx-fg-muted); font-size: clamp(16px, 1.5vw, 19px); line-height: 1.65; margin: 0; }
.piece-section { padding-top: 72px; padding-bottom: 72px; }

/* Contact v3: calendar above the fold */
.contact-book-hero { padding: 120px 0 64px; }
@media (max-width: 720px) { .contact-book-hero { padding: 96px 0 48px; } }
.contact-book-head h1 { max-width: 20ch; }
.contact-oneliner { color: var(--vx-fg-muted); font-size: clamp(16px, 1.4vw, 19px); margin: 0 0 36px; }
.contact-hero-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 48px; align-items: start; }
.contact-hero-left { display: flex; flex-direction: column; gap: 24px; }
.contact-line { font-size: 14px; color: var(--vx-stone); margin: 8px 0 0; }
.contact-line a { color: var(--vx-yellow); }
.booking-under { text-align: center; font-size: 15px; color: var(--vx-fg-muted); margin: 28px 0 8px; line-height: 1.6; }
.booking-under a { color: var(--vx-yellow); }
@media (max-width: 900px) {
  .contact-hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .contact-hero-cal { order: -1; }
}
.contact-book-hero .fine-print { margin-top: 48px; }
.contact-book-hero .booking-widget { margin: 0; max-width: none; }

/* ============ /start quiz ============ */
.quiz-route { min-height: 100vh; display: flex; flex-direction: column; background: var(--vx-black); }
.quiz-top { display: flex; align-items: center; justify-content: space-between; padding: 20px clamp(20px, 4vw, 48px); }
.quiz-home { display: inline-flex; align-items: center; gap: 10px; font-family: var(--vx-font-display); font-style: italic; letter-spacing: 0.04em; font-size: 16px; color: var(--vx-white); text-transform: uppercase; }
.quiz-dots { display: flex; gap: 8px; }
.quiz-dots .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--vx-border); transition: background 200ms, transform 200ms; }
.quiz-dots .dot.done { background: var(--vx-stone); }
.quiz-dots .dot.now { background: var(--vx-yellow); transform: scale(1.25); }
.quiz-main { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 24px clamp(20px, 4vw, 48px) 64px; position: relative; }
.quiz-back { background: none; border: none; color: var(--vx-stone); font: inherit; font-size: 14px; cursor: pointer; position: absolute; top: 8px; left: clamp(20px, 4vw, 48px); padding: 8px 0; transition: color 150ms; }
.quiz-back:hover { color: var(--vx-yellow); }
.quiz-screen { width: 100%; max-width: 680px; animation: quizIn 320ms cubic-bezier(.2,.8,.2,1); }
@keyframes quizIn { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .quiz-screen { animation: none; } }
.quiz-card { text-align: center; }
.quiz-intro h1 { font-family: var(--vx-font-sans); font-weight: 900; font-size: clamp(32px, 4.5vw, 56px); letter-spacing: -0.03em; line-height: 1.05; margin: 0 0 16px; text-wrap: balance; }
.quiz-q { font-family: var(--vx-font-sans); font-weight: 900; font-size: clamp(24px, 3.2vw, 40px); letter-spacing: -0.025em; line-height: 1.12; margin: 0 0 28px; text-wrap: balance; }
.quiz-sub { color: var(--vx-fg-muted); font-size: clamp(16px, 1.4vw, 19px); line-height: 1.6; margin: 0 auto 32px; max-width: 54ch; }
.quiz-chips { display: flex; flex-direction: column; gap: 12px; max-width: 440px; margin: 0 auto; }
.quiz-chip { background: var(--vx-charcoal); border: 1px solid var(--vx-border); border-radius: 12px; padding: 18px 24px; font: inherit; font-size: 17px; font-weight: 600; color: var(--vx-fg); cursor: pointer; transition: border-color 150ms, background 150ms, transform 150ms; text-align: center; }
.quiz-chip:hover, .quiz-chip:focus-visible { border-color: var(--vx-yellow); background: rgba(255,225,0,0.05); transform: translateY(-1px); outline: none; }
.quiz-chip.picked { border-color: var(--vx-yellow); background: rgba(255,225,0,0.08); }
.quiz-dq-actions { display: flex; flex-direction: column; align-items: center; gap: 18px; }
.quiz-quiet { background: none; border: none; color: var(--vx-stone); font: inherit; font-size: 14px; cursor: pointer; border-bottom: 1px solid var(--vx-border); padding: 2px 0; transition: color 150ms, border-color 150ms; }
.quiz-quiet:hover { color: var(--vx-yellow); border-bottom-color: var(--vx-yellow); }
.quiz-contact { max-width: 440px; margin: 0 auto; text-align: left; }
.quiz-contact .field { margin-bottom: 18px; }
.quiz-contact label { display: block; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--vx-stone); font-weight: 700; margin-bottom: 6px; }
.quiz-contact label .opt { text-transform: none; letter-spacing: 0.02em; font-weight: 400; }
.quiz-submit { width: 100%; justify-content: center; margin-top: 6px; }
.quiz-cal .booking-widget { margin: 0 auto 20px; max-width: 760px; }

/* ============ v4: 90-days timeline ============ */
.tl90 { position: relative; }
.tl90-rail { position: absolute; top: 26px; left: 0; right: 0; height: 2px; pointer-events: none; }
.tl90-line { display: block; height: 100%; background: linear-gradient(90deg, var(--vx-yellow), var(--vx-amber), var(--vx-green)); opacity: 0.5; }
.tl90-track { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; position: relative; }
.tl90-beat { background: var(--vx-charcoal); border: 1px solid var(--vx-border); border-radius: 16px; padding: 32px 28px; margin-top: 44px; position: relative; }
body[data-theme="cream"] .tl90-beat { background: #fff; }
.tl90-marker { position: absolute; top: -44px; left: 28px; display: flex; align-items: center; gap: 10px; }
.tl90-marker .dot { width: 14px; height: 14px; border-radius: 50%; background: currentColor; box-shadow: 0 0 0 4px var(--vx-black), 0 0 16px currentColor; }
.tl90-marker .when { font-family: var(--vx-font-mono); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; white-space: nowrap; }
.tl90-beat h3 { margin: 0 0 12px; }
.tl90-beat p { color: var(--vx-fg-muted); font-size: 15px; line-height: 1.6; margin: 0 0 20px; }
.tl90-visual img { width: 100%; height: auto; max-height: 200px; object-fit: contain; display: block; }
.tl90-framed img { border-radius: 12px; border: 1px solid rgba(255,225,0,0.18); object-fit: cover; background: #0a0a09; }
@media (max-width: 900px) {
  .tl90-rail { display: none; }
  .tl90-track { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; gap: 16px; padding-bottom: 12px; -webkit-overflow-scrolling: touch; }
  .tl90-beat { flex: 0 0 82%; scroll-snap-align: center; margin-top: 40px; }
}
@media (prefers-reduced-motion: reduce) {
  .tl90-track { scroll-snap-type: none; }
}

/* ============ v4: The deal — Everything else card ============ */
.deal-mine { display: flex; flex-direction: column; }
.deal-everything { font-family: var(--vx-font-display); font-style: italic; text-transform: uppercase; font-weight: 700; font-size: clamp(40px, 5vw, 72px); line-height: 0.98; letter-spacing: -0.01em; color: var(--vx-yellow); margin: 12px 0 20px; flex: 1; display: flex; align-items: center; }
.deal-sub { color: var(--vx-fg-muted); font-size: 15px; line-height: 1.6; margin: 0; }

/* ============ v4: What-you-get editorial ============ */
.wyg-duo { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; }
@media (max-width: 900px) { .wyg-duo { grid-template-columns: 1fr; gap: 48px; } }
.wyg-center { text-align: center; margin: 0 auto; }
.wyg-center .piece-num { text-align: center; }
.wyg-creative { position: relative; }
.wyg-creative-num { font-family: var(--vx-font-mono); font-weight: 700; font-size: clamp(96px, 16vw, 240px); line-height: 0.8; letter-spacing: -0.06em; color: rgba(17,17,16,0.12); position: absolute; top: 32px; right: 4vw; pointer-events: none; user-select: none; }
.wyg-creative h2 { position: relative; }

/* ============ v4: inclusion matrix ============ */
.wyg-matrix-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; margin-bottom: 8px; }
.wyg-matrix { width: 100%; min-width: 760px; border-collapse: separate; border-spacing: 0; background: var(--vx-charcoal); border: 1px solid var(--vx-border); border-radius: 16px; overflow: hidden; }
body[data-theme="cream"] .wyg-matrix { background: #fff; }
.wyg-matrix th, .wyg-matrix td { padding: 16px 18px; border-bottom: 1px solid var(--vx-border); text-align: center; }
.wyg-matrix thead th { vertical-align: top; padding-top: 24px; padding-bottom: 20px; }
.wyg-matrix .col-name { display: block; font-family: var(--vx-font-sans); font-weight: 800; font-size: 17px; letter-spacing: -0.01em; margin-bottom: 6px; }
.wyg-matrix .col-sub { display: block; font-size: 12px; line-height: 1.45; color: var(--vx-stone); font-weight: 400; max-width: 20ch; margin: 0 auto; }
.wyg-matrix .row-label { text-align: left; font-size: 14px; line-height: 1.45; color: var(--vx-fg-muted); max-width: 30ch; }
.wyg-matrix tbody tr:last-child td { border-bottom: none; }
.wyg-matrix .tick { display: inline-flex; width: 26px; height: 26px; align-items: center; justify-content: center; border-radius: 7px; background: var(--vx-yellow); color: var(--vx-black); }
.wyg-matrix .notick { color: var(--vx-border); font-size: 18px; }
.wyg-matrix th.accent, .wyg-matrix td.accent { background: rgba(255,225,0,0.06); }
.wyg-matrix th.accent .col-name { color: var(--vx-yellow); }
.wyg-matrix th.accent { box-shadow: inset 0 3px 0 var(--vx-yellow); }

/* ============ v4: contact photo slot ============ */
.contact-hero-left .hero-photo { max-width: 380px; }
@media (max-width: 900px) { .contact-hero-left .hero-photo { max-width: none; } }

/* ============ v4r3 additions ============ */
/* FinalCTA secondary: centered under the button */
.final-cta-alt { text-align: center; display: block; }

/* Home hero video placeholder */
.hero-video-slot { border: 1px solid var(--vx-border); border-radius: 14px; background: radial-gradient(circle at 35% 30%, rgba(255,225,0,0.06), transparent 55%), #0a0a09; display: flex; align-items: center; justify-content: center; margin-top: 0; }
.hero-video-inner { display: flex; flex-direction: column; align-items: center; gap: 10px; text-align: center; padding: 24px; }
.hero-video-inner .rec { display: inline-flex; align-items: center; gap: 8px; font-family: var(--vx-font-mono); font-size: 11px; letter-spacing: 0.18em; color: var(--vx-yellow); }
.hero-video-inner .rec::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--vx-red); animation: blink 1.4s infinite; }
.hero-video-inner .hint { font-size: 13px; color: var(--vx-stone); }

/* Method type-out: cap at 1-2 lines */
.bg-yellow-statement .pull-callout { font-size: clamp(26px, 4vw, 58px); max-width: none; }

/* Experimental pinned 90-days scrub */
.p90-wrap { height: 220vh; position: relative; }
.p90-sticky { position: sticky; top: 0; height: 100vh; overflow: hidden; display: flex; flex-direction: column; justify-content: center; gap: 24px; }
.p90-head { text-align: center; }
.p90-head .eyebrow { justify-content: center; }
.p90-portal { position: relative; width: 100%; }
.p90-glow { position: absolute; top: 0; bottom: 0; width: 3px; z-index: 3; pointer-events: none; background: linear-gradient(180deg, var(--vx-yellow), rgba(255,225,0,0)); box-shadow: 0 0 24px rgba(255,225,0,0.5), 0 0 60px rgba(255,225,0,0.25); }
.p90-glow-l { left: clamp(16px, 8vw, 120px); }
.p90-glow-r { right: clamp(16px, 8vw, 120px); }
.p90-viewport { overflow: hidden; margin: 0 clamp(16px, 8vw, 120px); }
.p90-track { display: flex; gap: 32px; padding: 24px 10vw; will-change: transform; }
.p90-panel { flex: 0 0 min(560px, 72vw); background: var(--vx-charcoal); border: 1px solid var(--vx-border); border-radius: 18px; padding: 40px 36px; border-top: 4px solid var(--vx-yellow); }
.p90-panel.tone-amber { border-top-color: var(--vx-amber); }
.p90-panel.tone-green { border-top-color: var(--vx-green); }
.p90-when { font-family: var(--vx-font-mono); font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--vx-yellow); margin-bottom: 14px; white-space: nowrap; }
.p90-panel.tone-amber .p90-when { color: var(--vx-amber); }
.p90-panel.tone-green .p90-when { color: var(--vx-green); }
.p90-panel h3 { margin: 0 0 12px; }
.p90-panel p { color: var(--vx-fg-muted); font-size: 16px; line-height: 1.6; margin: 0; }
.p90-term { text-align: center; max-width: 52ch; margin: 0 auto; padding: 0 24px; font-size: clamp(16px, 1.5vw, 19px); font-weight: 600; color: var(--vx-fg); }
@media (prefers-reduced-motion: reduce) {
  .p90-wrap { height: auto; }
  .p90-sticky { position: static; height: auto; overflow: visible; padding: 96px 0; }
  .p90-track { transform: none !important; flex-wrap: wrap; padding: 24px; }
  .p90-panel { flex: 1 1 280px; }
  .p90-glow { display: none; }
}

/* WYG hero grid */
.wyg-hero-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 48px; align-items: center; }
@media (max-width: 900px) { .wyg-hero-grid { grid-template-columns: 1fr; } }
.wyg-hero-grid .hero-slot { aspect-ratio: auto; display: flex; align-items: center; justify-content: center; margin-top: 0; }

/* WYG feature bands */
.wyg-stack .wyg-row { display: grid; grid-template-columns: 1.2fr 1fr; gap: 64px; align-items: center; padding: 72px 0; border-bottom: 1px solid var(--vx-border); }
.wyg-stack .wyg-row:last-child { border-bottom: none; }
.wyg-row-flip .wyg-text { order: 2; }
.wyg-row-flip .wyg-anchor { order: 1; }
@media (max-width: 900px) { .wyg-stack .wyg-row { grid-template-columns: 1fr; gap: 32px; padding: 56px 0; } .wyg-row-flip .wyg-text { order: 1; } .wyg-row-flip .wyg-anchor { order: 2; } }
.wyg-index { font-family: var(--vx-font-display); font-style: italic; font-weight: 700; font-size: clamp(28px, 3vw, 44px); color: var(--vx-yellow); letter-spacing: 0.02em; margin-bottom: 14px; }
.wyg-index-xl { font-size: clamp(56px, 8vw, 128px); margin-bottom: 8px; opacity: 0.9; }
.wyg-text h2 { margin: 0 0 18px; }
.wyg-anchor { position: relative; }
.wyg-anchor img { opacity: 1; }
.wyg-anchor-tag { position: absolute; bottom: 14px; left: 16px; font-family: var(--vx-font-mono); font-size: 11px; letter-spacing: 0.16em; color: var(--vx-stone); text-transform: uppercase; }

/* WYG creative spotlight */
.wyg-spotlight { padding: 140px 0; background: radial-gradient(circle at 50% 20%, rgba(255,225,0,0.08), transparent 55%), #0a0a09; border-top: 1px solid var(--vx-border); border-bottom: 1px solid var(--vx-border); }
.display-xl { font-size: clamp(34px, 4vw, 64px); line-height: 0.98; margin: 0 0 24px; }
.wyg-spotlight-body { color: var(--vx-fg-muted); font-size: clamp(17px, 1.6vw, 21px); line-height: 1.65; max-width: 64ch; margin: 0 0 48px; }
.wyg-spotlight-media { }
.wyg-media-placeholder { aspect-ratio: 21/9; border: 1px dashed rgba(255,225,0,0.35); border-radius: 16px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; background: rgba(255,225,0,0.02); }
.wyg-media-placeholder .rec { display: inline-flex; align-items: center; gap: 8px; font-family: var(--vx-font-mono); font-size: 11px; letter-spacing: 0.18em; color: var(--vx-yellow); }
.wyg-media-placeholder .rec::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--vx-red); animation: blink 1.4s infinite; }
.wyg-media-placeholder .hint { font-size: 13px; color: var(--vx-stone); }

/* WYG closing band */
.wyg-close-band { max-width: 760px; margin: 0 auto; text-align: center; }
.wyg-close-band .wyg-index { margin-bottom: 10px; }
.wyg-close-band h2 { margin: 0 0 20px; }

/* Matrix: badge + custom cell */
.wyg-matrix .col-badge { display: inline-block; background: var(--vx-yellow); color: var(--vx-black); font-family: var(--vx-font-mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 700; padding: 4px 10px; border-radius: 999px; margin-bottom: 8px; }
.wyg-custom-cell { text-align: left !important; vertical-align: top; }
.wyg-custom-cell p { font-size: 13px; line-height: 1.5; color: var(--vx-fg-muted); margin: 0 0 10px; }
.wyg-custom-cell a { font-size: 13px; color: var(--vx-yellow); border-bottom: 1px solid rgba(255,225,0,0.4); }
.wyg-custom-row td { border-bottom: none; }

/* Contact stacked layout */
.contact-book-head-center { text-align: center; }
.contact-book-head-center h1 { margin-left: auto; margin-right: auto; }
.contact-book-head-center .eyebrow { justify-content: center; }
.contact-bullets-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin: 40px 0; }
@media (max-width: 820px) { .contact-bullets-row { grid-template-columns: 1fr; gap: 20px; } }
.contact-photo-band { margin: 0 0 48px; }
.contact-photo-band .hero-photo { aspect-ratio: 21/9; }
@media (max-width: 720px) { .contact-photo-band .hero-photo { aspect-ratio: 16/10; } }
.contact-cal-center { max-width: 760px; margin: 0 auto; }
.fine-print-center { text-align: center; margin-left: auto; margin-right: auto; }

/* Quiz conditional audit card */
.quiz-audit-card { display: flex; align-items: center; gap: 16px; text-align: left; background: rgba(255,225,0,0.05); border: 1px solid rgba(255,225,0,0.3); border-radius: 14px; padding: 20px 24px; margin: 24px auto 0; max-width: 640px; transition: border-color 150ms, background 150ms, transform 150ms; }
.quiz-audit-card:hover { border-color: var(--vx-yellow); background: rgba(255,225,0,0.09); transform: translateY(-1px); }
.quiz-audit-card .qa-label { flex-shrink: 0; font-family: var(--vx-font-mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--vx-black); background: var(--vx-yellow); padding: 5px 10px; border-radius: 999px; font-weight: 700; }
.quiz-audit-card .qa-text { font-size: 14px; line-height: 1.5; color: var(--vx-fg); }
.quiz-audit-card .qa-arrow { color: var(--vx-yellow); font-size: 18px; flex-shrink: 0; }
@media (max-width: 640px) { .quiz-audit-card { flex-direction: column; align-items: flex-start; } }

/* ============ Delta 4 ============ */
/* 1. Full-bleed cinematic hero */
.hero-fullbleed { position: relative; min-height: 92vh; display: flex; align-items: flex-end; padding: 0 0 72px; overflow: hidden; background: #111110; }
.hero-bg { position: absolute; inset: 0; z-index: 0; background: radial-gradient(ellipse at 50% 42%, rgba(255,225,0,0.13), rgba(255,225,0,0.04) 38%, transparent 62%), #111110; }
.hero-scrim { position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(17,17,16,0.35) 0%, rgba(17,17,16,0.15) 40%, rgba(17,17,16,0.55) 72%, rgba(17,17,16,0.78) 100%); pointer-events: none; }
.hero-overlay { position: relative; z-index: 2; width: 100%; }
.hero-overlay-inner { max-width: 760px; padding-top: 140px; }
.hero-fullbleed .hero-h1 { font-size: clamp(44px, 6.2vw, 96px); }
@media (max-width: 720px) {
  .hero-fullbleed { min-height: 88vh; padding-bottom: 48px; }
  .hero-overlay-inner { padding-top: 120px; }
}
.marquee-strip { padding: 8px 0 40px; border-bottom: 1px solid rgba(255,255,255,0.05); }
.marquee-strip .hero-marquee-wrap { margin-top: 24px; }

/* 2. WYG hero: LayeredText fully visible */
.wyg-hero-grid { align-items: center; }
.wyg-hero-grid .hero-slot { min-height: 480px; padding: 40px 0; overflow: visible; }
/* delta-4 layered-text overrides removed: component props are the source of truth */
@media (max-width: 900px) {
  .wyg-hero-grid .hero-slot { min-height: 360px; }
}

/* 3. Pinned 90: one panel in view, longer pin */
.p90-wrap { height: 400vh; }
.p90-track { gap: 6vw; padding: 24px 6vw; }
.p90-panel { flex: 0 0 82vw; max-width: none; padding: clamp(32px, 5vw, 64px); }
.p90-panel h3 { font-size: clamp(30px, 3.6vw, 52px); }
.p90-panel p { font-size: clamp(16px, 1.6vw, 20px); max-width: 56ch; }
@media (prefers-reduced-motion: reduce) {
  .p90-panel { flex: 1 1 280px; }
}

/* 4. Matrix: equal columns, Custom de-emphasized */
.wyg-matrix { table-layout: fixed; }
.wyg-matrix .row-label { width: 26%; }
.wyg-matrix th:not(.row-label), .wyg-matrix td:not(.row-label) { width: 18.5%; }
.wyg-matrix th.accent { transform: translateY(-4px); }
.wyg-custom-cell p { font-size: 12px; color: var(--vx-stone); }
.wyg-custom-link { font-size: 12px; color: var(--vx-stone) !important; border-bottom: 1px solid var(--vx-border) !important; text-decoration: none; }
.wyg-custom-link:hover { color: var(--vx-fg) !important; }

/* 5. Contact: no photo band */
.contact-photo-band { display: none; }

/* ============ Delta 5 ============ */
/* 1. WYG hero: no overflow, static stacked words */
.wyg-hero { overflow: hidden; }
.wyg-hero-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 48px; align-items: center; min-height: 0; }
@media (max-width: 900px) { .wyg-hero-grid { grid-template-columns: 1fr; } }
.wyg-hero-visual { display: flex; align-items: center; justify-content: center; padding: 24px 0; min-width: 0; }
.wyg-stackwords { display: flex; flex-direction: column; align-items: center; transform: skewY(-6deg); }
.wyg-word {
  display: block;
  font-family: var(--vx-font-sans);
  font-weight: 900;
  font-size: clamp(28px, 3.4vw, 52px);
  line-height: 1.06;
  letter-spacing: -0.02em;
  color: var(--vx-yellow);
  text-transform: uppercase;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms cubic-bezier(.2,.8,.2,1), transform 600ms cubic-bezier(.2,.8,.2,1);
  transition-delay: calc(var(--i, 0) * 90ms + 150ms);
}
.wyg-word:nth-child(even) { color: var(--vx-fg); }
.wyg-hero-visual.in .wyg-word, [data-reveal].in .wyg-word { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .wyg-word { opacity: 1; transform: none; transition: none; } }

/* 4. WYG band images */
.wyg-anchor-img { display: flex; align-items: center; justify-content: center; min-width: 0; }
.wyg-anchor-img img { width: 100%; height: auto; border-radius: 16px; border: 1px solid rgba(255,225,0,0.14); box-shadow: 0 22px 60px rgba(0,0,0,0.5); display: block; }
.wyg-spotlight-media img { width: 100%; height: auto; border-radius: 18px; border: 1px solid rgba(255,225,0,0.2); box-shadow: 0 0 80px rgba(255,225,0,0.08), 0 30px 80px rgba(0,0,0,0.55); display: block; }
.wyg-close-band { display: grid; grid-template-columns: 1.2fr 1fr; gap: 48px; align-items: center; }
@media (max-width: 900px) { .wyg-close-band { grid-template-columns: 1fr; } }
.wyg-close-media img { width: 100%; height: auto; border-radius: 16px; border: 1px solid rgba(255,225,0,0.14); box-shadow: 0 22px 60px rgba(0,0,0,0.5); display: block; }

/* 2. Pinned 90: snap-and-dwell, two-part cards, longer pin */
.p90-wrap { height: 520vh; }
.p90-panel {
  flex: 0 0 min(86vw, 1080px);
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(24px, 3vw, 48px);
  align-items: center;
  padding: clamp(28px, 4vw, 56px);
}
@media (max-width: 720px) { .p90-panel { grid-template-columns: 1fr; } }
.p90-panel-media img { width: 100%; height: auto; border-radius: 14px; border: 1px solid rgba(255,255,255,0.08); display: block; }
.p90-panel-text p { max-width: 44ch; }
@media (prefers-reduced-motion: reduce) {
  .p90-wrap { height: auto; }
  .p90-track { flex-direction: column; transform: none !important; }
  .p90-panel { flex: 1 1 auto; }
}

/* 3. Contact calendar: kill the white bleed */
.booking-widget { background: #111110; overflow: hidden; }
.booking-widget iframe { background: #111110; }

/* Delta 5 fix: term line must fit inside the 100vh sticky at short viewports */
@media (max-height: 700px) {
  .p90-head { padding-top: 16px; padding-bottom: 8px; }
  .p90-head .display-lg { font-size: clamp(24px, 4vh, 40px); }
  .p90-panel { padding: clamp(16px, 2.5vh, 32px); }
  .p90-panel-media img { max-height: 32vh; width: auto; max-width: 100%; margin: 0 auto; }
  .p90-term { margin: 8px auto 12px; font-size: 14px; }
  .p90-portal { flex: 1 1 auto; min-height: 0; }
}

/* ============ Delta 6 ============ */
/* 1. Home hero full-bleed image */
.hero-bg img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }

/* 2. WYG bands become filled two-box cards (image fills its half edge-to-edge) */
.wyg-stack .wyg-row.glow-card {
  padding: 0;
  border: 1px solid var(--vx-border);
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255,255,255,0.02);
  margin-bottom: 24px;
  align-items: stretch;
}
.wyg-stack .wyg-row.glow-card:last-child { margin-bottom: 0; }
.wyg-stack .wyg-row .wyg-text { padding: clamp(32px, 4vw, 56px); display: flex; flex-direction: column; justify-content: center; }
.wyg-anchor-img { padding: 0; align-items: stretch; }
.wyg-anchor-img img {
  width: 100%; height: 100%;
  min-height: 100%;
  object-fit: cover;
  border-radius: 0; border: none; box-shadow: none;
  filter: none;
}
@media (max-width: 900px) {
  .wyg-anchor-img { min-height: 240px; }
  .wyg-anchor-img img { min-height: 240px; }
}

/* Spotlight (04) image full brightness, edge clean */
.wyg-spotlight-media img { filter: none; }

/* Close band (07) as a filled card too */
.wyg-close-band.glow-card {
  border: 1px solid var(--vx-border);
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255,255,255,0.02);
  gap: 0;
  align-items: stretch;
}
.wyg-close-band .wyg-close-text { padding: clamp(32px, 4vw, 56px); display: flex; flex-direction: column; justify-content: center; }
.wyg-close-media { align-items: stretch; }
.wyg-close-media img { width: 100%; height: 100%; min-height: 100%; object-fit: cover; border-radius: 0; border: none; box-shadow: none; }
@media (max-width: 900px) { .wyg-close-media img { min-height: 240px; } }

/* GlowCard: pointer-follow border glow, volt/amber locked */
.glow-card { position: relative; isolation: isolate; }
.glow-card::before {
  content: "";
  position: absolute; inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: radial-gradient(240px circle at var(--gc-x, 50%) var(--gc-y, 50%),
    hsl(var(--gc-hue, 47) 100% 55% / 0.9), hsl(calc(var(--gc-hue, 47) - 4) 90% 50% / 0.35) 40%, transparent 70%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  opacity: 0; transition: opacity 260ms ease;
  pointer-events: none; z-index: 3;
}
.glow-card:hover::before { opacity: 1; }
.glow-card::after {
  content: "";
  position: absolute; inset: 0;
  border-radius: inherit;
  background: radial-gradient(320px circle at var(--gc-x, 50%) var(--gc-y, 50%),
    hsl(var(--gc-hue, 47) 100% 55% / 0.08), transparent 60%);
  opacity: 0; transition: opacity 260ms ease;
  pointer-events: none; z-index: 0;
}
.glow-card:hover::after { opacity: 1; }
@media (prefers-reduced-motion: reduce) { .glow-card::before, .glow-card::after { transition: none; } }

/* 3. Contact calendar white-strip HARD crop */
.booking-widget { background: #111110 !important; border-radius: 16px; overflow: hidden !important; position: relative; }
.booking-widget iframe {
  background: #111110;
  position: relative;
  top: -6px;
  height: calc(100% + 12px);
  min-height: 572px;
  border-radius: 0;
}

/* 5. About story image */
.about-story-media { border-radius: 16px; overflow: hidden; border: 1px solid rgba(255,225,0,0.14); box-shadow: 0 22px 60px rgba(0,0,0,0.5); margin-bottom: 48px; max-width: 900px; }
.about-story-media img { width: 100%; height: auto; display: block; }

/* ============ Delta 7 ============ */
/* 2. WYG images: contain, never crop; card height driven by text, image scales to fit */
.wyg-stack .wyg-row.glow-card { align-items: stretch; }
.wyg-anchor-img { padding: clamp(20px, 2.5vw, 36px); background: #0d0d0c; display: flex; align-items: center; justify-content: center; }
.wyg-anchor-img img {
  width: 100%; height: auto;
  max-height: 340px;
  min-height: 0;
  object-fit: contain;
  border-radius: 10px; border: none; box-shadow: 0 12px 32px rgba(0,0,0,0.45);
  filter: none;
}
@media (max-width: 900px) {
  .wyg-anchor-img { min-height: 0; }
  .wyg-anchor-img img { min-height: 0; max-height: 280px; }
}

/* 07 close band: its own wider section, image contained (not cropped) */
.wyg-close-band.glow-card { grid-template-columns: 1.35fr 1fr; }
.wyg-close-media { padding: clamp(20px, 2.5vw, 36px); background: #0d0d0c; display: flex; align-items: center; justify-content: center; }
.wyg-close-media img { width: 100%; height: auto; min-height: 0; max-height: 320px; object-fit: contain; border-radius: 10px; border: none; box-shadow: 0 12px 32px rgba(0,0,0,0.45); }
@media (max-width: 900px) { .wyg-close-media img { max-height: 260px; } }

/* Spotlight (04): keep contain so gear reads fully */
.wyg-spotlight-media img { max-height: 520px; object-fit: contain; margin: 0 auto; }

/* 5. About story image: below the text, comfortable width */
.about-story-media { margin: 48px auto 0; }

/* 3. Contact H1 as Pirulen display header, centered */
.contact-h1-display {
  font-family: var(--vx-font-display);
  font-style: italic;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: -0.005em;
  line-height: 1.02;
  font-size: clamp(34px, 5vw, 64px);
}
.contact-book-head-center { text-align: center; margin-left: auto; margin-right: auto; }
.contact-book-head-center .eyebrow { justify-content: center; }

/* Contact bullets as cards */
.contact-bullets-cards { gap: 20px; }
.contact-bullets-cards .contact-bullet {
  background: var(--vx-charcoal);
  border: 1px solid var(--vx-border);
  border-radius: 14px;
  padding: 28px 26px;
  text-align: left;
}
body[data-theme="cream"] .contact-bullets-cards .contact-bullet { background: #fff; }
.contact-bullets-cards .contact-bullet h4 { margin: 0 0 10px; font-size: 16px; }
.contact-bullets-cards .contact-bullet p { margin: 0; font-size: 14px; line-height: 1.55; color: var(--vx-fg-muted); }

/* ============ Delta 8 ============ */
/* 1. Stair-text hero (replaces layered-text on WYG; fresh classes, no stale overrides) */
.wyg-hero-visual { overflow: visible; min-width: 0; }
.stair-text ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; align-items: center; }
.stair-text li {
  font-family: var(--vx-font-sans); font-weight: 900; text-transform: uppercase;
  font-size: clamp(26px, 3.2vw, 48px); line-height: 1.18; letter-spacing: -1px;
  color: var(--vx-yellow); white-space: nowrap;
  transform: translateY(var(--dy, 0px)) translateX(var(--tx, 0)) skew(var(--skx, 0deg), var(--sky, 0deg)) scaleY(var(--sy, 1));
  transition: transform 520ms cubic-bezier(.2,.8,.2,1);
  transition-delay: calc(var(--i, 0) * 45ms);
}
.stair-text:hover li { --dy: 16px; }
@media (prefers-reduced-motion: reduce) { .stair-text li { transition: none; } }

/* 2. WYG images: natural 16:9, full width of their half, never cropped or capped */
.wyg-stack .wyg-row.glow-card .wyg-anchor-img { padding: clamp(20px, 2.5vw, 32px); background: transparent; align-self: center; min-height: 0; }
.wyg-stack .wyg-row.glow-card .wyg-anchor-img img {
  width: 100%; height: auto; max-height: none; min-height: 0;
  object-fit: fill; border-radius: 12px; border: none;
  box-shadow: 0 12px 32px rgba(0,0,0,0.45); filter: none;
}
/* Shrink band text so cards sit shorter */
.wyg-stack .wyg-row .wyg-text { padding: clamp(28px, 3.5vw, 48px); }
.wyg-stack .wyg-text .display-lg { font-size: clamp(24px, 2.6vw, 40px); }
.wyg-stack .wyg-text .piece-body { font-size: clamp(15px, 1.3vw, 17px); }

/* 3. Spotlight (04): natural ratio, no cap, no letterbox */
.wyg-spotlight-media img { width: 100%; height: auto; max-height: none; object-fit: fill; margin: 0; }

/* 4. 07 close band: same two-column rhythm as the other bands, image half full width */
.wyg-close-band.glow-card { grid-template-columns: 1fr 1fr; }
.wyg-close-band .wyg-close-text { padding: clamp(28px, 3.5vw, 48px); }
.wyg-close-band .wyg-close-text .display-lg { font-size: clamp(24px, 2.6vw, 40px); }
.wyg-close-band .wyg-close-media { padding: clamp(20px, 2.5vw, 32px); background: transparent; align-self: center; display: block; min-height: 0; }
.wyg-close-band .wyg-close-media img { width: 100%; height: auto; max-height: none; min-height: 0; object-fit: fill; border-radius: 12px; border: none; box-shadow: 0 12px 32px rgba(0,0,0,0.45); }

/* 5. About story: two columns, text left, image right */
.about-story-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 48px; align-items: center; }
@media (max-width: 900px) { .about-story-grid { grid-template-columns: 1fr; } }
.about-story-grid .about-story-media { margin: 0; max-width: none; }

/* ============ Delta 8b: old-site LayeredText restored ============ */
.wyg-hero-visual { min-height: 480px; overflow: visible; display: flex; align-items: center; justify-content: center; padding: 32px 0; }
@media (max-width: 900px) {
  .wyg-hero-visual { min-height: 340px; }
}
/* Kill the delta-8 stair-text experiment */
.stair-text { display: none; }

/* ============ Delta 9 ============ */
/* 1. WYG images float free: no inner card, no border/shadow line separation */
.wyg-stack .wyg-row.glow-card .wyg-anchor-img { background: transparent; padding: clamp(24px, 3vw, 40px); align-self: center; }
.wyg-stack .wyg-row.glow-card .wyg-anchor-img img { border: none; box-shadow: none; border-radius: 10px; width: 100%; height: auto; max-height: none; object-fit: fill; }
.wyg-spotlight-media { border: none; box-shadow: none; background: transparent; }
.wyg-spotlight-media img { border: none; box-shadow: none; border-radius: 10px; }

/* 2. Band 07 matches every other band exactly */
.wyg-close-band.glow-card { grid-template-columns: 1fr 1fr; }
.wyg-close-band .wyg-close-text { padding: clamp(28px, 3.5vw, 48px); text-align: left; }
.wyg-close-band .wyg-close-media { background: transparent; padding: clamp(24px, 3vw, 40px); align-self: center; display: block; }
.wyg-close-band .wyg-close-media img { width: 100%; height: auto; max-height: none; min-height: 0; object-fit: fill; border: none; box-shadow: none; border-radius: 10px; }

/* 3. Home hero: centered content, fade-on-scroll handled inline by JS */
.hero-fullbleed { align-items: center; padding: 0; }
.hero-overlay-centered { max-width: 880px; margin: 0 auto; text-align: center; padding-top: 96px; }
.hero-overlay-centered .eyebrow { justify-content: center; }
.hero-overlay-centered .hero-sub { margin-left: auto; margin-right: auto; }
.hero-overlay-centered .hero-trust { justify-content: center; }
.hero-overlay-centered .hero-ctas { justify-content: center; }
.hero-overlay { will-change: opacity, transform; }

/* 4. Blend hero into the marquee: no hard black seam */
.hero-fullbleed .hero-scrim { background: linear-gradient(180deg, rgba(17,17,16,0.35) 0%, rgba(17,17,16,0.18) 40%, rgba(17,17,16,0.6) 78%, #111110 100%); }
.marquee-strip.grid-bg { border-bottom: none; padding: 24px 0 48px; background:
  linear-gradient(180deg, #111110 0%, rgba(17,17,16,0) 30%),
  linear-gradient(to right, rgba(255,255,255,0.035) 1px, transparent 1px),
  linear-gradient(to bottom, rgba(255,255,255,0.035) 1px, transparent 1px), #111110;
  background-size: auto, 32px 32px, 32px 32px, auto; }

/* Final: no secondary card around band images, ever */
.wyg-stack .wyg-row .wyg-anchor { border: none; border-radius: 0; aspect-ratio: auto; background: transparent; }

/* ============ Delta 7 (mobile): packages as stacked cards ============ */
.wyg-matrix-cards { display: none; }
@media (min-width: 721px) { .wyg-matrix-cards { display: none !important; } }
@media (max-width: 720px) {
  .wyg-matrix-scroll { display: none; }
  .wyg-matrix-cards { display: grid; gap: 16px; }
  .wyg-pkg-card { position: relative; background: var(--vx-charcoal); border: 1px solid var(--vx-border); border-radius: 16px; padding: 28px 24px; }
  .wyg-pkg-card.accent { border-color: var(--vx-yellow); box-shadow: 0 0 0 1px var(--vx-yellow), 0 20px 50px rgba(255,225,0,0.08); }
  .wyg-pkg-card .col-badge { position: absolute; top: -11px; left: 24px; background: var(--vx-yellow); color: var(--vx-black); font-family: var(--vx-font-mono); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 700; padding: 4px 10px; border-radius: 999px; }
  .wyg-pkg-name { font-family: var(--vx-font-display); font-style: italic; text-transform: uppercase; font-weight: 700; font-size: 24px; letter-spacing: -0.005em; margin-bottom: 6px; }
  .wyg-pkg-card.accent .wyg-pkg-name { color: var(--vx-yellow); }
  .wyg-pkg-sub { color: var(--vx-fg-muted); font-size: 14px; line-height: 1.5; margin-bottom: 20px; }
  .wyg-pkg-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
  .wyg-pkg-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; line-height: 1.4; }
  .wyg-pkg-list li.no { color: rgba(255,255,255,0.4); }
  .wyg-pkg-list .tick { flex-shrink: 0; color: var(--vx-yellow); display: inline-flex; margin-top: 1px; }
  .wyg-pkg-list .dash { flex-shrink: 0; width: 15px; text-align: center; color: rgba(255,255,255,0.35); }
  .wyg-pkg-custom { margin: 16px 0 0; font-size: 12px; color: var(--vx-stone); line-height: 1.5; }
  .wyg-pkg-cta { margin-top: 22px; width: 100%; justify-content: center; }
}
/* ---- Hero PINNED scroll-scrub video (wired at merge) ---- */
.hero-track { position: relative; height: 340vh; }
.hero-fullbleed.hero-sticky { position: sticky; top: 0; height: 100vh; min-height: 100vh; }
.hero-bg .hero-bg-poster { z-index: 0; }
.hero-canvas { position: absolute; inset: 0; width: 100%; height: 100%; display: block; z-index: 1; }
@media (prefers-reduced-motion: reduce) { .hero-track { height: 100vh; } }

/* ============================================================
   HERO READABILITY + MOBILE FIXES (merge pass, Jul 16)
   ============================================================ */

/* Hero: scroll-linked dim (strong at top for legibility, fades as you scroll so the video pops) */
.hero-dim { position: absolute; inset: 0; background: #0a0a09; opacity: 0.52; pointer-events: none; will-change: opacity; z-index: 2; }
/* Brighter, legible hero copy over the video */
.hero-fullbleed .hero-sub { color: rgba(255,255,255,0.92); text-shadow: 0 1px 14px rgba(0,0,0,0.55); }
.hero-fullbleed .hero-overlay .eyebrow,
.hero-fullbleed .hero-micro,
.hero-fullbleed .hero-trust { text-shadow: 0 1px 12px rgba(0,0,0,0.5); }
/* Title a touch smaller */
.hero-fullbleed .hero-h1 { font-size: clamp(40px, 5.4vw, 82px); }

@media (max-width: 720px) {
  /* Hero not oversized, still readable */
  .hero-fullbleed .hero-h1 { font-size: clamp(34px, 10vw, 52px); }
  .hero-fullbleed .hero-sub { font-size: 16px; }
  .hero-dim { opacity: 0.58; }

  /* What You Get hero: drop the stair-text (dead space on mobile, hover useless on touch) */
  .wyg-hero-visual { display: none !important; }

  /* FAQ questions/answers off the left edge (sitewide) */
  .faq-item summary { padding-left: 20px; padding-right: 46px; }
  .faq-item .answer { padding-left: 20px; padding-right: 20px; }

  /* How it works: the 3 metric stats on one row */
  .timeline-strip { display: flex; flex-direction: row; gap: 8px; justify-content: space-between; align-items: stretch; }
  .timeline-strip .step-stat { flex: 1 1 0; min-width: 0; text-align: center; padding: 12px 4px; }
  .timeline-strip .step-stat .n { font-size: 20px; }
  .timeline-strip .step-stat .l { font-size: 9.5px; letter-spacing: 0.04em; }

  /* Step cards: keep the big colored number from cutting off the heading */
  .step-card { flex-direction: column; align-items: flex-start; }
  .step-fold { position: static; margin-bottom: 14px; }
  .step-body { padding-left: 0; }

  /* Deal section fits: shrink the giant word + full-width cards */
  .deal-everything { font-size: clamp(46px, 16vw, 84px); line-height: 0.92; word-break: break-word; }
  .deal-mine, .commit-grid .commit-card { width: 100%; }

  /* 90-day timeline: clear margin between the panel and the portal lines */
  .p90-glow-l { left: 5vw; }
  .p90-glow-r { right: 5vw; }
  .p90-viewport { margin: 0 5vw; }
  .p90-panel { flex-basis: 74vw; }

  /* Contact: mobile scroll hint under the H1 */
  .contact-scroll-hint { display: flex; }
}

/* Contact scroll hint (mobile only, hidden on desktop) */
.contact-scroll-hint { display: none; align-items: center; justify-content: center; gap: 8px; margin: 14px 0 4px; color: var(--vx-yellow); font-family: var(--vx-font-mono); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; animation: hint-blink 1.6s ease-in-out infinite; }
.contact-scroll-hint .arrow { animation: hint-bounce 1.6s ease-in-out infinite; }
@keyframes hint-blink { 0%,100% { opacity: 0.45; } 50% { opacity: 1; } }
@keyframes hint-bounce { 0%,100% { transform: translateY(0); } 50% { transform: translateY(4px); } }

/* ============================================================
   Blog + niche pages (generated by scripts/build-content.mjs)
   Static pages that reuse the site chrome. Tokens only, no new colors.
   ============================================================ */

/* ---- shared: give the static pages nav clearance below the floating pill ---- */
.blog-post-route, .blog-index-route { padding-top: 128px; }
@media (max-width: 720px) { .blog-post-route, .blog-index-route { padding-top: 104px; } }

/* ---------- Blog post ---------- */
.blog-post { padding: 24px 0 96px; }
.blog-back {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--vx-font-mono); font-size: 13px; letter-spacing: 0.04em;
  color: var(--vx-stone); margin-bottom: 40px;
  transition: color 150ms;
}
.blog-back:hover { color: var(--vx-yellow); }
.blog-post-eyebrow {
  font-family: var(--vx-font-mono); font-size: 13px; letter-spacing: 0.02em;
  color: var(--vx-yellow); margin: 0 0 20px;
}
.blog-post-title.display {
  font-size: clamp(34px, 5vw, 60px); margin: 0 0 24px; max-width: 20ch;
}
.blog-post-standfirst {
  font-size: clamp(18px, 1.6vw, 22px); line-height: 1.5; color: var(--vx-fg-muted);
  max-width: 60ch; margin: 0 0 8px; padding-bottom: 40px;
  border-bottom: 1px solid var(--vx-border);
}
.blog-post-body { max-width: 68ch; font-size: 18px; line-height: 1.72; color: var(--vx-fg); margin-top: 48px; }
.blog-post-body > :first-child { margin-top: 0; }
.blog-post-body h2 {
  font-family: var(--vx-font-sans); font-weight: 800; letter-spacing: -0.01em;
  font-size: clamp(24px, 2.6vw, 32px); line-height: 1.2;
  margin: 56px 0 20px; color: var(--vx-fg);
}
.blog-post-body h3 {
  font-family: var(--vx-font-sans); font-weight: 700;
  font-size: clamp(20px, 2vw, 24px); line-height: 1.25;
  margin: 40px 0 16px; color: var(--vx-fg);
}
.blog-post-body p { margin: 0 0 24px; }
.blog-post-body a { color: var(--vx-yellow); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; }
.blog-post-body a:hover { color: var(--vx-yellow-300); }
.blog-post-body ul, .blog-post-body ol { margin: 0 0 24px; padding-left: 26px; }
.blog-post-body li { margin: 0 0 10px; }
.blog-post-body li::marker { color: var(--vx-yellow); }
.blog-post-body blockquote {
  margin: 32px 0; padding: 4px 0 4px 28px;
  border-left: 3px solid var(--vx-yellow);
  color: var(--vx-fg); font-size: 22px; line-height: 1.5; font-style: italic;
}
.blog-post-body blockquote p:last-child { margin-bottom: 0; }
.blog-post-body code {
  font-family: var(--vx-font-mono); font-size: 0.9em;
  background: var(--vx-black-300); border: 1px solid var(--vx-border);
  border-radius: 6px; padding: 2px 6px;
}
.blog-post-body pre {
  background: var(--vx-black-700); border: 1px solid var(--vx-border);
  border-radius: 12px; padding: 20px 24px; overflow-x: auto; margin: 0 0 24px;
}
.blog-post-body pre code { background: none; border: 0; padding: 0; font-size: 14px; }
.blog-post-body hr { border: 0; border-top: 1px solid var(--vx-border); margin: 48px 0; }
.blog-post-body img { border-radius: 12px; margin: 32px 0; }

/* End-of-post CTA band */
.blog-cta-band { border-top: 1px solid var(--vx-border); padding: 80px 0 96px; background: var(--vx-charcoal); }
.blog-cta-inner { position: relative; text-align: center; max-width: 640px; }
.blog-cta-strip { width: 44px; height: 4px; background: var(--vx-yellow); margin: 0 auto 28px; }
.blog-cta-title { font-family: var(--vx-font-sans); font-weight: 900; letter-spacing: -0.02em; font-size: clamp(26px, 3vw, 40px); line-height: 1.08; margin: 0 0 16px; }
.blog-cta-sub { color: var(--vx-fg-muted); line-height: 1.6; font-size: 17px; margin: 0 0 32px; }

/* ---------- Blog index ---------- */
.blog-index-hero { padding: 8px 0 40px; }
.blog-index-title { font-size: clamp(40px, 6vw, 84px); margin: 16px 0 20px; }
.blog-index-sub { color: var(--vx-fg-muted); font-size: clamp(17px, 1.5vw, 20px); line-height: 1.55; max-width: 60ch; margin: 0; }
.blog-index-body { padding: 40px 0 112px; }
.blog-filter { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 48px; }
.blog-chip {
  font-family: var(--vx-font-mono); font-size: 12px; letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 9px 16px; border-radius: 999px;
  border: 1px solid var(--vx-border-strong); color: var(--vx-fg-muted);
  background: transparent; transition: color 150ms, border-color 150ms, background 150ms;
}
.blog-chip:hover { color: var(--vx-fg); border-color: var(--vx-stone); }
.blog-chip.active { background: var(--vx-yellow); color: var(--vx-black); border-color: var(--vx-yellow); }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 960px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .blog-grid { grid-template-columns: 1fr; } }
.blog-card {
  display: flex; flex-direction: column; gap: 12px;
  background: var(--vx-charcoal); border: 1px solid var(--vx-border);
  border-radius: 16px; padding: 28px;
  transition: border-color 180ms, transform 180ms, background 180ms;
}
.blog-card:hover { border-color: var(--vx-border-strong); transform: translateY(-3px); background: var(--vx-black-200); }
.blog-card[hidden] { display: none; }
.blog-card-meta { font-family: var(--vx-font-mono); font-size: 12px; letter-spacing: 0.02em; color: var(--vx-stone); }
.blog-card-title { font-family: var(--vx-font-sans); font-weight: 800; letter-spacing: -0.01em; font-size: 21px; line-height: 1.25; margin: 0; color: var(--vx-fg); }
.blog-card-desc { color: var(--vx-fg-muted); font-size: 15px; line-height: 1.55; margin: 0; flex: 1; }
.blog-card-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 4px; }
.blog-card-tag {
  font-family: var(--vx-font-mono); font-size: 11px; letter-spacing: 0.04em;
  text-transform: uppercase; color: var(--vx-yellow);
  border: 1px solid var(--vx-border-strong); border-radius: 999px; padding: 4px 10px;
}
.blog-empty { color: var(--vx-fg-muted); font-size: 16px; padding: 24px 0; }

/* ---------- Niche page ---------- */
.niche-hero { padding: 160px 0 96px; }
@media (max-width: 720px) { .niche-hero { padding: 120px 0 64px; } }
.niche-hero-title { font-size: clamp(40px, 6vw, 84px); margin: 20px 0 24px; max-width: 16ch; }
.niche-hero-sub { color: var(--vx-fg-muted); font-size: clamp(18px, 1.7vw, 22px); line-height: 1.5; max-width: 56ch; margin: 0 0 40px; }
.niche-hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.niche-intro-block { font-size: clamp(19px, 1.8vw, 24px); line-height: 1.55; color: var(--vx-fg); max-width: 62ch; }
.niche-intro-block > :first-child { margin-top: 0; }
.niche-intro-block p { margin: 0 0 20px; }
.niche-section-inner { max-width: 68ch; }
.niche-section-title { font-family: var(--vx-font-sans); font-weight: 800; letter-spacing: -0.01em; font-size: clamp(26px, 3vw, 40px); line-height: 1.15; margin: 0 0 24px; }
.niche-section-body { font-size: 18px; line-height: 1.7; color: var(--vx-fg-muted); }
.niche-section-body > :first-child { margin-top: 0; }
.niche-section-body p { margin: 0 0 22px; }
.niche-section-body ul, .niche-section-body ol { margin: 0 0 22px; padding-left: 26px; }
.niche-section-body li { margin: 0 0 10px; }
.niche-section-body li::marker { color: var(--vx-yellow); }
.niche-section-body a { color: var(--vx-yellow); text-decoration: underline; text-underline-offset: 3px; }

.niche-cta-inner, .niche-cta-final-inner { position: relative; text-align: center; max-width: 680px; margin-left: auto; margin-right: auto; }
.niche-cta-title { font-family: var(--vx-font-sans); font-weight: 900; letter-spacing: -0.02em; font-size: clamp(26px, 3vw, 40px); line-height: 1.1; margin: 0 0 16px; }
.niche-cta-sub, .niche-cta-final-sub { color: var(--vx-fg-muted); line-height: 1.6; font-size: 17px; margin: 0 0 32px; max-width: 52ch; margin-left: auto; margin-right: auto; }
.niche-cta-strip { width: 44px; height: 4px; background: var(--vx-yellow); margin: 0 auto 28px; }
.niche-cta-final .display { font-size: clamp(30px, 4.4vw, 60px); margin: 0 0 16px; }

/* FAQ answers on generated pages carry block children; trim their outer margins */
.faq-item .answer > :first-child { margin-top: 0; }
.faq-item .answer > :last-child { margin-bottom: 0; }
.faq-item .answer p { margin: 0 0 14px; }


/* ===================================================================
   INDUSTRIES + NICHE PAGES — component styles (merged from Jaden's
   Claude Design build, Jul 17 2026). Cube, filter grid, glow cards,
   niche hero/pain/spine/Q&A/founder/final-CTA. Additive: none of these
   selectors existed in the base stylesheet.
   =================================================================== */

/* ============ /industries v3 (rotating hero + filter grid) ============ */
.ind-hero { padding: 128px 0 44px; }

@media (max-width: 720px) { .ind-hero { padding: 104px 0 32px; } }

.ind-hero-h1 {
  font-family: var(--vx-font-sans); font-weight: 900;
  font-size: clamp(40px, 6.4vw, 92px); line-height: 1.02; letter-spacing: -0.035em;
  margin: 20px 0 22px; text-wrap: balance;
}

/* Rolling-cube hero keyword (verbatim spec) */
.bf-line{display:flex;flex-wrap:wrap;align-items:center;line-height:1.06;margin:0;}

.bf-word{white-space:pre;}

.bf-tail{display:inline-flex;align-items:center;white-space:nowrap;}

.bf-cube{position:relative;display:inline-block;width:6.4em;height:1.18em;perspective:900px;flex:0 0 auto;margin:0 .12em;}

.bf-core{position:absolute;inset:0;transform-style:preserve-3d;transform:rotateX(0deg);will-change:transform;}

.bf-face{position:absolute;inset:0;display:flex;align-items:center;justify-content:center;background:#FFE100;color:#111110;padding:0 .3em;overflow:hidden;backface-visibility:hidden;-webkit-backface-visibility:hidden;border-radius:2px;}

.bf-txt{font-family:var(--vx-font-display),'Orbitron','Aldrich',sans-serif;font-style:italic;font-weight:700;text-transform:uppercase;font-size:.62em;white-space:nowrap;line-height:1;}

@media (max-width:719px){ .bf-line{row-gap:.12em;} .bf-tail{flex-basis:100%;} }

.ind-hero-lede { max-width: 60ch; }

.ind-directory { padding: 8px 0 88px; }

.ind-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 28px; position: sticky; top: 76px; z-index: 5; padding: 12px 0; background: linear-gradient(180deg, var(--vx-charcoal) 70%, rgba(28,27,24,0)); }

body[data-theme="cream"] .ind-chips { background: linear-gradient(180deg, #f2efe9 70%, rgba(242,239,233,0)); }

.ind-chip {
  font-family: var(--vx-font-mono); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 10px 16px; border-radius: 999px; cursor: pointer;
  background: transparent; color: var(--vx-fg-muted);
  border: 1px solid var(--vx-border);
  transition: border-color 160ms, color 160ms, background 160ms, transform 160ms;
}

.ind-chip:hover { border-color: rgba(255,225,0,0.5); color: var(--vx-fg); }

.ind-chip.active { background: var(--vx-yellow); color: var(--vx-black); border-color: var(--vx-yellow); }

.ind-chip-count { opacity: 0.7; margin-left: 6px; }

.ind-chip.active .ind-chip-count { opacity: 0.85; }

.ind-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }

@media (max-width: 1000px) { .ind-grid { grid-template-columns: repeat(2, 1fr); } }

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

.ind-card {
  position: relative; display: flex; flex-direction: column; gap: 8px;
  background: rgba(255,255,255,0.02); border: 1px solid var(--vx-border);
  border-radius: 12px; padding: 20px 20px 22px;
  transition: border-color 180ms, transform 180ms, opacity 150ms;
}

body[data-theme="cream"] .ind-card { background: rgba(0,0,0,0.02); }

.ind-card:hover { border-color: rgba(255,225,0,0.5); transform: translateY(-3px); }

.ind-card.hidden { display: none; }

.ind-card-tag { font-family: var(--vx-font-mono); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--vx-stone); }

.ind-card-name { font-family: var(--vx-font-sans); font-weight: 800; font-size: 16px; letter-spacing: -0.01em; color: var(--vx-fg); }

.ind-card-hook { font-size: 13px; line-height: 1.45; color: var(--vx-fg-muted); }

.ind-card-arrow { position: absolute; top: 18px; right: 18px; color: var(--vx-stone); font-size: 15px; transition: transform 180ms, color 180ms; }

.ind-card:hover .ind-card-arrow { transform: translateX(3px); color: var(--vx-yellow); }

.ind-cta-band .ind-cta-inner { text-align: center; max-width: 640px; margin: 0 auto; }

.ind-cta-inner h2 { margin: 0 0 16px; }

.ind-cta-inner p { color: var(--vx-fg-muted); font-size: 18px; line-height: 1.6; margin: 0 auto 32px; max-width: 48ch; }

/* ============ /industries category color system (--cat) ============ */
.ind-chip { --cat: #FFFFFF; }

.ind-chip.active { background: var(--cat); color: #111110; border-color: var(--cat); }

.ind-chip.active .ind-chip-count { color: #111110; opacity: 0.72; }

.ind-card { --cat: #FFFFFF; border-color: color-mix(in srgb, var(--cat) 22%, transparent); }

.ind-card:hover { border-color: color-mix(in srgb, var(--cat) 40%, transparent); box-shadow: 0 0 0 1px color-mix(in srgb, var(--cat) 40%, transparent), 0 10px 45px color-mix(in srgb, var(--cat) 22%, transparent); }

.ind-card .ind-card-tag { color: var(--cat); }

.ind-card .ind-card-arrow { color: var(--cat); }

/* ============ Niche industry landing template ============ */
.niche-h1 { font-family: var(--vx-font-sans); font-weight: 900; font-size: clamp(40px, 6vw, 88px); line-height: 1.02; letter-spacing: -0.03em; margin: 22px 0 24px; }

.niche-h1 .mark { background: var(--vx-yellow); color: var(--vx-black); padding: 0 0.12em; }

.niche-sub { max-width: 52ch; }

/* Pain strip */
.niche-pain-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 8px; }

@media (max-width: 900px) { .niche-pain-grid { grid-template-columns: repeat(2, 1fr); } }

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

.niche-pain { background: var(--vx-charcoal); border: 1px solid var(--vx-border); border-left: 3px solid var(--vx-yellow); border-radius: 10px; padding: 22px 20px; font-family: var(--vx-font-sans); font-weight: 700; font-size: 16px; line-height: 1.35; color: var(--vx-fg); }

body[data-theme="cream"] .niche-pain { background: #fff; }

/* Spine - two buyers */
.niche-spine { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

@media (max-width: 820px) { .niche-spine { grid-template-columns: 1fr; } }

.niche-spine-card { background: var(--vx-charcoal); border: 1px solid var(--vx-border); border-radius: 16px; padding: 36px 32px; }

body[data-theme="cream"] .niche-spine-card { background: #fff; }

.niche-spine-card.right { border-color: rgba(255,225,0,0.3); }

.niche-spine-label { font-family: var(--vx-font-display); font-style: italic; text-transform: uppercase; font-weight: 700; font-size: 28px; color: var(--vx-yellow); display: block; margin-bottom: 20px; }

.niche-spine-card ul { list-style: none; padding: 0; margin: 0 0 20px; display: flex; flex-direction: column; gap: 10px; }

.niche-spine-card li { position: relative; padding-left: 22px; color: var(--vx-fg-muted); font-size: 16px; line-height: 1.45; }

.niche-spine-card li::before { content: ""; position: absolute; left: 0; top: 9px; width: 8px; height: 8px; background: var(--vx-yellow); border-radius: 50%; }

.niche-spine-win { color: var(--vx-fg); font-size: 15px; line-height: 1.55; margin: 0; padding-top: 18px; border-top: 1px solid var(--vx-border); }

/* Straight answers */
.niche-qa { display: flex; flex-direction: column; gap: 12px; }

.niche-qa-item { background: var(--vx-charcoal); border: 1px solid var(--vx-border); border-radius: 14px; overflow: hidden; }

body[data-theme="cream"] .niche-qa-item { background: #fff; }

.niche-qa-item summary { list-style: none; cursor: pointer; display: flex; align-items: flex-start; gap: 16px; padding: 26px 28px; }

.niche-qa-item summary::-webkit-details-marker { display: none; }

.niche-qa-num { font-family: var(--vx-font-mono); font-size: 13px; color: var(--vx-yellow); padding-top: 4px; flex-shrink: 0; }

.niche-qa-q { font-family: var(--vx-font-sans); font-weight: 800; font-size: clamp(18px, 1.8vw, 23px); letter-spacing: -0.015em; line-height: 1.25; margin: 0; color: var(--vx-fg); }

.niche-qa-a { padding: 0 28px 28px 60px; color: var(--vx-fg-muted); font-size: 16px; line-height: 1.7; max-width: 72ch; }

@media (max-width: 560px) { .niche-qa-a { padding-left: 28px; } }

.niche-midcta { background: rgba(255,225,0,0.05); border: 1px solid rgba(255,225,0,0.28); border-radius: 14px; padding: 32px; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 20px; }

.niche-midcta p { margin: 0; font-size: 18px; font-weight: 700; color: var(--vx-fg); max-width: 44ch; line-height: 1.4; }

/* Niche hero inherits home hero-fullbleed/centered layout; keep marker line-height tidy */
.niche-hero .niche-h1 { text-align: center; }

.niche-hero .niche-sub { margin-left: auto; margin-right: auto; }
