/* ═══════════════════════════════════════════════════
   IDENISYS · V2 PREVIEW · THREE DIRECTIONS
   ═══════════════════════════════════════════════════ */

/* ── Reset ────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  min-height: 100vh;
  text-rendering: optimizeLegibility;
  font-feature-settings: "ss01", "cv11";
  user-select: none;
  -webkit-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
/* keep email links selectable so people can copy them */
a[href^="mailto:"] {
  user-select: text;
  -webkit-user-select: text;
}
img, svg, video { display: block; max-width: 100%; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
ul, ol { list-style: none; }
a { color: inherit; text-decoration: none; }
.tabnum { font-variant-numeric: tabular-nums; }

:root {
  --ease:      cubic-bezier(0.2, 0, 0, 1);
  --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ─────────────────────────────────────────────────── */
/*  PICKER  ·  minimalist floating selector            */
/* ─────────────────────────────────────────────────── */
.picker {
  position: fixed;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 200;
  display: inline-flex;
  align-items: center;
  gap: 1px;
  padding: 3px;
  background: rgba(10, 10, 18, 0.55);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  color: #fff;
  font-family: "Geist Mono", ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.06em;
  box-shadow: 0 8px 24px -8px rgba(0,0,0,0.35);
}
.picker__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 26px;
  border-radius: 999px;
  color: rgba(255,255,255,0.45);
  transition: background-color 0.25s var(--ease), color 0.2s var(--ease), transform 0.15s var(--ease);
  font-weight: 600;
}
.picker__btn:hover { color: #fff; }
.picker__btn:active { transform: scale(0.94); }
.picker__btn.is-active {
  color: #07080F;
  background: #fff;
}
.picker__num { line-height: 1; }

/* ── Version visibility ───────────────────────────── */
.v { display: none; }
body[data-active="a"] .v-a { display: block; }
body[data-active="b"] .v-b { display: block; }

/* shared section padding utility */
.v section { padding-left: clamp(20px, 4vw, 56px); padding-right: clamp(20px, 4vw, 56px); }


/* ═════════════════════════════════════════════════════ */
/*  VERSION  A   ·   TECH-FORWARD DARK                    */
/* ═════════════════════════════════════════════════════ */
.v-a {
  background: #07080F;
  color: #E8E9F1;
  font-family: "Geist", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  overflow-x: clip;
  --va-acc: #84F26A;
  --va-acc-d: #5DD64C;
}

.va-nav {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 22px clamp(24px, 4vw, 56px);
  max-width: 1480px;
  margin: 0 auto;
}
.va-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Geist Mono", monospace;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: #fff;
}
.va-brand svg { width: 20px; height: 20px; color: var(--va-acc); }
.va-nav nav {
  display: inline-flex;
  gap: 28px;
  justify-self: center;
  font-size: 14px;
}
.va-nav nav a {
  color: rgba(232,233,241,0.65);
  padding: 10px 0;
  transition: color 0.2s var(--ease);
}
.va-nav nav a:hover { color: #fff; }
.va-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--va-acc);
  color: #07080F;
  font-weight: 500;
  font-size: 14px;
  transition: background-color 0.2s var(--ease), transform 0.15s var(--ease);
  min-height: 44px;
}
.va-pill:hover { background: #fff; }
.va-pill:active { transform: scale(0.96); }

.va-hero {
  position: relative;
  padding: 64px clamp(24px, 4vw, 56px) 96px;
  max-width: 1480px;
  margin: 0 auto;
  isolation: isolate;
  overflow: hidden;
}
.va-hero__glow {
  position: absolute;
  top: -120px;
  right: 0;
  width: min(70%, 700px);
  height: 600px;
  background: radial-gradient(closest-side, rgba(132,242,106,0.32), transparent 70%);
  filter: blur(80px);
  z-index: -1;
  pointer-events: none;
}
.va-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px 6px 10px;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 999px;
  font-family: "Geist Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.04em;
  color: rgba(232,233,241,0.85);
  margin-bottom: 32px;
  background: rgba(255,255,255,0.02);
}
.va-pulse {
  width: 7px; height: 7px;
  border-radius: 999px;
  background: var(--va-acc);
  box-shadow: 0 0 0 3px rgba(132,242,106,0.18);
  animation: vaPulse 2.4s var(--ease) infinite;
}
@keyframes vaPulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(132,242,106,0.18); }
  50%      { box-shadow: 0 0 0 7px transparent; }
}
.va-h1 {
  font-family: "Geist", sans-serif;
  font-weight: 580;
  font-size: clamp(44px, 6.6vw, 100px);
  line-height: 0.98;
  letter-spacing: -0.035em;
  text-wrap: balance;
  color: #fff;
  max-width: 18ch;
}
.va-grad {
  background: linear-gradient(120deg, #84F26A 0%, #22D3EE 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
  font-family: "Fraunces", serif;
  font-weight: 380;
}
.va-sub {
  font-size: 18px;
  line-height: 1.55;
  color: rgba(232,233,241,0.72);
  max-width: 56ch;
  margin: 28px 0 36px;
  text-wrap: pretty;
}

.va-cta-row {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 12px;
}
.va-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  min-height: 48px;
  transition: background-color 0.25s var(--ease), color 0.2s var(--ease), transform 0.15s var(--ease), border-color 0.25s var(--ease);
}
.va-btn:active { transform: scale(0.96); }
.va-btn--primary {
  background: var(--va-acc);
  color: #07080F;
  box-shadow:
    0 1px 0 0 rgba(255,255,255,0.30) inset,
    0 12px 32px -12px rgba(132,242,106,0.55);
}
.va-btn--primary:hover { background: #fff; }
.va-btn--primary span { transition: transform 0.25s var(--ease); }
.va-btn--primary:hover span { transform: translateX(3px); }
.va-btn--ghost {
  color: #E8E9F1;
  border: 1px solid rgba(255,255,255,0.18);
}
.va-btn--ghost:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.32);
}

.va-stats {
  margin-top: 64px;
  padding: 32px 0 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px clamp(20px, 3vw, 48px);
}
.va-stats > div { display: flex; flex-direction: column; gap: 8px; }
.va-stat-num {
  font-family: "Geist", sans-serif;
  font-weight: 540;
  font-size: clamp(28px, 3.4vw, 48px);
  letter-spacing: -0.025em;
  line-height: 1;
  color: #fff;
}
.va-stat-label {
  font-size: 12px;
  color: rgba(232,233,241,0.60);
  font-family: "Geist Mono", monospace;
  letter-spacing: 0.02em;
  line-height: 1.4;
}
@media (max-width: 880px) {
  .va-stats { grid-template-columns: 1fr 1fr; }
}

.va-dash {
  margin-top: 80px;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(20,22,38,0.85), rgba(10,11,20,0.85));
  overflow: hidden;
  box-shadow:
    0 1px 0 0 rgba(255,255,255,0.06) inset,
    0 30px 80px -24px rgba(0,0,0,0.6),
    0 0 0 1px rgba(132,242,106,0.06);
  font-family: "Geist Mono", monospace;
  font-size: 12px;
}
.va-dash__bar {
  display: grid;
  grid-template-columns: auto auto auto 1fr auto;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.02);
  color: rgba(232,233,241,0.5);
  font-size: 11px;
  letter-spacing: 0.04em;
}
.va-dash__dot {
  width: 9px; height: 9px;
  border-radius: 999px;
  background: rgba(255,255,255,0.18);
}
.va-dash__dot:nth-child(1) { background: #FF6363; }
.va-dash__dot:nth-child(2) { background: #FFD261; }
.va-dash__dot:nth-child(3) { background: #84F26A; }
.va-dash__title { padding-left: 16px; }
.va-dash__time { font-variant-numeric: tabular-nums; }
.va-dash__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 2fr;
  gap: 1px;
  background: rgba(255,255,255,0.08);
}
.va-dash__card {
  background: linear-gradient(180deg, rgba(20,22,38,0.7), rgba(10,11,20,0.7));
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 160px;
}
.va-dash__cap {
  font-size: 11px;
  letter-spacing: 0.05em;
  color: rgba(232,233,241,0.5);
  text-transform: uppercase;
}
.va-dash__val {
  font-family: "Geist", sans-serif;
  font-weight: 540;
  font-size: 32px;
  letter-spacing: -0.02em;
  color: #fff;
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
}
.va-dash__delta {
  font-family: "Geist Mono", monospace;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--va-acc);
  background: rgba(132,242,106,0.10);
  padding: 3px 8px;
  border-radius: 999px;
}
.va-dash__delta--down {
  color: #FFD261;
  background: rgba(255,210,97,0.10);
}
.va-dash__spark {
  width: 100%;
  height: 50px;
  color: var(--va-acc);
  margin-top: auto;
}
.va-dash__card:nth-child(2) .va-dash__spark { color: #FFD261; }
.va-dash__bars {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.va-dash__bars span {
  display: grid;
  grid-template-columns: 1fr 60px;
  gap: 12px;
  align-items: center;
  font-size: 11px;
}
.va-dash__bars i {
  display: block;
  height: 5px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--va-acc), rgba(132,242,106,0.2));
  width: calc(var(--p) * 1%);
}
.va-dash__bars b {
  font-weight: 500;
  color: rgba(232,233,241,0.7);
  text-align: left;
  font-family: "Geist Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
@media (max-width: 880px) { .va-dash__grid { grid-template-columns: 1fr 1fr; } .va-dash__card--wide { grid-column: 1 / -1; } }

.va-logos {
  padding: 80px clamp(24px, 4vw, 56px);
  max-width: 1480px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.va-logos__lead {
  font-family: "Geist Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.06em;
  color: rgba(232,233,241,0.5);
  text-transform: uppercase;
}
.va-logos__row {
  display: flex;
  gap: clamp(28px, 5vw, 56px);
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  font-family: "Geist", sans-serif;
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.01em;
  color: rgba(232,233,241,0.45);
}
.va-logos__row span { transition: color 0.25s var(--ease); }
.va-logos__row span:hover { color: #fff; }
.va-logos__row span:nth-child(2) { font-family: "Geist Mono", monospace; font-weight: 400; }
.va-logos__row span:nth-child(2) i { color: var(--va-acc); font-style: normal; }
.va-logos__row span:nth-child(4) i { font-style: italic; font-family: "Fraunces", serif; }

.va-services {
  padding: 96px clamp(24px, 4vw, 56px);
  max-width: 1480px;
  margin: 0 auto;
}
.va-section-head { display: flex; flex-direction: column; gap: 16px; max-width: 720px; margin-bottom: 56px; }
.va-section-num {
  font-family: "Geist Mono", monospace;
  font-size: 11px;
  color: var(--va-acc);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.va-h2 {
  font-family: "Geist", sans-serif;
  font-weight: 580;
  font-size: clamp(34px, 4.6vw, 64px);
  line-height: 1;
  letter-spacing: -0.03em;
  color: #fff;
  text-wrap: balance;
}
.va-h2--xl { font-size: clamp(48px, 7vw, 100px); }
.va-section-sub {
  font-size: 17px;
  color: rgba(232,233,241,0.65);
  line-height: 1.55;
  max-width: 56ch;
  text-wrap: pretty;
}

.va-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 1080px) { .va-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 720px)  { .va-grid { grid-template-columns: 1fr; } }
.va-card {
  position: relative;
  padding: 28px 28px 32px;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.4s var(--ease-out), border-color 0.3s var(--ease), background-color 0.3s var(--ease);
  isolation: isolate;
  overflow: hidden;
  min-height: 280px;
}
.va-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(400px 200px at 100% 0%, rgba(132,242,106,0.10), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  z-index: -1;
}
.va-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255,255,255,0.22);
}
.va-card:hover::before { opacity: 1; }
.va-card__num {
  font-family: "Geist Mono", monospace;
  font-size: 11px;
  color: var(--va-acc);
  letter-spacing: 0.04em;
}
.va-card h3 {
  font-size: 22px;
  font-weight: 540;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: #fff;
}
.va-card p {
  color: rgba(232,233,241,0.70);
  font-size: 15px;
  line-height: 1.55;
  text-wrap: pretty;
}
.va-card ul {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.va-card ul li {
  font-family: "Geist Mono", monospace;
  font-size: 11px;
  color: rgba(232,233,241,0.55);
  letter-spacing: 0.02em;
}
.va-card--accent { border-color: rgba(132,242,106,0.30); background: linear-gradient(180deg, rgba(132,242,106,0.06), rgba(132,242,106,0.02)); }
.va-card--accent .va-card__num { color: #fff; }

.va-process {
  padding: 96px clamp(24px, 4vw, 56px);
  max-width: 1480px;
  margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.va-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.10);
}
@media (max-width: 880px) { .va-steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .va-steps { grid-template-columns: 1fr; } }
.va-steps li {
  padding: 32px 28px 32px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-right: 1px solid rgba(255,255,255,0.10);
}
.va-steps li:not(:first-child) { padding-left: 28px; }
.va-steps li:last-child { border-right: 0; padding-right: 0; }
.va-step-num {
  font-family: "Geist Mono", monospace;
  font-size: 11px;
  color: var(--va-acc);
  letter-spacing: 0.04em;
}
.va-steps h3 {
  font-size: 22px;
  font-weight: 540;
  color: #fff;
  letter-spacing: -0.02em;
}
.va-steps p {
  font-size: 14px;
  color: rgba(232,233,241,0.65);
  line-height: 1.5;
}

.va-quote {
  padding: 80px clamp(24px, 4vw, 56px);
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: center;
  text-align: center;
}
.va-quote blockquote {
  position: relative;
  font-family: "Geist", sans-serif;
  font-weight: 380;
  font-size: clamp(24px, 2.4vw, 32px);
  line-height: 1.35;
  letter-spacing: -0.02em;
  color: #fff;
  max-width: 28ch;
  text-wrap: balance;
}
.va-quote-mark {
  font-family: "Fraunces", serif;
  font-size: 96px;
  color: var(--va-acc);
  line-height: 0;
  position: absolute;
  top: 0;
  left: -52px;
}
.va-quote cite {
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-family: "Geist Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.02em;
  color: rgba(232,233,241,0.55);
}
.va-quote-name { color: #fff; }

.va-cta {
  padding: 96px clamp(24px, 4vw, 56px);
  max-width: 1480px;
  margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.va-cta__inner {
  position: relative;
  padding: 80px clamp(28px, 5vw, 80px);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 24px;
  background:
    radial-gradient(800px 600px at 100% 0%, rgba(132,242,106,0.18), transparent 60%),
    linear-gradient(180deg, rgba(20,22,38,0.6), rgba(10,11,20,0.6));
  display: flex;
  flex-direction: column;
  gap: 20px;
  overflow: hidden;
}
.va-cta__inner p {
  font-size: 17px;
  color: rgba(232,233,241,0.7);
  max-width: 56ch;
  margin-bottom: 12px;
}
.va-foot {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 32px clamp(24px, 4vw, 56px);
  max-width: 1480px;
  margin: 0 auto;
  font-family: "Geist Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.04em;
  color: rgba(232,233,241,0.5);
  flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,0.06);
}


/* ═════════════════════════════════════════════════════ */
/*  VERSION  B   ·   BOLD MAXIMALIST                      */
/* ═════════════════════════════════════════════════════ */
.v-b {
  background: #FFD400;
  color: #0A0A0A;
  font-family: "Bricolage Grotesque", "Geist", sans-serif;
  font-size: 17px;
  line-height: 1.5;
  overflow-x: clip;
}

.vb-nav {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 24px clamp(24px, 4vw, 48px);
  max-width: 1640px;
  margin: 0 auto;
  border-bottom: 2px solid #0A0A0A;
}
.vb-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.02em;
  color: #0A0A0A;
}
.vb-brand svg { width: 22px; height: 22px; }
.vb-nav nav {
  display: inline-flex;
  gap: 28px;
  justify-self: center;
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.005em;
}
.vb-nav nav a {
  color: #0A0A0A;
  padding: 10px 0;
  position: relative;
}
.vb-nav nav a::after {
  content: "";
  position: absolute;
  inset: auto 0 6px 0;
  height: 2px;
  background: #0A0A0A;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.4s var(--ease-out);
}
.vb-nav nav a:hover::after { transform: scaleX(1); }
.vb-pill {
  padding: 14px 22px;
  background: #0A0A0A;
  color: #FFD400;
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0;
  transition: background-color 0.2s var(--ease), color 0.2s var(--ease), transform 0.15s var(--ease);
  min-height: 48px;
  display: inline-flex;
  align-items: center;
}
.vb-pill:hover { background: #FF0066; color: #fff; }
.vb-pill:active { transform: scale(0.96); }

.vb-hero {
  padding: 60px clamp(24px, 4vw, 48px);
  max-width: 1640px;
  margin: 0 auto;
  border-bottom: 2px solid #0A0A0A;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
.vb-eyebrow {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: -0.005em;
  color: #0A0A0A;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.vb-eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: #0A0A0A;
}
.vb-h1 {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 800;
  font-variation-settings: "wdth" 100, "opsz" 96;
  font-size: clamp(56px, 12vw, 220px);
  line-height: 0.86;
  letter-spacing: -0.045em;
  text-wrap: balance;
}
.vb-h1 .vb-line { display: block; }
.vb-h1 em {
  font-style: italic;
  font-family: "Fraunces", serif;
  font-weight: 380;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  letter-spacing: -0.04em;
  color: #FF0066;
}
.vb-h1 .vb-line--alt {
  display: inline-block;
  background: #0A0A0A;
  color: #FFD400;
  padding: 0 0.16em 0.05em;
  margin-top: 0.04em;
  transform: rotate(-1deg);
}
.vb-hero__bot {
  display: grid;
  grid-template-columns: 1.4fr auto;
  align-items: end;
  gap: 32px;
  border-top: 2px solid #0A0A0A;
  padding-top: 32px;
}
@media (max-width: 880px) {
  .vb-hero__bot { grid-template-columns: 1fr; align-items: start; }
}
.vb-sub {
  font-size: clamp(18px, 1.8vw, 24px);
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -0.012em;
  max-width: 44ch;
  text-wrap: pretty;
}
.vb-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 28px;
  background: #0A0A0A;
  color: #FFD400;
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0;
  transition: background-color 0.2s var(--ease), color 0.2s var(--ease), transform 0.15s var(--ease);
  white-space: nowrap;
  min-height: 56px;
}
.vb-btn:hover { background: #FF0066; color: #fff; }
.vb-btn:active { transform: scale(0.96); }
.vb-btn--xl {
  padding: 22px 38px;
  font-size: clamp(18px, 2vw, 28px);
  min-height: 76px;
}
.vb-btn span { transition: transform 0.25s var(--ease); display: inline-block; }
.vb-btn:hover span { transform: translateX(4px); }

.vb-marquee {
  background: #0A0A0A;
  color: #FFD400;
  border-bottom: 2px solid #0A0A0A;
  overflow: hidden;
  padding: 28px 0;
}
.vb-marquee__track {
  display: inline-flex;
  align-items: center;
  gap: 32px;
  white-space: nowrap;
  animation: vbMarq 28s linear infinite;
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 4.4vw, 64px);
  letter-spacing: -0.025em;
  text-transform: uppercase;
}
.vb-marquee__track span:nth-child(even) {
  font-family: "Fraunces", serif;
  font-weight: 380;
  font-style: italic;
  color: #FF0066;
  font-size: 0.85em;
}
@keyframes vbMarq {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.vb-marquee:hover .vb-marquee__track { animation-play-state: paused; }

.vb-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 2px solid #0A0A0A;
}
@media (max-width: 880px) { .vb-stats { grid-template-columns: 1fr; } }
.vb-stat {
  padding: 56px clamp(24px, 4vw, 48px);
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-right: 2px solid #0A0A0A;
}
.vb-stat:last-child { border-right: 0; }
@media (max-width: 880px) {
  .vb-stat { border-right: 0; border-bottom: 2px solid #0A0A0A; }
  .vb-stat:last-child { border-bottom: 0; }
}
.vb-stat--alt { background: #FF0066; color: #fff; }
.vb-stat-num {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 800;
  font-size: clamp(60px, 9vw, 156px);
  line-height: 0.85;
  letter-spacing: -0.05em;
}
.vb-stat-num i {
  font-style: italic;
  font-family: "Fraunces", serif;
  font-weight: 360;
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
.vb-stat-cap {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.35;
  max-width: 26ch;
  text-wrap: pretty;
}

.vb-services {
  padding: 96px clamp(24px, 4vw, 48px);
  max-width: 1640px;
  margin: 0 auto;
}
.vb-services__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 56px;
  padding-bottom: 28px;
  border-bottom: 2px solid #0A0A0A;
  flex-wrap: wrap;
}
.vb-tag {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.vb-h2 {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 800;
  font-size: clamp(36px, 5.6vw, 88px);
  line-height: 0.92;
  letter-spacing: -0.035em;
  text-wrap: balance;
  flex: 1 1 100%;
}
.vb-h2 em {
  font-style: italic;
  font-family: "Fraunces", serif;
  font-weight: 380;
  color: #FF0066;
}
.vb-list { display: flex; flex-direction: column; }
.vb-list li {
  display: grid;
  grid-template-columns: 80px minmax(0, 1.4fr) minmax(0, 1.2fr) 60px;
  align-items: center;
  gap: 24px;
  padding: 32px 0;
  border-bottom: 2px solid #0A0A0A;
  transition: padding 0.45s var(--ease-out), background-color 0.3s var(--ease);
  cursor: pointer;
}
.vb-list li:first-child { border-top: 2px solid #0A0A0A; }
.vb-list li:hover { padding-left: 24px; background: #0A0A0A; color: #FFD400; }
.vb-list li:hover .vb-li__arrow { transform: translateX(8px); color: #FFD400; }
.vb-list li:hover h3 { color: #FFD400; }
.vb-list li:hover p { color: rgba(255,212,0,0.75); }
.vb-li__num {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 800;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1;
  letter-spacing: -0.04em;
}
.vb-list h3 {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 700;
  font-size: clamp(22px, 2.6vw, 36px);
  letter-spacing: -0.025em;
  line-height: 1.05;
  transition: color 0.3s var(--ease);
}
.vb-list p {
  font-size: 15px;
  line-height: 1.5;
  max-width: 50ch;
  transition: color 0.3s var(--ease);
}
.vb-li__arrow {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 700;
  font-size: 32px;
  text-align: right;
  transition: transform 0.3s var(--ease), color 0.3s var(--ease);
  color: #0A0A0A;
}
@media (max-width: 880px) {
  .vb-list li { grid-template-columns: 50px 1fr; gap: 16px; }
  .vb-list li > p, .vb-list li > .vb-li__arrow { grid-column: 2; }
}

.vb-quote {
  background: #0A0A0A;
  color: #FFD400;
  padding: 96px clamp(24px, 4vw, 48px);
  text-align: center;
  border-top: 2px solid #0A0A0A;
  border-bottom: 2px solid #0A0A0A;
}
.vb-quote blockquote {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 4.6vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.035em;
  max-width: 22ch;
  margin: 0 auto;
  text-wrap: balance;
}
.vb-quote em {
  font-style: italic;
  font-family: "Fraunces", serif;
  font-weight: 380;
  color: #FF0066;
}
.vb-quote cite {
  display: block;
  font-style: normal;
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 600;
  font-size: 14px;
  margin-top: 32px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255,212,0,0.6);
}

.vb-cta {
  background: #FF0066;
  color: #fff;
  padding: 120px clamp(24px, 4vw, 48px);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}
.vb-h2--cta {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 800;
  font-size: clamp(64px, 11vw, 200px);
  line-height: 0.86;
  letter-spacing: -0.045em;
  text-wrap: balance;
}
.vb-h2--cta em {
  font-style: italic;
  font-family: "Fraunces", serif;
  font-weight: 360;
  color: #FFD400;
}
.vb-cta .vb-btn--xl {
  background: #fff;
  color: #FF0066;
}
.vb-cta .vb-btn--xl:hover {
  background: #0A0A0A;
  color: #FFD400;
}
.vb-cta-mail {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 14px;
  letter-spacing: 0.02em;
}
.vb-cta-mail a { border-bottom: 1px solid rgba(255,255,255,0.5); padding-bottom: 1px; }
.vb-cta-mail a:hover { border-color: #fff; }

.vb-foot {
  background: #0A0A0A;
  color: #FFD400;
  padding: 56px clamp(24px, 4vw, 48px) 32px;
}
.vb-foot__big {
  display: block;
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 800;
  font-size: clamp(64px, 14vw, 220px);
  line-height: 0.85;
  letter-spacing: -0.045em;
  margin-bottom: 32px;
}
.vb-foot__big i {
  font-style: italic;
  font-family: "Fraunces", serif;
  font-weight: 360;
  color: #FF0066;
}
.vb-foot__row {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 500;
  font-size: 13px;
  color: rgba(255,212,0,0.55);
  border-top: 2px solid rgba(255,212,0,0.2);
  padding-top: 24px;
}






/* ═════════════════════════════════════════════════════ */
/*  MOBILE RESPONSIVE FIXES                               */
/* ═════════════════════════════════════════════════════ */

@media (max-width: 720px) {
  /* Picker — already collapses names, just tighten */
  .picker { top: 8px; }

  /* ── Version A · mobile ── */
  .va-nav {
    grid-template-columns: 1fr auto;
    padding: 16px 20px;
    gap: 12px;
  }
  .va-nav nav { display: none; }
  .va-pill { padding: 10px 14px; font-size: 13px; min-height: 40px; }

  .va-hero { padding: 32px 20px 64px; }
  .va-h1 { font-size: clamp(38px, 11vw, 56px); }
  .va-sub { font-size: 16px; }
  .va-cta-row { width: 100%; }
  .va-btn { padding: 13px 18px; font-size: 14px; min-height: 46px; }

  .va-stats { gap: 20px; padding-top: 24px; margin-top: 40px; }
  .va-stat-num { font-size: 28px; }
  .va-stat-label { font-size: 11px; }

  .va-dash { margin-top: 48px; border-radius: 14px; }
  .va-dash__bar { padding: 10px 14px; gap: 6px; font-size: 10px; grid-template-columns: auto auto auto 1fr auto; }
  .va-dash__title { padding-left: 8px; font-size: 9px; }
  .va-dash__grid { grid-template-columns: 1fr; }
  .va-dash__card { padding: 18px; min-height: auto; }
  .va-dash__val { font-size: 26px; }

  .va-logos { padding: 48px 20px; gap: 20px; }
  .va-logos__row { gap: 20px; font-size: 16px; }

  .va-services, .va-process, .va-cta { padding: 64px 20px; }
  .va-h2 { font-size: clamp(32px, 8vw, 48px); }
  .va-h2--xl { font-size: clamp(40px, 10vw, 60px); }
  .va-section-head { margin-bottom: 36px; }
  .va-grid { gap: 12px; }
  .va-card { padding: 22px 22px 24px; min-height: auto; }
  .va-card h3 { font-size: 19px; }

  .va-quote { padding: 56px 20px; }
  .va-quote blockquote { font-size: 22px; max-width: 24ch; }
  .va-quote-mark { left: -32px; font-size: 64px; }

  .va-cta__inner { padding: 48px 24px; border-radius: 18px; }
  .va-cta__inner p { font-size: 15px; }

  .va-foot { padding: 24px 20px; font-size: 10px; gap: 12px; }

  /* ── Version B · mobile ── */
  .vb-nav {
    grid-template-columns: 1fr auto;
    padding: 16px 20px;
    gap: 12px;
  }
  .vb-nav nav { display: none; }
  .vb-pill { padding: 12px 16px; font-size: 13px; min-height: 44px; }
  .vb-brand { font-size: 16px; }

  .vb-hero { padding: 40px 20px; gap: 32px; }
  .vb-h1 { font-size: clamp(48px, 14vw, 72px); line-height: 0.88; }
  .vb-line--alt { padding: 0 0.10em 0.04em; }
  .vb-hero__bot { padding-top: 24px; gap: 20px; }
  .vb-sub { font-size: 17px; }
  .vb-btn { padding: 16px 22px; font-size: 14px; min-height: 50px; }
  .vb-btn--xl { padding: 18px 26px; font-size: 16px; min-height: 60px; }

  .vb-marquee { padding: 18px 0; }
  .vb-marquee__track { font-size: 32px; gap: 20px; }

  .vb-stats { grid-template-columns: 1fr; }
  .vb-stat { padding: 40px 20px; }
  .vb-stat-num { font-size: clamp(56px, 18vw, 96px); }
  .vb-stat-cap { font-size: 14px; }

  .vb-services { padding: 64px 20px; }
  .vb-services__head { margin-bottom: 32px; padding-bottom: 20px; gap: 16px; }
  .vb-h2 { font-size: clamp(32px, 9vw, 52px); }
  .vb-list li { padding: 24px 0; gap: 12px; }
  .vb-li__num { font-size: 28px; }
  .vb-list h3 { font-size: 22px; }
  .vb-list p { font-size: 14px; }
  .vb-list li:hover { padding-left: 12px; }

  .vb-quote { padding: 64px 20px; }
  .vb-quote blockquote { font-size: clamp(26px, 7vw, 36px); max-width: 18ch; }
  .vb-quote cite { margin-top: 24px; font-size: 12px; }

  .vb-cta { padding: 80px 20px; gap: 28px; }
  .vb-h2--cta { font-size: clamp(48px, 14vw, 80px); }

  .vb-foot { padding: 40px 20px 24px; }
  .vb-foot__big { font-size: clamp(48px, 16vw, 80px); margin-bottom: 24px; }
  .vb-foot__row { font-size: 11px; }
}
