/*
Theme Name: Vorian 2.0
Theme URI: https://www.vorian.co/
Author: Vorian
Description: Marketing theme for Vorian — AI infrastructure and software for modern businesses. Instrument-panel visual direction: deep blue-black ground, a single Signal accent, Space Grotesk / IBM Plex Sans / IBM Plex Mono.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: vorian
Tags: marketing, one-column, custom-menu, custom-logo, featured-images
*/

/* ==========================================================================
   1. Tokens
   ========================================================================== */

:root {
  /* Dark ground */
  --v-ground: #0B0F14;
  --v-surface: #141A21;
  --v-surface-alt: #0D1319;
  --v-ink: #EDF0F3;
  --v-ink-2: #B7C1CB;
  --v-ink-3: #9AA6B2;
  --v-muted: #7C8996;
  --v-dim: #5D6976;

  /* Accents */
  --v-signal: #FF5A1F;
  --v-signal-hi: #FF7440;
  --v-support: #2D9BA8;

  /* Hairlines on dark */
  --v-line: #1E262F;
  --v-line-soft: #1A222B;
  --v-line-faint: #151D26;
  --v-line-strong: #232C36;
  --v-line-mid: #2B3540;
  --v-line-quiet: #131A22;

  /* Inset instrument panels (the animated mocks) */
  --v-panel: #0E141A;
  --v-panel-2: #111820;
  --v-panel-line: #172029;
  --v-panel-bar: #1E2833;
  --v-panel-hi: #1C2530;

  /* Light pages (Helm) */
  --v-light: #FFFFFF;
  --v-light-alt: #F5F7F9;
  --v-light-line: #E3E8ED;
  --v-light-line-2: #E9EDF1;
  --v-light-ink: #0B0F14;
  --v-light-ink-2: #3F4A56;
  --v-light-muted: #59646F;
  --v-light-muted-2: #6C7883;
  --v-light-muted-3: #8B96A2;

  /* Status */
  --v-ok: #4E9A6E;
  --v-warn: #C9A227;

  /* Type */
  --v-display: 'Space Grotesk', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --v-body: 'IBM Plex Sans', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --v-mono: 'IBM Plex Mono', ui-monospace, SFMono-Regular, Menlo, monospace;

  /* Rhythm */
  --v-shell: 1240px;
  --v-gutter: 32px;
  --v-shadow-cta: 0 8px 22px rgba(255, 90, 31, .32);
}

/* ==========================================================================
   2. Base
   ========================================================================== */

html,
body {
  margin: 0;
  padding: 0;
  background: var(--v-ground);
}

body {
  font-family: var(--v-body);
  color: var(--v-ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

* { box-sizing: border-box; }

a {
  color: var(--v-ink);
  text-decoration: none;
}

a:hover { color: var(--v-signal); }

:focus-visible {
  outline: 2px solid var(--v-signal);
  outline-offset: 3px;
}

img { max-width: 100%; }

.v-skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--v-signal);
  color: var(--v-ground);
  padding: 12px 20px;
  font-weight: 600;
}

.v-skip-link:focus {
  left: 0;
  color: var(--v-ground);
}

.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  white-space: nowrap;
}

.v-shell {
  max-width: var(--v-shell);
  margin: 0 auto;
  padding: 0 var(--v-gutter);
}

.v-shell--narrow { max-width: 900px; }
.v-shell--mid { max-width: 1000px; }
.v-shell--reading { max-width: 940px; }

.v-rule-top { border-top: 1px solid var(--v-line-faint); }
.v-rule-both {
  border-top: 1px solid var(--v-line-faint);
  border-bottom: 1px solid var(--v-line-faint);
}
.v-bg-alt { background: var(--v-surface-alt); }

.v-eyebrow {
  font-family: var(--v-mono);
  font-size: 12px;
  letter-spacing: .14em;
  color: var(--v-muted);
}

.v-eyebrow--signal { color: var(--v-signal); }

/* ==========================================================================
   3. Buttons
   ========================================================================== */

.v-btn {
  display: inline-block;
  font-family: var(--v-body);
  font-weight: 600;
  font-size: 15px;
  padding: 15px 26px;
  border-radius: 2px;
  border: 0;
  cursor: pointer;
  text-align: center;
  transition: background .15s ease, color .15s ease, border-color .15s ease;
}

.v-btn--solid {
  background: var(--v-signal);
  color: var(--v-ground);
  box-shadow: var(--v-shadow-cta);
}

.v-btn--solid:hover {
  background: var(--v-signal-hi);
  color: var(--v-ground);
}

.v-btn--ghost {
  border: 1.5px solid #46525F;
  color: var(--v-ink);
  background: none;
}

.v-btn--ghost:hover {
  border-color: var(--v-signal);
  color: var(--v-signal);
}

/* Outlined white — used for the Build CTA on the dark home page */
.v-btn--outline {
  border: 1.5px solid var(--v-ink);
  color: var(--v-ink);
  background: none;
}

.v-btn--outline:hover {
  background: var(--v-ink);
  color: var(--v-ground);
}

/* Solid near-black — used on the light Helm pricing block */
.v-btn--dark {
  background: var(--v-light-ink);
  color: var(--v-light);
  padding: 17px 32px;
  font-size: 16px;
  box-shadow: 0 10px 24px rgba(11, 15, 20, .22);
}

.v-btn--dark:hover {
  background: var(--v-signal);
  color: var(--v-ground);
}

.v-btn--block {
  display: block;
  width: 100%;
}

/* ==========================================================================
   4. Ticker
   ========================================================================== */

.v-ticker {
  width: 100%;
  background: var(--v-surface);
  border: 0;
  border-bottom: 1px solid #1E262F;
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  padding: 8px 20px;
  cursor: pointer;
  font-family: var(--v-mono);
  font-size: 12px;
  letter-spacing: .06em;
  color: var(--v-muted);
  transition: background .15s ease;
}

.v-ticker:hover { background: #18202A; }

.v-ticker__tag {
  color: var(--v-signal);
  letter-spacing: .13em;
}

.v-ticker__cta {
  color: var(--v-ink);
  border-bottom: 1px solid var(--v-signal);
  padding-bottom: 1px;
}

/* ==========================================================================
   5. Header / navigation
   ========================================================================== */

.v-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11, 15, 20, .86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--v-line-soft);
}

.v-header__bar {
  max-width: var(--v-shell);
  margin: 0 auto;
  padding: 0 var(--v-gutter);
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.v-header__logo {
  display: flex;
  align-items: center;
}

.v-header__logo img {
  height: 19px;
  width: auto;
  display: block;
}

.v-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-left: 8px;
  font-size: 14.5px;
  font-weight: 500;
}

.v-nav > ul {
  display: flex;
  align-items: center;
  gap: 30px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.v-nav > ul > li { position: relative; }

.v-nav__link,
.v-nav a {
  color: var(--v-muted);
  padding: 6px 0;
  border-bottom: 1.5px solid transparent;
  transition: color .15s ease, border-color .15s ease;
}

.v-nav__link:hover,
.v-nav a:hover {
  color: var(--v-signal);
  border-bottom-color: var(--v-signal);
}

.v-nav__link.is-current,
.v-nav .current-menu-item > a,
.v-nav .current_page_item > a,
.v-nav .current-menu-parent > a {
  color: var(--v-ink);
}

.v-nav__spacer { flex: 1; }

.v-nav__actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.v-nav__login {
  color: var(--v-ink-2);
  font-weight: 500;
  font-size: 14.5px;
  padding: 11px 14px;
  transition: color .15s ease;
}

.v-nav__login:hover { color: var(--v-signal); }

.v-nav__cta {
  font-size: 14.5px;
  padding: 11px 20px;
}

/* Dropdown */
.v-drop {
  position: relative;
}

.v-drop__toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: 0;
  font-family: var(--v-body);
  font-size: 14.5px;
  font-weight: 500;
  cursor: pointer;
  color: var(--v-muted);
  padding: 6px 0;
  border-bottom: 1.5px solid transparent;
  transition: color .15s ease, border-color .15s ease;
}

.v-drop__toggle:hover {
  color: var(--v-signal);
  border-bottom-color: var(--v-signal);
}

.v-drop__toggle.is-current { color: var(--v-ink); }

.v-drop__caret {
  font-size: 9px;
  opacity: .7;
}

.v-drop__menu {
  position: absolute;
  top: 28px;
  left: -16px;
  display: none;
  background: var(--v-surface);
  border: 1px solid var(--v-line-strong);
  padding: 8px;
  min-width: 170px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .5);
  margin: 0;
  list-style: none;
  z-index: 60;
}

.v-drop.is-open .v-drop__menu { display: block; }

.v-drop__menu a {
  display: block;
  padding: 10px 14px;
  font-size: 14px;
  color: var(--v-ink-2);
  border-bottom: 0;
  transition: color .15s ease, background .15s ease;
}

.v-drop__menu a:hover {
  color: var(--v-signal);
  background: var(--v-line-soft);
}

/* WordPress-menu submenus reuse the dropdown's look, opened on hover/focus */
.v-nav .menu-item-has-children { position: relative; }

.v-nav .sub-menu {
  position: absolute;
  top: 28px;
  left: -16px;
  display: none;
  background: var(--v-surface);
  border: 1px solid var(--v-line-strong);
  padding: 8px;
  min-width: 170px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .5);
  margin: 0;
  list-style: none;
  z-index: 60;
}

.v-nav .menu-item-has-children:hover > .sub-menu,
.v-nav .menu-item-has-children:focus-within > .sub-menu {
  display: block;
}

.v-nav .sub-menu a {
  display: block;
  padding: 10px 14px;
  font-size: 14px;
  color: var(--v-ink-2);
  border-bottom: 0;
}

.v-nav .sub-menu a:hover {
  color: var(--v-signal);
  background: var(--v-line-soft);
}

/* ==========================================================================
   6. Home — hero
   ========================================================================== */

.v-hero {
  max-width: var(--v-shell);
  margin: 0 auto;
  padding: 110px var(--v-gutter) 90px;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 64px;
  align-items: center;
}

.v-hero__eyebrow { margin-bottom: 34px; }

.v-hero__title {
  font-family: var(--v-display);
  font-size: clamp(34px, 4.6vw, 64px);
  line-height: 1.14;
  letter-spacing: -.03em;
  font-weight: 600;
  margin: 0 0 34px;
}

.v-hero__lead {
  display: block;
  color: var(--v-muted);
  font-weight: 400;
}

.v-hero__line {
  display: block;
  width: fit-content;
  max-width: 100%;
}

/* Types the line in left-to-right. */
.v-hero__clip {
  display: block;
  clip-path: inset(0 100% 0 0);
  transition: clip-path .45s steps(18, end);
}

.v-hero__line.is-typed .v-hero__clip { clip-path: inset(0 0 0 0); }

/* The strike is painted as a background on the inline text rather than as one
   absolutely-positioned bar, so a line that wraps at narrow widths gets struck
   through on every line box instead of once through the gap between them. */
.v-hero__text {
  background-image: linear-gradient(var(--v-signal), var(--v-signal));
  background-repeat: no-repeat;
  background-position: 0 54%;
  background-size: 0 5px;
  transition: background-size .3s ease-out;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

.v-hero__line.is-struck .v-hero__text { background-size: 100% 5px; }

.v-hero__final {
  display: block;
  margin-top: 20px;
  font-weight: 700;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .5s ease, transform .5s ease;
}

.v-hero__title.is-done .v-hero__final {
  opacity: 1;
  transform: none;
}

/* One frame while the script rewinds the sequence, so the reset does not
   play as a reverse wipe. */
.v-hero__title.is-resetting .v-hero__clip,
.v-hero__title.is-resetting .v-hero__text,
.v-hero__title.is-resetting .v-hero__final {
  transition: none;
}

.v-hero__body {
  max-width: 520px;
  font-size: 17.5px;
  line-height: 1.65;
  color: var(--v-ink-3);
  margin: 0 0 36px;
  text-wrap: pretty;
}

.v-hero__ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Auto-reconciliation instrument */
.v-recon {
  border: 1px solid var(--v-line);
  background: var(--v-panel);
  display: flex;
  flex-direction: column;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .45);
}

.v-recon__head,
.v-recon__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 20px;
}

.v-recon__head { border-bottom: 1px solid var(--v-line-soft); }
.v-recon__foot { border-top: 1px solid var(--v-line-soft); }

.v-recon__label {
  font-family: var(--v-mono);
  font-size: 11px;
  letter-spacing: .13em;
  color: var(--v-muted);
}

.v-recon__foot .v-recon__label { font-size: 10.5px; }

.v-recon__live {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--v-mono);
  font-size: 11px;
  letter-spacing: .13em;
  color: var(--v-signal);
}

.v-recon__dot {
  width: 6px;
  height: 6px;
  background: var(--v-signal);
  display: block;
  border-radius: 50%;
  animation: v-pulse 1.8s ease-in-out infinite;
}

.v-recon__rows {
  flex: 1;
  padding: 6px 0;
  position: relative;
  overflow: hidden;
}

.v-recon__row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 10px 20px;
  position: relative;
  background: transparent;
  transition: background .55s ease;
  border-bottom: 1px solid var(--v-line-quiet);
}

.v-recon__row.is-new { background: rgba(237, 240, 243, .045); }

.v-recon__date {
  font-family: var(--v-mono);
  font-size: 11px;
  color: var(--v-dim);
}

.v-recon__desc {
  font-size: 13.5px;
  color: var(--v-ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color .5s ease;
}

.v-recon__figures {
  display: flex;
  align-items: center;
  gap: 10px;
}

.v-recon__amt {
  font-family: var(--v-mono);
  font-size: 12px;
  color: var(--v-ink);
  transition: color .4s ease;
}

.v-recon__row.is-matched .v-recon__desc,
.v-recon__row.is-matched .v-recon__amt { color: #8A96A2; }

.v-recon__status {
  font-family: var(--v-mono);
  font-size: 9.5px;
  letter-spacing: .1em;
  padding: 3px 6px;
  min-width: 62px;
  text-align: center;
  color: var(--v-dim);
  border: 1px solid var(--v-line-strong);
  transition: color .4s ease, border-color .4s ease;
}

.v-recon__row.is-matching .v-recon__status {
  color: var(--v-ink-2);
  border-color: #3A4653;
}

.v-recon__row.is-matched .v-recon__status {
  color: var(--v-signal);
  border-color: rgba(255, 90, 31, .45);
}

.v-recon__balance {
  font-family: var(--v-mono);
  font-size: 19px;
  color: var(--v-ink);
  transition: color .4s ease;
}

.v-recon__balance.is-settled { color: var(--v-signal); }

/* ==========================================================================
   7. Home — thesis, product, CCI, proof, pillars, build, marquee, closing
   ========================================================================== */

.v-thesis {
  max-width: 940px;
  margin: 0 auto;
  padding: 20px var(--v-gutter);
  text-align: center;
}

.v-thesis__claim {
  font-family: var(--v-display);
  font-size: clamp(24px, 3vw, 40px);
  line-height: 1.32;
  letter-spacing: -.02em;
  margin: 0;
  text-wrap: pretty;
}

.v-thesis__claim em {
  color: var(--v-signal);
  font-style: normal;
}

.v-thesis__body {
  max-width: 620px;
  margin: 44px auto 0;
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--v-muted);
  text-wrap: pretty;
}

.v-product {
  max-width: var(--v-shell);
  margin: 0 auto;
  padding: 120px var(--v-gutter);
}

.v-product__eyebrow { margin-bottom: 40px; }

.v-product__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 660px;
}

.v-product-card {
  display: block;
  background: var(--v-surface);
  border: 1px solid var(--v-line);
  padding: 40px;
  transition: border-color .15s ease;
}

.v-product-card:hover {
  border-color: var(--v-signal);
  color: var(--v-ink);
}

.v-product-card__eyebrow {
  font-family: var(--v-mono);
  font-size: 11.5px;
  letter-spacing: .12em;
  color: var(--v-signal);
  margin-bottom: 22px;
}

.v-product-card__title {
  font-family: var(--v-display);
  font-size: 38px;
  letter-spacing: -.025em;
  margin: 0 0 18px;
  font-weight: 600;
}

.v-product-card__body {
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--v-ink-3);
  margin: 0 0 32px;
  min-height: 130px;
  text-wrap: pretty;
}

.v-product-card__link {
  font-weight: 600;
  font-size: 15px;
  color: var(--v-signal);
}

/* Finance-overview mock inside the product card */
.v-fin {
  border: 1px solid #212A34;
  aspect-ratio: 16 / 10;
  background: var(--v-panel);
  padding: 16px;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 11px;
  overflow: hidden;
}

.v-fin__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--v-mono);
  font-size: 9px;
  letter-spacing: .12em;
  color: var(--v-dim);
}

.v-fin__live {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--v-signal);
}

.v-fin__live span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--v-signal);
  animation: v-blink 1.6s steps(1, end) infinite;
}

.v-fin__kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.v-fin__kpi {
  border: 1px solid var(--v-panel-line);
  background: var(--v-panel-2);
  padding: 9px;
}

.v-fin__kpi--signal {
  border-color: var(--v-signal);
  background: var(--v-panel-hi);
}

.v-fin__kpi-label {
  font-family: var(--v-mono);
  font-size: 7.5px;
  letter-spacing: .1em;
  color: var(--v-dim);
}

.v-fin__kpi--signal .v-fin__kpi-label { color: var(--v-signal); }

.v-fin__kpi-value {
  font-family: var(--v-display);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -.02em;
  color: var(--v-ink);
  margin-top: 4px;
  animation: v-tick 7s ease-in-out infinite;
}

.v-fin__chart {
  flex: 1;
  border: 1px solid var(--v-panel-line);
  background: var(--v-panel-2);
  padding: 10px;
  display: flex;
  align-items: flex-end;
  gap: 4px;
  min-height: 0;
}

.v-fin__insights {
  position: relative;
  height: 15px;
}

.v-fin__insights span {
  position: absolute;
  left: 0;
  top: 0;
  font-family: var(--v-mono);
  font-size: 9px;
  letter-spacing: .08em;
  color: var(--v-muted);
  animation: v-flip 9s ease-in-out infinite;
}

.v-fin__insights span + span {
  color: var(--v-signal);
  animation-delay: 4.5s;
}

/* Shared bar-chart bars */
.v-bar {
  flex: 1;
  height: 100%;
  background: var(--v-panel-bar);
  transform-origin: bottom;
  animation: v-bar 3.4s ease-in-out infinite;
}

.v-bar--signal {
  background: var(--v-signal);
  opacity: .8;
}

/* CCI */
.v-cci {
  max-width: var(--v-shell);
  margin: 0 auto;
  padding: 120px var(--v-gutter);
}

.v-cci__eyebrow { margin-bottom: 14px; }

.v-cci__title {
  font-family: var(--v-display);
  font-size: clamp(28px, 3.4vw, 46px);
  letter-spacing: -.025em;
  font-weight: 600;
  margin: 0 0 20px;
  max-width: 760px;
  text-wrap: pretty;
}

.v-cci__body {
  max-width: 660px;
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--v-ink-3);
  margin: 0 0 60px;
  text-wrap: pretty;
}

.v-cci__frame {
  border: 1px solid var(--v-line);
  background: var(--v-ground);
  padding: 44px;
}

.v-cci__diagram {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 22px;
  align-items: center;
}

.v-cci__node {
  border: 1px solid var(--v-line-strong);
  padding: 22px;
  text-align: center;
}

.v-cci__node--router {
  border-color: var(--v-signal);
  background: var(--v-surface);
}

.v-cci__node-label {
  font-family: var(--v-mono);
  font-size: 11px;
  letter-spacing: .1em;
  color: var(--v-muted);
  margin-bottom: 8px;
}

.v-cci__node--router .v-cci__node-label { color: var(--v-signal); }

.v-cci__node-value {
  font-size: 15px;
  color: var(--v-ink);
}

.v-cci__rule {
  height: 1px;
  background: var(--v-support);
  width: 40px;
}

.v-cci__models {
  display: grid;
  gap: 10px;
}

.v-cci__model {
  border: 1px solid var(--v-line-strong);
  padding: 13px 18px;
  font-family: var(--v-mono);
  font-size: 12.5px;
  color: var(--v-ink-2);
}

.v-cci__note {
  font-family: var(--v-mono);
  font-size: 11.5px;
  color: var(--v-dim);
  margin: 32px 0 0;
  letter-spacing: .04em;
}

/* Proof */
.v-proof {
  max-width: var(--v-shell);
  margin: 0 auto;
  padding: 120px var(--v-gutter);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: end;
}

.v-proof__eyebrow { margin-bottom: 24px; }

.v-proof__number {
  font-family: var(--v-display);
  font-size: clamp(64px, 10vw, 132px);
  line-height: .95;
  letter-spacing: -.045em;
  font-weight: 700;
  color: var(--v-signal);
}

.v-proof__label {
  font-family: var(--v-display);
  font-size: 24px;
  letter-spacing: -.01em;
  margin-top: 14px;
}

.v-proof__method {
  font-family: var(--v-mono);
  font-size: 12.5px;
  line-height: 1.8;
  color: var(--v-muted);
  margin: 0;
  max-width: 400px;
}

/* Pillars */
.v-pillars {
  max-width: var(--v-shell);
  margin: 0 auto;
  padding: 120px var(--v-gutter);
}

.v-pillars__eyebrow { margin-bottom: 56px; }

.v-pillars__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.v-pillar {
  border-top: 1px solid var(--v-signal);
  padding-top: 26px;
}

.v-pillar h3 {
  font-family: var(--v-display);
  font-size: 23px;
  letter-spacing: -.02em;
  margin: 0 0 14px;
  font-weight: 600;
}

.v-pillar p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--v-ink-3);
  margin: 0;
  text-wrap: pretty;
}

/* Build teaser */
.v-buildteaser {
  max-width: var(--v-shell);
  margin: 0 auto;
  padding: 110px var(--v-gutter);
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 64px;
}

.v-buildteaser__eyebrow { margin-bottom: 14px; }

.v-buildteaser__title {
  font-family: var(--v-display);
  font-size: clamp(28px, 3.2vw, 42px);
  letter-spacing: -.025em;
  font-weight: 600;
  margin: 0;
}

.v-buildteaser p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--v-ink-3);
  margin: 0 0 24px;
  text-wrap: pretty;
}

.v-buildteaser p:last-of-type { margin-bottom: 32px; }

/* Marquee */
.v-marquee {
  padding: 56px 0;
  overflow: hidden;
}

.v-marquee__eyebrow {
  max-width: var(--v-shell);
  margin: 0 auto 34px;
  padding: 0 var(--v-gutter);
  font-family: var(--v-mono);
  font-size: 11.5px;
  letter-spacing: .14em;
  color: var(--v-dim);
}

.v-marquee__track {
  display: flex;
  width: max-content;
  animation: v-marquee 34s linear infinite;
}

.v-marquee__group {
  display: flex;
  gap: 36px;
  padding-right: 36px;
  align-items: center;
}

.v-marquee__item {
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.v-logo-mark {
  width: 150px;
  height: 44px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  filter: brightness(0) invert(1);
  opacity: .6;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--v-display);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -.01em;
  line-height: 1.2;
  text-align: center;
  color: #FFFFFF;
  white-space: pre-line;
}

/* Closing CTA */
.v-closing {
  max-width: var(--v-shell);
  margin: 0 auto;
  padding: 120px var(--v-gutter);
}

.v-closing__title {
  font-family: var(--v-display);
  font-size: clamp(30px, 3.6vw, 48px);
  letter-spacing: -.03em;
  font-weight: 600;
  margin: 0 0 20px;
  text-align: center;
}

.v-closing__sub {
  text-align: center;
  font-size: 16.5px;
  color: var(--v-muted);
  margin: 0 0 44px;
}

.v-closing__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 840px;
  margin: 0 auto;
}

.v-closing__grid .v-btn {
  padding: 22px;
  font-size: 16px;
}

/* ==========================================================================
   8. Helm — light page
   ========================================================================== */

.v-light-page {
  background: var(--v-light);
  color: var(--v-light-ink);
}

/* Buttons are excluded: they carry their own foreground, and a blanket link
   colour here would repaint the dark CTA's label to match its own ground. */
.v-light-page a:not(.v-btn) { color: var(--v-light-ink); }
.v-light-page a:not(.v-btn):hover { color: var(--v-signal); }

.v-helm-hero {
  max-width: var(--v-shell);
  margin: 0 auto;
  padding: 100px var(--v-gutter) 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.v-helm-hero__eyebrow {
  color: var(--v-signal);
  margin-bottom: 26px;
}

.v-helm-hero__title {
  font-family: var(--v-display);
  font-size: clamp(36px, 5vw, 68px);
  line-height: 1.08;
  letter-spacing: -.035em;
  font-weight: 600;
  margin: 0 0 26px;
}

.v-helm-hero__body {
  font-size: 18px;
  line-height: 1.65;
  color: var(--v-light-muted);
  margin: 0 0 36px;
  max-width: 500px;
  text-wrap: pretty;
}

/* AI office dashboard */
.v-dash {
  border: 1px solid var(--v-light-line);
  aspect-ratio: 4 / 3;
  background: var(--v-light);
  box-shadow: 0 1px 2px rgba(11, 15, 20, .05), 0 18px 44px rgba(11, 15, 20, .09);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.v-dash__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--v-light-line-2);
  font-family: var(--v-mono);
  font-size: 10px;
  letter-spacing: .12em;
  color: var(--v-light-muted-3);
}

.v-dash__live {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--v-signal);
}

.v-dash__live span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--v-signal);
  animation: v-blink 1.6s steps(1, end) infinite;
}

.v-dash__kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--v-light-line-2);
}

.v-dash__kpi {
  padding: 16px 18px;
  border-right: 1px solid var(--v-light-line-2);
}

.v-dash__kpi:last-child { border-right: 0; }

.v-dash__kpi-label {
  font-family: var(--v-mono);
  font-size: 9px;
  letter-spacing: .12em;
  color: var(--v-light-muted-3);
  margin-bottom: 9px;
}

.v-flip {
  position: relative;
  height: 22px;
  font-family: var(--v-display);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -.02em;
}

.v-flip span {
  position: absolute;
  left: 0;
  top: 0;
  animation: v-flip 7s ease-in-out infinite;
}

.v-dash__feed {
  flex: 1;
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.v-dash__feed-label {
  font-family: var(--v-mono);
  font-size: 9px;
  letter-spacing: .12em;
  color: var(--v-light-muted-3);
}

.v-dash__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  animation: v-rise 9s ease-in-out infinite;
}

.v-dash__row span:first-child {
  font-size: 12px;
  color: var(--v-light-ink-2);
}

.v-dash__row span:last-child {
  font-family: var(--v-mono);
  font-size: 8.5px;
  letter-spacing: .1em;
  color: var(--v-signal);
}

.v-dash__close {
  padding: 14px 18px;
  border-top: 1px solid var(--v-light-line-2);
  display: flex;
  align-items: center;
  gap: 12px;
}

.v-dash__close-label {
  font-family: var(--v-mono);
  font-size: 9px;
  letter-spacing: .12em;
  color: var(--v-light-muted-3);
  white-space: nowrap;
}

.v-meter {
  flex: 1;
  height: 4px;
  background: var(--v-light-line-2);
  display: block;
  position: relative;
  overflow: hidden;
}

.v-meter span {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  background: var(--v-signal);
  animation: v-fill 9s ease-in-out infinite;
}

/* Problem quote band */
.v-quoteband {
  max-width: 900px;
  margin: 0 auto;
  padding: 110px var(--v-gutter);
}

.v-quoteband__eyebrow {
  color: var(--v-light-muted-2);
  margin-bottom: 24px;
}

.v-quoteband__quote {
  font-family: var(--v-display);
  font-size: clamp(22px, 2.8vw, 34px);
  line-height: 1.38;
  letter-spacing: -.02em;
  margin: 0;
  text-wrap: pretty;
}

.v-quoteband__attr {
  font-family: var(--v-mono);
  font-size: 12px;
  color: var(--v-light-muted-3);
  margin-top: 26px;
  letter-spacing: .06em;
}

/* Capability blocks */
.v-caps {
  max-width: var(--v-shell);
  margin: 0 auto;
  padding: 110px var(--v-gutter);
}

.v-caps__eyebrow {
  color: var(--v-light-muted-2);
  margin-bottom: 56px;
}

.v-caps__list {
  display: grid;
  gap: 20px;
}

.v-cap {
  display: grid;
  grid-template-columns: .55fr .45fr;
  gap: 40px;
  align-items: center;
  background: var(--v-surface);
  border: 1px solid var(--v-line);
  padding: 34px;
  box-shadow: 0 20px 44px rgba(11, 15, 20, .16);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.v-cap:hover {
  transform: translateY(-5px);
  box-shadow: 0 28px 60px rgba(11, 15, 20, .26);
  border-color: var(--v-signal);
}

.v-cap__num {
  font-family: var(--v-mono);
  font-size: 11.5px;
  color: var(--v-signal);
  letter-spacing: .1em;
  margin-bottom: 16px;
}

.v-cap__title {
  font-family: var(--v-display);
  font-size: 27px;
  letter-spacing: -.02em;
  margin: 0 0 14px;
  font-weight: 600;
  color: var(--v-ink);
}

.v-cap__body {
  font-size: 16px;
  line-height: 1.7;
  color: var(--v-ink-3);
  margin: 0;
  text-wrap: pretty;
}

/* Shared instrument panel inside a capability block */
.v-panel {
  border: 1px solid var(--v-line);
/*   aspect-ratio: 16 / 10; */
  background: var(--v-panel);
  padding: 18px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-height: 242px;
}

.v-panel--gap { gap: 9px; }
.v-panel--gap-lg { gap: 12px; }
.v-panel--split { justify-content: space-between; }

.v-panel__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--v-mono);
  font-size: 9px;
  letter-spacing: .12em;
  color: var(--v-dim);
}

.v-panel__head .v-hot { color: var(--v-signal); }

.v-panel__foot {
  margin-top: auto;
  padding-top: 10px;
  border-top: 1px solid var(--v-panel-line);
  font-family: var(--v-mono);
  font-size: 9px;
  letter-spacing: .1em;
  color: var(--v-muted);
}

.v-panel__foot--sm { font-size: 8.5px; letter-spacing: .09em; }

/* 01 — ledger */
.v-cap-ledger__row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 12px;
  align-items: center;
  padding-top: 8px;
  border-top: 1px solid var(--v-panel-line);
}

.v-cap-ledger__desc {
  font-size: 11.5px;
  color: var(--v-ink-2);
}

.v-cap-ledger__amt {
  font-family: var(--v-mono);
  font-size: 10px;
  color: var(--v-muted);
}

.v-cap-ledger__cat {
  font-family: var(--v-mono);
  font-size: 8.5px;
  letter-spacing: .09em;
  color: var(--v-signal);
  width: 66px;
  text-align: right;
  animation: v-tick 6s ease-in-out infinite;
}

.v-cap-ledger .v-panel__foot { animation: v-tick 6s ease-in-out 2.5s infinite; }

/* 02 — invoice */
.v-cap-invoice__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--v-mono);
  font-size: 9px;
  letter-spacing: .12em;
  color: var(--v-dim);
  margin-bottom: 12px;
}

.v-cap-invoice__amount {
  font-family: var(--v-display);
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -.025em;
  margin-bottom: 6px;
}

.v-cap-invoice__terms {
  font-family: var(--v-mono);
  font-size: 9.5px;
  letter-spacing: .08em;
  color: var(--v-muted);
}

.v-cap-invoice__stages {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--v-mono);
  font-size: 8.5px;
  letter-spacing: .09em;
  color: var(--v-dim);
  margin-bottom: 8px;
}

.v-cap-invoice__track {
  height: 4px;
  background: var(--v-panel-line);
  position: relative;
  overflow: hidden;
  margin-bottom: 14px;
}

.v-cap-invoice__track div {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  background: var(--v-signal);
  animation: v-fill 10s ease-in-out infinite;
}

.v-cap-invoice__chips {
  position: relative;
  height: 26px;
}

.v-cap-invoice__chips span {
  position: absolute;
  left: 0;
  bottom: 0;
  font-family: var(--v-mono);
  font-size: 9px;
  letter-spacing: .09em;
  color: var(--v-muted);
  border: 1px solid var(--v-line-strong);
  padding: 6px 10px;
  animation: v-chip 10s ease-in-out infinite;
}

.v-cap-invoice__chips span:nth-child(2) { animation-delay: 2.5s; }

.v-cap-invoice__chips span:nth-child(3) {
  color: var(--v-signal);
  border-color: var(--v-signal);
  animation-delay: 5s;
}

.v-cap-invoice__chips span:nth-child(4) {
  color: var(--v-ink);
  background: var(--v-signal);
  border-color: var(--v-signal);
  padding: 7px 11px;
  animation-delay: 7.5s;
}

/* 03 — board */
.v-cap-board__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  font-family: var(--v-mono);
  font-size: 8.5px;
  letter-spacing: .1em;
  color: var(--v-dim);
}

.v-cap-board__lanes {
  position: relative;
  flex: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.v-cap-board__lane {
  border: 1px solid var(--v-panel-line);
  background: var(--v-panel-2);
  padding: 9px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.v-cap-board__stub {
  height: 5px;
  background: var(--v-panel-bar);
}

.v-cap-board__card {
  position: absolute;
  top: 44px;
  left: 0;
  width: calc((100% - 20px) / 3);
  background: var(--v-panel-hi);
  border: 1px solid var(--v-signal);
  border-left-width: 3px;
  padding: 9px 10px;
  animation: v-lift 10s ease-in-out infinite;
}

.v-cap-board__card-title {
  font-size: 11px;
  color: var(--v-ink);
  line-height: 1.35;
}

.v-cap-board__card-meta {
  font-family: var(--v-mono);
  font-size: 8px;
  letter-spacing: .09em;
  color: var(--v-muted);
  margin-top: 5px;
}

.v-cap-board__totals {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  border-top: 1px solid var(--v-panel-line);
  font-family: var(--v-mono);
  font-size: 9px;
  letter-spacing: .09em;
  color: var(--v-muted);
}

/* 04 — calendar */
.v-cap-cal__days {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
  font-family: var(--v-mono);
  font-size: 8.5px;
  letter-spacing: .1em;
  color: var(--v-dim);
}

.v-cap-cal__week {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
  height: 52px;
}

.v-cap-cal__cell {
  border: 1px solid var(--v-panel-line);
  background: var(--v-panel-2);
}

.v-cap-cal__cell--booked {
  border-color: var(--v-signal);
  background: var(--v-panel-hi);
  padding: 6px;
  animation: v-slot 8s ease-in-out infinite;
}

.v-cap-cal__time {
  font-family: var(--v-mono);
  font-size: 7.5px;
  letter-spacing: .08em;
  color: var(--v-signal);
}

.v-cap-cal__event {
  font-size: 9.5px;
  color: var(--v-ink);
  line-height: 1.3;
  margin-top: 3px;
}

.v-cap-cal__actions {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-top: 2px;
}

.v-cap-cal__action {
  display: flex;
  align-items: center;
  gap: 9px;
  animation: v-rise 8s ease-in-out infinite;
}

.v-cap-cal__action:nth-child(1) { animation-delay: 1.2s; }
.v-cap-cal__action:nth-child(2) { animation-delay: 1.9s; }
.v-cap-cal__action:nth-child(3) { animation-delay: 2.6s; }

.v-cap-cal__box {
  width: 9px;
  height: 9px;
  border: 1px solid var(--v-line-strong);
  flex: none;
}

.v-cap-cal__box--done {
  border-color: var(--v-signal);
  background: var(--v-signal);
}

.v-cap-cal__action span:last-child {
  font-size: 11px;
  color: var(--v-ink-2);
}

/* 05 — check-ins */
.v-cap-checkin__row {
  display: flex;
  align-items: center;
  gap: 11px;
  padding-top: 9px;
  border-top: 1px solid var(--v-panel-line);
  animation: v-rise 9s ease-in-out infinite;
}

.v-cap-checkin__row--blocked {
  padding: 9px 10px 9px 8px;
  margin-left: -10px;
  border-top: 0;
  border-left: 2px solid var(--v-signal);
  background: var(--v-panel-hi);
}

.v-cap-checkin__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex: none;
  background: var(--v-ok);
}

.v-cap-checkin__dot--blocked { background: var(--v-signal); }
.v-cap-checkin__dot--risk { background: var(--v-warn); }

.v-cap-checkin__name {
  font-size: 11.5px;
  color: var(--v-ink);
  width: 64px;
}

.v-cap-checkin__note {
  font-size: 11px;
  color: var(--v-muted);
}

.v-cap-checkin__row--blocked .v-cap-checkin__note { flex: 1; }

.v-cap-checkin__flag {
  font-family: var(--v-mono);
  font-size: 8.5px;
  letter-spacing: .1em;
  color: var(--v-signal);
}

/* 06 — load signal */
.v-cap-load__chart {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 64px;
}

.v-cap-load__chart .v-bar { animation-duration: 3.2s; }

.v-cap-load__flag {
  font-family: var(--v-mono);
  font-size: 8.5px;
  letter-spacing: .1em;
  color: var(--v-signal);
  animation: v-tick 6s ease-in-out infinite;
}

/* 07 — capital */
.v-cap-capital__list {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.v-cap-capital__row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  padding-top: 9px;
  border-top: 1px solid var(--v-panel-line);
  animation: v-rise 9s ease-in-out infinite;
}

.v-cap-capital__row:nth-child(2) { animation-delay: .9s; }

.v-cap-capital__row--hot {
  padding: 9px 10px 9px 8px;
  margin-left: -10px;
  border-top: 0;
  border-left: 2px solid var(--v-signal);
  background: var(--v-panel-hi);
  animation-delay: 1.8s;
}

.v-cap-capital__label {
  font-size: 11.5px;
  color: var(--v-ink-2);
}

.v-cap-capital__row--hot .v-cap-capital__label { color: var(--v-ink); }

.v-cap-capital__value {
  font-family: var(--v-mono);
  font-size: 9.5px;
  color: var(--v-muted);
}

.v-cap-capital__row--hot .v-cap-capital__value {
  letter-spacing: .09em;
  color: var(--v-signal);
}

.v-cap-capital .v-panel__foot {
  margin-top: 0;
  font-size: 8.5px;
  letter-spacing: .1em;
}

/* Pricing */
.v-pricing {
  max-width: var(--v-shell);
  margin: 0 auto;
  padding: 110px var(--v-gutter);
  display: grid;
  gap: 72px;
}

.v-pricing__card {
  background: var(--v-light);
  border: 1px solid var(--v-light-line);
  border-top: 3px solid var(--v-signal);
  box-shadow: 0 26px 60px rgba(11, 15, 20, .13);
  padding: 52px;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 56px;
  align-items: center;
}

.v-pricing__eyebrow {
  color: var(--v-signal);
  margin-bottom: 26px;
}

.v-pricing__amounts {
  display: flex;
  align-items: baseline;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.v-pricing__now {
  font-family: var(--v-display);
  font-size: clamp(52px, 6.4vw, 88px);
  font-weight: 600;
  letter-spacing: -.04em;
  line-height: .95;
}

.v-pricing__was {
  font-family: var(--v-mono);
  font-size: 18px;
  color: var(--v-ink-3);
  text-decoration: line-through;
}

.v-pricing__terms {
  font-family: var(--v-mono);
  font-size: 13px;
  letter-spacing: .12em;
  color: var(--v-light-muted);
  margin-bottom: 30px;
}

.v-pricing__body {
  font-size: 17px;
  line-height: 1.7;
  color: var(--v-light-muted);
  margin: 0 0 32px;
  max-width: 460px;
  text-wrap: pretty;
}

.v-seats {
  background: var(--v-light-alt);
  border: 1px solid var(--v-light-line);
  padding: 32px;
  display: grid;
  gap: 18px;
}

.v-seats__label {
  font-family: var(--v-mono);
  font-size: 11.5px;
  letter-spacing: .12em;
  color: var(--v-light-muted-2);
}

.v-seats__row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid var(--v-light-line);
  padding-top: 16px;
}

.v-seats__row span:first-child {
  font-size: 16px;
  color: var(--v-light-muted);
}

.v-seats__value {
  font-family: var(--v-display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -.02em;
  color: var(--v-light-ink);
}

.v-seats__value small {
  font-family: var(--v-mono);
  font-size: 11px;
  letter-spacing: .1em;
  color: var(--v-light-muted-2);
}

/* FAQ */
.v-faq__eyebrow {
  color: var(--v-light-muted-2);
  margin-bottom: 20px;
}

.v-faq__item {
  border-bottom: 1px solid var(--v-light-line);
  padding: 20px 0;
}

.v-faq__q {
  font-family: var(--v-display);
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 10px;
}

.v-faq__a {
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--v-light-muted-2);
}

/* ==========================================================================
   9. Build / Mission / News / Policy / Start
   ========================================================================== */

.v-page-head {
  max-width: 1000px;
  margin: 0 auto;
  padding: 110px var(--v-gutter) 70px;
}

.v-page-head--narrow { max-width: 900px; padding-bottom: 80px; }

.v-page-head__eyebrow {
  color: var(--v-signal);
  margin-bottom: 26px;
}

.v-page-head__title {
  font-family: var(--v-display);
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.1;
  letter-spacing: -.035em;
  font-weight: 600;
  margin: 0 0 26px;
  text-wrap: pretty;
}

.v-page-head__body {
  font-size: 18px;
  line-height: 1.65;
  color: var(--v-ink-3);
  margin: 0 0 36px;
  max-width: 640px;
  text-wrap: pretty;
}

.v-section-block {
  max-width: var(--v-shell);
  margin: 0 auto;
  padding: 100px var(--v-gutter);
}

.v-section-block__eyebrow { margin-bottom: 44px; }

.v-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.v-stat {
  border-top: 1px solid var(--v-signal);
  padding-top: 24px;
}

.v-stat__value {
  font-family: var(--v-display);
  font-size: 56px;
  font-weight: 700;
  letter-spacing: -.04em;
  color: var(--v-signal);
}

.v-stat p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--v-ink-3);
  margin: 12px 0 0;
}

.v-cards2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.v-card {
  background: var(--v-surface);
  border: 1px solid var(--v-line);
  padding: 32px;
}

.v-card h3 {
  font-family: var(--v-display);
  font-size: 21px;
  letter-spacing: -.02em;
  margin: 0 0 12px;
  font-weight: 600;
}

.v-card p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--v-ink-3);
  margin: 0;
  text-wrap: pretty;
}

/* Mission */
.v-mission {
  max-width: 900px;
  margin: 0 auto;
  padding: 120px var(--v-gutter) 80px;
}

.v-mission__eyebrow {
  color: var(--v-signal);
  margin-bottom: 30px;
}

.v-mission__title {
  font-family: var(--v-display);
  font-size: clamp(32px, 4.4vw, 58px);
  line-height: 1.14;
  letter-spacing: -.03em;
  font-weight: 600;
  margin: 0 0 40px;
  text-wrap: pretty;
}

.v-mission p {
  font-size: 18px;
  line-height: 1.75;
  color: var(--v-ink-3);
  margin: 0 0 24px;
  text-wrap: pretty;
}

.v-mission p:last-child { margin-bottom: 0; }

.v-founder-band {
  border-top: 1px solid var(--v-line);
  border-bottom: 1px solid var(--v-line);
  background: var(--v-surface);
}

.v-founder {
  max-width: var(--v-shell);
  margin: 0 auto;
  padding: 110px var(--v-gutter);
  display: grid;
  grid-template-columns: .62fr 1.38fr;
  gap: 56px;
  align-items: start;
}

.v-founder__portrait {
  border: 1px solid var(--v-line-strong);
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--v-panel);
}

.v-founder__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 18%;
  display: block;
  filter: grayscale(1) contrast(1.05);
}

.v-founder__name {
  font-family: var(--v-display);
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -.015em;
  margin-top: 20px;
}

.v-founder__role {
  font-family: var(--v-mono);
  font-size: 11px;
  letter-spacing: .12em;
  color: var(--v-muted);
  margin-top: 6px;
}

.v-founder__tag {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 30px;
}

.v-founder__tag i {
  width: 34px;
  height: 2px;
  background: var(--v-signal);
  display: block;
}

.v-founder__tag span {
  font-family: var(--v-mono);
  font-size: 12px;
  letter-spacing: .14em;
  color: var(--v-signal);
}

.v-founder__quote {
  font-family: var(--v-display);
  font-size: clamp(24px, 3.1vw, 40px);
  line-height: 1.3;
  letter-spacing: -.025em;
  margin: 0 0 34px;
  text-wrap: pretty;
}

.v-founder__body {
  font-size: 17px;
  line-height: 1.75;
  color: var(--v-ink-3);
  margin: 0 0 34px;
  max-width: 640px;
  text-wrap: pretty;
}

.v-founder .v-btn { padding: 14px 24px; }

/* News */
.v-news-head {
  max-width: var(--v-shell);
  margin: 0 auto;
  padding: 96px var(--v-gutter) 0;
}

.v-news-head__inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--v-line);
  padding-bottom: 28px;
}

.v-news-head__eyebrow { margin-bottom: 20px; }

.v-news-head__title {
  font-family: var(--v-display);
  font-size: clamp(34px, 4.4vw, 58px);
  letter-spacing: -.03em;
  font-weight: 600;
  margin: 0;
  line-height: 1.06;
}

.v-news-head__meta {
  font-family: var(--v-mono);
  font-size: 12px;
  letter-spacing: .06em;
  color: var(--v-dim);
  line-height: 2;
  text-align: right;
}

.v-news-lead-wrap {
  max-width: var(--v-shell);
  margin: 0 auto;
  padding: 0 var(--v-gutter);
  margin-bottom: 45px;
}

.v-news-lead {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 0;
  border-bottom: 1px solid var(--v-line);
  align-items: stretch;
  transition: background .15s ease;
}

.v-news-lead:hover {
  background: #10161D;
  color: var(--v-ink);
}

.v-news-lead__copy {
  padding: 64px 56px 64px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.v-news-lead__meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 26px;
}

.v-kind {
  font-family: var(--v-mono);
  font-size: 11px;
  letter-spacing: .13em;
  color: var(--v-signal);
  border: 1px solid var(--v-signal);
  padding: 5px 9px;
}

.v-date {
  font-family: var(--v-mono);
  font-size: 12px;
  letter-spacing: .06em;
  color: var(--v-dim);
}

.v-news-lead__title {
  font-family: var(--v-display);
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.1;
  letter-spacing: -.03em;
  font-weight: 600;
  margin: 0 0 20px;
  text-wrap: pretty;
}

.v-news-lead__body {
  font-size: 17.5px;
  line-height: 1.7;
  color: var(--v-ink-3);
  max-width: 560px;
  margin-bottom: 30px;
  text-wrap: pretty;
}

.v-news-lead__cta {
  color: var(--v-signal);
  font-size: 15px;
  font-weight: 600;
}

.v-news-lead__media {
  border-left: 1px solid var(--v-line);
  background: var(--v-panel);
  position: relative;
  min-height: 360px;
}

.v-news-grid-wrap {
  max-width: var(--v-shell);
  margin: 0 auto;
  padding: 0 var(--v-gutter) 40px;
}

.v-news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--v-line);
  border-bottom: 1px solid var(--v-line);
}

.v-news-card {
  background: var(--v-ground);
  display: flex;
  flex-direction: column;
  min-height: 260px;
  transition: background .15s ease;
}

.v-news-card:hover {
  background: #10161D;
  color: var(--v-ink);
}

.v-news-card__media {
  position: relative;
  height: 190px;
  border-bottom: 1px solid var(--v-line);
  background: var(--v-panel);
}

.v-news-card__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 32px 32px 22px;
}

.v-news-card__kind {
  font-family: var(--v-mono);
  font-size: 10.5px;
  letter-spacing: .13em;
  color: var(--v-muted);
  border: 1px solid var(--v-line-strong);
  padding: 4px 8px;
}

.v-news-card__date {
  font-family: var(--v-mono);
  font-size: 11.5px;
  letter-spacing: .06em;
  color: var(--v-dim);
}

.v-news-card__title {
  font-family: var(--v-display);
  font-size: 21px;
  line-height: 1.25;
  letter-spacing: -.02em;
  font-weight: 600;
  margin: 0 32px 14px;
  text-wrap: pretty;
}

.v-news-card__body {
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--v-muted);
  margin: 0 32px;
  text-wrap: pretty;
}

.v-news-card__spacer { flex: 1; }

.v-news-card__cta {
  color: var(--v-signal);
  font-size: 14px;
  font-weight: 600;
  margin: 26px 32px 40px;
}

/* Placeholder used when an article has no featured image */
.v-media-empty {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: repeating-linear-gradient(
    135deg,
    rgba(237, 240, 243, .035) 0,
    rgba(237, 240, 243, .035) 1px,
    transparent 1px,
    transparent 9px
  );
  font-family: var(--v-mono);
  font-size: 10.5px;
  letter-spacing: .13em;
  color: var(--v-dim);
  text-align: center;
  padding: 16px;
}

.v-media-fill {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Dispatch newsletter */
.v-dispatch-wrap {
  max-width: var(--v-shell);
  margin: 0 auto;
  padding: 60px var(--v-gutter) 120px;
}

.v-dispatch {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  background: var(--v-surface);
  border: 1px solid var(--v-line);
  padding: 52px 56px;
}

.v-dispatch__eyebrow {
  font-family: var(--v-mono);
  font-size: 11.5px;
  letter-spacing: .13em;
  color: var(--v-signal);
  margin-bottom: 18px;
}

.v-dispatch__title {
  font-family: var(--v-display);
  font-size: 28px;
  letter-spacing: -.025em;
  font-weight: 600;
  margin: 0 0 14px;
  line-height: 1.2;
}

.v-dispatch__body {
  font-size: 16px;
  line-height: 1.7;
  color: var(--v-ink-3);
  text-wrap: pretty;
}

.v-dispatch__form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.v-dispatch__form .v-input {
  flex: 1;
  min-width: 220px;
  padding: 15px 16px;
}

.v-dispatch__form button { padding: 15px 26px; }

/* Policy */
.v-policy-list {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 var(--v-gutter) 120px;
  display: grid;
  gap: 20px;
}

.v-policy-item {
  background: var(--v-surface);
  border: 1px solid var(--v-line);
  padding: 34px;
}

.v-policy-item__num {
  font-family: var(--v-mono);
  font-size: 11.5px;
  letter-spacing: .1em;
  color: var(--v-signal);
  margin-bottom: 14px;
}

.v-policy-item h2 {
  font-family: var(--v-display);
  font-size: 24px;
  letter-spacing: -.02em;
  font-weight: 600;
  margin: 0 0 12px;
  color: var(--v-ink);
}

.v-policy-item p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--v-ink-3);
  margin: 0;
  text-wrap: pretty;
}

.v-policy-contact {
  font-family: var(--v-mono);
  font-size: 12.5px;
  line-height: 1.8;
  color: var(--v-muted);
  margin: 8px 0 0;
}

/* Start / signup */
.v-start {
  max-width: 1100px;
  margin: 0 auto;
  padding: 110px var(--v-gutter) 120px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
}

.v-start__title {
  font-family: var(--v-display);
  font-size: clamp(32px, 4vw, 52px);
  letter-spacing: -.03em;
  font-weight: 600;
  margin: 0 0 22px;
}

.v-start__body {
  font-size: 17.5px;
  line-height: 1.7;
  color: var(--v-ink-3);
  margin: 0 0 34px;
  text-wrap: pretty;
}

.v-start__contact {
  border-top: 1px solid var(--v-line);
  padding-top: 22px;
  font-family: var(--v-mono);
  font-size: 12.5px;
  line-height: 2;
  color: var(--v-muted);
  letter-spacing: .04em;
}

/* ==========================================================================
   10. Forms
   ========================================================================== */

.v-form {
  background: var(--v-surface);
  border: 1px solid var(--v-line);
  padding: 36px;
  display: grid;
  gap: 18px;
}

.v-field {
  display: grid;
  gap: 8px;
}

.v-label {
  font-family: var(--v-mono);
  font-size: 11px;
  letter-spacing: .12em;
  color: var(--v-muted);
}

.v-input {
  background: var(--v-ground);
  border: 1px solid var(--v-line-strong);
  color: var(--v-ink);
  padding: 13px 14px;
  font-family: var(--v-body);
  font-size: 15px;
  width: 100%;
}

.v-input::placeholder { color: var(--v-dim); }

textarea.v-input { resize: vertical; }

.v-picks {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.v-pick {
  background: transparent;
  color: var(--v-ink);
  border: 1.5px solid #46525F;
  padding: 11px 20px;
  font-family: var(--v-body);
  font-size: 14.5px;
  font-weight: 500;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}

.v-pick.is-active {
  background: var(--v-signal);
  color: var(--v-ground);
  border-color: var(--v-signal);
}

.v-form .v-btn--solid {
  padding: 15px;
  font-size: 15.5px;
  margin-top: 6px;
}

.v-form-note {
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
  min-height: 1px;
}

.v-form-note--error { color: var(--v-signal); }
.v-form-note--ok { color: var(--v-ok); }

/* ==========================================================================
   11. Modals
   ========================================================================== */

.v-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(6, 9, 13, .78);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.v-modal[hidden] { display: none; }

/* The panel's states are grid/flex, which would otherwise beat [hidden]. */
.v-modal [data-vorian-state][hidden] { display: none; }

.v-modal__panel {
  background: var(--v-surface);
  border: 1px solid var(--v-line-strong);
  max-width: 460px;
  width: 100%;
  max-height: 92vh;
  overflow-y: auto;
  box-shadow: 0 40px 120px rgba(0, 0, 0, .6);
}

.v-modal__panel--wide { max-width: 560px; }

.v-modal__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 30px;
  border-bottom: 1px solid var(--v-line);
}

.v-modal__tag {
  font-family: var(--v-mono);
  font-size: 11.5px;
  letter-spacing: .13em;
  color: var(--v-signal);
}

.v-modal__close {
  background: none;
  border: 0;
  color: var(--v-muted);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  padding: 4px;
}

.v-modal__close:hover { color: var(--v-signal); }

.v-modal__body {
  padding: 30px;
  display: grid;
  gap: 18px;
}

.v-modal__body h2 {
  font-family: var(--v-display);
  font-size: 26px;
  letter-spacing: -.025em;
  font-weight: 600;
  margin: 0 0 10px;
}

.v-modal__body > div > p {
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--v-muted);
  margin: 0;
}

.v-modal__state {
  padding: 56px 30px 60px;
  text-align: center;
}

.v-modal__state h2 {
  font-family: var(--v-display);
  font-size: 30px;
  letter-spacing: -.025em;
  font-weight: 600;
  margin: 0 0 16px;
}

.v-modal__state--routing h2 { font-size: 28px; margin-bottom: 12px; }

.v-modal__state p {
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--v-ink-3);
  margin: 0 0 32px;
}

.v-modal__state--routing p { font-size: 15.5px; margin-bottom: 0; }

.v-modal__state-label {
  font-family: var(--v-mono);
  font-size: 11.5px;
  letter-spacing: .13em;
  color: var(--v-muted);
  margin-bottom: 16px;
}

.v-modal__alt {
  font-size: 14.5px;
  color: var(--v-muted);
  text-align: center;
}

.v-modal__alt a { color: var(--v-signal); }

.v-modal__close-btn {
  border: 1.5px solid #46525F;
  background: none;
  color: var(--v-ink);
  padding: 13px 24px;
  font-family: var(--v-body);
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
}

.v-modal__close-btn:hover {
  border-color: var(--v-signal);
  color: var(--v-signal);
}

.v-tickets {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.v-ticket {
  background: transparent;
  color: var(--v-ink-2);
  border: 1px solid var(--v-line-mid);
  padding: 10px 16px;
  font-family: var(--v-mono);
  font-size: 13px;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}

.v-ticket.is-active {
  background: var(--v-signal);
  color: var(--v-ground);
  border-color: var(--v-signal);
}

/* ==========================================================================
   12. Footer
   ========================================================================== */

.v-footer {
  border-top: 1px solid var(--v-line-soft);
  background: var(--v-surface-alt);
}

.v-footer__grid {
  max-width: var(--v-shell);
  margin: 0 auto;
  padding: 70px var(--v-gutter) 40px;
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 48px;
}

.v-footer__logo {
  display: flex;
  align-items: center;
  margin-bottom: 18px;
}

.v-footer__logo img {
  height: 24px;
  width: auto;
  display: block;
}

.v-footer__blurb {
  font-size: 15px;
  line-height: 1.65;
  color: var(--v-muted);
  margin: 0 0 24px;
  max-width: 300px;
}

.v-footer__signup {
  display: flex;
  gap: 10px;
  max-width: 320px;
}

.v-footer__signup .v-input {
  flex: 1;
  padding: 11px 13px;
  font-size: 14px;
}

.v-footer__signup button {
  background: var(--v-line);
  color: var(--v-ink);
  border: 0;
  padding: 11px 16px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--v-body);
}

.v-footer__signup button:hover { background: var(--v-signal); color: var(--v-ground); }

.v-footer__heading {
  font-family: var(--v-mono);
  font-size: 11px;
  letter-spacing: .12em;
  color: var(--v-dim);
  margin-bottom: 18px;
}

.v-footer__links {
  display: grid;
  gap: 11px;
  font-size: 15px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.v-footer__links a { color: var(--v-ink-3); }
.v-footer__links a:hover { color: var(--v-signal); }

.v-footer__base {
  max-width: var(--v-shell);
  margin: 0 auto;
  padding: 24px var(--v-gutter) 44px;
  border-top: 1px solid var(--v-line-faint);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  font-family: var(--v-mono);
  font-size: 11.5px;
  color: var(--v-dim);
  letter-spacing: .06em;
}

.v-footer__social {
  display: flex;
  gap: 22px;
}

.v-footer__social a { color: var(--v-dim); }
.v-footer__social a:hover { color: var(--v-signal); }

/* ==========================================================================
   13. Editor / fallback content (single posts, generic pages)
   ========================================================================== */

.v-article {
  max-width: 760px;
  margin: 0 auto;
  padding: 96px var(--v-gutter) 120px;
}

.v-article__meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 26px;
}

.v-article__title {
  font-family: var(--v-display);
  font-size: clamp(32px, 4.2vw, 54px);
  line-height: 1.1;
  letter-spacing: -.03em;
  font-weight: 600;
  margin: 0 0 32px;
  text-wrap: pretty;
}

.v-article__media {
  margin: 0 0 40px;
  border: 1px solid var(--v-line);
}

.v-article__media img { display: block; width: 100%; height: auto; }

.v-prose {
  font-size: 17.5px;
  line-height: 1.75;
  color: var(--v-ink-3);
}

.v-prose h2 {
  font-family: var(--v-display);
  font-size: 28px;
  letter-spacing: -.025em;
  font-weight: 600;
  color: var(--v-ink);
  margin: 48px 0 16px;
}

.v-prose h3 {
  font-family: var(--v-display);
  font-size: 21px;
  letter-spacing: -.02em;
  font-weight: 600;
  color: var(--v-ink);
  margin: 36px 0 14px;
}

.v-prose a { color: var(--v-signal); text-decoration: underline; }

.v-prose blockquote {
  border-left: 2px solid var(--v-signal);
  margin: 32px 0;
  padding: 4px 0 4px 24px;
  font-family: var(--v-display);
  font-size: 22px;
  line-height: 1.4;
  letter-spacing: -.02em;
  color: var(--v-ink);
}

.v-prose img { height: auto; }

.v-prose code {
  font-family: var(--v-mono);
  font-size: .9em;
  background: var(--v-surface);
  padding: 2px 6px;
}

.v-pagination {
  max-width: var(--v-shell);
  margin: 0 auto;
  padding: 0 var(--v-gutter) 120px;
  font-family: var(--v-mono);
  font-size: 13px;
  letter-spacing: .06em;
}

.v-pagination .page-numbers {
  display: inline-block;
  padding: 8px 14px;
  border: 1px solid var(--v-line-strong);
  margin-right: 8px;
  color: var(--v-ink-2);
}

.v-pagination .page-numbers.current {
  border-color: var(--v-signal);
  color: var(--v-signal);
}

/* ==========================================================================
   14. Keyframes
   ========================================================================== */

@keyframes v-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes v-bar {
  0%, 100% { transform: scaleY(.18); }
  50% { transform: scaleY(1); }
}

@keyframes v-tick {
  0%, 6% { opacity: 0; transform: translateX(-5px); }
  16%, 88% { opacity: 1; transform: none; }
  97%, 100% { opacity: 0; transform: none; }
}

@keyframes v-rise {
  0%, 6% { opacity: 0; transform: translateY(9px); }
  18%, 90% { opacity: 1; transform: none; }
  100% { opacity: 0; transform: translateY(-5px); }
}

@keyframes v-flip {
  0%, 3% { opacity: 0; transform: translateY(6px); }
  9%, 44% { opacity: 1; transform: none; }
  50%, 100% { opacity: 0; transform: translateY(-6px); }
}

@keyframes v-fill {
  0%, 8% { width: 0; }
  46%, 100% { width: 100%; }
}

@keyframes v-blink {
  0%, 48% { opacity: 1; }
  52%, 100% { opacity: .15; }
}

@keyframes v-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .25; }
}

@keyframes v-lift {
  0%, 16% { transform: translate(0, 0); box-shadow: none; }
  26%, 40% { transform: translate(calc(50% + 5px), -4px); box-shadow: 0 10px 24px rgba(0, 0, 0, .5); }
  50%, 66% { transform: translate(calc(100% + 10px), 0); box-shadow: none; }
  76%, 90% { transform: translate(calc(150% + 15px), -4px); box-shadow: 0 10px 24px rgba(0, 0, 0, .5); }
  97%, 100% { transform: translate(calc(200% + 20px), 0); box-shadow: none; }
}

@keyframes v-chip {
  0%, 3% { opacity: 0; transform: translateY(4px); }
  8%, 22% { opacity: 1; transform: none; }
  27%, 100% { opacity: 0; transform: none; }
}

@keyframes v-slot {
  0%, 12% { opacity: 0; transform: translateY(-7px); }
  24%, 88% { opacity: 1; transform: none; }
  100% { opacity: 0; transform: none; }
}

/* ==========================================================================
   15. Responsive
   ========================================================================== */

@media (max-width: 980px) {
  .v-hero,
  .v-proof,
  .v-buildteaser,
  .v-helm-hero,
  .v-cap,
  .v-pricing__card,
  .v-founder,
  .v-news-lead,
  .v-dispatch,
  .v-start,
  .v-cards2,
  .v-cci__diagram {
    grid-template-columns: 1fr !important;
  }

  .v-footer__grid,
  .v-pillars__grid,
  .v-stats {
    grid-template-columns: 1fr 1fr !important;
  }

  .v-news-grid,
  .v-closing__grid {
    grid-template-columns: 1fr !important;
  }

  .v-cci__rule { display: none !important; }

  .v-header__bar {
    height: auto !important;
    flex-wrap: wrap !important;
    padding-top: 14px !important;
    padding-bottom: 14px !important;
    gap: 16px !important;
  }

  .v-nav {
    order: 3;
    width: 100%;
    margin-left: 0 !important;
    gap: 22px !important;
    flex-wrap: wrap;
    row-gap: 10px !important;
    padding-bottom: 2px;
  }

  .v-nav > ul {
    gap: 22px !important;
    flex-wrap: wrap;
    row-gap: 10px !important;
  }

  .v-nav__spacer { display: none; }

  .v-founder__portrait { max-width: 280px; }

  .v-news-lead__copy { padding: 48px 0; }
  .v-news-lead__media {
    border-left: 0;
    border-top: 1px solid var(--v-line);
    min-height: 260px;
  }

  .v-hero,
  .v-proof,
  .v-buildteaser,
  .v-helm-hero,
  .v-founder,
  .v-start,
  .v-dispatch {
    gap: 44px;
  }
}

@media (max-width: 620px) {
  .v-footer__grid,
  .v-pillars__grid,
  .v-stats,
  .v-news-grid {
    grid-template-columns: 1fr !important;
  }

  .v-news-grid { gap: 8px !important; }

  .v-header__bar,
  .v-footer__grid,
  .v-footer__base {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  .v-hero,
  .v-proof,
  .v-buildteaser,
  .v-helm-hero,
  .v-founder,
  .v-start,
  .v-news-lead__copy {
    padding-top: 72px !important;
    padding-bottom: 72px !important;
  }

  .v-cap,
  .v-form,
  .v-dispatch,
  .v-pricing__card {
    padding: 26px !important;
  }

  .v-cci__frame { padding: 24px; }

  .v-news-head__meta { text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
}







.v-ticket.is-active,
.v-ticket[aria-pressed="true"] {
    background: #ff5722;
    border-color: #ff5722;
    color: #111820;
}

/* ========================================================================== 
   Contact Form 7 — investment modal overrides
   Add this at the very end of the stylesheet.
   ========================================================================== */

/* Keep the CF7-generated form compact and remove its default paragraph gaps. */
.v-modal__body > .wpcf7,
.v-modal__body > .wpcf7 > form,
.v-modal__body > .wpcf7 form {
  margin: 0;
  padding: 0;
}

.v-modal__body > .wpcf7 form > p {
  margin: 0;
  padding: 0;
}

/* CF7 wraps form controls in this span. It must not create extra spacing. */
.v-modal__body .wpcf7-form-control-wrap {
  display: block;
  margin: 0;
  padding: 0;
}

/* Match the original modal spacing. */
.v-modal__body .wpcf7 form {
  display: grid;
  gap: 18px;
}

.v-modal__body .v-field {
  display: grid;
  gap: 8px;
  margin: 0;
}

.v-modal__body .v-field > p {
  margin: 0;
}

/* The submit form-tag is often wrapped in a paragraph by CF7. */
.v-modal__body .wpcf7 form > p:has(.v-btn),
.v-modal__body .wpcf7 form > p:has(input[type="submit"]),
.v-modal__body .wpcf7 form > p:has(button[type="submit"]) {
  margin: 0;
  padding: 0;
}

/* Remove the visible honeypot and its CF7 wrapper. */
.v-modal__body .v-honeypot-wrap,
.v-modal__body .v-honeypot-wrap + br,
.v-modal__body .wpcf7-form-control-wrap:has(.v-hidden-honeypot) {
  display: none !important;
}

.v-modal__body .v-hidden-honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* Do not reserve space for the default CF7 success/error response. */
.v-modal__body .wpcf7-response-output {
  display: none !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
}

/* Keep the original single-selection button appearance. */
.v-modal[data-vorian-modal="invest"] .v-tickets {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.v-modal[data-vorian-modal="invest"] .v-ticket.is-active,
.v-modal[data-vorian-modal="invest"] .v-ticket[aria-pressed="true"] {
  background: var(--v-signal);
  color: var(--v-ground);
  border-color: var(--v-signal);
}

/* Use the original full-width orange submit button. */
.v-modal[data-vorian-modal="invest"] .v-btn--solid,
.v-modal[data-vorian-modal="invest"] input[type="submit"] {
  display: block;
  width: 100%;
}

/* Use the browser-independent rule instead of relying only on :has(). */
.v-modal[data-vorian-modal="invest"] .wpcf7-submit {
  margin: 0;
}

/* Fallback for browsers that do not support :has(). */
.v-modal__body .wpcf7 form > p {
  margin: 0;
}

/* CF7 can insert a line break before/after controls. */
.v-modal__body .wpcf7 form br {
  display: none;
}

.v-modal[data-vorian-modal="invest"] .v-tickets > p {
    margin: 0 !important;
    padding: 0 !important;
}

/* Responsive safety: scroll only on genuinely short screens, but hide bar. */
@media (max-height: 760px) {
  .v-modal[data-vorian-modal="invest"] .v-modal__panel {
    max-height: calc(100vh - 24px);
    overflow-y: auto;
    scrollbar-width: none;
  }

  .v-modal[data-vorian-modal="invest"] .v-modal__panel::-webkit-scrollbar {
    display: none;
    width: 0;
  }
}




/* FOOTER SEND MAIL PART */
.v-footer__signup {
    display: block;
}

.v-footer__signup .wpcf7,
.v-footer__signup .wpcf7 form {
    margin: 0;
    padding: 0;
}

.v-footer__signup .wpcf7 form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    align-items: stretch;
}

.v-footer__signup .wpcf7 form > .wpcf7-response-output {
    grid-column: 1 / -1;
    grid-row: 2;
}

.v-footer__signup .wpcf7-form-control-wrap {
    display: block;
    min-width: 0;
}

.v-footer__signup .wpcf7 form > p {
    display: contents;
    margin: 0;
    padding: 0;
}

.v-footer__signup .v-input {
    display: block;
    width: 100%;
    min-width: 0;
    padding: 11px 13px;
    font-size: 14px;
}

.v-footer__signup .v-footer-submit {
    display: block;
    background: var(--v-line);
    color: var(--v-ink);
    border: 0;
    padding: 11px 16px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    font-family: var(--v-body);
}

.v-footer__signup .v-footer-submit:hover {
    background: var(--v-signal);
    color: var(--v-ground);
}

.v-footer__signup .wpcf7-response-output {
    display: block;
    width: 100%;
    clear: both;
    margin: 10px 0 0;
    padding: 0;
    border: 0;
    font-size: 13px;
    line-height: 1.4;
    color: var(--v-ok);
}




/* DISPATCH SUBSCRIBE MAIL PART */
.v-dispatch__form {
    display: block;
}
.v-dispatch__form .wpcf7,
.v-dispatch__form .wpcf7 form {
    width: 100%;
    margin: 0;
    padding: 0;
}
.v-dispatch__form .wpcf7 form {
    display: grid;
    /* grid-template-columns: minmax(0, 1fr) auto; */
    gap: 10px;
    align-items: stretch;
}
.v-dispatch__form .wpcf7 form > p {
    display: contents;
    margin: 0;
    padding: 0;
}
.v-dispatch__form .wpcf7-form-control-wrap {
    display: block;
    min-width: 0;
}
.v-dispatch__form .v-input {
    display: block;
    width: 100%;
    min-width: 0;
}
.v-dispatch__form .v-btn--solid,
.v-dispatch__form input[type="submit"] {
    display: block;
    width: auto;
    white-space: nowrap;
}
.v-dispatch__form .wpcf7-response-output {
    grid-column: 1 / -1;
    margin: 10px 0 0;
    padding: 0;
    border: 0;
    font-size: 13px;
    line-height: 1.4;
    color: var(--v-ok);
}


/* PAGINATION */
.v-pagination {
  width: 100%;
  max-width: var(--v-shell);
  margin: 0 auto;
  padding: 40px var(--v-gutter) 120px;
  font-family: var(--v-mono);
  font-size: 13px;
  letter-spacing: .06em;
}
.v-pagination .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 0;
  padding: 0;
  gap: 0;
  list-style: none;
}
.v-pagination .page-numbers li {
  margin: 0;
  padding: 0;
  list-style: none;
}
.v-pagination .page-numbers a,
.v-pagination .page-numbers span {
  display: block;
  padding: 12px 16px;
  border: 1px solid var(--v-line-strong);
  margin: 0;
  color: var(--v-ink-2);
}
.v-pagination .page-numbers a:hover {
  color: var(--v-signal);
  border-color: var(--v-signal);
}
.v-pagination .page-numbers.current {
  border-color: var(--v-signal);
  color: var(--v-signal);
}




/* Keep proof section in two columns from 701px to 980px */
@media (min-width: 620px) and (max-width: 980px) {
    .v-proof {
        grid-template-columns: 1fr 1fr !important;
    }
}

@media (max-height: 575px) {
  .v-cap-board__card-title {
      font-size: 5px;
  }
}