:root {
  --vs-bg: #050505;
  --vs-bg-2: #0a0a0a;
  --vs-card: #111111;
  --vs-elev: #151515;
  --vs-red: #e50914;
  --vs-red-bright: #ff1f2d;
  --vs-white: #ffffff;
  --vs-text: #ffffff;
  --vs-muted: #a1a1aa;
  --vs-border: rgba(255, 255, 255, 0.08);
  --vs-glow: rgba(229, 9, 20, 0.25);
  --vs-glass: rgba(255, 255, 255, 0.04);
  --vs-radius: 22px;
  --vs-radius-sm: 14px;
  --vs-display: "Space Grotesk", system-ui, sans-serif;
  --vs-body: Inter, system-ui, sans-serif;
  --vs-wrap: min(1180px, calc(100% - 40px));
  --vs-header: 64px;
  --vs-header-bg: rgba(5, 5, 5, 0.35);
  --vs-header-bg-scrolled: rgba(5, 5, 5, 0.86);
  --vs-ink: #ffffff;
  --vs-surface: #111111;
  --vs-prose: #e4e4e7;
  --vs-menu-bg: rgba(10, 10, 10, 0.96);
}

html[data-vs-theme="day"] {
  --vs-bg: #f3f0ea;
  --vs-bg-2: #ffffff;
  --vs-card: #ffffff;
  --vs-elev: #f7f4ef;
  --vs-text: #141414;
  --vs-muted: #5c5c66;
  --vs-border: rgba(20, 20, 20, 0.1);
  --vs-glow: rgba(229, 9, 20, 0.16);
  --vs-glass: rgba(255, 255, 255, 0.7);
  --vs-header-bg: rgba(243, 240, 234, 0.7);
  --vs-header-bg-scrolled: rgba(255, 255, 255, 0.92);
  --vs-ink: #141414;
  --vs-surface: #ffffff;
  --vs-prose: #2c2c32;
  --vs-menu-bg: rgba(255, 255, 255, 0.96);
  color-scheme: light;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

html,
body {
  margin: 0;
  min-height: 100%;
  background: var(--vs-bg);
  color: var(--vs-text);
  font-family: var(--vs-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  transition: background-color 0.3s ease, color 0.3s ease;
}

body.vs-theme { overflow-x: hidden; padding-bottom: 88px; }

img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
h1, h2, h3, h4 { font-family: var(--vs-display); letter-spacing: -0.04em; line-height: 0.98; margin: 0; }
p { margin: 0; }

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.vs-skip {
  position: absolute;
  left: 16px;
  top: -40px;
  z-index: 100;
  background: var(--vs-red);
  color: #fff;
  padding: 8px 12px;
  border-radius: 8px;
}
.vs-skip:focus { top: 16px; }

.vs-wrap { width: var(--vs-wrap); margin-inline: auto; }

.vs-atmosphere {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.vs-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
}
.vs-orb--a {
  width: 420px;
  height: 420px;
  right: -80px;
  top: -60px;
  background: var(--vs-glow);
}
.vs-orb--b {
  width: 280px;
  height: 280px;
  left: -60px;
  bottom: 10%;
  background: rgba(229, 9, 20, 0.12);
}
.vs-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse at 50% 20%, #000 10%, transparent 70%);
}
.vs-noise {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.vs-header,
.vs-main,
.vs-footer { position: relative; z-index: 1; }

.vs-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--vs-header);
  background: var(--vs-header-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: background 0.35s ease, height 0.35s ease, border-color 0.35s ease;
}
.vs-header.is-scrolled {
  background: var(--vs-header-bg-scrolled);
  height: 56px;
  border-bottom-color: var(--vs-border);
}
.vs-header__inner {
  width: var(--vs-wrap);
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
}
.vs-header__actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
  z-index: 3;
}

.vs-logo, .custom-logo-link { display: flex; align-items: center; gap: 10px; color: var(--vs-ink); }
.vs-logo img, .custom-logo { height: 44px; width: auto; max-width: min(200px, 48vw); object-fit: contain; background: transparent; }
.vs-logo--footer img { height: 72px; max-width: 280px; }
.vs-header.is-scrolled .vs-logo img { height: 38px; }
.vs-logo__mark {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  background: #111;
  border: 1px solid var(--vs-border);
  color: var(--vs-red-bright);
  font-family: var(--vs-display);
  font-weight: 700;
  box-shadow: 0 0 24px var(--vs-glow);
}
.vs-logo__word { font-family: var(--vs-display); font-weight: 700; letter-spacing: -0.04em; font-size: 1.15rem; }
.vs-logo__word span { color: var(--vs-muted); font-weight: 500; }

.vs-nav { display: none; }
@media (min-width: 1080px) {
  .vs-nav { display: block; margin-left: auto; }
  .vs-burger { display: none !important; }
  .vs-nav__list a { padding: 8px 9px; font-size: 0.78rem; }
}
@media (max-width: 1079px) {
  .vs-burger { display: flex !important; visibility: visible; opacity: 1; }
  .vs-header__actions {
    position: static;
  }
  .vs-burger {
    position: static;
    background: var(--vs-surface);
  }
}
.vs-nav__list,
.vs-mobile__list,
.vs-footer__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.vs-nav__list { display: flex; gap: 4px; }
.vs-nav__list a {
  display: block;
  padding: 8px 12px;
  color: var(--vs-muted);
  font-size: 0.86rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 999px;
}
.vs-nav__list a:hover,
.vs-nav__list .current-menu-item > a,
.vs-nav__list .current_page_item > a {
  color: var(--vs-ink);
}
.vs-nav__list .current-menu-item > a,
.vs-nav__list .current_page_item > a {
  color: var(--vs-red-bright);
}
.vs-nav li { position: relative; }
.vs-nav .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  padding: 8px;
  list-style: none;
  background: var(--vs-menu-bg);
  border: 1px solid var(--vs-border);
  border-radius: 14px;
}
.vs-nav li:hover > .sub-menu,
.vs-nav li:focus-within > .sub-menu { display: block; }
.vs-nav .sub-menu a { text-transform: none; letter-spacing: 0; }
.vs-nav__more > a::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 6px;
  vertical-align: middle;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
}
.vs-nav__more > .sub-menu {
  left: auto;
  right: 0;
  min-width: 220px;
}
.vs-mobile .vs-nav__list { display: block; }

.vs-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 12px;
  border: 1px solid transparent;
  font-family: var(--vs-display);
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}
.vs-btn--primary {
  background: var(--vs-red);
  color: #fff;
  box-shadow: 0 8px 30px var(--vs-glow);
}
.vs-btn--primary:hover { background: var(--vs-red-bright); transform: translateY(-1px); }
.vs-btn--ghost {
  background: transparent;
  border-color: var(--vs-border);
  color: var(--vs-ink);
}
.vs-btn--ghost:hover { border-color: rgba(229, 9, 20, 0.5); box-shadow: 0 0 0 1px var(--vs-glow); }
.vs-btn--sm { min-height: 40px; padding: 0 16px; font-size: 0.9rem; white-space: nowrap; }
.vs-textlink {
  color: var(--vs-ink);
  font-weight: 600;
  border-bottom: 1px solid var(--vs-red);
  padding-bottom: 2px;
}
.vs-textlink:hover { color: var(--vs-red-bright); }

.vs-mode {
  width: 62px;
  height: 34px;
  padding: 3px;
  border-radius: 999px;
  border: 1px solid var(--vs-border);
  background: var(--vs-glass);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  flex: 0 0 auto;
  appearance: none;
  -webkit-appearance: none;
}
.vs-mode__icon {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  z-index: 1;
  color: var(--vs-muted);
}
.vs-mode__icon svg { width: 14px; height: 14px; }
.vs-mode__knob {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--vs-red);
  box-shadow: 0 4px 12px var(--vs-glow);
  transition: transform 0.3s ease;
  z-index: 2;
  transform: translateX(28px);
}
html[data-vs-theme="day"] .vs-mode__knob { transform: translateX(0); background: #111; box-shadow: none; }
html[data-vs-theme="night"] .vs-mode__icon--moon { color: #fff; }
html[data-vs-theme="day"] .vs-mode__icon--sun { color: #fff; }

.vs-iconbtn {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid var(--vs-border);
  background: var(--vs-glass);
  display: grid;
  place-items: center;
  color: var(--vs-ink);
  flex: 0 0 auto;
}
.vs-iconbtn svg { width: 18px; height: 18px; }
.vs-iconbtn:hover { border-color: rgba(229, 9, 20, 0.5); color: var(--vs-red-bright); }

.vs-dock {
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  z-index: 40;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px;
  border-radius: 999px;
  background: rgba(8, 8, 8, 0.78);
  border: 1px solid var(--vs-border);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}
.vs-dock__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  color: #fff;
  font-family: var(--vs-display);
  font-size: 0.85rem;
  font-weight: 600;
}
.vs-dock__btn svg { width: 20px; height: 20px; flex: 0 0 auto; }
.vs-dock__btn--wa { background: #1f8a3b; }
.vs-dock__btn--wa:hover { background: #25d366; }
.vs-dock__btn--ig {
  background: linear-gradient(135deg, #f58529, #dd2a7b 55%, #8134af);
}
.vs-dock__btn--ig:hover { filter: brightness(1.08); }
html[data-vs-theme="day"] .vs-dock {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}
html[data-vs-theme="day"] .vs-dock__btn { color: #fff; }
@media (max-width: 720px) {
  .vs-dock { bottom: 12px; gap: 8px; padding: 6px; }
  .vs-dock__btn span { display: none; }
  .vs-dock__btn { width: 48px; min-height: 48px; padding: 0; justify-content: center; }
}

.vs-burger {
  width: 44px;
  height: 44px;
  padding: 11px 12px;
  border: 1px solid var(--vs-border);
  border-radius: 12px;
  background: var(--vs-surface);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 0 0 auto;
  z-index: 5;
  appearance: none;
  -webkit-appearance: none;
  box-shadow: 0 0 0 1px rgba(229, 9, 20, 0.25);
}
.vs-burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--vs-ink);
  border-radius: 1px;
}

.vs-mobile {
  display: none;
  padding: 16px 20px 28px;
  background: var(--vs-menu-bg);
  border-bottom: 1px solid var(--vs-border);
}
.vs-header.is-open .vs-mobile { display: block; }
.vs-mobile__list a,
.vs-mobile .vs-nav__list a {
  display: block;
  padding: 14px 0;
  border-bottom: 1px solid var(--vs-border);
  font-family: var(--vs-display);
  font-size: 1.2rem;
}
.vs-mobile .vs-btn { width: 100%; margin-top: 18px; }

.vs-kicker {
  color: var(--vs-red-bright);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  font-weight: 600;
  margin-bottom: 16px;
}
.vs-accent { color: var(--vs-red-bright); }
.vs-lede {
  color: var(--vs-muted);
  font-size: 1.05rem;
  max-width: 46rem;
  margin-top: 18px;
}
.vs-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid var(--vs-border);
  background: var(--vs-glass);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--vs-muted);
}
.vs-badge--demo {
  border-color: rgba(229, 9, 20, 0.35);
  color: #ffb4b8;
}

.vs-glass {
  background: var(--vs-glass);
  border: 1px solid var(--vs-border);
  border-radius: var(--vs-radius);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
}

.vs-hero {
  padding: 48px 0 80px;
  min-height: min(calc(100vh - var(--vs-header)), 860px);
  display: grid;
  align-items: center;
}
.vs-hero__grid {
  display: grid;
  gap: 48px;
}
@media (min-width: 980px) {
  .vs-hero__grid { grid-template-columns: 1.05fr 0.95fr; align-items: center; }
}
.vs-hero h1 {
  font-size: clamp(2.7rem, 8vw, 6.4rem);
  text-transform: uppercase;
}
.vs-hero__last { display: block; }
.vs-hero__copy { position: relative; }
.vs-hero__copy::before {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  left: 10%;
  top: 20%;
  background: var(--vs-glow);
  filter: blur(70px);
  z-index: -1;
  pointer-events: none;
}
.vs-hero__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }

.vs-command {
  position: relative;
  min-height: 420px;
}
.vs-command__glow {
  position: absolute;
  inset: 12% 10%;
  background: radial-gradient(circle, var(--vs-glow), transparent 70%);
  filter: blur(10px);
}
.vs-command__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  position: relative;
}
.vs-stat {
  background: var(--vs-glass);
  border: 1px solid var(--vs-border);
  border-radius: 20px;
  padding: 20px;
  backdrop-filter: blur(16px);
}
.vs-stat p { color: var(--vs-muted); font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; }
.vs-stat strong { display: block; font-family: var(--vs-display); font-size: 2rem; margin: 8px 0 4px; }
.vs-stat span { color: #8a8a94; font-size: 0.75rem; }
.vs-stat--a { transform: translateY(8px); }
.vs-stat--b { transform: translateY(-12px); }
.vs-stat--c { transform: translateY(18px); }
.vs-stat--d { transform: translateY(-4px); }
.vs-command__mods {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  padding: 18px 0 0;
  margin: 0;
  position: relative;
}
.vs-command__mods li {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--vs-border);
  background: rgba(17, 17, 17, 0.7);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.vs-section { padding: 88px 0; }
.vs-section--tight { padding: 48px 0 88px; }
.vs-section__head { margin-bottom: 40px; max-width: 720px; }
.vs-section__head h2,
.vs-pagehead h1,
.vs-split h2 { font-size: clamp(2rem, 4.6vw, 4.1rem); text-transform: uppercase; }
.vs-section__head--row {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: flex-end;
  max-width: none;
}
.vs-pagehead { padding: 72px 0 36px; }

.vs-services,
.vs-why,
.vs-work { display: grid; gap: 16px; }
@media (min-width: 760px) {
  .vs-services, .vs-why, .vs-work { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1100px) {
  .vs-services, .vs-why { grid-template-columns: repeat(3, 1fr); }
}
.vs-service, .vs-why .vs-glass, .vs-work-card { padding: 26px; transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease; }
.vs-service:hover, .vs-why .vs-glass:hover, .vs-work-card:hover {
  transform: translateY(-6px);
  border-color: rgba(229, 9, 20, 0.45);
  box-shadow: 0 18px 40px var(--vs-glow);
}
.vs-service__num, .vs-work-card__index {
  color: var(--vs-red);
  font-family: var(--vs-display);
  font-size: 0.85rem;
  letter-spacing: 0.16em;
}
.vs-service h3, .vs-why h3, .vs-work-card h3 { margin: 14px 0 10px; font-size: 1.25rem; text-transform: uppercase; }
.vs-service p, .vs-why p, .vs-work-card p { color: var(--vs-muted); }

.vs-split { display: grid; gap: 36px; }
@media (min-width: 960px) { .vs-split { grid-template-columns: 1fr 1fr; align-items: start; } }
.vs-pills { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; padding: 22px 0 0; margin: 0; }
.vs-pills li {
  padding: 8px 12px;
  border: 1px solid var(--vs-border);
  border-radius: 999px;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--vs-muted);
}

.vs-studio { padding: 22px; min-height: 420px; }
.vs-studio__label { color: var(--vs-muted); font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; margin: 16px 0 8px; }
.vs-studio__prompt {
  font-family: var(--vs-display);
  font-size: 1.15rem;
  border-left: 2px solid var(--vs-red);
  padding-left: 12px;
}
.vs-studio__status { margin: 18px 0; color: var(--vs-red-bright); font-size: 0.85rem; }
.vs-studio__out { display: grid; gap: 10px; }
.vs-studio__out article {
  background: rgba(0,0,0,0.28);
  border: 1px solid var(--vs-border);
  border-radius: 14px;
  padding: 12px 14px;
}
.vs-studio__out span { color: var(--vs-red-bright); font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; }
.vs-studio__out p { margin-top: 6px; color: #d4d4d8; font-size: 0.92rem; }
.vs-studio.is-ready .vs-studio__out article { animation: vsRise 0.5s ease both; }
.vs-studio.is-ready .vs-studio__out article:nth-child(2) { animation-delay: 0.06s; }
.vs-studio.is-ready .vs-studio__out article:nth-child(3) { animation-delay: 0.12s; }
.vs-studio.is-ready .vs-studio__out article:nth-child(4) { animation-delay: 0.18s; }
.vs-studio.is-ready .vs-studio__out article:nth-child(5) { animation-delay: 0.24s; }

.vs-dash {
  display: grid;
  gap: 16px;
}
@media (min-width: 900px) {
  .vs-dash { grid-template-columns: 1.4fr 1fr 1fr; }
  .vs-dash__wide { grid-column: 1 / -1; }
}
.vs-dash .vs-glass { padding: 22px; }
.vs-dash__top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.vs-dash h3 { font-size: 1rem; text-transform: uppercase; }
.vs-cal {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
}
.vs-cal span, .vs-cal i, .vs-cal b {
  min-height: 42px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: 0.72rem;
}
.vs-cal span { color: var(--vs-muted); }
.vs-cal i { background: rgba(255,255,255,0.03); border: 1px solid var(--vs-border); }
.vs-cal b { background: rgba(229,9,20,0.12); border: 1px solid rgba(229,9,20,0.3); color: #fff; }
.vs-feed { list-style: none; margin: 16px 0 0; padding: 0; }
.vs-feed li { display: flex; gap: 10px; padding: 10px 0; border-bottom: 1px solid var(--vs-border); color: var(--vs-muted); }
.vs-feed span { color: var(--vs-red-bright); font-weight: 700; width: 24px; }
.vs-dash__metric { font-family: var(--vs-display); font-size: 2.4rem; margin-top: 12px; }
.vs-dash__metric small { display: block; font-size: 0.75rem; color: var(--vs-muted); letter-spacing: 0.1em; text-transform: uppercase; }
.vs-bars { display: flex; align-items: flex-end; gap: 8px; height: 88px; margin-top: 16px; }
.vs-bars span { flex: 1; height: var(--h); background: linear-gradient(180deg, var(--vs-red-bright), transparent); border-radius: 8px 8px 0 0; opacity: 0.85; }

.vs-steps {
  display: grid;
  gap: 14px;
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
}
@media (min-width: 900px) {
  .vs-steps { grid-template-columns: repeat(5, 1fr); }
  .vs-steps::before {
    content: "";
    position: absolute;
    top: 28px;
    left: 8%;
    right: 8%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--vs-red), transparent);
  }
}
.vs-steps li { padding: 22px; position: relative; }
.vs-steps span { color: var(--vs-red); font-family: var(--vs-display); letter-spacing: 0.12em; }
.vs-steps h3 { margin: 10px 0; text-transform: uppercase; font-size: 1.05rem; }
.vs-steps p { color: var(--vs-muted); font-size: 0.92rem; }

.vs-work-card dl { margin: 16px 0; }
.vs-work-card dt { color: var(--vs-muted); font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; }
.vs-work-card dd { margin: 0 0 10px; }
.vs-work-card__note { font-size: 0.85rem; margin-bottom: 16px; }

.vs-blog-grid {
  display: grid;
  gap: 16px;
  margin-top: 16px;
}
@media (min-width: 760px) { .vs-blog-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1100px) { .vs-blog-grid--3 { grid-template-columns: repeat(3, 1fr); } }
.vs-blog-card {
  overflow: hidden;
  background: var(--vs-glass);
  border: 1px solid var(--vs-border);
  border-radius: var(--vs-radius);
  display: flex;
  flex-direction: column;
  transition: transform 0.35s ease, border-color 0.35s ease;
}
.vs-blog-card:hover { transform: translateY(-4px); border-color: rgba(229,9,20,0.4); }
.vs-blog-card--featured {
  display: grid;
  margin-bottom: 8px;
}
@media (min-width: 900px) {
  .vs-blog-card--featured { grid-template-columns: 1.15fr 0.85fr; }
}
.vs-blog-card__media { display: block; min-height: 200px; background: var(--vs-surface); }
.vs-blog-card__media img { width: 100%; height: 100%; object-fit: cover; min-height: 220px; }
.vs-blog-card__fallback {
  min-height: 220px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 80% 20%, rgba(229,9,20,0.35), transparent 40%),
    linear-gradient(160deg, #151515, #050505);
  color: #fff;
  font-family: var(--vs-display);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.vs-blog-card__body { padding: 22px; }
.vs-blog-card__meta { display: flex; flex-wrap: wrap; gap: 10px; color: var(--vs-muted); font-size: 0.8rem; margin-bottom: 12px; }
.vs-blog-card__title { font-size: 1.25rem; text-transform: none; letter-spacing: -0.03em; line-height: 1.2; }
.vs-blog-card__title a:hover { color: var(--vs-red-bright); }
.vs-blog-card__excerpt { color: var(--vs-muted); margin-top: 10px; }
.vs-blog-card__author { margin-top: 14px; font-size: 0.82rem; color: #d4d4d8; }
.vs-archive__tools { margin-top: 24px; display: grid; gap: 16px; }
.vs-cats { display: flex; flex-wrap: wrap; gap: 8px; }
.vs-cats a { padding: 6px 12px; border: 1px solid var(--vs-border); border-radius: 999px; color: var(--vs-muted); font-size: 0.8rem; }
.vs-cats a:hover { color: #fff; border-color: var(--vs-red); }

.vs-search { display: flex; max-width: 420px; border: 1px solid var(--vs-border); border-radius: 14px; background: var(--vs-glass); overflow: hidden; }
.vs-search input { flex: 1; background: transparent; border: 0; padding: 12px 14px; outline: none; }
.vs-search__btn { width: 46px; border: 0; background: transparent; color: #fff; display: grid; place-items: center; }
.vs-search svg { width: 18px; height: 18px; }

.vs-pagination, .navigation.pagination { margin: 40px 0 20px; }
.vs-pagination .nav-links, .navigation.pagination .nav-links { display: flex; gap: 8px; flex-wrap: wrap; }
.vs-pagination a, .vs-pagination span, .navigation.pagination a, .navigation.pagination span {
  min-width: 40px; height: 40px; display: grid; place-items: center;
  border: 1px solid var(--vs-border); border-radius: 10px; color: var(--vs-muted);
}
.vs-pagination .current, .navigation.pagination .current { color: #fff; border-color: var(--vs-red); }

.vs-article__layout { display: grid; gap: 40px; padding-bottom: 80px; }
@media (min-width: 1080px) {
  .vs-article__layout { grid-template-columns: minmax(0, 1fr) 280px; padding-top: 40px; }
}
.vs-article__main h1 { font-size: clamp(2.1rem, 4vw, 3.6rem); text-transform: none; letter-spacing: -0.04em; line-height: 1.08; }
.vs-crumbs { display: flex; flex-wrap: wrap; gap: 8px; color: var(--vs-muted); font-size: 0.85rem; margin: 28px 0 18px; }
.vs-crumbs a:hover { color: #fff; }
.vs-article__byline { display: flex; gap: 12px; align-items: center; margin: 22px 0; color: var(--vs-muted); }
.vs-article__byline img { border-radius: 50%; }
.vs-article__byline p:first-child { color: #fff; font-weight: 600; }
.vs-article__hero { margin: 12px 0 28px; border-radius: 20px; overflow: hidden; border: 1px solid var(--vs-border); }
.vs-article__hero figcaption { padding: 10px 14px; color: var(--vs-muted); font-size: 0.85rem; }

.vs-prose {
  color: #e4e4e7;
  font-size: 1.05rem;
  line-height: 1.75;
  max-width: 760px;
  background: transparent;
}
.vs-prose h2, .vs-prose h3 { margin: 1.6em 0 0.6em; text-transform: none; }
.vs-prose p, .vs-prose ul, .vs-prose ol { margin: 0 0 1.1em; }
.vs-prose a { color: #fff; border-bottom: 1px solid rgba(229,9,20,0.6); }
.vs-prose img { border-radius: 16px; margin: 1.4em 0; }
.vs-prose blockquote {
  margin: 1.4em 0;
  padding: 12px 0 12px 18px;
  border-left: 2px solid var(--vs-red);
  color: #fff;
  font-family: var(--vs-display);
}
.vs-prose-wrap { padding-bottom: 72px; }

.vs-tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 28px 0; }
.vs-tags a { padding: 6px 10px; border: 1px solid var(--vs-border); border-radius: 999px; color: var(--vs-muted); font-size: 0.8rem; }
.vs-share { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; margin: 20px 0 36px; color: var(--vs-muted); }
.vs-share a:hover { color: var(--vs-red-bright); }
.vs-postnav { border-top: 1px solid var(--vs-border); padding-top: 24px; }
.vs-postnav .nav-links { display: grid; gap: 16px; }
@media (min-width: 700px) { .vs-postnav .nav-links { grid-template-columns: 1fr 1fr; } }
.vs-postnav span { display: block; color: var(--vs-muted); font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 6px; }
.vs-inline-cta {
  margin: 40px 0;
  padding: 28px;
  border-radius: var(--vs-radius);
  border: 1px solid var(--vs-border);
  background: var(--vs-glass);
}
.vs-inline-cta h2 { margin-bottom: 10px; font-size: 1.8rem; text-transform: uppercase; }
.vs-inline-cta p { color: var(--vs-muted); margin-bottom: 16px; }
.vs-aside { position: sticky; top: 92px; height: max-content; }
.vs-widget { padding: 20px; border: 1px solid var(--vs-border); border-radius: 18px; background: var(--vs-glass); margin-bottom: 16px; }
.vs-widget__title { font-size: 0.9rem; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 14px; }
.vs-related { list-style: none; margin: 0; padding: 0; }
.vs-related li { padding: 10px 0; border-bottom: 1px solid var(--vs-border); }
.vs-related time { display: block; color: var(--vs-muted); font-size: 0.78rem; }

.vs-contact-list { list-style: none; margin: 28px 0 0; padding: 0; display: grid; gap: 14px; }
.vs-contact-list li { display: flex; gap: 12px; align-items: center; color: var(--vs-muted); }
.vs-contact-list svg { width: 18px; height: 18px; color: var(--vs-red-bright); flex: 0 0 auto; }
.vs-contact-card { padding: 24px; }
.vs-form__grid { display: grid; gap: 14px; }
@media (min-width: 700px) { .vs-form__grid { grid-template-columns: 1fr 1fr; } }
.vs-form label { display: block; font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--vs-muted); margin-bottom: 6px; }
.vs-form input, .vs-form select, .vs-form textarea {
  width: 100%;
  background: rgba(0,0,0,0.35);
  border: 1px solid var(--vs-border);
  border-radius: 12px;
  padding: 12px 14px;
  outline: none;
}
.vs-form input:focus, .vs-form select:focus, .vs-form textarea:focus {
  border-color: rgba(229,9,20,0.7);
  box-shadow: 0 0 0 3px var(--vs-glow);
}
.vs-form__full { margin: 14px 0 18px; }
.vs-form__hp { position: absolute; left: -9999px; height: 0; overflow: hidden; }
.vs-form { position: relative; }
.vs-form__notice { margin-bottom: 14px; padding: 10px 12px; border-radius: 10px; border: 1px solid var(--vs-border); }
.vs-form__notice.is-ok { border-color: rgba(34,197,94,0.4); }
.vs-form__notice.is-err { border-color: rgba(229,9,20,0.5); }

.vs-cta-band { padding: 40px 0 90px; }
.vs-cta-band__inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
  padding: 28px;
  border-radius: var(--vs-radius);
  border: 1px solid var(--vs-border);
  background: var(--vs-glass);
}
.vs-cta-band h2 { font-size: 1.6rem; text-transform: uppercase; }

.vs-footer { margin-top: 20px; padding: 64px 0 28px; position: relative; }
.vs-footer__glow {
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--vs-red), transparent);
  box-shadow: 0 0 24px var(--vs-glow);
}
.vs-footer__grid { display: grid; gap: 32px; }
@media (min-width: 900px) { .vs-footer__grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; } }
.vs-footer h2 { font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--vs-muted); margin-bottom: 16px; }
.vs-footer__brand p { color: var(--vs-muted); margin: 16px 0; max-width: 32ch; }
.vs-footer__list a { display: block; padding: 6px 0; color: #d4d4d8; }
.vs-footer__list a:hover { color: var(--vs-red-bright); }
.vs-social { display: flex; flex-wrap: wrap; gap: 12px; }
.vs-social a { color: var(--vs-muted); font-size: 0.85rem; }
.vs-social a:hover { color: #fff; }
.vs-footer__legal {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid var(--vs-border);
  color: var(--vs-muted);
  font-size: 0.85rem;
}
.vs-footer__legal a { margin-left: 16px; }
.vs-footer__legal p:first-child a {
  margin-left: 0;
  color: inherit;
  text-decoration: none;
}
.vs-footer__legal p:first-child a:hover { color: var(--vs-red-bright); }

.vs-comments { margin-top: 40px; padding-top: 28px; border-top: 1px solid var(--vs-border); }
.vs-comment-list { list-style: none; padding: 0; }
.vs-comment-list .comment { padding: 16px 0; border-bottom: 1px solid var(--vs-border); }
.vs-empty { padding: 40px 0 80px; }

.vs-woo .woocommerce { color: #e4e4e7; }

[data-vs-reveal] { animation: vsRise 0.6s ease both; }
@keyframes vsRise {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: none; }
}

a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--vs-red-bright);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
  .vs-stat--a, .vs-stat--b, .vs-stat--c, .vs-stat--d { transform: none; }
}

@media (max-width: 720px) {
  :root { --vs-wrap: min(1180px, calc(100% - 28px)); }
  .vs-header__inner .vs-btn--sm { display: none; }
  .vs-hero { padding-top: 20px; min-height: 0; }
  .vs-hero h1 { font-size: clamp(2.4rem, 11vw, 3.2rem); }
  .vs-command__cards { grid-template-columns: 1fr; }
  .vs-kicker { letter-spacing: 0.12em; }
  .vs-hero__cta { flex-direction: column; align-items: stretch; }
  .vs-hero__cta .vs-btn { width: 100%; }
  .vs-command__cards { gap: 10px; }
  .vs-stat { padding: 14px; }
  .vs-stat--a, .vs-stat--b, .vs-stat--c, .vs-stat--d { transform: none; }
  .vs-stat strong { font-size: 1.45rem; }
  .vs-stat p { font-size: 0.64rem; letter-spacing: 0.08em; }
  .vs-command__mods li { font-size: 0.65rem; }
  .vs-section { padding: 64px 0; }
  .vs-section__head--row { flex-direction: column; align-items: flex-start; }
}

html[data-vs-theme="day"] .vs-grid {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.05) 1px, transparent 1px);
}
html[data-vs-theme="day"] .vs-prose,
html[data-vs-theme="day"] .vs-woo .woocommerce { color: var(--vs-prose); }
html[data-vs-theme="day"] .vs-prose a,
html[data-vs-theme="day"] .vs-article__byline p:first-child,
html[data-vs-theme="day"] .vs-search__btn,
html[data-vs-theme="day"] .vs-footer__list a { color: var(--vs-ink); }
html[data-vs-theme="day"] .vs-blog-card__fallback {
  background:
    radial-gradient(circle at 80% 20%, rgba(229, 9, 20, 0.22), transparent 40%),
    linear-gradient(160deg, #efeae3, #f7f4ef);
  color: #141414;
}

.vs-packages {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  margin-top: 8px;
}
.vs-pkg {
  padding: 22px 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.vs-pkg.is-featured {
  border-color: rgba(229, 9, 20, 0.45);
  box-shadow: 0 0 0 1px rgba(229, 9, 20, 0.25), 0 20px 50px rgba(229, 9, 20, 0.12);
}
.vs-pkg h3 { margin: 0; font-size: 1.2rem; }
.vs-pkg__price { display: flex; flex-wrap: wrap; align-items: baseline; gap: 8px; margin: 0; }
.vs-pkg__price s { color: var(--vs-muted); font-size: 0.9rem; }
.vs-pkg__price strong { font-size: 1.45rem; letter-spacing: -0.03em; }
.vs-pkg__price span { color: var(--vs-muted); font-size: 0.82rem; }
.vs-pkg__note { color: var(--vs-muted); margin: 0; font-size: 0.92rem; }
.vs-pkg ul { margin: 0 0 8px; padding-left: 18px; color: var(--vs-muted); }
.vs-pkg li { margin: 0 0 6px; }
.vs-pkg .vs-btn { margin-top: auto; align-self: flex-start; }

.vs-table-wrap { overflow-x: auto; margin-top: 8px; border: 1px solid var(--vs-border); border-radius: 16px; }
.vs-table { width: 100%; border-collapse: collapse; min-width: 720px; }
.vs-table th, .vs-table td { text-align: left; padding: 14px 16px; border-bottom: 1px solid var(--vs-border); vertical-align: top; }
.vs-table th { font-size: 0.75rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--vs-muted); }
.vs-table tr:last-child td { border-bottom: 0; }
.vs-table s { color: var(--vs-muted); }

.vs-quotes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}
.vs-quote { margin: 0; padding: 22px; display: flex; flex-direction: column; gap: 14px; }
.vs-quote > p { margin: 0; font-size: 1.05rem; line-height: 1.5; }
.vs-quote footer { display: flex; align-items: center; gap: 12px; color: var(--vs-muted); }
.vs-quote footer img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.vs-quote footer strong { display: block; color: var(--vs-ink); }
.vs-quote footer span { font-size: 0.85rem; }

.vs-brands {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 14px;
}
.vs-brands li,
.vs-brands a {
  display: grid;
  place-items: center;
  min-height: 88px;
  padding: 12px;
}
.vs-brands img { max-height: 48px; max-width: 140px; width: auto; object-fit: contain; filter: grayscale(0.2); }

.vs-diagram {
  margin: 22px 0 0;
  padding: 22px;
  border: 1px solid var(--vs-border);
  border-radius: 18px;
  background: color-mix(in srgb, var(--vs-panel) 72%, transparent);
}
.vs-diagram h3 { margin: 0 0 16px; font-size: 1.15rem; }
.vs-diagram__links { display: flex; flex-wrap: wrap; gap: 16px; margin: 16px 0 0; }
.vs-flow {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}
.vs-flow li {
  position: relative;
  padding: 14px 14px 16px;
  border: 1px solid var(--vs-border);
  border-radius: 14px;
  background: color-mix(in srgb, var(--vs-bg) 55%, transparent);
}
.vs-flow li span {
  display: block;
  color: var(--vs-accent, #e50914);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  font-weight: 700;
}
.vs-flow li strong { display: block; margin: 6px 0 4px; }
.vs-flow li em { display: block; font-style: normal; color: var(--vs-muted); font-size: 0.84rem; line-height: 1.35; }
.vs-funnel {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
  justify-items: center;
}
.vs-funnel li {
  text-align: center;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid rgba(229, 9, 20, 0.35);
  background: linear-gradient(180deg, rgba(229, 9, 20, 0.22), rgba(229, 9, 20, 0.08));
  font-size: 0.92rem;
}
.vs-funnel li:nth-child(1) { width: 100%; }
.vs-funnel li:nth-child(2) { width: 86%; }
.vs-funnel li:nth-child(3) { width: 72%; }
.vs-funnel li:nth-child(4) { width: 58%; }
.vs-map {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.vs-map a {
  display: block;
  padding: 16px;
  border: 1px solid var(--vs-border);
  border-radius: 14px;
  text-decoration: none;
  color: inherit;
  min-height: 92px;
}
.vs-map a:hover { border-color: rgba(229, 9, 20, 0.45); }
.vs-map strong { display: block; margin-bottom: 4px; }
.vs-map span { color: var(--vs-muted); font-size: 0.85rem; }
.vs-related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
}
.vs-related-card {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-decoration: none;
  color: inherit;
}
.vs-related-card strong { color: var(--vs-ink); }
.vs-related-card span { color: var(--vs-muted); font-size: 0.85rem; }
.vs-related__sub { margin: 28px 0 12px; font-size: 1.05rem; }
.vs-related--row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  border: 0;
}
.vs-related--row li { padding: 12px 0; border-bottom: 1px solid var(--vs-border); }

@media (max-width: 900px) {
  .vs-flow { grid-template-columns: 1fr 1fr; }
  .vs-map { grid-template-columns: 1fr 1fr; }
  .vs-funnel li:nth-child(n) { width: 100%; }
  .vs-related--row { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .vs-logo img, .custom-logo { height: 36px; }
  .vs-header.is-scrolled .vs-logo img { height: 32px; }
  .vs-flow { grid-template-columns: 1fr; }
  .vs-map { grid-template-columns: 1fr; }
}
