/* ==========================================================================
   viewsstream, Midnight Screening
   Token layer, primitives, header, footer.
   ========================================================================== */

:root {
  --bg: #0A0908;
  --surface: #14120F;
  --elevated: #1C1915;
  --ink: #F4EFE5;
  --muted: #9A9287;
  --line: #2A2620;
  --accent: #D8B478;
  --accent-deep: #8C6A33;

  --ink-soft: rgba(244, 239, 229, 0.74);
  --ink-faint: rgba(244, 239, 229, 0.42);
  --glass: rgba(244, 239, 229, 0.045);
  --glass-strong: rgba(244, 239, 229, 0.075);
  --hairline: rgba(244, 239, 229, 0.10);
  --hairline-warm: rgba(216, 180, 120, 0.26);

  --shadow-soft: 0 24px 60px -34px rgba(18, 13, 8, 0.92);
  --shadow-lift: 0 40px 90px -46px rgba(18, 13, 8, 0.96);

  --r-sm: 10px;
  --r-md: 20px;
  --r-pill: 999px;

  --s-xs: 8px;
  --s-sm: 16px;
  --s-md: 28px;
  --s-lg: 56px;
  --s-xl: 96px;
  --s-xxl: 144px;

  --container: 1240px;
  --gutter: 24px;
  --header-h: 74px;

  --font-display: 'Bricolage Grotesque', 'Manrope', system-ui, sans-serif;
  --font-body: 'Manrope', system-ui, sans-serif;

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* Reset at zero specificity so component rules always win. */
:where(*, *::before, *::after) { box-sizing: border-box; }
:where(body, h1, h2, h3, h4, p, figure, blockquote, dl, dd, ul, ol) { margin: 0; padding: 0; }
:where(ul, ol) { list-style: none; }
:where(img, svg, video) { display: block; max-width: 100%; }
:where(button, input, select, textarea) { font: inherit; color: inherit; }
:where(a) { color: inherit; text-decoration: none; }
:where(blockquote, figure) { border: 0; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 24px); }

body.vs {
  margin: 0;
  background: var(--bg);
  color: var(--ink-soft);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.vs h1, .vs h2, .vs h3, .vs h4 {
  font-family: var(--font-display);
  color: var(--ink);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.06;
}

.vs-skip {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--accent);
  color: var(--surface);
  padding: 12px 20px;
  border-radius: 0 0 var(--r-sm) 0;
}
.vs-skip:focus { left: 0; }

.vs-container {
  width: min(100% - (var(--gutter) * 2), var(--container));
  margin-inline: auto;
}

.vs-section { padding-block: clamp(72px, 9vw, 132px); position: relative; }
.vs-section--tight { padding-block: clamp(56px, 6vw, 88px); }

.vs-main > *:first-child:not(.vs-hero) { padding-top: calc(var(--header-h) + clamp(48px, 7vw, 96px)); }

/* Type scale ------------------------------------------------------------- */

.vs-display {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6.4vw, 5.2rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: var(--ink);
  font-weight: 600;
}

.vs-h2 {
  font-size: clamp(1.95rem, 3.8vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
}

.vs-h3 { font-size: clamp(1.15rem, 1.7vw, 1.45rem); line-height: 1.2; }

.vs-lead {
  font-size: clamp(1.02rem, 1.25vw, 1.2rem);
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 56ch;
}

.vs-prose p { max-width: 66ch; }
.vs-prose p + p { margin-top: 1em; }
.vs-prose a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }

.vs-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
}

.vs-badge {
  display: inline-block;
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: var(--r-sm);
  background: rgba(10, 9, 8, 0.66);
  border: 1px solid var(--hairline);
  color: var(--ink);
  backdrop-filter: blur(6px);
}

.vs-accent { color: var(--accent); }

/* Buttons ---------------------------------------------------------------- */

.vs-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: var(--r-pill);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.28s var(--ease), background-color 0.28s var(--ease), border-color 0.28s var(--ease), color 0.28s var(--ease);
  white-space: nowrap;
}

.vs-btn--primary { background: var(--accent); color: #17130D; }
.vs-btn--primary:hover { background: #E6C48E; transform: translateY(-2px); }
.vs-btn--primary:active { background: var(--accent-deep); transform: translateY(0); }

.vs-btn--ghost {
  background: var(--glass);
  border-color: var(--hairline);
  color: var(--ink);
  backdrop-filter: blur(10px);
}
.vs-btn--ghost:hover { background: var(--glass-strong); border-color: var(--hairline-warm); transform: translateY(-2px); }

.vs-btn--sm { padding: 10px 18px; font-size: 0.86rem; }
.vs-btn--wide { width: 100%; }
.vs-btn__icon { width: 18px; height: 18px; transition: transform 0.3s var(--ease); }
.vs-btn--primary:hover .vs-btn__icon { transform: translateX(3px); }
.vs-btn:focus-visible, a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.vs-textlink {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  font-weight: 600;
  font-size: 0.95rem;
}
.vs-textlink .vs-icon { width: 18px; height: 18px; transition: transform 0.3s var(--ease); }
.vs-textlink:hover .vs-icon { transform: translateX(4px); }

.vs-icon { width: 22px; height: 22px; flex: none; }

/* Generated artwork ------------------------------------------------------ */

.vs-art {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-md);
  background:
    radial-gradient(120% 110% at var(--glow-x, 76%) var(--glow-y, 18%), rgba(216, 180, 120, var(--glow-a, 0.26)), transparent 58%),
    linear-gradient(158deg, var(--elevated), var(--bg) 72%);
  border: 1px solid var(--hairline);
  isolation: isolate;
}

.vs-art[data-tone="0"] { --glow-x: 78%; --glow-y: 16%; --glow-a: 0.30; }
.vs-art[data-tone="1"] { --glow-x: 18%; --glow-y: 82%; --glow-a: 0.24; }
.vs-art[data-tone="2"] { --glow-x: 50%; --glow-y: 8%;  --glow-a: 0.20; }
.vs-art[data-tone="3"] { --glow-x: 88%; --glow-y: 76%; --glow-a: 0.26; }
.vs-art[data-tone="4"] { --glow-x: 12%; --glow-y: 22%; --glow-a: 0.28; }
.vs-art[data-tone="5"] { --glow-x: 62%; --glow-y: 92%; --glow-a: 0.22; }

.vs-art::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(244, 239, 229, 0.05) 1px, transparent 1px);
  background-size: 3px 3px;
  opacity: 0.55;
  pointer-events: none;
  z-index: 2;
}

.vs-art__shapes { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 1; }
.vs-art__shapes .a { fill: none; stroke: rgba(244, 239, 229, 0.16); stroke-width: 1.2; }
.vs-art__shapes .b { fill: none; stroke: rgba(216, 180, 120, 0.34); stroke-width: 1.2; }
.vs-art__shapes .c { fill: none; stroke: rgba(244, 239, 229, 0.08); stroke-width: 1.2; }

.vs-art__mark {
  position: absolute;
  left: 18px;
  bottom: 14px;
  z-index: 3;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--ink);
  opacity: 0.9;
}

.vs-art--wide { aspect-ratio: 16 / 9; }
.vs-art--square { aspect-ratio: 1 / 1; }
.vs-art--poster { aspect-ratio: 2 / 3; }
.vs-art--tall { aspect-ratio: 3 / 4; }
.vs-art--fill { position: absolute; inset: 0; border-radius: inherit; border: 0; }

/* Glass surfaces --------------------------------------------------------- */

.vs-card {
  position: relative;
  border-radius: var(--r-md);
  background: linear-gradient(180deg, var(--glass-strong), var(--glass));
  border: 1px solid var(--hairline);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-soft);
}

/* Reveal animation ------------------------------------------------------- */

.vs-js .vs-reveal { opacity: 0; transform: translateY(20px); }
.vs-js .vs-reveal.is-in {
  opacity: 1;
  transform: none;
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  transition-delay: calc(var(--i, 0) * 55ms);
}

/* Header ----------------------------------------------------------------- */

.vs-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background-color 0.35s var(--ease), border-color 0.35s var(--ease), backdrop-filter 0.35s var(--ease);
  border-bottom: 1px solid transparent;
}

.vs-header.is-scrolled {
  background: rgba(10, 9, 8, 0.78);
  backdrop-filter: blur(16px);
  border-bottom-color: var(--line);
}

.vs-header__inner { display: flex; align-items: center; gap: var(--s-md); width: min(100% - (var(--gutter) * 2), var(--container)); }

.vs-logo { display: inline-flex; align-items: center; gap: 10px; color: var(--ink); }
.vs-logo__glyph { width: 30px; height: 30px; color: var(--accent); }
.vs-logo__glyph svg { width: 100%; height: 100%; }
.vs-logo__word { font-family: var(--font-display); font-weight: 700; font-size: 1.12rem; letter-spacing: -0.035em; }

.vs-nav { margin-left: auto; }
.vs-nav__list { display: flex; align-items: center; gap: clamp(14px, 1.8vw, 28px); }
.vs-nav__list a {
  font-size: 0.92rem;
  color: var(--ink-soft);
  position: relative;
  padding-block: 6px;
  transition: color 0.25s var(--ease);
}
.vs-nav__list a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.vs-nav__list a:hover { color: var(--ink); }
.vs-nav__list a:hover::after,
.vs-nav__list a[aria-current="page"]::after { transform: scaleX(1); }
.vs-nav__list a[aria-current="page"] { color: var(--ink); }

.vs-header__actions { display: flex; align-items: center; gap: 12px; margin-left: 8px; }

.vs-burger {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: var(--r-pill);
  background: var(--glass);
  border: 1px solid var(--hairline);
  cursor: pointer;
  position: relative;
}
.vs-burger span {
  position: absolute;
  left: 12px;
  width: 18px;
  height: 1.5px;
  background: var(--ink);
  transition: transform 0.3s var(--ease), opacity 0.2s var(--ease);
}
.vs-burger span:first-child { top: 17px; }
.vs-burger span:last-child { top: 23px; }
.vs-burger[aria-expanded="true"] span:first-child { transform: translateY(3px) rotate(45deg); }
.vs-burger[aria-expanded="true"] span:last-child { transform: translateY(-3px) rotate(-45deg); }

.vs-mobile-nav {
  position: fixed;
  inset: var(--header-h) 0 auto 0;
  z-index: 99;
  background: rgba(10, 9, 8, 0.96);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
  padding: var(--s-md) var(--gutter) var(--s-lg);
  display: grid;
  gap: var(--s-md);
}
.vs-mobile-nav[hidden] { display: none; }
.vs-mobile-nav ul { display: grid; gap: 2px; }
.vs-mobile-nav a {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--ink);
  padding-block: 10px;
  border-bottom: 1px solid var(--line);
}
.vs-mobile-nav__note { font-size: 0.85rem; color: var(--muted); }
body.vs-locked { overflow: hidden; }

/* Footer ----------------------------------------------------------------- */

.vs-footer {
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, var(--bg), #0C0B09);
  padding-top: clamp(56px, 7vw, 96px);
}

.vs-footer__grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: var(--s-lg) var(--s-md);
  padding-bottom: var(--s-lg);
}

.vs-footer__tagline { margin-top: 18px; font-family: var(--font-display); font-size: 1.2rem; color: var(--ink); }
.vs-footer__note { margin-top: 10px; color: var(--muted); font-size: 0.92rem; max-width: 34ch; }
.vs-footer__col h2 { font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); margin-bottom: 16px; }
.vs-footer__col ul { display: grid; gap: 10px; }
.vs-footer__col a { font-size: 0.94rem; color: var(--ink-soft); transition: color 0.25s var(--ease); }
.vs-footer__col a:hover { color: var(--accent); }
.vs-footer__hours { margin-top: 18px; font-size: 0.85rem; color: var(--muted); }

.vs-footer__base {
  border-top: 1px solid var(--line);
  padding-block: var(--s-md);
  display: flex;
  justify-content: space-between;
  gap: var(--s-sm);
  flex-wrap: wrap;
  font-size: 0.82rem;
  color: var(--muted);
}
.vs-footer__legal { max-width: 62ch; }

@media (max-width: 980px) {
  .vs-nav { display: none; }
  .vs-burger { display: block; }
  .vs-header__cta { display: none; }
  .vs-footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  :root { --gutter: 20px; }
  .vs-footer__grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .vs-js .vs-reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}
/* ==========================================================================
   Home page composition
   ========================================================================== */

.vs-hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding-top: calc(var(--header-h) + 32px);
  padding-bottom: clamp(48px, 7vw, 96px);
  overflow: hidden;
}

.vs-hero::before {
  content: "";
  position: absolute;
  top: -24%;
  right: -14%;
  width: 78vw;
  height: 78vw;
  max-width: 1100px;
  max-height: 1100px;
  background: radial-gradient(circle, rgba(216, 180, 120, 0.20), rgba(216, 180, 120, 0.05) 42%, transparent 66%);
  pointer-events: none;
  z-index: 0;
}

.vs-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 42%;
  background: linear-gradient(180deg, transparent, var(--bg));
  pointer-events: none;
  z-index: 1;
}

.vs-hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}

.vs-hero__copy { max-width: 42ch; }
.vs-hero__title { margin-bottom: 22px; }
.vs-hero__title em { font-style: italic; color: var(--accent); line-height: 1.12; }
.vs-hero__sub { margin-bottom: 34px; max-width: 46ch; }
.vs-hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }

.vs-hero__visual { position: relative; }
.vs-hero__stage {
  position: relative;
  width: calc(100% + 6vw);
  aspect-ratio: 4 / 5;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--hairline);
  box-shadow: var(--shadow-lift);
}
.vs-hero__stage .vs-art { position: absolute; inset: 0; border: 0; border-radius: 0; }

.vs-hero__tiles {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(4, 1fr);
  gap: 10px;
  padding: 14px;
}
.vs-hero__tile {
  border-radius: 14px;
  border: 1px solid rgba(244, 239, 229, 0.08);
  background: linear-gradient(160deg, rgba(244, 239, 229, 0.07), rgba(10, 9, 8, 0.25));
  backdrop-filter: blur(2px);
}
.vs-hero__tile:nth-child(1) { grid-column: 1 / 3; grid-row: 1 / 3; }
.vs-hero__tile:nth-child(2) { grid-column: 3; grid-row: 1 / 2; background: linear-gradient(160deg, rgba(216, 180, 120, 0.22), rgba(10, 9, 8, 0.3)); }
.vs-hero__tile:nth-child(3) { grid-column: 3; grid-row: 2 / 4; }
.vs-hero__tile:nth-child(4) { grid-column: 1 / 2; grid-row: 3 / 5; }
.vs-hero__tile:nth-child(5) { grid-column: 2 / 4; grid-row: 4 / 5; }
.vs-hero__tile:nth-child(6) { grid-column: 2 / 3; grid-row: 3 / 4; background: linear-gradient(160deg, rgba(216, 180, 120, 0.14), rgba(10, 9, 8, 0.3)); }

.vs-chip {
  position: absolute;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: var(--r-pill);
  background: rgba(20, 18, 15, 0.72);
  border: 1px solid var(--hairline);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-soft);
  font-size: 0.85rem;
  color: var(--ink);
  font-weight: 600;
  animation: vs-float 7s ease-in-out infinite;
}
.vs-chip .vs-icon { width: 18px; height: 18px; color: var(--accent); }
.vs-chip--one { left: -6%; top: 16%; }
.vs-chip--two { right: 4%; bottom: 12%; animation-delay: -3.5s; }

@keyframes vs-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}

/* Feature strip ---------------------------------------------------------- */

.vs-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(244, 239, 229, 0.02), transparent);
}
.vs-strip__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.vs-strip__item {
  padding: clamp(24px, 3vw, 38px) clamp(16px, 2vw, 32px);
  display: grid;
  gap: 8px;
  border-left: 1px solid var(--line);
}
.vs-strip__item:first-child { border-left: 0; padding-left: 0; }
.vs-strip__item h3 { font-size: 1.02rem; display: flex; align-items: center; gap: 10px; }
.vs-strip__item h3 .vs-icon { color: var(--accent); width: 20px; height: 20px; }
.vs-strip__item p { font-size: 0.9rem; color: var(--muted); }

/* Section headings ------------------------------------------------------- */

.vs-head { display: grid; gap: 18px; margin-bottom: clamp(36px, 4vw, 60px); max-width: 62ch; }
.vs-head--split {
  max-width: none;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: var(--s-md);
}

/* Bento: why choose ------------------------------------------------------ */

.vs-bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(14px, 1.6vw, 22px);
}
.vs-bento__cell { padding: clamp(24px, 2.6vw, 38px); display: grid; align-content: start; gap: 14px; }
.vs-bento__cell h3 { display: flex; align-items: center; gap: 12px; }
.vs-bento__cell h3 .vs-icon { color: var(--accent); }
.vs-bento__cell p { font-size: 0.95rem; color: var(--ink-soft); }
.vs-bento__cell--a { grid-column: span 7; position: relative; overflow: hidden; min-height: 300px; }
.vs-bento__cell--b { grid-column: span 5; }
.vs-bento__cell--c { grid-column: span 5; }
.vs-bento__cell--d { grid-column: span 7; }
.vs-bento__art { position: absolute; inset: auto -12% -32% auto; width: 62%; opacity: 0.85; }
.vs-bento__cell--a > * { position: relative; z-index: 2; }
.vs-bento__cell--a p { max-width: 34ch; }

/* Category rail ---------------------------------------------------------- */

.vs-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(230px, 1fr);
  gap: clamp(14px, 1.6vw, 22px);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 14px;
  scrollbar-width: thin;
  scrollbar-color: var(--line) transparent;
}
.vs-rail::-webkit-scrollbar { height: 6px; }
.vs-rail::-webkit-scrollbar-thumb { background: var(--line); border-radius: 99px; }
.vs-rail__item { scroll-snap-align: start; display: grid; gap: 14px; }
.vs-rail__item .vs-art { transition: transform 0.45s var(--ease); }
.vs-rail__item:hover .vs-art { transform: translateY(-6px); }
.vs-rail__item h3 { font-size: 1.05rem; }
.vs-rail__item p { font-size: 0.88rem; color: var(--muted); }

/* Split feature (sports) ------------------------------------------------- */

.vs-split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(28px, 4vw, 72px);
  align-items: center;
}
.vs-split--reverse .vs-split__media { order: -1; }
.vs-split__copy { display: grid; gap: 20px; align-content: start; }
.vs-split__list { display: grid; gap: 12px; margin-top: 6px; }
.vs-split__list li { display: flex; gap: 12px; align-items: flex-start; font-size: 0.95rem; }
.vs-split__list .vs-icon { color: var(--accent); width: 20px; height: 20px; margin-top: 2px; }
.vs-split__media { position: relative; }
.vs-split__media .vs-art { box-shadow: var(--shadow-lift); }
.vs-split__media--bleed { width: calc(100% + 8vw); margin-left: -4vw; }
.vs-split__stack { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
.vs-split__stack .vs-art:nth-child(1) { grid-column: span 4; }
.vs-split__stack .vs-art:nth-child(2) { grid-column: span 2; margin-top: 26px; }
.vs-split__stack .vs-art:nth-child(3) { grid-column: span 2; margin-top: -18px; }
.vs-split__stack .vs-art:nth-child(4) { grid-column: span 4; margin-top: -8px; }

/* Poster wall (movies and series) --------------------------------------- */

.vs-posters {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: clamp(12px, 1.4vw, 20px);
  align-items: end;
}
.vs-posters .vs-poster { position: relative; transition: transform 0.45s var(--ease); }
.vs-posters .vs-poster:hover { transform: translateY(-8px); }
.vs-poster:nth-child(2) { transform: translateY(-26px); }
.vs-poster:nth-child(2):hover { transform: translateY(-34px); }
.vs-poster:nth-child(4) { transform: translateY(-16px); }
.vs-poster:nth-child(4):hover { transform: translateY(-24px); }
.vs-poster__label { margin-top: 12px; font-size: 0.85rem; color: var(--muted); }
.vs-poster__label strong { display: block; color: var(--ink); font-weight: 600; font-size: 0.95rem; }

/* Plans ------------------------------------------------------------------ */

.vs-plans {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(14px, 1.4vw, 20px);
  align-items: stretch;
}

.vs-plan {
  position: relative;
  display: grid;
  align-content: start;
  gap: 14px;
  padding: clamp(24px, 2.4vw, 32px);
  border-radius: var(--r-md);
  background: linear-gradient(180deg, var(--glass-strong), var(--glass));
  border: 1px solid var(--hairline);
  backdrop-filter: blur(14px);
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), background-color 0.4s var(--ease);
}
.vs-plan:hover { transform: translateY(-6px); border-color: var(--hairline-warm); }
.vs-plan--popular {
  border-color: var(--hairline-warm);
  background:
    radial-gradient(120% 80% at 50% 0%, rgba(216, 180, 120, 0.16), transparent 60%),
    linear-gradient(180deg, var(--glass-strong), var(--glass));
}
.vs-plan__flag {
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #17130D;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: var(--r-pill);
  white-space: nowrap;
}
.vs-plan__name { font-size: 1.15rem; }
.vs-plan__price { display: grid; gap: 2px; margin-bottom: 4px; }
.vs-plan__amount {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 3vw, 2.7rem);
  color: var(--ink);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
}
.vs-plan__term { font-size: 0.84rem; color: var(--muted); }
.vs-plan__blurb { font-size: 0.9rem; color: var(--muted); }
.vs-plan__features { display: grid; gap: 9px; margin-top: 4px; }
.vs-plan__features li { display: flex; gap: 10px; align-items: flex-start; font-size: 0.9rem; }
.vs-plan__tick { width: 17px; height: 17px; color: var(--accent); margin-top: 3px; }
.vs-plan__quality { font-size: 0.8rem; color: var(--muted); border-top: 1px solid var(--line); padding-top: 14px; }
.vs-plan__cta { margin-top: 6px; width: 100%; }
.vs-plan--compact .vs-plan__features li:nth-child(n + 6) { display: none; }

.vs-billing {
  display: inline-flex;
  padding: 5px;
  border-radius: var(--r-pill);
  background: var(--glass);
  border: 1px solid var(--hairline);
  gap: 4px;
}
.vs-billing button {
  border: 0;
  background: transparent;
  color: var(--ink-soft);
  padding: 9px 20px;
  border-radius: var(--r-pill);
  cursor: pointer;
  font-size: 0.86rem;
  font-weight: 600;
  transition: background-color 0.3s var(--ease), color 0.3s var(--ease);
}
.vs-billing button[aria-pressed="true"] { background: var(--accent); color: #17130D; }

/* Steps ------------------------------------------------------------------ */

.vs-steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: clamp(16px, 2vw, 28px); }
.vs-step { position: relative; display: grid; gap: 12px; align-content: start; padding-top: 30px; }
.vs-step::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--line);
}
.vs-step::after {
  content: "";
  position: absolute;
  top: 5px;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
}
.vs-step__n { font-family: var(--font-display); font-size: 0.8rem; color: var(--accent); letter-spacing: 0.1em; }
.vs-step h3 { font-size: 1.05rem; }
.vs-step p { font-size: 0.9rem; color: var(--muted); }

/* Reviews ---------------------------------------------------------------- */

.vs-reviews { display: grid; grid-template-columns: repeat(12, 1fr); gap: clamp(14px, 1.6vw, 22px); }
.vs-review { padding: clamp(24px, 2.4vw, 34px); display: grid; gap: 18px; align-content: start; }
.vs-review:nth-child(1) { grid-column: span 7; }
.vs-review:nth-child(2) { grid-column: span 5; }
.vs-review:nth-child(3) { grid-column: span 4; }
.vs-review:nth-child(4) { grid-column: span 4; }
.vs-review:nth-child(5) { grid-column: span 4; }
.vs-review:nth-child(6) { grid-column: span 12; }
.vs-review__stars { display: flex; gap: 3px; color: var(--accent); }
.vs-review__stars .vs-icon { width: 15px; height: 15px; fill: currentColor; stroke: none; }
.vs-review p { font-family: var(--font-display); font-size: clamp(1.02rem, 1.4vw, 1.2rem); color: var(--ink); line-height: 1.4; letter-spacing: -0.01em; }
.vs-review footer { font-size: 0.85rem; color: var(--muted); }
.vs-review footer strong { color: var(--ink); font-weight: 600; }
.vs-note { margin-top: 22px; font-size: 0.8rem; color: var(--muted); }

/* Closing band ----------------------------------------------------------- */

.vs-cta-band {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, #0C0B09, var(--bg));
}
.vs-cta-band::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -60%;
  width: 90vw;
  height: 90vw;
  max-width: 1200px;
  max-height: 1200px;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(216, 180, 120, 0.16), transparent 62%);
  pointer-events: none;
}
.vs-cta-band__inner { position: relative; z-index: 2; display: grid; justify-items: center; text-align: center; gap: 22px; }
.vs-cta-band__inner .vs-lead { text-align: center; }
.vs-cta-band__actions { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

@media (max-width: 1080px) {
  .vs-hero { min-height: 0; padding-top: calc(var(--header-h) + 56px); }
  .vs-hero__grid { grid-template-columns: 1fr; }
  .vs-hero__copy { max-width: none; }
  .vs-hero__stage { width: 100%; aspect-ratio: 5 / 4; }
  .vs-chip--one { left: 4%; }
  .vs-plans { grid-template-columns: repeat(2, 1fr); }
  .vs-steps { grid-template-columns: repeat(2, 1fr); }
  .vs-split { grid-template-columns: 1fr; }
  .vs-split--reverse .vs-split__media { order: 0; }
  .vs-split__media--bleed { width: 100%; margin-left: 0; }
  .vs-bento__cell--a, .vs-bento__cell--b, .vs-bento__cell--c, .vs-bento__cell--d { grid-column: span 12; }
  .vs-strip__grid { grid-template-columns: repeat(2, 1fr); }
  .vs-strip__item:nth-child(3) { border-left: 0; padding-left: 0; }
  .vs-reviews > .vs-review { grid-column: span 6; }
  .vs-posters { grid-template-columns: repeat(3, 1fr); }
  .vs-poster:nth-child(2), .vs-poster:nth-child(4) { transform: none; }
}

@media (max-width: 680px) {
  .vs-plans { grid-template-columns: 1fr; }
  .vs-steps { grid-template-columns: 1fr; }
  .vs-strip__grid { grid-template-columns: 1fr; }
  .vs-strip__item { border-left: 0; padding-left: 0; border-top: 1px solid var(--line); }
  .vs-strip__item:first-child { border-top: 0; }
  .vs-reviews > .vs-review { grid-column: span 12; }
  .vs-posters { grid-template-columns: repeat(2, 1fr); }
  .vs-head--split { grid-template-columns: 1fr; align-items: start; }
  .vs-chip { display: none; }
}
/* ==========================================================================
   Inner pages: channels, checkout, guide, questions
   ========================================================================== */

.vs-pagehero { position: relative; overflow: hidden; padding-bottom: clamp(32px, 4vw, 56px); }
.vs-pagehero::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -10%;
  width: 64vw;
  height: 64vw;
  max-width: 900px;
  max-height: 900px;
  background: radial-gradient(circle, rgba(216, 180, 120, 0.16), transparent 62%);
  pointer-events: none;
}
.vs-pagehero__inner { position: relative; z-index: 2; display: grid; gap: 20px; max-width: 64ch; }
.vs-pagehero--split .vs-pagehero__inner { max-width: none; grid-template-columns: 1.2fr 0.8fr; align-items: end; gap: var(--s-lg); }

/* Filters and search ----------------------------------------------------- */

.vs-filters {
  position: sticky;
  top: var(--header-h);
  z-index: 20;
  padding-block: 18px;
  background: rgba(10, 9, 8, 0.86);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  margin-bottom: clamp(28px, 3vw, 44px);
}
.vs-filters__row { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }

.vs-search { position: relative; flex: 1 1 280px; max-width: 360px; }
.vs-search .vs-icon { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); color: var(--muted); width: 19px; height: 19px; }
.vs-search input {
  width: 100%;
  padding: 12px 40px 12px 42px;
  border-radius: var(--r-pill);
  background: var(--surface);
  border: 1px solid var(--hairline);
  color: var(--ink);
  font-size: 0.92rem;
  transition: border-color 0.3s var(--ease);
}
.vs-search input::placeholder { color: var(--muted); }
.vs-search input:focus { border-color: var(--hairline-warm); outline: none; box-shadow: 0 0 0 2px rgba(216, 180, 120, 0.35); }
.vs-search__clear {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 0;
  background: var(--glass);
  color: var(--muted);
  cursor: pointer;
  display: none;
  line-height: 1;
}
.vs-search.has-value .vs-search__clear { display: block; }

.vs-chips { display: flex; gap: 8px; flex-wrap: wrap; }
.vs-chips button {
  padding: 9px 16px;
  border-radius: var(--r-pill);
  border: 1px solid var(--hairline);
  background: transparent;
  color: var(--ink-soft);
  font-size: 0.84rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.vs-chips button:hover { border-color: var(--hairline-warm); color: var(--ink); }
.vs-chips button[aria-pressed="true"] { background: var(--accent); border-color: var(--accent); color: #17130D; }

.vs-result-count { font-size: 0.85rem; color: var(--muted); margin-left: auto; }

/* Channel grid ----------------------------------------------------------- */

.vs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(196px, 1fr));
  gap: clamp(14px, 1.6vw, 22px);
}

.vs-channel {
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--hairline);
  background: var(--surface);
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease);
}
.vs-channel:hover { transform: translateY(-6px); border-color: var(--hairline-warm); }
.vs-channel[hidden] { display: none; }
.vs-channel .vs-art { border: 0; border-radius: 0; }
.vs-channel__body { padding: 16px 18px 20px; display: grid; gap: 6px; }
.vs-channel__name { font-size: 1rem; }
.vs-channel__meta { display: flex; align-items: center; gap: 8px; font-size: 0.8rem; color: var(--muted); }
.vs-channel__dot { width: 3px; height: 3px; border-radius: 50%; background: var(--muted); display: inline-block; }
.vs-channel__quality { position: absolute; top: 12px; left: 12px; z-index: 4; }
.vs-channel__fav {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 4;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--hairline);
  background: rgba(10, 9, 8, 0.6);
  backdrop-filter: blur(8px);
  color: var(--ink-soft);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: color 0.3s var(--ease), background-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.vs-channel__fav:hover { transform: scale(1.08); color: var(--accent); }
.vs-channel__fav .vs-icon { width: 17px; height: 17px; }
.vs-channel__fav[aria-pressed="true"] { color: var(--accent); }
.vs-channel__fav[aria-pressed="true"] .vs-icon { fill: var(--accent); }

.vs-empty { padding: clamp(40px, 6vw, 72px); text-align: center; display: grid; gap: 14px; justify-items: center; }
.vs-empty[hidden] { display: none; }

.vs-more { display: grid; justify-items: center; margin-top: clamp(28px, 3vw, 44px); }

/* Forms ------------------------------------------------------------------ */

.vs-form { display: grid; gap: 22px; }
.vs-fieldset { display: grid; gap: 16px; border: 0; padding: 0; margin: 0; }
.vs-fieldset > legend {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  padding: 0;
  margin-bottom: 4px;
}
.vs-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.vs-field { display: grid; gap: 7px; }
.vs-field label { font-size: 0.85rem; color: var(--ink); font-weight: 600; }
.vs-field input, .vs-field select, .vs-field textarea {
  width: 100%;
  padding: 13px 15px;
  border-radius: var(--r-sm);
  background: var(--surface);
  border: 1px solid var(--hairline);
  color: var(--ink);
  font-size: 0.95rem;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.vs-field textarea { min-height: 140px; resize: vertical; }
.vs-field select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--muted) 50%), linear-gradient(135deg, var(--muted) 50%, transparent 50%); background-position: calc(100% - 20px) 22px, calc(100% - 14px) 22px; background-size: 6px 6px; background-repeat: no-repeat; }
.vs-field input::placeholder, .vs-field textarea::placeholder { color: var(--muted); }
.vs-field input:focus, .vs-field select:focus, .vs-field textarea:focus {
  outline: none;
  border-color: var(--hairline-warm);
  box-shadow: 0 0 0 2px rgba(216, 180, 120, 0.35);
}
.vs-field__error { font-size: 0.8rem; color: #E7A17A; min-height: 0; }
.vs-field.has-error input, .vs-field.has-error select, .vs-field.has-error textarea { border-color: #E7A17A; }
.vs-field__hint { font-size: 0.8rem; color: var(--muted); }
.vs-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.vs-form__status { font-size: 0.9rem; border-radius: var(--r-sm); padding: 14px 16px; border: 1px solid var(--hairline); background: var(--surface); }
.vs-form__status[hidden] { display: none; }
.vs-form__status--error { border-color: rgba(231, 161, 122, 0.5); color: #E7A17A; }

/* Payment selector ------------------------------------------------------- */

.vs-pay { display: grid; gap: 12px; }
.vs-pay__option {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  padding: 16px 18px;
  border-radius: var(--r-sm);
  border: 1px solid var(--hairline);
  background: var(--surface);
  cursor: pointer;
  transition: border-color 0.3s var(--ease), background-color 0.3s var(--ease);
}
.vs-pay__option:hover { border-color: var(--hairline-warm); }
.vs-pay__option input { accent-color: var(--accent); margin-top: 4px; }
.vs-pay__option:has(input:checked) { border-color: var(--accent); background: rgba(216, 180, 120, 0.07); }
.vs-pay__option strong { display: block; color: var(--ink); font-size: 0.95rem; }
.vs-pay__option span { font-size: 0.85rem; color: var(--muted); }

.vs-pay__panel {
  margin-top: 4px;
  padding: 18px;
  border-radius: var(--r-sm);
  border: 1px dashed var(--line);
  background: rgba(244, 239, 229, 0.02);
  display: grid;
  gap: 14px;
}
.vs-pay__panel[hidden] { display: none; }
.vs-pay__panel .vs-field input:disabled { opacity: 0.55; cursor: not-allowed; }
.vs-pay__notice { font-size: 0.85rem; color: var(--muted); display: flex; gap: 10px; align-items: flex-start; }
.vs-pay__notice .vs-icon { color: var(--accent); width: 18px; height: 18px; margin-top: 2px; }

/* Checkout layout -------------------------------------------------------- */

.vs-checkout { display: grid; grid-template-columns: 1.45fr 0.85fr; gap: clamp(24px, 3vw, 48px); align-items: start; }
.vs-checkout__panel { padding: clamp(24px, 2.6vw, 38px); }
.vs-summary { padding: clamp(24px, 2.4vw, 32px); position: sticky; top: calc(var(--header-h) + 24px); display: grid; gap: 18px; }
.vs-summary h2 { font-size: 1.1rem; }
.vs-summary__line { display: flex; justify-content: space-between; gap: 16px; font-size: 0.9rem; padding-bottom: 12px; border-bottom: 1px solid var(--line); }
.vs-summary__line span:last-child { color: var(--ink); font-weight: 600; text-align: right; }
.vs-summary__total { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; }
.vs-summary__total span { font-size: 0.85rem; color: var(--muted); }
.vs-summary__total strong { font-family: var(--font-display); font-size: 2rem; color: var(--ink); letter-spacing: -0.03em; }
.vs-summary__note { font-size: 0.82rem; color: var(--muted); }
.vs-qty { display: inline-flex; align-items: center; border: 1px solid var(--hairline); border-radius: var(--r-pill); overflow: hidden; }
.vs-qty button { width: 40px; height: 42px; background: transparent; border: 0; color: var(--ink); cursor: pointer; font-size: 1.1rem; }
.vs-qty button:hover { background: var(--glass); }
.vs-qty input { width: 52px; text-align: center; background: transparent; border: 0; color: var(--ink); font-weight: 600; }
.vs-qty input::-webkit-outer-spin-button, .vs-qty input::-webkit-inner-spin-button { appearance: none; margin: 0; }

/* Success ---------------------------------------------------------------- */

.vs-success { display: grid; justify-items: center; text-align: center; gap: 20px; padding: clamp(40px, 6vw, 80px) clamp(20px, 4vw, 60px); }
.vs-success[hidden] { display: none; }
.vs-success__seal { width: 92px; height: 92px; border-radius: 50%; border: 1px solid var(--hairline-warm); display: grid; place-items: center; background: radial-gradient(circle, rgba(216, 180, 120, 0.22), transparent 70%); }
.vs-success__seal svg { width: 44px; height: 44px; color: var(--accent); }
.vs-success__seal path { stroke-dasharray: 34; stroke-dashoffset: 34; animation: vs-draw 0.7s var(--ease) 0.15s forwards; }
@keyframes vs-draw { to { stroke-dashoffset: 0; } }
.vs-success__number { font-family: var(--font-display); font-size: 1.4rem; color: var(--accent); letter-spacing: 0.02em; }
.vs-success__next { display: grid; gap: 12px; text-align: left; max-width: 520px; margin-top: 8px; }
.vs-success__next li { display: flex; gap: 12px; align-items: flex-start; font-size: 0.92rem; }
.vs-success__next .vs-icon { color: var(--accent); width: 19px; height: 19px; margin-top: 3px; }
.vs-success__actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; margin-top: 8px; }

/* Device mockups --------------------------------------------------------- */

.vs-devices { display: grid; grid-template-columns: repeat(12, 1fr); gap: clamp(16px, 2vw, 26px); }
.vs-device { padding: clamp(22px, 2.2vw, 30px); display: grid; gap: 16px; align-content: start; }
.vs-device:nth-child(1) { grid-column: span 5; }
.vs-device:nth-child(2) { grid-column: span 4; }
.vs-device:nth-child(3) { grid-column: span 3; }
.vs-device:nth-child(4) { grid-column: span 3; }
.vs-device:nth-child(5) { grid-column: span 4; }
.vs-device:nth-child(6) { grid-column: span 5; }
.vs-device h3 { font-size: 1.05rem; }
.vs-device p { font-size: 0.88rem; color: var(--muted); }

.vs-mock { position: relative; display: grid; justify-items: center; gap: 0; }
.vs-mock__screen { position: relative; width: 100%; border-radius: 12px; overflow: hidden; border: 1px solid var(--hairline); background: var(--bg); }
.vs-mock--tv .vs-mock__screen { aspect-ratio: 16 / 9; border-width: 4px; }
.vs-mock--box .vs-mock__screen { aspect-ratio: 16 / 10; border-radius: 10px; }
.vs-mock--phone .vs-mock__screen { aspect-ratio: 9 / 17; max-width: 118px; border-radius: 18px; border-width: 4px; }
.vs-mock--tablet .vs-mock__screen { aspect-ratio: 3 / 4; max-width: 170px; border-radius: 14px; border-width: 4px; }
.vs-mock--laptop .vs-mock__screen { aspect-ratio: 16 / 10; border-radius: 8px; border-width: 3px; }
.vs-mock__stand { display: block; width: 34%; height: 8px; border-radius: 0 0 8px 8px; background: linear-gradient(180deg, var(--elevated), var(--bg)); border: 1px solid var(--hairline); border-top: 0; }
.vs-mock--laptop .vs-mock__stand { width: 118%; height: 9px; border-radius: 0 0 10px 10px; }

/* Step detail ------------------------------------------------------------ */

.vs-flow { display: grid; gap: clamp(20px, 2.4vw, 32px); }
.vs-flow__item {
  display: grid;
  grid-template-columns: 96px 1fr auto;
  gap: clamp(18px, 2.4vw, 40px);
  align-items: start;
  padding: clamp(24px, 2.6vw, 36px);
  border-top: 1px solid var(--line);
}
.vs-flow__item:last-child { border-bottom: 1px solid var(--line); }
.vs-flow__n {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  line-height: 0.9;
  color: var(--accent);
  font-weight: 700;
  letter-spacing: -0.05em;
  opacity: 0.85;
}
.vs-flow__body { display: grid; gap: 10px; max-width: 58ch; }
.vs-flow__meta { font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); white-space: nowrap; padding-top: 8px; }

/* Tabs and accordion ----------------------------------------------------- */

.vs-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: clamp(24px, 3vw, 40px); }
.vs-tabs button {
  padding: 10px 18px;
  border-radius: var(--r-pill);
  border: 1px solid var(--hairline);
  background: transparent;
  color: var(--ink-soft);
  font-size: 0.86rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.vs-tabs button:hover { color: var(--ink); border-color: var(--hairline-warm); }
.vs-tabs button[aria-selected="true"] { background: var(--accent); border-color: var(--accent); color: #17130D; }
.vs-tabpanel[hidden] { display: none; }

.vs-accordion { display: grid; }
.vs-accordion__item { border-top: 1px solid var(--line); }
.vs-accordion__item:last-child { border-bottom: 1px solid var(--line); }
.vs-accordion__heading { margin: 0; }
.vs-accordion__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: clamp(18px, 2vw, 24px) 4px;
  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.35vw, 1.15rem);
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.015em;
  transition: color 0.25s var(--ease);
}
.vs-accordion__trigger:hover { color: var(--accent); }
.vs-accordion__chevron { width: 20px; height: 20px; color: var(--accent); transition: transform 0.35s var(--ease); flex: none; }
.vs-accordion__item.is-open .vs-accordion__chevron { transform: rotate(180deg); }
.vs-accordion__panel { padding: 0 4px clamp(20px, 2vw, 26px); }
.vs-accordion__panel p { max-width: 74ch; color: var(--ink-soft); font-size: 0.95rem; }
.vs-accordion__panel[hidden] { display: none; }

/* Contact ---------------------------------------------------------------- */

.vs-contact { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(24px, 3vw, 52px); align-items: start; }
.vs-contact__panel { padding: clamp(24px, 2.6vw, 38px); }
.vs-contact__aside { display: grid; gap: 16px; }
.vs-contact__card { padding: clamp(22px, 2.2vw, 30px); display: grid; gap: 10px; }
.vs-contact__card h3 { font-size: 1.02rem; display: flex; align-items: center; gap: 10px; }
.vs-contact__card h3 .vs-icon { color: var(--accent); }
.vs-contact__card p { font-size: 0.9rem; color: var(--muted); }
.vs-contact__card a { color: var(--accent); font-weight: 600; font-size: 0.93rem; }

.vs-table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--r-md); }
.vs-table { width: 100%; border-collapse: collapse; min-width: 680px; }
.vs-table th, .vs-table td { padding: 15px 18px; text-align: left; font-size: 0.9rem; border-bottom: 1px solid var(--line); }
.vs-table thead th { font-family: var(--font-display); color: var(--ink); font-size: 0.95rem; background: rgba(244, 239, 229, 0.03); }
.vs-table tbody th { color: var(--ink-soft); font-weight: 400; }
.vs-table td { text-align: center; color: var(--ink); }
.vs-table td .vs-icon { width: 19px; height: 19px; color: var(--accent); margin-inline: auto; }
.vs-table td.is-off { color: var(--muted); }
.vs-table tbody tr:hover { background: rgba(244, 239, 229, 0.025); }

@media (max-width: 1080px) {
  .vs-checkout { grid-template-columns: 1fr; }
  .vs-summary { position: static; }
  .vs-contact { grid-template-columns: 1fr; }
  .vs-pagehero--split .vs-pagehero__inner { grid-template-columns: 1fr; }
  .vs-device:nth-child(n) { grid-column: span 6; }
  .vs-flow__item { grid-template-columns: 72px 1fr; }
  .vs-flow__meta { grid-column: 2; padding-top: 0; }
}

@media (max-width: 680px) {
  .vs-row { grid-template-columns: 1fr; }
  .vs-device:nth-child(n) { grid-column: span 12; }
  .vs-filters { position: static; }
  .vs-result-count { margin-left: 0; }
  .vs-grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); }
  .vs-flow__item { grid-template-columns: 1fr; gap: 10px; }
}
/* Utilities -------------------------------------------------------------- */

.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.vs-social { display: flex; flex-wrap: wrap; gap: 8px; }
.vs-social a {
  display: inline-block;
  padding: 7px 14px;
  border-radius: var(--r-pill);
  border: 1px solid var(--hairline);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink-soft);
  transition: border-color 0.3s var(--ease), color 0.3s var(--ease);
}
.vs-social a:hover { border-color: var(--hairline-warm); color: var(--accent); }
.vs-footer__col .vs-social { margin-top: 2px; }

.vs-contact__card ul { display: flex; }
.vs-hero__title span.vs-accent { color: var(--accent); }

/* Admin bar keeps its own offset. */
body.admin-bar .vs-header { top: 32px; }
body.admin-bar .vs-mobile-nav { top: calc(var(--header-h) + 32px); }
@media (max-width: 782px) {
  body.admin-bar .vs-header { top: 46px; }
  body.admin-bar .vs-mobile-nav { top: calc(var(--header-h) + 46px); }
}
/* Hero fit: keep the headline to two lines and the whole moment in view ---- */

@media (min-width: 1081px) {
  .vs-hero__grid { grid-template-columns: 1.12fr 0.88fr; }
  .vs-hero__copy { max-width: min(100%, 44ch); }
  .vs-hero__stage { max-height: 66svh; }
}

.vs-hero__title { font-size: clamp(2.45rem, 4.7vw, 4.1rem); }
.vs-hero__sub { font-size: clamp(1rem, 1.15vw, 1.14rem); }
/* Grid and flex children must be allowed to shrink ------------------------
   Grid/flex items default to min-width:auto, so a long label can push a track
   wider than its container. Every track child opts out explicitly. */

.vs-accordion__item,
.vs-accordion__heading,
.vs-accordion__trigger,
.vs-accordion__trigger > span,
.vs-grid > *,
.vs-plans > *,
.vs-bento > *,
.vs-reviews > *,
.vs-devices > *,
.vs-steps > *,
.vs-posters > *,
.vs-strip__grid > *,
.vs-footer__grid > *,
.vs-checkout > *,
.vs-contact > *,
.vs-split > *,
.vs-row > *,
.vs-field,
.vs-flow__item > *,
.vs-summary__line > span,
.vs-plan__features li,
.vs-split__list li,
.vs-success__next li { min-width: 0; }

.vs-accordion__trigger > span,
.vs-channel__name,
.vs-plan__name { overflow-wrap: break-word; }