/* =========================================================
   Voltori Software — schematic system
   Palette: void #08090C · plate #101319 · trace #1E2530
             signal #E8342A · solder #F2B33D · label #8A93A3 · white #F5F7FA
   ========================================================= */

:root {
  --v-void: #08090C;
  --v-plate: #101319;
  --v-plate-2: #161B23;
  --v-trace: #1E2530;
  --v-accent: #E8342A;
  --v-solder: #F2B33D;
  --v-live: #35C57F;
  --v-label: #8A93A3;
  --v-text: #F5F7FA;

  --v-display: "Space Grotesk", "Helvetica Neue", sans-serif;
  --v-body: "Inter", system-ui, sans-serif;
  --v-mono: "JetBrains Mono", ui-monospace, monospace;

  --v-max: 1240px;
  --v-gut: clamp(20px, 4vw, 48px);
  --v-radius: 4px;
}

*, *::before, *::after { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--v-void);
  color: var(--v-text);
  font-family: var(--v-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* Faint circuit grid — the schematic ground */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    linear-gradient(var(--v-trace) 1px, transparent 1px),
    linear-gradient(90deg, var(--v-trace) 1px, transparent 1px);
  background-size: 64px 64px;
  opacity: 0.22;
  mask-image: radial-gradient(ellipse 100% 60% at 50% 0%, #000 0%, transparent 78%);
}

.v-shell { position: relative; z-index: 1; }
.v-wrap { max-width: var(--v-max); margin: 0 auto; padding-inline: var(--v-gut); }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4 {
  font-family: var(--v-display);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.08;
  margin: 0 0 0.5em;
}

.v-eyebrow {
  font-family: var(--v-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--v-label);
  margin: 0 0 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.v-eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--v-accent);
}

/* ---------- Skip link ---------- */
.v-skip {
  position: absolute; left: -9999px;
  background: var(--v-accent); color: #fff; padding: 10px 16px; z-index: 999;
}
.v-skip:focus { left: 16px; top: 16px; }

/* ---------- Top strip ---------- */
.v-strip {
  background: var(--v-plate);
  border-bottom: 1px solid var(--v-trace);
  font-family: var(--v-mono);
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--v-label);
}
.v-strip__inner {
  max-width: var(--v-max); margin: 0 auto;
  padding: 11px var(--v-gut);
  display: flex; align-items: center; gap: 20px;
}
.v-strip__loc { color: #5C6473; }
.v-strip__loc::before { content: "\2022"; margin-right: 20px; color: var(--v-trace); }
.v-strip__cta {
  margin-left: auto; color: var(--v-text);
  display: inline-flex; align-items: center; gap: 8px;
  transition: color .18s;
}
.v-strip__cta:hover { color: var(--v-accent); }
.v-strip__pulse {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--v-accent); flex: none;
  animation: v-pulse 2.4s ease-in-out infinite;
  width: 7px; height: 7px;
}
@keyframes v-pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(232,52,42,.5); }
  50% { opacity: .7; box-shadow: 0 0 0 5px rgba(232,52,42,0); }
}

/* ---------- Header ---------- */
.v-head {
  position: sticky; top: 0; z-index: 50;
  background: rgba(8, 9, 12, 0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--v-trace);
}
.v-head__inner {
  max-width: var(--v-max); margin: 0 auto;
  padding: 0 var(--v-gut);
  display: flex; align-items: stretch; gap: 44px;
  min-height: 92px;
}

/* Brand — logo forced visible on dark ground */
.v-brand {
  display: flex; align-items: center; gap: 11px;
  font-family: var(--v-display); font-weight: 700; font-size: 30px;
  letter-spacing: -0.035em; flex: none;
}
.v-brand__img {
  max-height: 54px; width: auto;
  /* Source logo is black artwork — invert it so it reads on the dark plate. */
  filter: invert(1) brightness(1.9);
}
.v-brand__mark {
  width: 32px; height: 32px; flex: none;
  background: var(--v-accent);
  clip-path: polygon(56% 0, 0 58%, 42% 58%, 34% 100%, 100% 40%, 56% 40%);
}
.v-brand__word { color: var(--v-text); }

/* Nav — mono labels, real dropdowns */
.v-nav { margin-left: auto; display: flex; }
.v-nav__list {
  display: flex; align-items: stretch; gap: 4px;
  list-style: none; margin: 0; padding: 0;
}
.v-nav__list > li { position: relative; display: flex; align-items: stretch; }
.v-nav__list > li > a {
  display: flex; align-items: center; padding: 0 17px;
  font-family: var(--v-mono); font-size: 14px; font-weight: 500;
  letter-spacing: .13em; text-transform: uppercase;
  color: var(--v-label); position: relative;
  transition: color .18s;
}
.v-nav__list > li > a::after {
  content: ""; position: absolute; left: 17px; right: 17px; bottom: 0;
  height: 3px; background: var(--v-accent);
  transform: scaleX(0); transform-origin: left;
  transition: transform .22s cubic-bezier(.4,0,.2,1);
}
.v-nav__list > li > a:hover,
.v-nav__list > .current-menu-item > a,
.v-nav__list > .current-menu-parent > a,
.v-nav__list > .current-menu-ancestor > a { color: var(--v-text); }
.v-nav__list > li > a:hover::after,
.v-nav__list > .current-menu-item > a::after,
.v-nav__list > .current-menu-parent > a::after,
.v-nav__list > .current-menu-ancestor > a::after { transform: scaleX(1); }

/* Parent items get a caret */
.v-nav__list > .menu-item-has-children > a::before {
  content: "";
  position: absolute; right: 2px; top: 50%; margin-top: -1px;
  width: 6px; height: 6px;
  border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-50%);
  opacity: .55;
}
.v-nav__list > .menu-item-has-children > a { padding-right: 27px; }

/* Dropdown panel */
.v-nav .sub-menu {
  position: absolute; top: 100%; left: 0;
  min-width: 286px; padding: 9px;
  list-style: none; margin: 0;
  background: var(--v-plate);
  border: 1px solid var(--v-trace);
  border-top: 2px solid var(--v-accent);
  border-radius: 0 0 var(--v-radius) var(--v-radius);
  box-shadow: 0 24px 48px -12px rgba(0,0,0,.7);
  opacity: 0; visibility: hidden;
  transform: translateY(-6px);
  transition: opacity .18s, transform .18s, visibility .18s;
  z-index: 60;
}
.v-nav__list > li:hover > .sub-menu,
.v-nav__list > li:focus-within > .sub-menu,
.v-nav__list > li.is-open > .sub-menu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.v-nav .sub-menu li { display: block; }
.v-nav .sub-menu a {
  display: block; padding: 12px 14px;
  font-family: var(--v-body); font-size: 15.5px; font-weight: 500;
  color: #C9D0DA; border-radius: 2px;
  border-left: 2px solid transparent;
  transition: background .15s, color .15s, border-color .15s;
}
.v-nav .sub-menu a:hover {
  background: var(--v-plate-2); color: var(--v-text);
  border-left-color: var(--v-accent);
}

/* Burger */
.v-burger {
  display: none; background: none; border: 0; cursor: pointer;
  padding: 0; margin-left: auto;
  width: 30px; height: 21px; position: relative; align-self: center;
}
.v-burger span {
  position: absolute; left: 0; width: 100%; height: 2px;
  background: var(--v-text); transition: transform .24s, opacity .18s;
}
.v-burger span:nth-child(1) { top: 0; }
.v-burger span:nth-child(2) { top: 9.5px; }
.v-burger span:nth-child(3) { top: 19px; }
.v-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(9.5px) rotate(45deg); }
.v-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.v-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-9.5px) rotate(-45deg); }

/* ---------- Hero ---------- */
.v-hero { padding: clamp(72px, 12vw, 140px) 0 clamp(56px, 8vw, 96px); }
.v-hero__title {
  font-size: clamp(38px, 6.4vw, 74px);
  max-width: 16ch;
  margin-bottom: 22px;
}
.v-hero__title em {
  font-style: normal;
  color: var(--v-accent);
}
.v-hero__sub {
  max-width: 56ch; color: var(--v-label); font-size: clamp(16px, 1.6vw, 19px);
  margin: 0 0 34px;
}
.v-hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }

.v-btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--v-mono); font-size: 13px; letter-spacing: .05em; text-transform: uppercase;
  padding: 14px 24px; border-radius: var(--v-radius);
  border: 1px solid var(--v-trace); background: var(--v-plate); color: var(--v-text);
  transition: border-color .18s, background .18s, transform .18s;
  cursor: pointer;
}
.v-btn:hover { border-color: var(--v-label); transform: translateY(-1px); }
.v-btn--primary { background: var(--v-accent); border-color: var(--v-accent); color: #fff; }
.v-btn--primary:hover { background: #ff4438; border-color: #ff4438; }

/* ---------- Signature: the release rail ---------- */
.v-railbar {
  border-block: 1px solid var(--v-trace);
  padding: 26px 0;
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 24px;
}
.v-railbar__cell { position: relative; padding-left: 18px; }
.v-railbar__cell::before {
  content: ""; position: absolute; left: 0; top: 7px;
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--v-accent);
}
.v-railbar__num {
  font-family: var(--v-display); font-size: 26px; font-weight: 700; display: block; line-height: 1.1;
}
.v-railbar__lab {
  font-family: var(--v-mono); font-size: 11px; text-transform: uppercase;
  letter-spacing: .14em; color: var(--v-label);
}

/* ---------- Sections ---------- */
.v-section { padding: clamp(56px, 8vw, 104px) 0; }
.v-section__head { margin-bottom: 42px; max-width: 60ch; }
.v-section__title { font-size: clamp(26px, 3.6vw, 40px); }
.v-section__lede { color: var(--v-label); margin: 0; }

/* ---------- Product grid & cards ---------- */
.v-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
  gap: 20px;
}

.v-card {
  background: var(--v-plate);
  border: 1px solid var(--v-trace);
  border-radius: var(--v-radius);
  transition: border-color .2s, transform .2s, background .2s;
  position: relative;
  overflow: hidden;
}
.v-card:hover { border-color: #33404F; transform: translateY(-3px); background: var(--v-plate-2); }
.v-card__link { display: block; padding: 22px; height: 100%; }

/* the rail — four nodes, current one lit */
.v-card__rail {
  display: flex; align-items: center; gap: 0;
  margin-bottom: 18px;
}
.v-node {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--v-trace); flex: none; position: relative;
}
.v-node + .v-node { margin-left: 34px; }
.v-node + .v-node::before {
  content: ""; position: absolute; right: 8px; top: 50%;
  width: 34px; height: 1px; background: var(--v-trace);
}
.v-node.is-current { background: var(--v-accent); box-shadow: 0 0 0 4px rgba(232,52,42,.18); }
.v-card--live .v-node.is-current { background: var(--v-live); box-shadow: 0 0 0 4px rgba(53,197,127,.18); }
.v-card--beta .v-node.is-current { background: var(--v-solder); box-shadow: 0 0 0 4px rgba(242,179,61,.18); }

.v-card__head { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.v-tag {
  font-family: var(--v-mono); font-size: 10px; letter-spacing: .14em; text-transform: uppercase;
  padding: 4px 8px; border-radius: 2px; border: 1px solid currentColor; color: var(--v-label);
}
.v-tag--live { color: var(--v-live); }
.v-tag--beta { color: var(--v-solder); }
.v-tag--building { color: var(--v-accent); }
.v-ver { font-family: var(--v-mono); font-size: 11px; color: var(--v-label); }

.v-card__title { font-size: 21px; margin-bottom: 8px; }
.v-card__tagline { color: var(--v-label); font-size: 14.5px; margin: 0 0 16px; }

.v-stack { list-style: none; display: flex; flex-wrap: wrap; gap: 6px; padding: 0; margin: 0 0 18px; }
.v-stack li {
  font-family: var(--v-mono); font-size: 10.5px; color: var(--v-label);
  border: 1px solid var(--v-trace); padding: 3px 7px; border-radius: 2px;
}

.v-card__foot {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 14px; border-top: 1px solid var(--v-trace);
}
.v-price { font-family: var(--v-mono); font-size: 13px; color: var(--v-text); }
.v-card__go { font-family: var(--v-mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--v-accent); }

/* ---------- Filters ---------- */
.v-filters { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.v-filter {
  font-family: var(--v-mono); font-size: 11.5px; letter-spacing: .08em; text-transform: uppercase;
  padding: 8px 14px; border: 1px solid var(--v-trace); border-radius: 2px;
  background: transparent; color: var(--v-label); cursor: pointer; transition: all .18s;
}
.v-filter:hover { color: var(--v-text); border-color: var(--v-label); }
.v-filter.is-active { background: var(--v-accent); border-color: var(--v-accent); color: #fff; }

/* ---------- Single product ---------- */
.v-single { padding: clamp(48px, 7vw, 90px) 0; }
.v-single__layout { display: grid; grid-template-columns: minmax(0,1fr) 320px; gap: 48px; align-items: start; }
.v-single__title { font-size: clamp(32px, 5vw, 54px); }
.v-single__body { font-size: 17px; }
.v-single__body h2 { font-size: 24px; margin-top: 2em; }
.v-single__body h3 { font-size: 19px; margin-top: 1.6em; }
.v-single__body ul, .v-single__body ol { padding-left: 1.2em; color: #C9D0DA; }
.v-single__body p { color: #C9D0DA; }

.v-spec {
  background: var(--v-plate); border: 1px solid var(--v-trace);
  border-radius: var(--v-radius); padding: 22px; position: sticky; top: 92px;
}
.v-spec__row { display: flex; justify-content: space-between; gap: 12px; padding: 11px 0; border-bottom: 1px solid var(--v-trace); }
.v-spec__row:last-of-type { border-bottom: 0; }
.v-spec__k { font-family: var(--v-mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--v-label); }
.v-spec__v { font-size: 14px; text-align: right; }
.v-spec .v-btn { width: 100%; justify-content: center; margin-top: 16px; }

/* ---------- Roadmap ---------- */
.v-road { position: relative; padding-left: 34px; }
.v-road::before { content: ""; position: absolute; left: 7px; top: 8px; bottom: 8px; width: 1px; background: var(--v-trace); }
.v-road__item { position: relative; padding-bottom: 34px; }
.v-road__item::before {
  content: ""; position: absolute; left: -34px; top: 7px;
  width: 15px; height: 15px; border-radius: 50%;
  background: var(--v-void); border: 2px solid var(--v-trace);
}
.v-road__item--shipped::before { border-color: var(--v-live); background: var(--v-live); }
.v-road__item--active::before { border-color: var(--v-accent); background: var(--v-accent); box-shadow: 0 0 0 5px rgba(232,52,42,.15); }
.v-road__period { font-family: var(--v-mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--v-label); }
.v-road__title { font-size: 20px; margin: 4px 0 6px; }
.v-road__body { color: var(--v-label); font-size: 15px; max-width: 62ch; }

/* ---------- Business plan ---------- */
.v-plan__stats {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1px; background: var(--v-trace); border: 1px solid var(--v-trace);
  border-radius: var(--v-radius); overflow: hidden; margin-bottom: 56px;
}
.v-plan__stat { background: var(--v-plate); padding: 24px; }
.v-plan__stat .v-railbar__num { font-size: 28px; color: var(--v-text); }
.v-plan__stat .v-railbar__lab { display: block; margin-top: 6px; }

.v-plan__section { border-top: 1px solid var(--v-trace); padding: 42px 0; }
.v-plan__section:first-of-type { border-top: 0; }
.v-plan__grid { display: grid; grid-template-columns: 220px minmax(0,1fr); gap: 40px; }
.v-plan__num {
  font-family: var(--v-mono); font-size: 12px; letter-spacing: .16em;
  text-transform: uppercase; color: var(--v-accent);
}
.v-plan__h { font-size: 26px; margin-top: 6px; }
.v-plan__body { color: #C9D0DA; font-size: 16.5px; }
.v-plan__body p:first-child { margin-top: 0; }

.v-cta {
  background: var(--v-plate); border: 1px solid var(--v-trace);
  border-radius: var(--v-radius); padding: clamp(32px, 5vw, 56px);
  text-align: center; margin-top: 56px;
}
.v-cta h2 { font-size: clamp(24px, 3.4vw, 36px); }
.v-cta p { color: var(--v-label); max-width: 52ch; margin: 0 auto 26px; }

/* ---------- Footer ---------- */
.v-foot { border-top: 1px solid var(--v-trace); padding: 52px 0 32px; margin-top: 40px; }
.v-foot { border-top: 1px solid var(--v-trace); padding: 56px 0 32px; margin-top: 40px; }

/* Explicit column counts — no auto-fit stretching one column across the row */
.v-foot__grid { display: grid; gap: 40px; align-items: start; }
.v-foot__grid--1 { grid-template-columns: 1fr; }
.v-foot__grid--2 { grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr); }
.v-foot__grid--3 { grid-template-columns: minmax(0, 1.5fr) repeat(2, minmax(0, 1fr)); }
.v-foot__grid--4 { grid-template-columns: minmax(0, 1.5fr) repeat(3, minmax(0, 1fr)); }
.v-foot__grid--5 { grid-template-columns: minmax(0, 1.4fr) repeat(4, minmax(0, 1fr)); }

.v-foot__intro { max-width: 34ch; }
.v-brand--foot { font-size: 24px; margin-bottom: 14px; }
.v-brand--foot .v-brand__mark { width: 26px; height: 26px; }
.v-foot__blurb { color: var(--v-label); font-size: 14px; margin: 0 0 16px; }
.v-foot__app {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--v-mono); font-size: 12.5px; letter-spacing: .04em;
  color: var(--v-text); transition: color .18s;
}
.v-foot__app:hover { color: var(--v-accent); }
.v-foot p { color: var(--v-label); font-size: 14px; }
.v-widget__title, .v-foot__h {
  font-family: var(--v-mono); font-size: 11px; letter-spacing: .16em;
  text-transform: uppercase; color: var(--v-label); margin: 0 0 14px;
}
.v-foot ul { list-style: none; padding: 0; margin: 0; }
.v-foot li { margin-bottom: 8px; }
.v-foot li a { font-size: 14px; color: #C9D0DA; }
.v-foot li a:hover { color: var(--v-accent); }
.v-foot__bar {
  margin-top: 40px; padding-top: 22px; border-top: 1px solid var(--v-trace);
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between;
  font-family: var(--v-mono); font-size: 11px; color: var(--v-label);
}

/* ---------- Generic post/page ---------- */
.v-page { padding: clamp(48px, 7vw, 90px) 0; }
.v-page__title { font-size: clamp(30px, 4.6vw, 48px); }
.v-prose { max-width: 72ch; color: #C9D0DA; font-size: 17px; }
.v-prose a { color: var(--v-accent); text-decoration: underline; }

.v-pagination { display: flex; gap: 8px; margin-top: 40px; font-family: var(--v-mono); font-size: 13px; }
.v-pagination .page-numbers {
  padding: 8px 13px; border: 1px solid var(--v-trace); border-radius: 2px; color: var(--v-label);
}
.v-pagination .current { background: var(--v-accent); border-color: var(--v-accent); color: #fff; }

/* ---------- Accessibility & responsive ---------- */
a:focus-visible, button:focus-visible, input:focus-visible {
  outline: 2px solid var(--v-accent); outline-offset: 3px;
}

@media (max-width: 900px) {
  .v-single__layout { grid-template-columns: 1fr; }
  .v-spec { position: static; }
  .v-plan__grid { grid-template-columns: 1fr; gap: 14px; }
}

/* Footer nested lists — keep the six Shop children readable, not sprawling */
.v-foot .sub-menu {
  list-style: none; padding: 0 0 0 14px; margin: 8px 0 4px;
  border-left: 1px solid var(--v-trace);
}
.v-foot .sub-menu a { font-size: 13px; color: var(--v-label); }
.v-foot .menu-item-has-children > a { color: var(--v-text); font-weight: 500; }

@media (max-width: 1080px) {
  .v-strip__loc { display: none; }
  .v-nav__list > li > a { padding-inline: 12px; font-size: 12.5px; letter-spacing: .1em; }
  .v-nav__list > li > a::after { left: 12px; right: 12px; }
  .v-head__inner { gap: 24px; min-height: 84px; }
  .v-brand { font-size: 26px; }
  .v-brand__img { max-height: 46px; }
  .v-brand__mark { width: 28px; height: 28px; }
}

@media (max-width: 900px) {
  .v-nav__list > li > a { padding-inline: 9px; font-size: 11.5px; letter-spacing: .08em; }
  .v-nav__list > li > a::after { left: 9px; right: 9px; }
  .v-nav__list > .menu-item-has-children > a { padding-right: 21px; }
}

@media (max-width: 760px) {
  .v-strip { font-size: 11px; }
  .v-strip__co { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; max-width: 56%; }
  .v-burger { display: block; }
  .v-head__inner { min-height: 76px; gap: 16px; }
  .v-brand { font-size: 25px; }
  .v-brand__img { max-height: 44px; }
  .v-brand__mark { width: 27px; height: 27px; }

  .v-nav {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--v-plate);
    border-bottom: 1px solid var(--v-trace);
    box-shadow: 0 20px 40px -12px rgba(0,0,0,.7);
    padding: 10px var(--v-gut) 22px;
    max-height: calc(100vh - 110px); overflow-y: auto;
  }
  .v-nav.is-open { display: block; }
  .v-nav__list { flex-direction: column; gap: 0; align-items: stretch; }
  .v-nav__list > li { display: block; border-bottom: 1px solid var(--v-trace); }
  .v-nav__list > li:last-child { border-bottom: 0; }
  .v-nav__list > li > a { padding: 17px 0; font-size: 15px; letter-spacing: .14em; }
  .v-nav__list > li > a::after { display: none; }
  .v-nav__list > .menu-item-has-children > a::before {
    right: 6px; top: 50%; width: 7px; height: 7px;
    transform: rotate(45deg) translateY(-50%); opacity: .8;
    transition: transform .2s;
  }
  .v-nav__list > .menu-item-has-children.is-open > a::before {
    transform: rotate(-135deg) translateY(0);
  }

  /* Accordion on mobile — no hover to rely on */
  .v-nav .sub-menu {
    position: static; opacity: 1; visibility: visible; transform: none;
    display: none; min-width: 0; box-shadow: none;
    background: transparent; border: 0;
    border-left: 1px solid var(--v-trace);
    border-radius: 0;
    margin: 0 0 14px 4px; padding: 2px 0 2px 14px;
  }
  .v-nav__list > li.is-open > .sub-menu { display: block; }
  .v-nav__list > li:hover > .sub-menu,
  .v-nav__list > li:focus-within > .sub-menu { display: none; }
  .v-nav__list > li.is-open > .sub-menu { display: block; }
  .v-nav .sub-menu a { padding: 12px 8px; font-size: 15px; }

  .v-foot__grid,
  .v-foot__grid--2,
  .v-foot__grid--3,
  .v-foot__grid--4,
  .v-foot__grid--5 { grid-template-columns: 1fr 1fr; gap: 30px; }
  .v-foot__intro { grid-column: 1 / -1; max-width: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

/* ---------- Empty state (admins only) ---------- */
.v-empty {
  border: 1px dashed var(--v-trace);
  border-radius: var(--v-radius);
  padding: 40px 28px;
  text-align: center;
}
.v-empty p { color: var(--v-label); margin: 0 0 18px; }

/* Logo inversion opt-out */
body.v-logo-plain .v-brand__img { filter: none; }

/* Parent-company attribution — present, not competing */
.v-foot__parent { color: #5C6473; }

/* ---------- Flagship product ---------- */
.v-flag {
  padding: clamp(52px, 8vw, 96px) 0;
  border-block: 1px solid var(--v-trace);
  background:
    radial-gradient(ellipse 70% 100% at 12% 0%, rgba(232, 52, 42, 0.07), transparent 62%),
    var(--v-plate);
}
.v-flag__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 68px);
  align-items: start;
}
.v-flag__title {
  font-size: clamp(34px, 5.2vw, 60px);
  margin-bottom: 14px;
}
.v-flag__line {
  font-family: var(--v-display);
  font-size: clamp(18px, 2.1vw, 23px);
  font-weight: 500;
  line-height: 1.4;
  color: var(--v-text);
  max-width: 30ch;
  margin: 0 0 22px;
  padding-left: 16px;
  border-left: 2px solid var(--v-accent);
}
.v-flag__prose { color: #C9D0DA; font-size: 16.5px; max-width: 58ch; }
.v-flag__prose p { margin: 0 0 14px; }
.v-flag__stack { margin: 22px 0 26px; }
.v-flag__actions { margin: 0; }

/* Live-cities panel */
.v-flag__panel {
  background: var(--v-void);
  border: 1px solid var(--v-trace);
  border-radius: var(--v-radius);
  padding: 22px;
}
.v-flag__panelhead {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; padding-bottom: 16px; margin-bottom: 16px;
  border-bottom: 1px solid var(--v-trace);
}
.v-flag__panelh {
  font-family: var(--v-mono); font-size: 11px; letter-spacing: .16em;
  text-transform: uppercase; color: var(--v-label); margin: 0 0 14px;
}
.v-cities { list-style: none; margin: 0; padding: 0; }
.v-cities li {
  display: flex; align-items: center; gap: 10px;
  font-size: 15px; padding: 8px 0;
  border-bottom: 1px solid rgba(30, 37, 48, .55);
}
.v-cities li:last-child { border-bottom: 0; }
.v-cities__dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--v-live); flex: none;
  box-shadow: 0 0 0 3px rgba(53, 197, 127, .13);
}
.v-cities__note {
  font-size: 13px; color: var(--v-label);
  margin: 16px 0 0; padding-top: 14px;
  border-top: 1px solid var(--v-trace);
}

@media (max-width: 900px) {
  .v-flag__grid { grid-template-columns: 1fr; }
  .v-flag__panel { max-width: 420px; }
}


/* Footer menus and lists */
.v-foot__menu { list-style: none; padding: 0; margin: 0; }

@media (max-width: 480px) {
  .v-foot__grid,
  .v-foot__grid--2,
  .v-foot__grid--3,
  .v-foot__grid--4,
  .v-foot__grid--5 { grid-template-columns: 1fr; }
}
