/* =====================================================================
   OPUS DESIGNR — Homepage sections
   ===================================================================== */

/* ------------------- NAV CAPSULE ------------------- */
.nav-wrap {
  position: sticky;
  top: 16px;
  z-index: 80;
  padding: 0 24px;
}
.nav {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 10px 12px 10px 24px;
  background: rgba(10, 10, 10, 0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid var(--line-2);
  border-radius: var(--r-pill);
}
.nav-brand {
  font-family: var(--ff-display);
  font-size: 18px;
  letter-spacing: 0.04em;
  color: var(--ink-1);
  text-transform: uppercase;
}
.nav-links { display: flex; gap: 32px; justify-content: center; }
.nav-links a {
  font-family: var(--ff-mono);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-2);
  padding: 8px 0;
  position: relative;
  transition: color var(--dur) var(--ease);
}
.nav-links a:hover { color: var(--ink-1); }
.nav-links a:hover::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px; background: var(--acid);
}
.nav-links a.active { color: var(--acid); }
.nav-cta { display: flex; gap: 6px; align-items: center; }

/* ------------------- HERO ------------------- */
.hero {
  padding: 56px 0 96px;
  position: relative;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 72px;
  align-items: center;
}
.hero-eyebrow { margin-bottom: 28px; }
.hero-head {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: clamp(30px, 3.6vw, 52px);
  line-height: 1.02;
  letter-spacing: 0;
  text-transform: uppercase;
  margin: 0 0 28px;
  color: var(--ink-1);
}
.hero-head .line { display: block; }
.hero-head .dot { color: inherit; }
.hero-head .accent-word { color: var(--acid); }
.hero-sub {
  max-width: 460px;
  font-family: var(--ff-mono);
  font-size: 14px;
  line-height: 1.65;
  color: var(--ink-2);
  margin-bottom: 32px;
}
.hero-cta { display: flex; gap: 10px; margin-bottom: 18px; flex-wrap: wrap; }
.hero-trust-line {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 34px;
}
.hero-trust-line .sep { color: var(--ink-5); }
.hero-social {
  display: flex; align-items: center; gap: 14px;
}
.hero-avatars { display: flex; }
.hero-avatars span {
  width: 28px; height: 28px; border-radius: 999px;
  border: 1.5px solid var(--bg-0);
  background: var(--bg-3);
  display: inline-block;
  margin-left: -8px;
}
.hero-avatars span:first-child { margin-left: 0; }
.hero-avatars span:nth-child(1) { background: #3a3a3a; }
.hero-avatars span:nth-child(2) { background: #4d4d4d; }
.hero-avatars span:nth-child(3) { background: #2a2a2a; }
.hero-avatars span:nth-child(4) { background: #555; }
.hero-social-copy {
  font-family: var(--ff-mono);
  font-size: 11px;
  color: var(--ink-3);
  letter-spacing: 0.04em;
}
.hero-social-copy strong { color: var(--ink-1); font-weight: 700; }

/* Hero mosaic */
.mosaic {
  position: relative;
  height: 620px;
  overflow: hidden;
  border-radius: 3px;
  isolation: isolate;
}
.mosaic::before,
.mosaic::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  height: 80px;
  z-index: 3;
  pointer-events: none;
}
.mosaic::before {
  top: 0;
  background: linear-gradient(180deg, var(--bg-0) 10%, transparent);
}
.mosaic::after {
  bottom: 0;
  background: linear-gradient(0deg, var(--bg-0) 10%, transparent);
}
.mosaic-viewport {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}
.mosaic-col {
  position: relative;
  overflow: hidden;
}
.mosaic-track {
  position: absolute;
  left: 0; right: 0; top: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  animation: mosaic-scroll 32s linear infinite;
  will-change: transform;
}
.mosaic-col--b .mosaic-track {
  animation-duration: 38s;
  animation-direction: reverse;
  animation-delay: -6s;
}
@keyframes mosaic-scroll {
  0%   { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}

.mcell {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  margin: 0;
  overflow: hidden;
  border-radius: 3px;
  background: var(--bg-2);
  flex: 0 0 auto;
  /* --reveal: 0..1, driven by JS based on the cell's Y-position vs the centerline.
     When 0 the BEFORE shows (top half relative to divider); when 1 the AFTER shows. */
  --reveal: 0;
}
.mcell .mc-before,
.mcell .mc-after {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.mcell .mc-before { z-index: 1; filter: saturate(0.85) brightness(0.96); }
.mcell .mc-after {
  z-index: 2;
  /* Wipe downward from top as --reveal grows from 0 to 1.
     No transition: --reveal is driven at animation frame rate by
     home.js; any easing would lag behind the scrolling marquee and
     bleed past the beam line. */
  clip-path: inset(0 0 calc((1 - var(--reveal)) * 100%) 0);
}
.mcell .mc-tag {
  position: absolute;
  bottom: 8px; left: 8px;
  z-index: 4;
  font-family: var(--ff-mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  padding: 4px 6px;
  border-radius: 2px;
  background: var(--bg-0);
  color: var(--ink-1);
  text-transform: uppercase;
}
.mcell .mc-tag.acid { background: var(--acid); color: var(--on-acid-1); }

/* The green divider beam sits ABOVE everything */
.mosaic .lime-beam {
  position: absolute;
  left: -32px; right: -32px;
  top: 50%;
  height: 2px;
  background: var(--acid);
  box-shadow: 0 0 20px rgba(200, 252, 11, 0.55);
  pointer-events: none;
  z-index: 5;
}

/* ------------------- STATS BAR ------------------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line-1);
  border-bottom: 1px solid var(--line-1);
}
.stat {
  padding: 36px 36px 40px;
  border-right: 1px solid var(--line-1);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  min-height: 220px;
}
.stat .eyb { align-self: flex-start; }
.stat:last-child { border-right: 0; }
.stat .eyb {
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-4);
  margin-bottom: 28px;
}
.stat .eyb .n { color: var(--ink-2); font-weight: 700; }
.stat .val {
  font-family: var(--ff-mono);
  font-weight: 700;
  font-size: clamp(56px, 6vw, 88px);
  line-height: 0.95;
  color: var(--ink-0);
  letter-spacing: -0.04em;
  margin-bottom: 22px;
}
.stat .val .unit {
  font-weight: 500;
  color: var(--ink-1);
}
.stat .lbl {
  font-family: var(--ff-sans);
  font-weight: 500;
  font-size: 15px;
  color: var(--acid);
  letter-spacing: -0.005em;
  margin-bottom: 6px;
}
.stat .cap {
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-4);
}

/* ------------------- PRESS ------------------- */
.press { padding: 72px 0; }
.press .eyebrow-row {
  text-align: center; margin-bottom: 28px;
}
.press .eyebrow-row .label {
  font-family: var(--ff-mono);
  font-size: 10px; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--ink-3);
}
/* Press bar is now a rotating marquee ticker — the track doubles the
   brand list so the -50% keyframe loops seamlessly. Edges fade to
   black via a mask so the names flow in/out of frame cleanly. */
.press .logos {
  display: block;
  overflow: hidden;
  width: 100%;
  margin-top: 18px;
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0, #000 8%, #000 92%, transparent 100%);
}
.press .logos-track {
  display: flex;
  align-items: center;
  gap: 48px;
  width: max-content;
  animation: press-ticker 32s linear infinite;
  will-change: transform;
}
.press .logos:hover .logos-track,
.press .logos-track:hover { animation-play-state: paused; }
.press .logos-track span {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: clamp(26px, 3.4vw, 44px);
  letter-spacing: 0.04em;
  color: var(--ink-4);
  text-transform: uppercase;
  white-space: nowrap;
  line-height: 1;
  flex-shrink: 0;
  transition: color var(--dur) var(--ease);
}
.press .logos-track span:hover { color: var(--ink-2); }
.press .logos-track .sep {
  font-family: var(--ff-mono);
  font-weight: 400;
  font-size: 11px;
  color: var(--acid);
  opacity: 0.7;
}
@keyframes press-ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .press .logos-track { animation: none; }
}

/* ------------------- TESTIMONIALS ------------------- */
.tests {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.test {
  background: var(--bg-2);
  border: 1px solid var(--line-2);
  border-radius: var(--r-md);
  padding: 26px 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 300px;
}
.test-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.test .stars {
  color: var(--acid);
  font-size: 13px;
  letter-spacing: 2px;
}
.test .idx {
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.24em;
  color: var(--ink-4);
  text-transform: uppercase;
}
.test .quote {
  font-family: var(--ff-sans);
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink-1);
  margin: 0;
  letter-spacing: -0.005em;
}
.test .attrib {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--line-2);
}
.test .attrib .name {
  font-family: var(--ff-sans);
  font-weight: 600;
  font-size: 13px;
  color: var(--ink-1);
  margin-bottom: 6px;
}
.test .attrib .role {
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-4);
}

/* ------------------- NO MODELS NO LOGISTICS NO LIMITS ------------------- */
.no-limits {
  padding: 140px 0;
  border-top: 1px solid var(--line-1);
  border-bottom: 1px solid var(--line-1);
}
.no-limits-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  gap: 80px;
  align-items: end;
}
.no-limits-head {
  font-family: var(--ff-mono);
  font-weight: 700;
  font-size: clamp(40px, 5.5vw, 80px);
  line-height: 0.98;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  margin: 0;
  color: var(--ink-1);
}
.no-limits-head .dot { color: inherit; }
.no-limits-aside p {
  font-family: var(--ff-mono);
  font-size: 14px;
  line-height: 1.7;
  color: var(--ink-2);
  margin: 0 0 18px;
}
.no-limits-aside p + p { margin-top: 18px; }
.no-limits-aside .link {
  display: inline-flex; gap: 8px; align-items: center;
  font-family: var(--ff-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--acid);
  margin-top: 24px;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--acid);
}

/* ------------------- KEY FEATURES (3 blocks) ------------------- */
.keyf {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
}
.keyf-card {
  background: var(--bg-2);
  border: 1px solid var(--line-2);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.keyf-card:hover { background: var(--bg-3); border-color: var(--line-3); }
.keyf-card .visual {
  aspect-ratio: 4 / 3;
  background: var(--bg-3);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line-1);
}
.keyf-card .visual .mini {
  position: absolute; inset: 16px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 6px;
}
.keyf-card .visual .mini > div { background: var(--bg-4); border-radius: 3px; }
.keyf-card .body { padding: 28px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.keyf-card .eyebrow { font-size: 10px; letter-spacing: 0.24em; }
.keyf-card h3 {
  font-family: var(--ff-mono);
  font-weight: 700;
  font-size: 22px;
  line-height: 1.1;
  margin: 0;
  letter-spacing: -0.01em;
}
.keyf-card h3 .dot { color: inherit; }
.keyf-card p {
  font-family: var(--ff-sans);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-2);
  margin: 0;
}

/* Feature visual hero placeholders */
.keyf-card .visual > img.visual-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.v-detail {
  background: #1a1612;
}
.v-detail::after {
  content: "";
  position: absolute; inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 60% 50%, rgba(255,255,255,0.08), transparent 60%);
}
.v-concept {
  background: #141414;
}
.v-tryon {
  background: #e8e5df;
}
.v-tryon .ba-pair {
  position:absolute; inset:0;
  display:grid; grid-template-columns: 1fr 1fr;
}
.v-tryon .ba-pair > div {
  position: relative; overflow: hidden;
}
.v-tryon .ba-pair img {
  position:absolute; inset:0;
  width:100%; height:100%;
  object-fit: cover;
  display: block;
}
.v-concept .sbs {
  position:absolute; inset:20px;
  display:grid; grid-template-columns: 1fr 1fr; gap: 10px;
}
.v-concept .sbs > div {
  position: relative; overflow: hidden;
  background:#f3f3f1;
  border-radius: 3px;
}
.v-concept .sbs img {
  position:absolute; inset:0;
  width:100%; height:100%;
  object-fit: contain;
  padding: 6%;
  display: block;
}
.v-concept .sbs .sbs-after { background: #fff; }
.v-concept .sbs .sbs-after img { padding: 0; object-fit: cover; }
.v-concept .arrow-between {
  position: absolute;
  left: 50%; top: 50%;
  width: 28px; height: 28px;
  transform: translate(-50%, -50%);
  background: var(--acid); color: var(--on-acid-1);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-mono); font-weight: 700; font-size: 14px;
  border-radius: 50%;
  z-index: 2;
}
.step .visual .step-img {
  position:absolute; inset:0;
  width:100%; height:100%;
  object-fit: cover;
  display: block;
  z-index: 0;
}
.step .visual .step-img.contain {
  object-fit: contain;
  padding: 14%;
  background: #f3f3f1;
}
.step .visual > *:not(.step-img) { position: relative; z-index: 1; }

/* ------------------- HOW IT WORKS ------------------- */
.how-head {
  font-family: var(--ff-mono);
  font-weight: 700;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  text-align: center;
  margin: 0 0 56px;
}
.how-head .dot { color: inherit; }
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.step {
  position: relative;
  background: var(--bg-2);
  border: 1px solid var(--line-2);
  border-radius: var(--r-lg);
  padding: 28px;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.step .n {
  position: absolute;
  right: 20px;
  bottom: 12px;
  font-family: var(--ff-mono);
  font-weight: 700;
  font-size: 120px;
  line-height: 1;
  color: var(--bg-4);
  letter-spacing: -0.04em;
  pointer-events: none;
}
.step .visual {
  flex: 1;
  background: var(--bg-3);
  border-radius: var(--r-sm);
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  min-height: 140px;
}
.step .visual .upload-box {
  width: 72px; height: 72px; border: 1.5px dashed var(--acid);
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  color: var(--acid); font-size: 20px;
}
.step .visual .upload-label {
  position: absolute; bottom: 10px;
  font-family: var(--ff-mono); font-size: 9px; letter-spacing: 0.22em;
  color: var(--ink-4);
}
.step .visual .bars {
  display: flex; gap: 4px; align-items: flex-end;
  height: 52px;
}
.step .visual .bars span {
  width: 6px; background: var(--acid); border-radius: 1px;
}
.step .visual .tag-row {
  position: absolute; top: 16px; left: 16px; right: 16px;
  display: flex; justify-content: space-between;
}
.step .visual .tag-row .bar {
  flex: 1; height: 1px; background: var(--acid); margin: 10px 8px 0; opacity: 0.5;
}
.step .visual .format-chips {
  display: flex; gap: 6px;
}
.step .visual .format-chips .fc {
  padding: 5px 10px; font-family: var(--ff-mono); font-weight: 700;
  font-size: 10px; letter-spacing: 0.18em; border-radius: 2px;
}
.step .visual .format-chips .fc.on { background: var(--acid); color: var(--on-acid-1); }
.step .visual .format-chips .fc.off { background: var(--bg-4); color: var(--ink-3); }
.step .visual .thumb {
  width: 56px; height: 56px; background: var(--acid-dim); border-radius: 2px;
}
.step .title {
  font-family: var(--ff-mono);
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 8px;
  position: relative; z-index: 2;
}
.step .title .dot { color: inherit; }
.step .body {
  font-family: var(--ff-sans);
  font-weight: 400;
  font-size: 13px;
  line-height: 1.55;
  color: var(--ink-3);
  max-width: 270px;
  position: relative; z-index: 2;
}

/* ------------------- OUTPUT STRIP / BEFORE-AFTER TAPE ------------------- */
.output-strip {
  padding: 96px 0 104px;
  overflow: hidden;
  border-top: 1px solid var(--line-1);
  border-bottom: 1px solid var(--line-1);
  background: var(--bg-0);
  position: relative;
}
.output-strip-head {
  text-align: center;
  margin-bottom: 44px;
  padding: 0 24px;
}
.output-strip-head .chip { margin-bottom: 20px; }
.output-strip-head h2 {
  font-family: var(--ff-mono);
  font-weight: 700;
  font-size: clamp(32px, 4vw, 56px);
  margin: 0 0 14px;
  letter-spacing: -0.01em;
  line-height: 1;
}
.output-strip-head h2 .dot { color: inherit; }
.output-strip-head .sub {
  font-family: var(--ff-sans);
  color: var(--ink-3);
  font-size: 14px;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.5;
}

/* Track + viewport */
.ba-viewport {
  position: relative;
  margin: 0 -32px;
  padding: 0;
  overflow: hidden;
  cursor: ew-resize;
}
.ba-track {
  display: flex;
  gap: 14px;
  padding: 0 32px;
  will-change: transform;
}
/* Auto-scroll speed: 38s = 20% faster than the previous 48s. */
.ba-track.auto { animation: ba-marquee 38s linear infinite; }
.ba-viewport:hover .ba-track.auto { animation-play-state: paused; }
@keyframes ba-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Each tile */
.ba-tile {
  flex: 0 0 auto;
  width: 340px;
  aspect-ratio: 3 / 4;
  position: relative;
  border-radius: 3px;
  overflow: hidden;
  background: var(--bg-3);
  border: 1px solid var(--line-2);
  user-select: none;
  --reveal: 50%;
}
.ba-tile .img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}
.ba-tile .img--before {
  filter: grayscale(0.15) brightness(0.96);
}
.ba-tile .img--after {
  clip-path: inset(0 0 0 var(--reveal));
}
.ba-tile .ba-divider {
  position: absolute;
  top: 0; bottom: 0;
  left: var(--reveal);
  width: 2px;
  background: var(--acid);
  box-shadow: 0 0 18px rgba(200, 252, 11, 0.55), 0 0 4px rgba(200, 252, 11, 0.9);
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 3;
}
.ba-tile .ba-divider::before,
.ba-tile .ba-divider::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 28px; height: 28px;
  background: var(--acid);
  border-radius: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 12px rgba(200,252,11,0.6);
}
.ba-tile .ba-divider::before { top: -14px; }
.ba-tile .ba-divider::after  { bottom: -14px; }
.ba-tile .ba-knob {
  position: absolute;
  left: var(--reveal);
  top: 50%;
  transform: translate(-50%, -50%);
  width: 40px; height: 40px;
  background: var(--acid);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-mono); font-weight: 700; font-size: 14px;
  color: var(--on-acid-1);
  z-index: 4;
  pointer-events: none;
  box-shadow: 0 0 0 4px rgba(200,252,11,0.18), 0 0 20px rgba(200,252,11,0.45);
  letter-spacing: -0.02em;
}
.ba-tile .ba-knob::before {
  content: "◀▶";
  letter-spacing: -3px;
  font-size: 11px;
}
.ba-tile .ba-label {
  position: absolute;
  top: 12px;
  font-family: var(--ff-mono);
  font-weight: 700;
  font-size: 9px;
  letter-spacing: 0.24em;
  padding: 5px 9px;
  border-radius: 2px;
  z-index: 2;
  pointer-events: none;
}
.ba-tile .ba-label--before {
  left: 12px;
  background: rgba(0,0,0,0.72);
  color: #fff;
}
.ba-tile .ba-label--after {
  right: 12px;
  background: var(--acid);
  color: var(--on-acid-1);
}
.ba-tile .ba-tool {
  position: absolute;
  bottom: 12px; left: 12px;
  font-family: var(--ff-mono);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.24em;
  padding: 6px 10px;
  background: rgba(0,0,0,0.78);
  color: var(--acid);
  border: 1px solid rgba(200, 252, 11, 0.25);
  border-radius: 2px;
  z-index: 2;
  pointer-events: none;
}

/* Edge fade masks */
.ba-viewport::before,
.ba-viewport::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  pointer-events: none;
  z-index: 5;
}
.ba-viewport::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg-0), transparent);
}
.ba-viewport::after {
  right: 0;
  background: linear-gradient(-90deg, var(--bg-0), transparent);
}

/* Controls */
.ba-controls {
  margin-top: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.24em;
  color: var(--ink-4);
  text-transform: uppercase;
}
.ba-controls .state-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--acid);
  animation: ba-pulse 2s ease-in-out infinite;
}
@keyframes ba-pulse {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.35; }
}
.ba-controls[data-state="paused"] .state-dot { animation: none; opacity: 0.5; background: var(--ink-4); }

@media (max-width: 820px) {
  .ba-tile { width: 280px; }
}
@media (max-width: 520px) {
  .ba-tile { width: 240px; }
}

/* ------------------- TECH PACK SECTION ------------------- */
.techpack {
  padding: 120px 0;
  border-top: 1px solid var(--line-1);
}
.techpack-head {
  text-align: center; margin-bottom: 64px;
}
.techpack-head .eyebrow { margin-bottom: 20px; }
.techpack-head h2 {
  font-family: var(--ff-mono);
  font-weight: 700;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.03;
  letter-spacing: -0.02em;
  margin: 0 auto 20px;
  max-width: 920px;
  text-transform: uppercase;
}
.techpack-head h2 .acc { color: var(--acid); }
.techpack-head h2 .dot { color: inherit; }
.techpack-head p {
  max-width: 640px;
  margin: 0 auto;
  font-family: var(--ff-mono);
  font-size: 14px;
  line-height: 1.65;
  color: var(--ink-2);
}
.techpack-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.tp-card {
  background: var(--bg-2);
  border: 1px solid var(--line-2);
  border-radius: var(--r-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: background var(--dur) var(--ease);
}
.tp-card:hover { background: var(--bg-3); }
.tp-gif {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: var(--r-sm);
  background: var(--bg-3);
  border: 1px solid var(--line-2);
  overflow: hidden;
  margin-bottom: 4px;
}
.tp-gif img,
.tp-gif video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.92);
}
.tp-gif::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 60%, rgba(0,0,0,0.55) 100%);
  pointer-events: none;
}
.tp-gif-tag {
  position: absolute;
  top: 10px; left: 10px;
  font-family: var(--ff-mono);
  font-weight: 700;
  font-size: 9px;
  letter-spacing: 0.24em;
  padding: 5px 8px;
  background: rgba(0,0,0,0.78);
  color: var(--acid);
  border: 1px solid rgba(200, 252, 11, 0.3);
  border-radius: 2px;
  text-transform: uppercase;
  z-index: 1;
}
.tp-gif-badge {
  position: absolute;
  bottom: 10px; right: 10px;
  font-family: var(--ff-mono);
  font-weight: 700;
  font-size: 9px;
  letter-spacing: 0.24em;
  padding: 4px 7px;
  background: var(--acid);
  color: var(--on-acid-1);
  border-radius: 2px;
  text-transform: uppercase;
  z-index: 1;
}
.tp-icon {
  width: 40px; height: 40px;
  border-radius: var(--r-sm);
  background: var(--acid);
  color: var(--on-acid-1);
  display: flex; align-items: center; justify-content: center;
}
.tp-icon--outline {
  background: var(--bg-3);
  color: var(--ink-1);
  border: 1px solid var(--line-3);
}
.tp-card h3 {
  font-family: var(--ff-mono);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin: 0;
}
.tp-card h3 .dot { color: inherit; }
.tp-card p {
  font-family: var(--ff-sans);
  font-weight: 400;
  font-size: 13px;
  line-height: 1.55;
  color: var(--ink-2);
  margin: 0;
}
.tp-card ul {
  list-style: none; padding: 0; margin: auto 0 0;
  display: flex; flex-direction: column; gap: 8px;
  padding-top: 18px;
  border-top: 1px solid var(--line-1);
}
.tp-card ul li {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--ink-2);
  display: flex; gap: 8px; align-items: baseline;
}
.tp-card ul li::before { content: "+"; color: var(--acid); font-weight: 700; }

/* ------------------- COMP TABLE ------------------- */
.comp-head {
  text-align: center; margin-bottom: 56px;
}
.comp-head .eyebrow { margin-bottom: 20px; }
.comp-head h2 {
  font-family: var(--ff-mono);
  font-weight: 700;
  font-size: clamp(32px, 4.2vw, 52px);
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin: 0;
}
.comp-head h2 .dot { color: inherit; }
.comp {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}
.comp thead th {
  padding: 22px 18px;
  font-family: var(--ff-mono);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  text-align: center;
  color: var(--ink-3);
  border-bottom: 1px solid var(--line-2);
}
.comp thead th.feature { text-align: left; color: var(--ink-4); font-weight: 500; }
.comp thead th.opus { color: var(--acid); }
.comp tbody td {
  padding: 22px 18px;
  font-family: var(--ff-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--line-1);
  color: var(--ink-1);
  text-align: center;
}
.comp tbody td.feature {
  text-align: left;
  color: var(--ink-2);
  letter-spacing: 0.1em;
  font-weight: 400;
}
.comp tbody td.opus-col { background: rgba(200, 252, 11, 0.04); }
.comp .ind {
  display: inline-flex;
  width: 24px; height: 24px;
  border-radius: 999px;
  border: 1px solid currentColor;
  align-items: center; justify-content: center;
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0;
  text-indent: 0;
  padding: 0;
}
.comp .ind--ok { color: var(--acid); }
.comp .ind--no { color: var(--ink-4); }
.comp .txt-low { color: var(--ink-4); font-size: 10px; letter-spacing: 0.2em; }

/* ------------------- FAQ ------------------- */
.faq-head { text-align: center; margin-bottom: 48px; }
.faq-head h2 {
  font-family: var(--ff-mono);
  font-weight: 700;
  font-size: clamp(32px, 4vw, 48px);
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin: 0;
}
.faq-head h2 .dot { color: inherit; }
.faq-list {
  max-width: 920px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.faq-item {
  background: var(--bg-2);
  border: 1px solid var(--line-2);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.faq-item[open] { border-color: var(--acid); background: var(--bg-3); }
.faq-item summary {
  list-style: none;
  padding: 22px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  font-family: var(--ff-mono);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-1);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item .plus {
  font-family: var(--ff-mono);
  font-weight: 400;
  font-size: 22px;
  color: var(--ink-3);
  transition: transform var(--dur) var(--ease), color var(--dur) var(--ease);
}
.faq-item[open] .plus { transform: rotate(45deg); color: var(--acid); }
.faq-item .a {
  padding: 0 26px 26px;
  font-family: var(--ff-sans);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-2);
}

/* ------------------- CLOSING CTA ------------------- */
.closing {
  background: var(--acid);
  color: var(--on-acid-1);
  padding: 140px 0;
  text-align: center;
}
.closing h2 {
  font-family: var(--ff-mono);
  font-weight: 700;
  font-size: clamp(48px, 8vw, 108px);
  line-height: 1;
  letter-spacing: -0.035em;
  text-transform: uppercase;
  margin: 0 0 40px;
  color: var(--on-acid-1);
}
.closing .trust {
  margin-top: 20px;
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--on-acid-2);
}

/* ------------------- STICKY CONVERSION BAR ------------------- */
.conv-bar {
  position: fixed;
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  bottom: 24px;
  z-index: 70;
  background: var(--bg-2);
  border: 1px solid var(--line-3);
  border-radius: var(--r-pill);
  padding: 8px 8px 8px 24px;
  display: flex;
  align-items: center;
  gap: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.6);
  transition: transform 420ms var(--ease), opacity 420ms var(--ease);
  opacity: 0;
  max-width: calc(100vw - 48px);
}
.conv-bar.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}
.conv-bar .copy {
  font-family: var(--ff-mono);
  font-size: 12px;
  letter-spacing: 0.02em;
  color: var(--ink-1);
}
.conv-bar .copy strong {
  color: var(--acid); font-weight: 700;
}
.conv-bar .btn { padding: 12px 20px; font-size: 11px; }
.conv-bar .close {
  width: 32px; height: 32px; border-radius: 999px;
  background: transparent; color: var(--ink-3);
  font-size: 16px;
  display: flex; align-items: center; justify-content: center;
}
.conv-bar .close:hover { color: var(--ink-1); background: var(--bg-3); }

/* Accessibility contrast pass: keep dense landing components readable
   against the black canvas without changing the product aesthetic. */
.price-card,
.tool-card,
.faq-item,
.comp,
.comp-mobile .comp-row,
.workflow-callouts .item,
.vs-card,
.ws-app {
  border-color: var(--line-2);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.34);
}
.price-card-desc,
.price-card-trust,
.tool-card p,
.workflow-callouts p,
.faq-item .a,
.hero-sub,
.no-limits-aside p,
.every-tool-head p,
.workflow-studio-head p,
.comp tbody td,
.comp-mobile .cell .val {
  color: var(--ink-2);
}
.price-card-features li.no,
.comp .txt-low,
.comp .ind--no,
.comp-mobile .cell .txt-low,
.comp-mobile .cell .ind--no {
  color: var(--ink-3);
}

/* ------------------- FOOTER ------------------- */
.footer { padding: 80px 0 0; border-top: 1px solid var(--line-1); }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 56px;
  padding-bottom: 56px;
}
.footer .brand {
  font-family: var(--ff-display);
  font-size: 24px;
  color: var(--ink-1);
  letter-spacing: 0.04em;
  margin-bottom: 16px;
  text-transform: uppercase;
}
.footer .tagline {
  font-family: var(--ff-mono);
  font-size: 12px;
  line-height: 1.65;
  color: var(--ink-3);
  max-width: 320px;
  margin: 0 0 24px;
}
.footer h5 {
  font-family: var(--ff-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-4);
  margin: 0 0 18px;
}
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.footer ul li a {
  font-family: var(--ff-mono);
  font-size: 13px;
  color: var(--ink-2);
  transition: color var(--dur) var(--ease);
}
.footer ul li a:hover { color: var(--acid); }

.footer-email-group {
  display: flex;
  gap: 6px;
  padding: 6px;
  background: var(--bg-2);
  border: 1px solid var(--line-2);
  border-radius: var(--r-pill);
  align-items: center;
}
.footer-email-group input {
  flex: 1;
  background: transparent;
  border: 0;
  outline: none;
  color: var(--ink-1);
  font-family: var(--ff-mono);
  font-size: 12px;
  padding: 8px 14px;
}
.footer-email-group input::placeholder { color: var(--ink-4); }
.footer-email-group button {
  font-family: var(--ff-mono);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 10px 16px;
  border-radius: var(--r-pill);
  background: var(--acid);
  color: var(--on-acid-1);
  transition: background var(--dur) var(--ease);
}
.footer-email-group button:hover { background: var(--acid-hover); }
.footer-email-note {
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-4);
  margin-top: 12px;
}
.footer-strip {
  border-top: 1px solid var(--line-1);
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-4);
}

/* ------------------- EVERY TOOL / ONE PLATFORM ------------------- */
.every-tool {
  padding: 120px 0 0;
  border-top: 1px solid var(--line-1);
  background: var(--bg-0);
  position: relative;
}
.every-tool-head {
  text-align: center;
  max-width: 960px;
  margin: 0 auto 56px;
  padding: 0 24px;
}
.every-tool-head .eyebrow {
  display: inline-block;
  margin-bottom: 20px;
}
.every-tool-head h2 {
  font-family: var(--ff-mono);
  font-weight: 700;
  font-size: clamp(32px, 4.4vw, 64px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin: 0 0 18px;
  text-transform: uppercase;
}
.every-tool-head h2 .accent { color: var(--acid); }
.every-tool-head h2 .dot { color: inherit; }
.every-tool-head p {
  font-family: var(--ff-sans);
  color: var(--ink-3);
  font-size: 15px;
  line-height: 1.55;
  max-width: 620px;
  margin: 0 auto;
}

/* Tool grid — asymmetric / mosaic */
.tool-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 10px;
  padding: 0 32px 24px;
}
.tool-card {
  position: relative;
  border: 1px solid var(--line-2);
  background: var(--bg-2);
  border-radius: 3px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 280px;
  transition: border-color var(--dur) var(--ease), transform var(--dur) var(--ease);
  cursor: pointer;
}
.tool-card:hover {
  border-color: var(--acid);
  transform: translateY(-2px);
}
.tool-card .media {
  position: relative;
  flex: 1;
  background: var(--bg-3);
  overflow: hidden;
  min-height: 180px;
}
.tool-card .media img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 700ms var(--ease);
}
.tool-card:hover .media img { transform: scale(1.04); }
.tool-card .media .overlay-tag {
  position: absolute;
  top: 12px; left: 12px;
  font-family: var(--ff-mono);
  font-weight: 700;
  font-size: 9px;
  letter-spacing: 0.24em;
  padding: 5px 8px;
  background: rgba(0,0,0,0.78);
  color: var(--acid);
  border: 1px solid rgba(200, 252, 11, 0.3);
  border-radius: 2px;
  text-transform: uppercase;
}
.tool-card .body {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-top: 1px solid var(--line-2);
  background: var(--bg-2);
}
.tool-card .body h3 {
  font-family: var(--ff-mono);
  font-weight: 700;
  font-size: 16px;
  margin: 0;
  letter-spacing: -0.01em;
}
.tool-card .body h3 .dot { color: inherit; }
.tool-card .body p {
  font-family: var(--ff-sans);
  font-size: 13px;
  color: var(--ink-3);
  line-height: 1.45;
  margin: 0;
}
.tool-card .body .cta {
  margin-top: 10px;
  font-family: var(--ff-mono);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.24em;
  color: var(--acid);
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.tool-card .body .cta .arrow {
  transition: transform var(--dur) var(--ease);
}
.tool-card:hover .body .cta .arrow { transform: translateX(4px); }

/* Layout: clean 3x2 grid — 6 tiles */
.tool-card.size-lg   { grid-column: span 6; min-height: 420px; }
.tool-card.size-md   { grid-column: span 6; min-height: 420px; }
.tool-card.size-sm   { grid-column: span 3; min-height: 320px; }
.tool-card.size-2    { grid-column: span 3; min-height: 320px; }

/* Status strip for section */
.every-tool-cta {
  padding: 8px 32px 96px;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* ------------------- EVERY WORKFLOW / VTO APP MOCKUP ------------------- */
.workflow-studio {
  padding: 120px 0;
  border-top: 1px solid var(--line-1);
  background: var(--bg-0);
  position: relative;
  overflow: hidden;
}
.workflow-studio::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 30%, rgba(200,252,11,0.06), transparent 40%),
    radial-gradient(circle at 15% 70%, rgba(200,252,11,0.03), transparent 50%);
  pointer-events: none;
}
.workflow-studio .wrap { position: relative; z-index: 1; }
.workflow-studio-head {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 48px;
}
.workflow-studio-head .eyebrow { margin-bottom: 20px; display:inline-block; }
.workflow-studio-head h2 {
  font-family: var(--ff-mono);
  font-weight: 700;
  font-size: clamp(36px, 5.5vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.02em;
  margin: 0 0 18px;
  text-transform: uppercase;
}
.workflow-studio-head h2 .accent { color: var(--acid); }
.workflow-studio-head h2 .dot { color: inherit; }
.workflow-studio-head p {
  font-family: var(--ff-sans);
  font-size: 15px;
  color: var(--ink-3);
  line-height: 1.55;
  max-width: 600px;
  margin: 0 auto;
}

/* VTO app mockup chrome */
.vto-app {
  background: #0a0a0a;
  border: 1px solid var(--line-2);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 40px 80px -20px rgba(0,0,0,0.6), 0 0 0 1px rgba(200,252,11,0.08);
  margin: 0 auto;
  max-width: 1240px;
  position: relative;
}
.vto-titlebar {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 16px;
  background: #0f0f0f;
  border-bottom: 1px solid var(--line-2);
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--ink-4);
  text-transform: uppercase;
}
.vto-titlebar .dots {
  display: flex; gap: 6px;
}
.vto-titlebar .dots i {
  width: 10px; height: 10px; border-radius: 50%;
  background: #2a2a2a;
  display: block;
}
.vto-titlebar .dots i:first-child { background: #ff5f56; }
.vto-titlebar .dots i:nth-child(2) { background: #ffbd2e; }
.vto-titlebar .dots i:nth-child(3) { background: #27c93f; }
.vto-titlebar .breadcrumb {
  color: var(--ink-3);
  letter-spacing: 0.22em;
}
.vto-titlebar .breadcrumb .sep { margin: 0 8px; color: var(--ink-4); opacity: 0.6; }
.vto-titlebar .breadcrumb .current { color: var(--acid); }
.vto-titlebar .status {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 8px;
}
.vto-titlebar .status .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--acid);
  animation: ba-pulse 2s ease-in-out infinite;
}

.vto-shell {
  display: grid;
  grid-template-columns: 220px 1fr 280px;
  min-height: 600px;
}
.vto-shell .pane { padding: 18px; }

/* Left: tools panel */
.vto-left {
  border-right: 1px solid var(--line-2);
  background: #0c0c0c;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.vto-left .panel-label {
  font-family: var(--ff-mono);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.24em;
  color: var(--ink-4);
  text-transform: uppercase;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line-1);
}
.vto-left .tool-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.vto-left .tool-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 10px;
  border-radius: 3px;
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--ink-2);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background var(--dur) var(--ease);
}
.vto-left .tool-row:hover { background: #181818; }
.vto-left .tool-row.active {
  background: #141414;
  border-color: var(--acid);
  color: var(--ink-0);
}
.vto-left .tool-row.active::before {
  content: "";
  width: 4px; height: 16px;
  background: var(--acid);
  border-radius: 1px;
  margin-right: -4px;
}
.vto-left .tool-row .ic {
  width: 16px; height: 16px;
  border: 1px solid var(--line-3);
  border-radius: 2px;
  flex: 0 0 16px;
  position: relative;
  background: #0a0a0a;
}
.vto-left .tool-row.active .ic { border-color: var(--acid); background: var(--acid); }

/* Center: canvas */
.vto-canvas {
  background: #0f0f0f;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.vto-canvas .grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}
.vto-canvas .stage {
  position: relative;
  width: 72%;
  max-width: 520px;
  aspect-ratio: 3 / 4;
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.6);
}
.vto-canvas .stage img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.vto-canvas .stage .selection {
  position: absolute;
  inset: 8%;
  border: 1px dashed var(--acid);
  pointer-events: none;
}
.vto-canvas .stage .selection::before,
.vto-canvas .stage .selection::after {
  content: "";
  position: absolute;
  width: 8px; height: 8px;
  background: var(--acid);
  border-radius: 1px;
}
.vto-canvas .stage .selection::before { top: -4px; left: -4px; }
.vto-canvas .stage .selection::after { bottom: -4px; right: -4px; }

.vto-canvas .corner-hud {
  position: absolute;
  top: 14px; left: 14px;
  display: flex;
  gap: 8px;
  font-family: var(--ff-mono);
  font-size: 9px;
  letter-spacing: 0.22em;
  color: var(--ink-4);
  text-transform: uppercase;
}
.vto-canvas .corner-hud .chip {
  padding: 5px 9px;
  background: rgba(0,0,0,0.7);
  border: 1px solid var(--line-2);
  border-radius: 2px;
  color: var(--ink-2);
}
.vto-canvas .corner-hud .chip.live { color: var(--acid); border-color: rgba(200,252,11,0.3); }
.vto-canvas .canvas-bottom {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  align-items: center;
  background: rgba(0,0,0,0.75);
  border: 1px solid var(--line-2);
  border-radius: 4px;
  padding: 6px 10px;
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--ink-3);
  text-transform: uppercase;
}
.vto-canvas .canvas-bottom .zoom { color: var(--acid); font-weight: 700; }
.vto-canvas .canvas-bottom .divider { width: 1px; height: 14px; background: var(--line-2); }
.vto-canvas .canvas-bottom button {
  all: unset;
  width: 16px; height: 16px;
  border: 1px solid var(--line-2);
  border-radius: 2px;
  text-align: center;
  line-height: 14px;
  font-size: 11px;
  cursor: pointer;
  color: var(--ink-3);
}

/* Right: controls */
.vto-right {
  border-left: 1px solid var(--line-2);
  background: #0c0c0c;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.vto-right .field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.vto-right .field-label {
  font-family: var(--ff-mono);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.24em;
  color: var(--ink-4);
  text-transform: uppercase;
}
.vto-right .field-val {
  background: #101010;
  border: 1px solid var(--line-2);
  border-radius: 3px;
  padding: 10px 12px;
  font-family: var(--ff-mono);
  font-size: 12px;
  color: var(--ink-1);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.vto-right .field-val.acid { border-color: var(--acid); color: var(--acid); }
.vto-right .field-val .caret { color: var(--ink-4); }

.vto-right .asset-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}
.vto-right .asset-strip .thumb {
  aspect-ratio: 1 / 1;
  background: var(--bg-3);
  border: 1px solid var(--line-2);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.vto-right .asset-strip .thumb img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.vto-right .asset-strip .thumb.active { border-color: var(--acid); box-shadow: 0 0 0 2px rgba(200,252,11,0.3); }
.vto-right .asset-strip .thumb.add {
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-4);
  font-size: 18px;
}

.vto-right .slider {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.vto-right .slider-track {
  position: relative;
  height: 4px;
  background: #181818;
  border-radius: 2px;
}
.vto-right .slider-track .fill {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  background: var(--acid);
  border-radius: 2px;
}
.vto-right .slider-track .thumb {
  position: absolute;
  top: 50%;
  width: 14px; height: 14px;
  background: var(--acid);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 4px rgba(200,252,11,0.18);
}
.vto-right .slider-vals {
  display: flex;
  justify-content: space-between;
  font-family: var(--ff-mono);
  font-size: 10px;
  color: var(--ink-4);
  letter-spacing: 0.2em;
}
.vto-right .slider-vals .cur { color: var(--acid); }

.vto-right .generate-btn {
  background: var(--acid);
  color: var(--on-acid-1);
  font-family: var(--ff-mono);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.2em;
  padding: 14px;
  text-align: center;
  text-transform: uppercase;
  border-radius: 3px;
  cursor: pointer;
  margin-top: auto;
  border: 1px solid var(--acid);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background var(--dur) var(--ease);
}
.vto-right .generate-btn:hover { background: var(--acid-hover); }
.vto-right .generate-btn .credits {
  font-size: 9px;
  color: rgba(0,0,0,0.6);
  letter-spacing: 0.18em;
  font-weight: 500;
}

/* Footer bar */
.vto-footer {
  border-top: 1px solid var(--line-2);
  background: #0a0a0a;
  padding: 10px 18px;
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--ink-4);
  text-transform: uppercase;
}
.vto-footer .spacer { flex: 1; }
.vto-footer .live { color: var(--acid); }

/* Below the mockup: feature callouts */
.workflow-callouts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 1240px;
  margin: 48px auto 0;
  padding: 0 32px;
}
.workflow-callouts .item {
  border-top: 1px solid var(--acid);
  padding: 20px 0 0;
}
.workflow-callouts .item .n {
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.24em;
  color: var(--acid);
  margin-bottom: 10px;
  display: block;
}
.workflow-callouts .item h4 {
  font-family: var(--ff-mono);
  font-weight: 700;
  font-size: 16px;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}
.workflow-callouts .item h4 .dot { color: inherit; }
.workflow-callouts .item p {
  font-family: var(--ff-sans);
  font-size: 13px;
  line-height: 1.55;
  color: var(--ink-3);
  margin: 0;
}

@media (max-width: 1040px) {
  .tool-card.size-lg, .tool-card.size-md, .tool-card.size-sm, .tool-card.size-2 {
    grid-column: span 6;
    min-height: 280px;
  }
  .vto-shell { grid-template-columns: 1fr; }
  .vto-left, .vto-right { border: 0; border-top: 1px solid var(--line-2); }
  .workflow-callouts { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .tool-card.size-lg, .tool-card.size-md, .tool-card.size-sm, .tool-card.size-2 {
    grid-column: span 12;
  }
  .every-tool-head h2 { font-size: 40px; }
  .workflow-studio-head h2 { font-size: 38px; }
}

/* ------------------- RESPONSIVE ------------------- */
@media (max-width: 1040px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .no-limits-grid { grid-template-columns: 1fr; gap: 32px; }
  .keyf, .steps, .techpack-grid, .tests { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2n) { border-right: 0; }
  .stat:nth-child(-n+2) { border-bottom: 1px solid var(--line-1); }
  .tests { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .press .logos { gap: 28px; }
  .press .logos { font-size: 20px; }
  .section { padding: 80px 0; }
  .hero { padding: 24px 0 56px; }
  .conv-bar { flex-wrap: wrap; padding: 10px 12px; gap: 10px; }
  .conv-bar .copy { font-size: 11px; }
}


/* Feature-card bullet chips (added by section 6 pillars rewrite) */
.keyf-card .keyf-list {
  list-style: none;
  padding: 0;
  margin: 6px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.keyf-card .keyf-list li {
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-2);
  background: var(--bg-1);
  border: 1px solid var(--line-2);
  padding: 6px 9px;
  border-radius: 2px;
  line-height: 1;
}
.keyf-card:hover .keyf-list li {
  border-color: var(--line-3);
}


/* Normalize eyebrow → H2 visible gap (line-heights < 1.05 pull glyph into its box top; compensate with padding-top). */
.techpack-head h2,
.comp-head h2 {
  padding-top: 20px;
}
.every-tool-head h2,
.workflow-studio-head h2 {
  padding-top: 0;
}


/* =============================================================
   Section padding normalization (Testimonials → FAQ): 108px.
   Reduces prior inconsistent paddings (80/96/104/120/140) by ~10%
   and unifies them so section rhythm is consistent.
   ============================================================= */
.section--pad-sm,
.no-limits,
.workflow-studio,
.techpack,
.output-strip {
  padding-top: 108px;
  padding-bottom: 108px;
}
/* Key Features + Compare + FAQ use base .section class — target by data-screen-label */
section[data-screen-label="06 Key Features"],
section[data-screen-label="12 Comp Table"],
section[data-screen-label="13 FAQ"] {
  padding-top: 108px !important;
  padding-bottom: 108px !important;
}
/* Testimonials: preserve tight inline top gap to Press strip above; normalize bottom only */
section[data-screen-label="04 Testimonials"] {
  padding-bottom: 108px !important;
}
/* Every Tool keeps 0 bottom because the CTA-fade below handles visual close */
.every-tool {
  padding-top: 108px;
}
