/* ============================================================
   VIRTUAL LABS — MAIN STYLESHEET
   Palette: deep purple-graphite / enterprise premium
   Primary accent:  Azure Blue  #0078d4
   Secondary glow:  Purple      #7c3aed
   Highlight:       Cyan        #06b6d4
   Background:      Midnight    #0d0a1f
   ============================================================ */

:root {
  --vl-dark:        #0d0a1f;
  --vl-dark2:       #110e2a;
  --vl-purple:      #7c3aed;
  --vl-purple-soft: #a78bfa;
  --vl-cyan:        #06b6d4;
  --vl-azure:       #0078d4;
  --vl-white:       #ffffff;
  --vl-off-white:   #f6f6fb;
  --vl-muted:       rgba(255,255,255,0.55);
  --vl-text:        #1c1a32;
  --vl-subtext:     #5b5675;
  --vl-border:      rgba(255,255,255,0.10);
  --vl-radius:      14px;
  --vl-radius-lg:   22px;
  --vl-transition:  0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* === RESET OVRO === */
body.vl-page {
  margin: 0;
  padding: 0;
  background: var(--vl-dark);
  font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.vl-page * { box-sizing: border-box; }

/* === LABEL CHIP === */
.vl-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--vl-purple-soft);
  padding: 6px 14px;
  border: 1px solid rgba(124,58,237,0.35);
  border-radius: 100px;
  background: rgba(124,58,237,0.10);
  margin-bottom: 28px;
}
.vl-label::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--vl-purple-soft);
  display: block;
}

/* === TYPOGRAPHY === */
.vl-h2 {
  font-size: clamp(1.9rem, 3.5vw, 2.9rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.025em;
  margin: 0 0 20px;
}
.vl-h2--dark  { color: var(--vl-text); }
.vl-h2--light { color: var(--vl-white); }

.vl-lead {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--vl-muted);
  max-width: 560px;
  margin: 0 0 36px;
}
.vl-lead--dark { color: var(--vl-subtext); }

/* === BUTTONS === */
.vl-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform var(--vl-transition), box-shadow var(--vl-transition);
  cursor: pointer;
  border: none;
  font-family: inherit;
}
.vl-btn:hover { transform: translateY(-2px); text-decoration: none; }
.vl-btn:active { transform: translateY(0); }

.vl-btn--primary {
  background: linear-gradient(135deg, #7c3aed 0%, #4f46e5 100%);
  color: #fff !important;
  box-shadow: 0 4px 20px rgba(124,58,237,0.4);
}
.vl-btn--primary:hover { box-shadow: 0 8px 32px rgba(124,58,237,0.55); }

.vl-btn--ghost {
  background: transparent;
  color: rgba(255,255,255,0.8) !important;
  border: 1px solid rgba(255,255,255,0.2);
}
.vl-btn--ghost:hover {
  background: rgba(255,255,255,0.07);
  color: #fff !important;
  border-color: rgba(255,255,255,0.35);
}

.vl-btn--outline-dark {
  background: transparent;
  color: var(--vl-text) !important;
  border: 1.5px solid #d0cfe8;
}
.vl-btn--outline-dark:hover {
  background: var(--vl-off-white);
  border-color: #b3b0d8;
}

/* === LAYOUT === */
.vl-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.vl-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 32px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background var(--vl-transition), border-color var(--vl-transition);
}
.vl-nav.scrolled {
  background: rgba(13,10,31,0.92);
  border-bottom: 1px solid var(--vl-border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.vl-nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.vl-nav__logo img {
  height: 32px;
  width: auto;
  filter: invert(1);
  mix-blend-mode: screen;
}

.vl-nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0; padding: 0;
}
.vl-nav__links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color var(--vl-transition);
}
.vl-nav__links a:hover { color: #fff; }

.vl-nav__mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.25rem;
  cursor: pointer;
  padding: 6px;
}

/* ============================================================
   DROPDOWN NAVIGATION
   ============================================================ */

/* Chevron icon inside trigger links */
.vl-nav__chevron {
  font-size: 0.60rem;
  margin-left: 2px;
  transition: transform var(--vl-transition);
  opacity: 0.55;
}
.vl-nav__item--drop:hover .vl-nav__chevron,
.vl-nav__item--drop.open  .vl-nav__chevron {
  transform: rotate(180deg);
  opacity: 1;
}

/* Bridge hover gap — invisible fill between trigger and panel */
.vl-nav__item--drop::after {
  content: '';
  position: absolute;
  top: 100%;
  left: -12px; right: -12px;
  height: 18px; /* matches dropdown gap so cursor doesn't leave hover zone */
}

/* Dropdown panel */
.vl-nav__item--drop {
  position: relative;
}
.vl-nav__dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 240px;
  background: rgba(11, 8, 28, 0.97);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 14px;
  padding: 8px;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.20s ease,
    transform 0.20s ease;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 24px 48px rgba(0,0,0,0.50), 0 0 0 1px rgba(255,255,255,0.04);
  z-index: 100;
}
/* Subtle top pointer triangle */
.vl-nav__dropdown::before {
  content: '';
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 10px; height: 10px;
  background: rgba(11,8,28,0.97);
  border-left: 1px solid rgba(255,255,255,0.10);
  border-top: 1px solid rgba(255,255,255,0.10);
  rotate: 45deg;
}

/* Open state — desktop hover OR mobile .open class */
.vl-nav__item--drop:hover > .vl-nav__dropdown,
.vl-nav__item--drop.open  > .vl-nav__dropdown {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: all;
}

/* Individual dropdown items */
.vl-nav__dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 9px;
  text-decoration: none;
  transition: background var(--vl-transition);
}
.vl-nav__dropdown-item:hover {
  background: rgba(124,58,237,0.10);
  text-decoration: none;
}
.vl-nav__dropdown-icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: rgba(124,58,237,0.12);
  border: 1px solid rgba(124,58,237,0.20);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.80rem;
  color: #a78bfa;
  flex-shrink: 0;
  transition: background var(--vl-transition), border-color var(--vl-transition);
}
.vl-nav__dropdown-item:hover .vl-nav__dropdown-icon {
  background: rgba(124,58,237,0.20);
  border-color: rgba(124,58,237,0.35);
}
.vl-nav__dropdown-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.vl-nav__dropdown-label {
  font-size: 0.84rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  display: block;
}
.vl-nav__dropdown-desc {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.35);
  display: block;
}

/* Mobile: dropdown opens as inline accordion below the trigger */
@media (max-width: 900px) {
  .vl-nav__dropdown {
    position: static;
    transform: none !important;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    border: none;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    padding: 0 0 0 16px;
    transition: opacity 0.2s ease, max-height 0.25s ease;
    pointer-events: none;
  }
  .vl-nav__dropdown::before { display: none; }
  .vl-nav__item--drop.open > .vl-nav__dropdown {
    opacity: 1;
    max-height: 300px;
    pointer-events: all;
  }
  .vl-nav__dropdown-item { padding: 8px 4px; }
  .vl-nav__dropdown-icon { width: 26px; height: 26px; font-size: 0.72rem; }
  .vl-nav__dropdown-label { font-size: 0.82rem; }
  .vl-nav__dropdown-desc  { display: none; }
}

/* ============================================================
   SUB-NAVIGATION BAR (page links — always visible)
   ============================================================ */
.vl-subnav {
  position: fixed;
  top: 70px;
  left: 0; right: 0;
  height: 36px;
  z-index: 998;
  background: rgba(9,6,22,0.86);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 32px;
  transition: background var(--vl-transition);
}
.vl-subnav.scrolled {
  background: rgba(9,6,22,0.96);
}
.vl-subnav__list {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
  margin: 0; padding: 0;
}
.vl-subnav__link {
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.40);
  text-decoration: none;
  padding: 0 18px;
  height: 36px;
  display: flex;
  align-items: center;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.vl-subnav__link:hover { color: rgba(255,255,255,0.80); text-decoration: none; }
.vl-subnav__link.active { color: rgba(255,255,255,0.95); border-bottom-color: var(--vl-purple-soft); }
.vl-subnav__sep {
  width: 1px; height: 14px;
  background: rgba(255,255,255,0.09);
  flex-shrink: 0;
}
@media (max-width: 768px) { .vl-subnav { display: none; } }

/* ============================================================
   SCROLL REVEAL SYSTEM (all pages)
   ============================================================ */
.vl-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.62s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.62s cubic-bezier(0.4, 0, 0.2, 1);
  transition-delay: var(--delay, 0ms);
}
.vl-reveal.revealed { opacity: 1; transform: none; }
.vl-reveal--left  { transform: translateX(-30px); }
.vl-reveal--right { transform: translateX(30px); }
.vl-reveal--scale { transform: scale(0.94); }
.vl-reveal--left.revealed,
.vl-reveal--right.revealed,
.vl-reveal--scale.revealed { transform: none; }

/* ============================================================
   HERO
   ============================================================ */
.vl-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
  padding: 140px 32px 80px;
}

.vl-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(124,58,237,0.45) 0%, transparent 65%),
    radial-gradient(ellipse 60% 50% at 80% 50%, rgba(6,182,212,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 20% 80%, rgba(79,70,229,0.15) 0%, transparent 60%),
    linear-gradient(170deg, #1a0d3a 0%, #0d0a1f 35%, #050410 100%);
  pointer-events: none;
}

.vl-hero__content {
  position: relative;
  z-index: 2;
  max-width: 860px;
}

.vl-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(124,58,237,0.15);
  border: 1px solid rgba(124,58,237,0.4);
  border-radius: 100px;
  padding: 8px 18px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #c4b5fd;
  margin-bottom: 32px;
}
.vl-hero__eyebrow-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #a78bfa;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:0.5; transform:scale(0.8); }
}

.vl-hero__title {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -0.04em;
  color: #fff;
  margin: 0 0 28px;
}
.vl-hero__title span {
  background: linear-gradient(90deg, #a78bfa 20%, #38bdf8 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.vl-hero__sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.7;
  color: rgba(255,255,255,0.58);
  max-width: 620px;
  margin: 0 auto 44px;
}

.vl-hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

/* Stats bar */
.vl-hero__stats {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 80px;
}
.vl-hero__stat {
  padding: 0 32px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.12);
}
.vl-hero__stat:last-child { border-right: none; }
.vl-hero__stat-number {
  display: block;
  font-size: 1.9rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
  line-height: 1;
  margin-bottom: 4px;
}
.vl-hero__stat-label {
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Platform screenshot / floating window visual */
.vl-hero__visual {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
}
.vl-hero__visual-glow {
  position: absolute;
  top: -40px; left: 50%;
  transform: translateX(-50%);
  width: 70%; height: 80px;
  background: radial-gradient(ellipse, rgba(124,58,237,0.4) 0%, transparent 70%);
  pointer-events: none;
}
.vl-hero__visual-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(124,58,237,0.3);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.05),
    0 40px 100px rgba(0,0,0,0.6),
    0 0 80px rgba(124,58,237,0.15);
}
.vl-hero__visual-wrap img {
  width: 100%;
  height: auto;
  display: block;
}

/* ============================================================
   HERO FLOATING WINDOW (Cursor-style)
   Activated when .vl-hero__visual has .with-chrome
   ============================================================ */

/* Scene wrapper handles the perspective so children can float freely */
.vl-hero__visual-scene {
  transform: perspective(1400px) rotateX(3deg) rotateY(0deg);
  transform-origin: center bottom;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.vl-hero__visual.with-chrome:hover .vl-hero__visual-scene {
  transform: perspective(1400px) rotateX(1deg) rotateY(0deg);
}

/* The window card floats */
.vl-hero__visual.with-chrome .vl-hero__visual-wrap {
  border-radius: 14px;
  border: 1px solid rgba(124,58,237,0.35);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.06),
    0 50px 120px rgba(0,0,0,0.7),
    0 0 100px rgba(124,58,237,0.18),
    0 0 40px rgba(0,120,212,0.1);
  animation: window-float 5s ease-in-out infinite;
  overflow: hidden;
}
@keyframes window-float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-10px); }
}

/* Chrome bar */
.vl-window-chrome {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 16px;
  background: linear-gradient(180deg, #120d28 0%, #0a0818 100%);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  user-select: none;
}
.vl-window-chrome__dots {
  display: flex;
  gap: 7px;
  flex-shrink: 0;
}
.vl-window-chrome__dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  opacity: 0.85;
}
.vl-window-chrome__dot--red   { background: #ff5f57; box-shadow: 0 0 6px rgba(255,95,87,0.5); }
.vl-window-chrome__dot--amber { background: #ffbd2e; box-shadow: 0 0 6px rgba(255,189,46,0.4); }
.vl-window-chrome__dot--green { background: #28ca41; box-shadow: 0 0 6px rgba(40,202,65,0.4); }

.vl-window-chrome__title {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.73rem;
  color: rgba(255,255,255,0.32);
  font-weight: 500;
  letter-spacing: 0.03em;
}
.vl-window-chrome__fabric-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px; height: 16px;
  background: linear-gradient(135deg, #742774, #b14fc5);
  border-radius: 3px;
  font-size: 0.6rem;
  font-weight: 900;
  color: #fff;
  flex-shrink: 0;
}
.vl-window-chrome__controls {
  display: flex;
  gap: 6px;
  flex-shrink: 0;
}
.vl-window-chrome__controls span {
  display: block;
  width: 14px; height: 14px;
  border-radius: 3px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
}

/* Diagram image inside the window */
.vl-window-chrome__body {
  position: relative;
  background: #050410;
}
.vl-window-chrome__body img {
  width: 100%;
  height: auto;
  display: block;
}

/* Subtle bottom reflection / depth shadow */
.vl-hero__visual-reflection {
  position: absolute;
  bottom: -60px;
  left: 10%;
  right: 10%;
  height: 60px;
  background: linear-gradient(to bottom, rgba(124,58,237,0.12), transparent);
  filter: blur(20px);
  border-radius: 50%;
  pointer-events: none;
}

/* Scroll hint */
.vl-scroll-hint {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.3);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: float-hint 2.5s ease-in-out infinite;
}
@keyframes float-hint {
  0%,100% { transform:translateX(-50%) translateY(0); }
  50%      { transform:translateX(-50%) translateY(6px); }
}

/* ============================================================
   PAGE QUICK-ACCESS STRIP (homepage)
   ============================================================ */
.vl-pages-strip {
  padding: 0 0 64px;
  background: var(--vl-dark);
}
.vl-pages-strip__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
@media (max-width: 1100px) {
  .vl-pages-strip__grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 720px) {
  .vl-pages-strip__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .vl-pages-strip__grid { grid-template-columns: 1fr; }
}
.vl-pages-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  padding: 13px 14px;
  text-decoration: none;
  transition:
    background var(--vl-transition),
    border-color var(--vl-transition),
    transform var(--vl-transition);
  position: relative;
  overflow: hidden;
}
.vl-pages-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(124,58,237,0.07) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--vl-transition);
}
.vl-pages-card:hover {
  background: rgba(124,58,237,0.07);
  border-color: rgba(124,58,237,0.25);
  transform: translateY(-2px);
  text-decoration: none;
}
.vl-pages-card:hover::before { opacity: 1; }

.vl-pages-card__icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(124,58,237,0.12);
  border: 1px solid rgba(124,58,237,0.20);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.90rem;
  color: #a78bfa;
  flex-shrink: 0;
  transition: background var(--vl-transition), border-color var(--vl-transition);
}
.vl-pages-card__icon--ms {
  background: rgba(0,120,212,0.12);
  border-color: rgba(0,120,212,0.20);
  color: #38bdf8;
}
.vl-pages-card:hover .vl-pages-card__icon {
  background: rgba(124,58,237,0.22);
  border-color: rgba(124,58,237,0.40);
}
.vl-pages-card:hover .vl-pages-card__icon--ms {
  background: rgba(0,120,212,0.22);
  border-color: rgba(0,120,212,0.40);
}
.vl-pages-card__body {
  flex: 1;
  min-width: 0;
}
.vl-pages-card__title {
  font-size: 0.88rem;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  margin-bottom: 3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.vl-pages-card__desc {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.40;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.vl-pages-card__arrow {
  color: rgba(255,255,255,0.20);
  font-size: 0.75rem;
  flex-shrink: 0;
  transition: color var(--vl-transition), transform var(--vl-transition);
}
.vl-pages-card:hover .vl-pages-card__arrow {
  color: #a78bfa;
  transform: translateX(3px);
}

/* ============================================================
   ECOSYSTEM LOGOS
   ============================================================ */
.vl-ecosystem {
  background: #ffffff;
  padding: 44px 0;
  border-top: 1px solid #ebebf5;
  border-bottom: 1px solid #ebebf5;
}
.vl-ecosystem__label {
  text-align: center;
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #9b97ba;
  margin-bottom: 28px;
}
.vl-ecosystem__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 44px;
  flex-wrap: wrap;
}
.vl-eco-logo {
  display: flex;
  align-items: center;
  gap: 9px;
  opacity: 0.7;
  transition: opacity var(--vl-transition);
}
.vl-eco-logo:hover { opacity: 1; }
.vl-eco-logo__name {
  font-size: 0.92rem;
  font-weight: 700;
  color: #2d2b45;
  letter-spacing: -0.01em;
}

/* ════════════════════════════════════════════════════════════
   TRUST CARD — Lavender pill with scrolling tech logos (v3)
   ════════════════════════════════════════════════════════════ */
.vl-trust-section {
  padding: 48px 32px 0;
}
.vl-trust-card {
  max-width: 1320px;
  margin: 0 auto;
  background: #edeaf6;
  border-radius: 22px;
  overflow: hidden;
  position: relative;
  padding: 30px 0 26px;
}
.vl-trust-card__label {
  text-align: center;
  font-size: 0.70rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #9b8bbf;
  margin-bottom: 22px;
  padding: 0 32px;
}
/* Edge fades inside card */
.vl-trust-card::before,
.vl-trust-card::after {
  content: '';
  position: absolute;
  top: 54px; bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}
.vl-trust-card::before { left:  0; background: linear-gradient(90deg,  #edeaf6, transparent); }
.vl-trust-card::after  { right: 0; background: linear-gradient(-90deg, #edeaf6, transparent); }
/* Items inside trust card — dark text on light background */
.vl-trust-card .vl-marquee-item {
  color: rgba(20, 16, 48, 0.40);
  border-right-color: rgba(20, 16, 48, 0.07);
}
.vl-trust-card .vl-marquee-item:hover { color: rgba(20, 16, 48, 0.82); }
.vl-trust-card .vl-marquee-item img  { display: block; flex-shrink: 0; }

/* AI providers bar — dark strip below trust card */
.vl-ai-marquee {
  overflow: hidden;
  position: relative;
  padding: 18px 0;
  background: rgba(255,255,255,0.015);
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.vl-ai-marquee::before,
.vl-ai-marquee::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 140px;
  z-index: 2;
  pointer-events: none;
}
.vl-ai-marquee::before { left:  0; background: linear-gradient(90deg,  var(--vl-dark), transparent); }
.vl-ai-marquee::after  { right: 0; background: linear-gradient(-90deg, var(--vl-dark), transparent); }

/* ════════════════════════════════════════════════════════════
   DUAL MARQUEE — Tech Stack (→ left) + AI Providers (← right)
   ════════════════════════════════════════════════════════════ */
.vl-dual-marquee {
  overflow: hidden;
  background: rgba(255,255,255,0.015);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  position: relative;
}
/* Fade-out edges */
.vl-dual-marquee::before,
.vl-dual-marquee::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 140px;
  z-index: 2;
  pointer-events: none;
}
.vl-dual-marquee::before { left: 0;  background: linear-gradient(90deg,  var(--vl-dark) 0%, transparent 100%); }
.vl-dual-marquee::after  { right: 0; background: linear-gradient(-90deg, var(--vl-dark) 0%, transparent 100%); }

/* Individual bar rows */
.vl-marquee-row {
  overflow: hidden;
  padding: 18px 0;
}
.vl-marquee-row + .vl-marquee-row {
  border-top: 1px solid rgba(255,255,255,0.04);
  padding-bottom: 20px;
}

/* Scrolling track — LEFT direction (tech stack) */
.vl-marquee-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: marquee-left 24s linear infinite;
}
/* Scrolling track — RIGHT direction (AI providers) */
.vl-marquee-track--right {
  animation: marquee-right 42s linear infinite;
}
.vl-marquee-track:hover,
.vl-marquee-track--right:hover {
  animation-play-state: paused;
}

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

/* Marquee items */
.vl-marquee-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 44px;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.32);
  letter-spacing: 0.04em;
  white-space: nowrap;
  border-right: 1px solid rgba(255,255,255,0.06);
  transition: color 0.22s;
}
.vl-marquee-item:hover { color: rgba(255,255,255,0.80); }
.vl-marquee-item i { font-size: 1rem; }
.vl-marquee-label {
  font-size: 0.67rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.10em;
}

/* Microsoft 4-square */
.ms-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  width: 22px; height: 22px;
  flex-shrink: 0;
}
.ms-grid span { display: block; border-radius: 1px; }
.ms-q1 { background: #f35325; }
.ms-q2 { background: #81bc06; }
.ms-q3 { background: #05a6f0; }
.ms-q4 { background: #ffba08; }

.fabric-icon {
  width: 22px; height: 22px;
  background: linear-gradient(135deg, #742774, #b14fc5);
  border-radius: 5px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.65rem; font-weight: 900; color: #fff;
  flex-shrink: 0;
}
.azure-icon {
  width: 22px; height: 22px;
  background: linear-gradient(135deg, #0078d4, #50a0e4);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 0.6rem;
  flex-shrink: 0;
}
.databricks-icon {
  width: 22px; height: 22px;
  background: linear-gradient(135deg, #ff3621, #ff9134);
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 0.6rem;
  flex-shrink: 0;
}
.powerbi-icon {
  width: 22px; height: 22px;
  background: linear-gradient(135deg, #e8b600, #f2c811);
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 0.6rem;
  flex-shrink: 0;
}
.mspartner-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #f0f0f8;
  border: 1px solid #d4d2ee;
  border-radius: 8px;
  padding: 7px 14px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #2d2b45;
}

/* ============================================================
   PLATFORM / WHAT WE DO
   ============================================================ */
.vl-platform {
  background: var(--vl-dark);
  padding: 100px 0;
}
.vl-platform__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.vl-platform__visual img {
  width: 100%;
  border-radius: var(--vl-radius-lg);
  border: 1px solid rgba(124,58,237,0.25);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 40px rgba(124,58,237,0.1);
}
.vl-platform__list {
  list-style: none;
  padding: 0;
  margin: 0 0 40px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.vl-platform__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
}
.vl-platform__list li::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, #a78bfa, #06b6d4);
  margin-top: 9px;
  flex-shrink: 0;
}

/* ============================================================
   CAPABILITIES
   ============================================================ */
.vl-capabilities {
  background: var(--vl-off-white);
  padding: 100px 0;
}
.vl-capabilities__header {
  text-align: center;
  margin-bottom: 64px;
}
.vl-capabilities__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.vl-cap-card {
  background: #ffffff;
  border: 1px solid #eae9f5;
  border-radius: var(--vl-radius-lg);
  padding: 36px 32px;
  transition: transform var(--vl-transition), box-shadow var(--vl-transition), border-color var(--vl-transition);
}
.vl-cap-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(124,58,237,0.1);
  border-color: #c4b5fd;
}
.vl-cap-card__icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(124,58,237,0.12), rgba(6,182,212,0.08));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  color: var(--vl-purple);
  margin-bottom: 22px;
}
.vl-cap-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--vl-text);
  margin-bottom: 10px;
  line-height: 1.3;
}
.vl-cap-card__body {
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--vl-subtext);
  margin: 0;
}

/* ============================================================
   HOW WE WORK
   ============================================================ */
.vl-method {
  background: var(--vl-dark2);
  padding: 100px 0;
}
.vl-method__header {
  text-align: center;
  margin-bottom: 64px;
}
.vl-method__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.05);
  border-radius: var(--vl-radius-lg);
  overflow: hidden;
}
.vl-step {
  padding: 44px 32px;
  background: var(--vl-dark2);
  transition: background var(--vl-transition);
}
.vl-step:hover { background: rgba(124,58,237,0.07); }
.vl-step__number {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.05em;
  color: rgba(124,58,237,0.2);
  margin-bottom: 20px;
}
.vl-step__accent {
  width: 32px; height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--vl-purple), var(--vl-cyan));
  margin-bottom: 20px;
}
.vl-step__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}
.vl-step__body {
  font-size: 0.86rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.45);
  margin: 0;
}

/* ============================================================
   BLUEPRINTS
   ============================================================ */
.vl-blueprints {
  background: var(--vl-off-white);
  padding: 100px 0;
}
.vl-blueprints__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
  flex-wrap: wrap;
  gap: 20px;
}
.vl-blueprints__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.vl-blueprint-card {
  background: #ffffff;
  border: 1px solid #eae9f5;
  border-radius: var(--vl-radius-lg);
  overflow: hidden;
  transition: transform var(--vl-transition), box-shadow var(--vl-transition);
}
.vl-blueprint-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(124,58,237,0.12);
}
.vl-blueprint-card__visual {
  height: 180px;
  background: linear-gradient(135deg, #1a0d3a 0%, #0d1b3e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.vl-blueprint-card__visual-icon {
  font-size: 2.5rem;
  color: rgba(167,139,250,0.6);
  position: relative;
  z-index: 1;
}
.vl-blueprint-card__visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 80% at 50% 120%, rgba(124,58,237,0.3) 0%, transparent 70%);
}
.vl-blueprint-card__body { padding: 28px; }
.vl-blueprint-card__tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--vl-purple);
  background: rgba(124,58,237,0.1);
  border-radius: 6px;
  padding: 4px 10px;
  margin-bottom: 14px;
}
.vl-blueprint-card__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--vl-text);
  margin-bottom: 10px;
  line-height: 1.35;
}
.vl-blueprint-card__desc {
  font-size: 0.86rem;
  color: var(--vl-subtext);
  line-height: 1.6;
  margin: 0;
}

/* ============================================================
   PROOF STATS
   ============================================================ */
.vl-proof {
  background: var(--vl-dark);
  padding: 80px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.vl-proof__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}
.vl-proof__item-number {
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  background: linear-gradient(90deg, #a78bfa, #38bdf8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
}
.vl-proof__item-label {
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 1.5;
}

/* ============================================================
   INSIGHTS
   ============================================================ */
.vl-insights {
  background: #ffffff;
  padding: 100px 0;
}
.vl-insights__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
  flex-wrap: wrap;
  gap: 20px;
}
.vl-insights__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.vl-insight-card {
  border: 1px solid #eae9f5;
  border-radius: var(--vl-radius-lg);
  padding: 32px;
  transition: transform var(--vl-transition), border-color var(--vl-transition);
}
.vl-insight-card:hover {
  transform: translateY(-3px);
  border-color: #c4b5fd;
}
.vl-insight-card__tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--vl-cyan);
  background: rgba(6,182,212,0.1);
  border-radius: 6px;
  padding: 4px 10px;
  margin-bottom: 18px;
}
.vl-insight-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--vl-text);
  line-height: 1.4;
  margin-bottom: 12px;
}
.vl-insight-card__excerpt {
  font-size: 0.86rem;
  line-height: 1.65;
  color: var(--vl-subtext);
  margin-bottom: 24px;
}
.vl-insight-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  color: #b0adc8;
}
.vl-insight-card__read {
  color: var(--vl-purple);
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
}
.vl-insight-card__read:hover { color: var(--vl-purple-soft); }

/* ============================================================
   CONTACT
   ============================================================ */
.vl-contact {
  background: var(--vl-dark);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.vl-contact::before {
  content: '';
  position: absolute;
  top: -60px; right: -80px;
  width: 500px; height: 500px;
  background: radial-gradient(ellipse, rgba(124,58,237,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.vl-contact__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.vl-contact__tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--vl-purple-soft);
  margin-bottom: 20px;
}
.vl-contact__reasons {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.vl-contact__reason {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
}
.vl-contact__reason i {
  color: var(--vl-purple-soft);
  margin-top: 2px;
  flex-shrink: 0;
}

/* Form */
.vl-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.vl-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.vl-form__group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.vl-form__label {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.04em;
}
.vl-form input,
.vl-form select,
.vl-form textarea {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  padding: 13px 16px;
  font-size: 0.9rem;
  color: #fff;
  font-family: inherit;
  transition: border-color var(--vl-transition), background var(--vl-transition);
  outline: none;
  width: 100%;
}
.vl-form input::placeholder,
.vl-form textarea::placeholder { color: rgba(255,255,255,0.25); }
.vl-form input:focus,
.vl-form select:focus,
.vl-form textarea:focus {
  border-color: rgba(124,58,237,0.6);
  background: rgba(124,58,237,0.07);
}
.vl-form select option { background: #1a0d3a; color: #fff; }
.vl-form textarea { resize: vertical; min-height: 130px; }

/* ============================================================
   FOOTER
   ============================================================ */
.vl-footer {
  background: #060410;
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 60px 0 40px;
}
.vl-footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.vl-footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  text-decoration: none;
}
.vl-footer__logo img {
  height: 28px; width: auto;
  filter: invert(1);
  mix-blend-mode: screen;
}
.vl-footer__tagline {
  font-size: 0.85rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.35);
  max-width: 280px;
  margin: 0;
}
.vl-footer__social {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}
.vl-footer__social a {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  text-decoration: none;
  transition: background var(--vl-transition), color var(--vl-transition);
}
.vl-footer__social a:hover {
  background: rgba(124,58,237,0.2);
  color: #fff;
  border-color: rgba(124,58,237,0.5);
}
.vl-footer__col-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 20px;
}
.vl-footer__links {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.vl-footer__links a {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color var(--vl-transition);
}
.vl-footer__links a:hover { color: rgba(255,255,255,0.85); }
.vl-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.vl-footer__copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.25);
}
.vl-footer__legal { display: flex; gap: 20px; }
.vl-footer__legal a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.25);
  text-decoration: none;
  transition: color var(--vl-transition);
}
.vl-footer__legal a:hover { color: rgba(255,255,255,0.6); }

/* ============================================================
   HERO CONTEXT DIAGRAM — Atlan-style 3-row layout, VL branded
   Lives inside .vl-window-chrome__body replacing the screenshot
   ============================================================ */

.vl-ctx-diagram {
  background: #06041a;
  padding: 20px 24px 16px;
  display: flex;
  flex-direction: column;
  gap: 0;
  min-height: 340px;
  font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
}

/* ── Top / Bottom rows ── */
.vl-ctx-row {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.vl-ctx-row__label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  width: 80px;
  flex-shrink: 0;
  line-height: 1.4;
}
.vl-ctx-row__groups {
  display: flex;
  gap: 8px;
  flex: 1;
  flex-wrap: wrap;
}

/* ── Groups ── */
.vl-ctx-group {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 8px;
  padding: 10px 12px;
  min-width: 130px;
  flex: 1;
}
.vl-ctx-group__title {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.22);
  margin-bottom: 8px;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.vl-ctx-group__items {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

/* ── Individual service items ── */
.vl-ctx-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.73rem;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 5px;
  padding: 4px 8px;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  cursor: default;
}
.vl-ctx-item:hover {
  background: rgba(0,120,212,0.12);
  border-color: rgba(0,120,212,0.3);
  color: #fff;
}
.vl-ctx-item i { font-size: 0.62rem; opacity: 0.7; }
.vl-ctx-item--pbi { border-color: rgba(242,200,17,0.25); }
.vl-ctx-item--pbi i { color: #f2c811; opacity: 1; }

/* ── Connector lines between rows and central ── */
.vl-ctx-connectors {
  display: flex;
  justify-content: center;
  gap: 60px;
  padding: 0 100px;
  height: 32px;
  align-items: center;
  position: relative;
}
.vl-ctx-connector {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  flex: 1;
  max-width: 140px;
}
.vl-ctx-connector__line {
  width: 1px;
  flex: 1;
  background: linear-gradient(to bottom, rgba(0,120,212,0.4), rgba(124,58,237,0.4));
  position: relative;
}
/* Arrowhead pointing down */
.vl-ctx-connector__line::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 5px; height: 5px;
  border-right: 1px solid rgba(0,120,212,0.5);
  border-bottom: 1px solid rgba(0,120,212,0.5);
}
/* Arrowhead pointing up (from sources to OneLake) */
.vl-ctx-connector--up .vl-ctx-connector__line::after {
  bottom: auto;
  top: -3px;
  transform: translateX(-50%) rotate(225deg);
}
.vl-ctx-connector__label {
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(0,120,212,0.55);
  white-space: nowrap;
  background: rgba(0,120,212,0.08);
  border: 1px solid rgba(0,120,212,0.15);
  border-radius: 4px;
  padding: 2px 7px;
}

/* ── Central OneLake layer ── */
.vl-ctx-central {
  background: rgba(0,5,30,0.8);
  border: 1px solid rgba(0,120,212,0.35);
  border-radius: 10px;
  padding: 16px 20px;
  position: relative;
  overflow: hidden;
}
.vl-ctx-central::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 120% at 50% 100%, rgba(0,120,212,0.1) 0%, transparent 65%);
  pointer-events: none;
}
.vl-ctx-central::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,120,212,0.6), rgba(124,58,237,0.4), transparent);
}
.vl-ctx-central__badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 12px;
}
.vl-ctx-central__logo {
  color: #0078d4;
  font-size: 0.9rem;
  text-shadow: 0 0 10px rgba(0,120,212,0.7);
}
.vl-ctx-central__items {
  display: flex;
  gap: 8px;
}
.vl-ctx-central__item {
  flex: 1;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 7px;
  padding: 10px 8px;
  text-align: center;
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  line-height: 1.4;
  cursor: default;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.vl-ctx-central__item:hover {
  background: rgba(0,120,212,0.1);
  border-color: rgba(0,120,212,0.3);
  color: rgba(255,255,255,0.85);
}
.vl-ctx-central__item--highlight {
  background: rgba(124,58,237,0.1);
  border-color: rgba(124,58,237,0.3);
  color: rgba(167,139,250,0.8);
}
.vl-ctx-central__item--highlight:hover {
  background: rgba(124,58,237,0.18);
  border-color: rgba(124,58,237,0.5);
  color: #a78bfa;
}

/* ── Responsive: collapse on small screens ── */
@media (max-width: 640px) {
  .vl-ctx-diagram { padding: 14px; }
  .vl-ctx-row { flex-direction: column; align-items: flex-start; gap: 10px; }
  .vl-ctx-row__label { width: auto; }
  .vl-ctx-central__items { flex-wrap: wrap; }
  .vl-ctx-central__item { min-width: 45%; }
  .vl-ctx-connectors { gap: 24px; padding: 0 20px; }
}

/* ============================================================
   PAGE HERO — used on inner pages (Capabilities, Blueprints, etc.)
   ============================================================ */
.vl-page-hero {
  position: relative;
  padding: 140px 32px 80px;
  background: var(--vl-dark);
  overflow: hidden;
}
.vl-page-hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 60% -20%, rgba(124,58,237,0.3) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 10% 80%, rgba(0,120,212,0.1) 0%, transparent 60%),
    linear-gradient(170deg, #1a0d3a 0%, #0d0a1f 50%, #050410 100%);
  pointer-events: none;
}
.vl-page-hero__content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}
.vl-page-hero__title {
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.06;
  letter-spacing: -0.035em;
  color: #fff;
  margin: 0 0 20px;
}
.vl-page-hero__sub {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
  max-width: 560px;
  margin: 0;
}

/* Active nav link */
.vl-nav__link--active {
  color: #fff !important;
  position: relative;
}
.vl-nav__link--active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0; right: 0;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--vl-purple), var(--vl-cyan));
}

/* Wide container variant for the arch map page */
.vl-container--wide {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
}

/* Page-level arch map removes top padding — hero handles spacing */
.vl-arch-map--page {
  padding-top: 48px;
  padding-bottom: 0;
}

/* ============================================================
   ANIMATED DIAGRAM — SVG flow animation
   Applied to .vl-diagram-svg elements in blueprint cards
   and the hero diagram component (future)
   ============================================================ */
.vl-flow-path {
  stroke-dasharray: 300;
  stroke-dashoffset: 300;
  transition: stroke-dashoffset 1.2s ease;
}
.vl-flow-path.is-visible {
  stroke-dashoffset: 0;
}
.vl-diagram-node {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.vl-diagram-node.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   INTERACTIVE AZURE ECOSYSTEM MAP (Atlan-style)
   ============================================================ */

.vl-arch-map {
  background: var(--vl-dark2);
  padding: 100px 0 80px;
}
.vl-arch-map__header {
  text-align: center;
  margin-bottom: 56px;
}

/* The main card container */
.vl-arch-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  overflow: visible;
  position: relative;
}

/* Each horizontal layer row */
.vl-arch-layer {
  display: flex;
  align-items: stretch;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.vl-arch-layer:last-child { border-bottom: none; }

/* Left label column */
.vl-arch-layer__label {
  width: 140px;
  flex-shrink: 0;
  padding: 24px 20px;
  border-right: 1px solid rgba(255,255,255,0.06);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  background: rgba(255,255,255,0.02);
}
.vl-arch-layer__label span {
  font-size: 0.82rem;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.02em;
}
.vl-arch-layer__label small {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.28);
  font-weight: 400;
}

/* Content area */
.vl-arch-layer__content {
  flex: 1;
  display: flex;
  gap: 0;
  padding: 20px 24px;
  flex-wrap: wrap;
  gap: 16px;
}

/* Group of nodes within a layer */
.vl-arch-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 160px;
}
.vl-arch-group__title {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 4px;
}
.vl-arch-group__nodes {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* Individual node */
.vl-arch-node {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  cursor: pointer;
  position: relative;
  transition: background var(--vl-transition), border-color var(--vl-transition), color var(--vl-transition), transform var(--vl-transition);
  white-space: nowrap;
}
.vl-arch-node:hover,
.vl-arch-node:focus {
  background: rgba(0,120,212,0.1);
  border-color: rgba(0,120,212,0.35);
  color: #fff;
  transform: translateY(-1px);
  outline: none;
  z-index: 10;
}

/* Node icon */
.vl-arch-node__icon {
  width: 24px;
  height: 24px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  color: #fff;
  flex-shrink: 0;
}
.vl-arch-node__icon--sm {
  width: 20px;
  height: 20px;
  font-size: 0.6rem;
}

/* Tooltip */
.vl-arch-node__tip {
  position: absolute;
  bottom: calc(100% + 10px);
  left: 0;
  background: #12082a;
  border: 1px solid rgba(124,58,237,0.35);
  border-radius: 10px;
  padding: 14px 16px;
  width: 260px;
  font-size: 0.79rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.55;
  font-weight: 400;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 200;
  box-shadow: 0 12px 40px rgba(0,0,0,0.6), 0 0 20px rgba(124,58,237,0.1);
  white-space: normal;
}
.vl-arch-node:hover .vl-arch-node__tip,
.vl-arch-node:focus .vl-arch-node__tip {
  opacity: 1;
}

/* Connector lines between layers */
.vl-arch-connector {
  display: flex;
  justify-content: center;
  gap: 80px;
  padding: 0 24px 0 164px;
  height: 28px;
  align-items: center;
  position: relative;
}
.vl-arch-connector__line {
  width: 1px;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,120,212,0.3), rgba(124,58,237,0.3));
  position: relative;
}
.vl-arch-connector__line::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 5px;
  height: 5px;
  border-right: 1px solid rgba(0,120,212,0.5);
  border-bottom: 1px solid rgba(0,120,212,0.5);
  transform: translateX(-50%) rotate(45deg);
}

/* ── CENTRAL ONELAKE LAYER ── */
.vl-arch-layer--central {
  background: rgba(0,120,212,0.04);
  border-top: 1px solid rgba(0,120,212,0.2);
  border-bottom: 1px solid rgba(0,120,212,0.2);
}
.vl-arch-layer--central .vl-arch-layer__label {
  background: rgba(0,120,212,0.06);
  border-right-color: rgba(0,120,212,0.2);
}
.vl-arch-layer--central .vl-arch-layer__label span {
  color: #38bdf8;
}

.vl-arch-central-card {
  flex: 1;
  background: rgba(0,5,30,0.6);
  border: 1px solid rgba(0,120,212,0.3);
  border-radius: 12px;
  padding: 20px 28px;
  position: relative;
  overflow: hidden;
}
.vl-arch-central-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 100% at 50% 100%, rgba(0,120,212,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.vl-arch-central-card__title {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.vl-arch-central-card__logo {
  font-size: 1rem;
  color: #0078d4;
  text-shadow: 0 0 12px rgba(0,120,212,0.6);
}

/* Bronze / Silver / Gold zones */
.vl-arch-central-card__zones {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.vl-arch-zone {
  padding: 12px 20px;
  border-radius: 8px;
  text-align: center;
  min-width: 120px;
}
.vl-arch-zone--bronze {
  background: rgba(180,90,20,0.15);
  border: 1px solid rgba(180,90,20,0.35);
}
.vl-arch-zone--silver {
  background: rgba(150,160,180,0.1);
  border: 1px solid rgba(150,160,180,0.3);
}
.vl-arch-zone--gold {
  background: rgba(180,140,20,0.12);
  border: 1px solid rgba(180,140,20,0.35);
}
.vl-arch-zone__label {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.vl-arch-zone--bronze .vl-arch-zone__label { color: #c87941; }
.vl-arch-zone--silver .vl-arch-zone__label { color: #a0b0c0; }
.vl-arch-zone--gold   .vl-arch-zone__label { color: #c8a440; }
.vl-arch-zone__sub {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.3);
  margin-top: 3px;
}
.vl-arch-zone__arrow {
  color: rgba(0,120,212,0.5);
  font-size: 0.8rem;
}
.vl-arch-central-card__footer {
  margin-top: 14px;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.04em;
}

/* ── GOVERNANCE BAR ── */
.vl-arch-governance {
  border-top: 1px solid rgba(124,58,237,0.2);
  background: rgba(124,58,237,0.04);
  border-radius: 0 0 20px 20px;
  padding: 18px 24px;
}
.vl-arch-governance__label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(167,139,250,0.5);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.vl-arch-governance__nodes {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.vl-arch-node--gov {
  background: rgba(124,58,237,0.06);
  border-color: rgba(124,58,237,0.15);
}
.vl-arch-node--gov:hover,
.vl-arch-node--gov:focus {
  background: rgba(124,58,237,0.14);
  border-color: rgba(124,58,237,0.4);
}

/* Responsive collapse */
@media (max-width: 991px) {
  .vl-arch-layer { flex-direction: column; }
  .vl-arch-layer__label {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    flex-direction: row;
    gap: 8px;
    align-items: center;
    padding: 12px 16px;
  }
  .vl-arch-layer__content { padding: 16px; }
  .vl-arch-connector { display: none; }
  .vl-arch-central-card__zones { flex-direction: column; }
  .vl-arch-zone { min-width: unset; width: 100%; }
  .vl-arch-zone__arrow { transform: rotate(90deg); }
}

/* Legacy ecosystem-map stubs — kept for backwards compat */
.vl-ecosystem-map { background: var(--vl-dark); padding: 100px 0; }
.vl-eco-node { position: relative; }
.vl-eco-node__tooltip { display: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991px) {
  .vl-nav__links { display: none; }
  .vl-nav__cta .vl-btn { display: none; }
  .vl-nav__mobile-toggle { display: block; }
  .vl-platform__grid { grid-template-columns: 1fr; gap: 48px; }
  .vl-capabilities__grid { grid-template-columns: repeat(2, 1fr); }
  .vl-method__steps { grid-template-columns: repeat(2, 1fr); }
  .vl-blueprints__grid { grid-template-columns: 1fr; }
  .vl-insights__grid { grid-template-columns: 1fr; }
  .vl-contact__inner { grid-template-columns: 1fr; gap: 48px; }
  .vl-footer__top { grid-template-columns: 1fr 1fr; }
  .vl-proof__grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
}
@media (max-width: 640px) {
  .vl-container { padding: 0 20px; }
  .vl-capabilities__grid { grid-template-columns: 1fr; }
  .vl-method__steps { grid-template-columns: 1fr; }
  .vl-footer__top { grid-template-columns: 1fr; }
  .vl-hero__stat { padding: 16px; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.10); }
  .vl-hero__stat:last-child { border-bottom: none; }
  .vl-form__row { grid-template-columns: 1fr; }
  .vl-proof__grid { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   HOMEPAGE V6 — LV DESIGN SYSTEM
   Plus Jakarta Sans · OKLCH accent spectrum · lv- prefix
   ============================================================ */

/* ── V6 Accent Token System (OKLCH Spectrum) ── */
:root {
  --accent:        oklch(72% 0.17 200);
  --accent-cyan:   oklch(72% 0.17 200);
  --accent-blue:   oklch(62% 0.18 250);
  --accent-purple: oklch(58% 0.22 295);
  --accent-pink:   oklch(65% 0.20 340);
  --accent-orange: oklch(72% 0.18 50);
}

/* ── Accent Progress Strip ── */
#lv-accent-strip {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: var(--accent);
  z-index: 9999;
  transition: background 0.8s ease, width 0.12s linear;
  pointer-events: none;
}

/* ── Base ── */
body.lv-page {
  font-family: 'Plus Jakarta Sans', 'Inter', ui-sans-serif, system-ui, sans-serif;
  background: #0d0a1f;
  color: #fff;
  margin: 0;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.lv-page * { box-sizing: border-box; }

/* ── Container ── */
.lv-c {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ── Sections ── */
.lv-s { padding: 100px 0; background: #0d0a1f; }
.lv-s--alt { background: #0f0d2e; }

.lv-s-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
  display: block;
  transition: color 0.6s ease;
}
.lv-s-title {
  font-size: clamp(1.9rem, 3.6vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: #fff;
  margin: 0 0 18px;
}
.lv-s-sub {
  font-size: 1.02rem;
  line-height: 1.65;
  color: rgba(231,227,255,.62);
  max-width: 60ch;
  margin: 0 0 40px;
}

/* ── Reveal animation ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.65s cubic-bezier(0.4,0,0.2,1), transform 0.65s cubic-bezier(0.4,0,0.2,1);
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 80ms; }
.reveal-d2 { transition-delay: 160ms; }
.reveal-d3 { transition-delay: 240ms; }

/* ── Buttons ── */
.lv-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  font-family: inherit;
  transition: filter .18s, transform .15s;
}
.lv-btn--p {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 8px 22px -8px rgba(0,0,0,.4);
  transition: filter .18s, transform .15s, background 0.6s ease, box-shadow 0.6s ease;
}
.lv-btn--p:hover { filter: brightness(1.1); transform: translateY(-1px); }
.lv-btn--s {
  background: rgba(255,255,255,.06);
  color: rgba(231,227,255,.85);
  border: 1px solid rgba(255,255,255,.14);
}
.lv-btn--s:hover { background: rgba(255,255,255,.10); transform: translateY(-1px); }

/* ── Card base ── */
.lv-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 18px;
  padding: 28px 26px;
  transition: background .22s, box-shadow .22s;
}
.lv-card:hover {
  background: rgba(255,255,255,.07);
  box-shadow: 0 20px 50px -20px rgba(0,0,0,.5);
}
.lv-card__accent {
  width: 36px; height: 36px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}
.lv-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 10px;
  letter-spacing: -0.01em;
}
.lv-card p {
  font-size: 0.9rem;
  color: rgba(231,227,255,.58);
  line-height: 1.6;
  margin: 0;
}

/* ══════════════════════════════════════════
   NAV V6
══════════════════════════════════════════ */
.lv-nav-v6 {
  position: sticky;
  top: 16px;
  z-index: 60;
  padding: 0 24px;
  width: 100%;
}
.lv-nav-v6__pill {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px 10px 18px;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  color: #0a0820;
  box-shadow: 0 24px 60px -20px rgba(10,8,32,.4), 0 6px 18px -8px rgba(10,8,32,.28);
}
.lv-nav-v6__logo {
  display: grid;
  place-items: center;
  width: 36px; height: 36px;
  border-radius: 9px;
  background: #0a0820;
  padding: 5px;
  text-decoration: none;
  flex-shrink: 0;
  margin-right: 6px;
}
.lv-nav-v6__logo img {
  width: 100%; height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.lv-nav-v6__links {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
}
.lv-nav-v6__link {
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  color: #0a0820;
  text-decoration: none;
  opacity: .72;
  transition: opacity .18s, background .18s;
  white-space: nowrap;
}
.lv-nav-v6__link:hover { opacity: 1; background: rgba(10,8,32,.06); }
.lv-nav-v6__right {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}
.lv-nav-v6__ms {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 11px 7px 8px;
  border: 1px solid rgba(10,8,32,.12);
  border-radius: 10px;
  font-size: 10px;
  line-height: 1.1;
  color: #0a0820;
}
.lv-nav-v6__ms-grid {
  width: 16px; height: 16px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.lv-nav-v6__ms-grid span { display: block; background: #1a1340; border-radius: 2px; }
.lv-nav-v6__ms-text { display: flex; flex-direction: column; gap: 1px; }
.lv-nav-v6__ms-text b { font-weight: 700; font-size: 11px; letter-spacing: -.01em; }
.lv-nav-v6__ms-text em { font-style: normal; font-size: 9px; text-transform: uppercase; letter-spacing: .12em; color: #534f6b; }
.lv-nav-v6__ineed {
  padding: 9px 18px;
  border-radius: 12px;
  background: #0a0820;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  border: 0;
  cursor: pointer;
  font-family: inherit;
  transition: background .18s;
  white-space: nowrap;
}
.lv-nav-v6__ineed:hover { background: #1a1340; }

/* ══════════════════════════════════════════
   HERO V6
══════════════════════════════════════════ */
.lv-hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(124,58,237,.28) 0%, transparent 56%),
    radial-gradient(ellipse 40% 40% at 80% 80%, rgba(0,120,212,.08) 0%, transparent 55%),
    linear-gradient(180deg, #0d0827 0%, #0d0a1f 50%, #050410 100%);
}
.lv-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../img/all-images/bg/white_abstract_thought.jpeg') center/cover no-repeat;
  mix-blend-mode: screen;
  opacity: 0.28;
  pointer-events: none;
  z-index: 1;
}
.lv-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
  z-index: 0;
}
.lv-hero__inner {
  flex: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 48px;
  padding: 72px 48px 64px;
  position: relative;
  z-index: 2;
  max-width: 1240px;
  margin: 0 auto;
  width: 100%;
}
.lv-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #c9beff;
  margin-bottom: 20px;
  opacity: 0;
  animation: lv-fade-up 0.6s 0.2s forwards ease;
}
.lv-hero__eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #c9beff;
  box-shadow: 0 0 10px #c9beff;
}
.lv-hero__title {
  font-size: clamp(2.6rem, 5.2vw, 4.8rem);
  font-weight: 800;
  line-height: .95;
  letter-spacing: -0.04em;
  color: #fff;
  margin: 0 0 22px;
  opacity: 0;
  animation: lv-fade-up 0.7s 0.35s forwards ease;
}
.lv-hero__title em {
  font-style: normal;
  background: linear-gradient(95deg, #c9beff 0%, #7c5cff 40%, #3b82f6 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.lv-hero__sub {
  font-size: clamp(.95rem, 1.6vw, 1.08rem);
  color: rgba(231,227,255,.72);
  line-height: 1.6;
  margin: 0 0 36px;
  max-width: 46ch;
  opacity: 0;
  animation: lv-fade-up 0.7s 0.5s forwards ease;
}
.lv-hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  opacity: 0;
  animation: lv-fade-up 0.6s 0.65s forwards ease;
}
@keyframes lv-fade-up {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: none; }
}

/* ── Hero Router Widget ── */
.lv-hr {
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(24px) saturate(150%);
  -webkit-backdrop-filter: blur(24px) saturate(150%);
  border: 1px solid rgba(255,255,255,.20);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 1px 0 rgba(255,255,255,.2) inset, 0 40px 80px -20px rgba(0,0,0,.55), 0 0 80px -24px rgba(124,92,255,.28);
  opacity: 0;
  animation: lv-fade-up 0.8s 0.5s forwards ease;
}
.lv-hr__head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 22px;
  border-bottom: 1px solid rgba(255,255,255,.10);
}
.lv-hr__pulse {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #c9beff;
  box-shadow: 0 0 0 0 rgba(201,190,255,.5);
  animation: lv-pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes lv-pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(201,190,255,.5); }
  50%     { box-shadow: 0 0 0 6px rgba(201,190,255,0); }
}
.lv-hr__title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .05em;
  color: rgba(231,227,255,.82);
}
.lv-hr__rows { padding: 8px; display: flex; flex-direction: column; gap: 3px; }
.lv-hr__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 16px;
  border-radius: 14px;
  background: transparent;
  border: 0;
  color: rgba(231,227,255,.72);
  font-size: 13.5px;
  font-weight: 500;
  font-family: inherit;
  cursor: pointer;
  text-align: left;
  transition: background .18s, color .18s;
}
.lv-hr__row:hover {
  background: rgba(255,255,255,.10);
  color: #fff;
}
.lv-hr__arrow { font-size: 15px; opacity: .45; transition: opacity .18s, transform .18s; }
.lv-hr__row:hover .lv-hr__arrow { opacity: 1; transform: translateX(3px); }
.lv-hr__foot {
  padding: 13px 22px;
  border-top: 1px solid rgba(255,255,255,.07);
  font-size: 11px;
  color: rgba(231,227,255,.38);
  margin: 0;
}

/* ── Trust strip (marquee) ── */
.lv-trust {
  background: #07060f;
  padding: 22px 0;
  border-top: 1px solid rgba(255,255,255,.05);
  border-bottom: 1px solid rgba(255,255,255,.05);
  overflow: hidden;
}
.lv-trust__inner {
  display: flex;
  align-items: center;
  overflow: hidden;
}
.lv-trust__scroll {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  animation: lv-marquee 30s linear infinite;
  padding-right: 28px;
  white-space: nowrap;
}
@keyframes lv-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.lv-trust__item {
  font-size: 12px;
  font-weight: 600;
  color: rgba(231,227,255,.38);
  letter-spacing: .02em;
}
.lv-trust__sep {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: rgba(255,255,255,.14);
  flex-shrink: 0;
}

/* ══════════════════════════════════════════
   PROBLEM / CHALLENGE
══════════════════════════════════════════ */
.lv-problem__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.lv-problem__num {
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  font-weight: 900;
  color: rgba(124,92,255,.16);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 18px;
}

/* ══════════════════════════════════════════
   SIZING & COST
══════════════════════════════════════════ */
.lv-sz {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}
.lv-sz__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 28px;
}
.lv-sz__col {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  padding: 22px;
}
.lv-sz__col--ours {
  background: rgba(124,92,255,.10);
  border-color: rgba(124,92,255,.25);
}
.lv-sz__k { font-size: 12px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.lv-sz__col p {
  font-size: 13px;
  color: rgba(231,227,255,.58);
  margin: 0 0 14px;
  line-height: 1.5;
}
.lv-sz__link {
  font-size: 13px;
  font-weight: 600;
  color: rgba(231,227,255,.6);
  text-decoration: none;
}
.lv-sz__link:hover { color: #fff; }
.lv-sz__cta {
  display: block;
  width: 100%;
  padding: 10px 14px;
  border-radius: 10px;
  background: rgba(124,92,255,.22);
  border: 1px solid rgba(124,92,255,.38);
  color: #c9beff;
  font-size: 13px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  text-align: left;
  transition: background .18s;
}
.lv-sz__cta:hover { background: rgba(124,92,255,.35); }
.lv-sz__media {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 20px;
  overflow: hidden;
  min-height: 260px;
}

/* Estimator window (shared v5→v6) */
.lv-estimator-window {
  width: 100%;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 1px 0 rgba(255,255,255,.22) inset, 0 40px 80px -20px rgba(0,0,0,.5);
}
.lv-estimator-chrome {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 13px 20px;
  background: rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.10);
}
.lv-estimator-chrome__dot { width: 11px; height: 11px; border-radius: 50%; }
.lv-estimator-chrome__dot:nth-child(1) { background: #ff5f57; }
.lv-estimator-chrome__dot:nth-child(2) { background: #ffbd2e; }
.lv-estimator-chrome__dot:nth-child(3) { background: #28c840; }
.lv-estimator-chrome__title {
  margin-left: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .10em;
  color: rgba(255,255,255,.65);
  text-transform: uppercase;
}
.lv-estimator-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 14px;
}
.lv-estimator-cell {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 13px;
  padding: 16px 18px;
  transition: background .2s;
}
.lv-estimator-cell:hover { background: rgba(255,255,255,.17); }
.lv-estimator-cell__dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  display: inline-block;
  margin-bottom: 10px;
}
.lv-estimator-cell__value {
  font-size: clamp(15px, 1.5vw, 20px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.025em;
  display: block;
  line-height: 1.1;
}
.lv-estimator-cell__label {
  font-size: 9px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  font-weight: 600;
  display: block;
  margin-top: 6px;
}
.lv-estimator-footer {
  padding: 13px 18px;
  background: rgba(255,255,255,.05);
  border-top: 1px solid rgba(255,255,255,.10);
  font-size: 11px;
  color: rgba(255,255,255,.5);
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.lv-estimator-footer__badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 11px;
  background: rgba(124,92,255,.2);
  border: 1px solid rgba(124,92,255,.36);
  border-radius: 99px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .06em;
  color: #d4ccff;
}

/* ══════════════════════════════════════════
   CAPABILITIES GRID
══════════════════════════════════════════ */
.lv-cap__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 48px;
}

/* ══════════════════════════════════════════
   SUPPORT GRID
══════════════════════════════════════════ */
.lv-sup__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 40px 0 44px;
}
.lv-sup__card-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}

/* ══════════════════════════════════════════
   BLUEPRINTS
══════════════════════════════════════════ */
.lv-bp__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 60px;
  position: relative;
}
.lv-bp__steps::before {
  content: '';
  position: absolute;
  top: 22px;
  left: calc(16.66% + 22px);
  right: calc(16.66% + 22px);
  height: 1px;
  background: linear-gradient(90deg, rgba(124,92,255,.5), rgba(6,182,212,.4), rgba(0,120,212,.4));
}
.lv-bp__step { text-align: center; }
.lv-bp__dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--accent);
  margin: 0 auto 18px;
  box-shadow: 0 0 0 4px rgba(124,92,255,.15), 0 0 20px rgba(124,92,255,.3);
  transition: background 0.6s ease, box-shadow 0.6s ease;
}
.lv-bp__step h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 10px;
  letter-spacing: -0.01em;
}
.lv-bp__step p {
  font-size: 0.88rem;
  color: rgba(231,227,255,.58);
  line-height: 1.6;
  margin: 0;
}
.lv-bp__mini-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 48px;
}
.lv-bp__mini {
  padding: 8px 18px;
  border-radius: 99px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  font-size: 12px;
  font-weight: 600;
  color: rgba(231,227,255,.6);
}

/* ══════════════════════════════════════════
   PACKAGES (V3 hybrid)
══════════════════════════════════════════ */
.lv-pkg__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.lv-pkg__card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 22px;
  padding: 30px 26px 26px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: background .22s, box-shadow .22s;
}
.lv-pkg__card:hover {
  background: rgba(255,255,255,.07);
  box-shadow: 0 24px 60px -20px rgba(0,0,0,.5);
}
.lv-pkg__card--feat {
  background: rgba(124,92,255,.12);
  border-color: rgba(124,92,255,.32);
  box-shadow: 0 0 60px -20px rgba(124,92,255,.22);
}
.lv-pkg__card--feat:hover { background: rgba(124,92,255,.18); }
.lv-pkg__icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(124,92,255,.15);
  border: 1px solid rgba(124,92,255,.25);
  font-size: 22px;
}
.lv-pkg__tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(231,227,255,.4);
}
.lv-pkg__card h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  margin: 0;
  letter-spacing: -0.02em;
}
.lv-pkg__desc {
  font-size: 0.88rem;
  color: rgba(231,227,255,.58);
  margin: 0;
  line-height: 1.5;
}
.lv-pkg__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.lv-pkg__list li {
  font-size: 13px;
  color: rgba(231,227,255,.68);
  padding-left: 18px;
  position: relative;
  line-height: 1.4;
}
.lv-pkg__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
  transition: color 0.6s ease;
}

/* ══════════════════════════════════════════
   VENDOR ECOSYSTEM GRID
══════════════════════════════════════════ */
.lv-vendor__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 48px;
}
.lv-vendor__item {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(231,227,255,.72);
  transition: background .2s, border-color .2s, color .2s;
  text-decoration: none;
}
.lv-vendor__item:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.14);
  color: #fff;
}
.lv-vendor__item-icon {
  width: 32px; height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.lv-vendor__item-icon img {
  max-width: 32px;
  max-height: 24px;
  object-fit: contain;
}
.lv-vendor__item-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* ══════════════════════════════════════════
   INSIGHTS
══════════════════════════════════════════ */
.lv-insights__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 44px;
}
.lv-insights__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.lv-insight-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 20px;
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: background .2s, transform .2s;
}
.lv-insight-card:hover {
  background: rgba(255,255,255,.07);
  transform: translateY(-2px);
}
.lv-insight-card__tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 99px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  background: rgba(6,182,212,.12);
  color: #06b6d4;
  align-self: flex-start;
}
.lv-insight-card__title {
  font-size: 1.02rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
  letter-spacing: -0.01em;
  line-height: 1.3;
}
.lv-insight-card__excerpt {
  font-size: 0.88rem;
  color: rgba(231,227,255,.58);
  line-height: 1.6;
  margin: 0;
  flex: 1;
}
.lv-insight-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(231,227,255,.38);
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,.06);
}
.lv-insight-card__read {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  font-size: 12px;
  transition: color 0.6s ease;
}

/* ══════════════════════════════════════════
   CONTACT V6
══════════════════════════════════════════ */
.lv-contact-v6 {
  padding: 100px 0;
  background:
    radial-gradient(ellipse 80% 70% at 50% 0%, rgba(124,58,237,.16) 0%, transparent 60%),
    linear-gradient(170deg, #100830 0%, #0d0a1f 100%);
  border-top: 1px solid rgba(255,255,255,.06);
}
.lv-contact-v6__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.lv-contact-v6__tag {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
  transition: color 0.6s ease;
}
.lv-contact-v6__title {
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
  line-height: 1.1;
  margin: 0 0 18px;
}
.lv-contact-v6__sub {
  font-size: 1rem;
  color: rgba(231,227,255,.62);
  line-height: 1.65;
  margin: 0 0 28px;
}
.lv-contact-v6__reasons { display: flex; flex-direction: column; gap: 11px; }
.lv-contact-v6__reason {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: 14px;
  color: rgba(231,227,255,.68);
  line-height: 1.45;
}
.lv-contact-v6__check {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: rgba(124,92,255,.18);
  border: 1px solid rgba(124,92,255,.38);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-size: 10px;
  color: #c9beff;
  margin-top: 1px;
}
.lv-form-v6 {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 22px;
  padding: 30px;
}
.lv-form-v6__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}
.lv-form-v6__group { margin-bottom: 14px; }
.lv-form-v6__group:last-child { margin-bottom: 0; }
.lv-form-v6__label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: rgba(231,227,255,.5);
  letter-spacing: .04em;
  margin-bottom: 7px;
  text-transform: uppercase;
}
.lv-form-v6 input,
.lv-form-v6 select,
.lv-form-v6 textarea {
  width: 100%;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 11px;
  padding: 11px 15px;
  font-size: 14px;
  font-family: inherit;
  color: #fff;
  outline: none;
  transition: border-color .18s, background .18s;
  -webkit-appearance: none;
}
.lv-form-v6 input:focus,
.lv-form-v6 select:focus,
.lv-form-v6 textarea:focus {
  border-color: rgba(124,92,255,.5);
  background: rgba(255,255,255,.09);
}
.lv-form-v6 select option { background: #1a1340; color: #fff; }
.lv-form-v6 textarea { min-height: 96px; resize: vertical; }
.lv-form-v6 input::placeholder,
.lv-form-v6 textarea::placeholder { color: rgba(231,227,255,.28); }
.lv-form-v6__submit {
  width: 100%;
  padding: 14px 24px;
  border-radius: 13px;
  background: var(--accent);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  font-family: inherit;
  border: 0;
  cursor: pointer;
  margin-top: 4px;
  transition: filter .18s, transform .15s, background 0.6s ease;
}
.lv-form-v6__submit:hover { filter: brightness(1.1); transform: translateY(-1px); }

/* ══════════════════════════════════════════
   FOOTER V6
══════════════════════════════════════════ */
.lv-footer-v6 {
  background: #07060f;
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 60px 0 0;
}
.lv-footer-v6__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px 48px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 56px;
}
.lv-footer-v6__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #fff;
  margin-bottom: 14px;
}
.lv-footer-v6__logo-mark {
  width: 32px; height: 32px;
  border-radius: 9px;
  background: #0a0820;
  display: grid;
  place-items: center;
  padding: 5px;
  flex-shrink: 0;
}
.lv-footer-v6__logo-mark img {
  width: 100%; height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.lv-footer-v6__logo-name { font-weight: 700; font-size: 15px; }
.lv-footer-v6__tagline {
  font-size: 14px;
  color: rgba(231,227,255,.48);
  line-height: 1.65;
  margin: 0 0 18px;
  max-width: 26ch;
}
.lv-footer-v6__ms {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px 7px 9px;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 10px;
  font-size: 11px;
  color: rgba(231,227,255,.48);
}
.lv-footer-v6__ms-mark {
  width: 15px; height: 15px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.lv-footer-v6__ms-mark span { display: block; background: rgba(231,227,255,.38); border-radius: 2px; }
.lv-footer-v6__col h4 {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(231,227,255,.32);
  margin: 0 0 18px;
}
.lv-footer-v6__col ul { list-style: none; margin: 0; padding: 0; }
.lv-footer-v6__col li { margin-bottom: 10px; }
.lv-footer-v6__col a {
  font-size: 14px;
  color: rgba(231,227,255,.58);
  text-decoration: none;
  transition: color .18s;
}
.lv-footer-v6__col a:hover { color: #fff; }
.lv-footer-v6__soon {
  font-size: 14px;
  color: rgba(231,227,255,.38);
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.lv-footer-v6__soon::after {
  content: 'SOON';
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .12em;
  padding: 2px 6px;
  border-radius: 4px;
  background: rgba(124,92,255,.14);
  border: 1px solid rgba(124,92,255,.22);
  color: rgba(201,190,255,.55);
}
.lv-footer-v6__bottom {
  max-width: 1180px;
  margin: 0 auto;
  padding: 20px 28px;
  border-top: 1px solid rgba(255,255,255,.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(231,227,255,.32);
}

/* ══════════════════════════════════════════
   FAB + ROUTER OVERLAY
══════════════════════════════════════════ */
.lv-fab {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 500;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, #7c5cff 0%, #5a36e6 100%);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  font-family: inherit;
  border: 0;
  cursor: pointer;
  box-shadow: 0 12px 30px -8px rgba(91,52,255,.6), 0 0 0 1px rgba(255,255,255,.12) inset;
  transition: transform .18s, filter .18s;
}
.lv-fab:hover { transform: scale(1.04); filter: brightness(1.08); }
.lv-fab__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.7);
  animation: lv-pulse 2s ease-in-out infinite;
}
.lv-rt {
  position: fixed;
  inset: 0;
  background: rgba(5,4,16,.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 800;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.lv-rt.is-open { display: flex; }
.lv-rt__panel {
  background: #0f0d2a;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 24px;
  width: 100%;
  max-width: 560px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 40px 100px -30px rgba(0,0,0,.8);
}
.lv-rt__x {
  position: absolute;
  top: 18px; right: 18px;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,.07);
  border: 0;
  color: rgba(231,227,255,.65);
  font-size: 20px;
  cursor: pointer;
  display: grid;
  place-items: center;
  font-family: inherit;
  line-height: 1;
  transition: background .18s;
}
.lv-rt__x:hover { background: rgba(255,255,255,.12); }
.lv-rt__steps {
  display: flex;
  gap: 8px;
  padding: 22px 24px 0;
}
.lv-rt__step {
  font-size: 11px;
  font-weight: 600;
  color: rgba(231,227,255,.32);
  padding: 6px 14px;
  border-radius: 99px;
  border: 1px solid rgba(255,255,255,.07);
}
.lv-rt__step.is-on {
  background: rgba(124,92,255,.18);
  border-color: rgba(124,92,255,.35);
  color: #c9beff;
}
.lv-rt__step.is-done {
  background: rgba(16,185,129,.10);
  border-color: rgba(16,185,129,.25);
  color: #6ee7b7;
}
.lv-rt__body { padding: 22px 24px 24px; }
.lv-rt__h {
  font-size: 1.45rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  margin: 0 0 8px;
}
.lv-rt__sub {
  font-size: 13.5px;
  color: rgba(231,227,255,.58);
  margin: 0 0 22px;
  line-height: 1.5;
}
.lv-rt__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.lv-rt__opt {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 15px;
  padding: 16px;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
  transition: background .18s, border-color .18s;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.lv-rt__opt:hover {
  background: rgba(124,92,255,.12);
  border-color: rgba(124,92,255,.3);
}
.lv-rt__opt-l { font-size: 13px; font-weight: 700; color: #fff; }
.lv-rt__opt-d { font-size: 11.5px; color: rgba(231,227,255,.48); line-height: 1.4; }
.lv-rt__list { display: flex; flex-direction: column; gap: 8px; }
.lv-rt__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 17px;
  border-radius: 13px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  font-size: 13.5px;
  color: rgba(231,227,255,.75);
  font-weight: 500;
  cursor: pointer;
  font-family: inherit;
  text-align: left;
  width: 100%;
  transition: background .18s, color .18s;
}
.lv-rt__row:hover, .lv-rt__row.is-on {
  background: rgba(124,92,255,.14);
  border-color: rgba(124,92,255,.28);
  color: #fff;
}
.lv-rt__back {
  background: none;
  border: 0;
  color: rgba(231,227,255,.48);
  font-size: 13px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  padding: 0;
  margin-bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.lv-rt__back:hover { color: #fff; }
.lv-rt__shortcut {
  display: block;
  text-align: center;
  font-size: 12px;
  color: rgba(231,227,255,.4);
  text-decoration: none;
  margin-top: 16px;
}
.lv-rt__shortcut:hover { color: rgba(231,227,255,.65); }
.lv-rt__chosen {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.lv-rt__chosen span:first-child {
  padding: 5px 13px;
  border-radius: 99px;
  font-size: 12px;
  font-weight: 600;
  background: rgba(124,92,255,.2);
  border: 1px solid rgba(124,92,255,.35);
  color: #c9beff;
}
.lv-rt__chosen span:last-child {
  padding: 5px 13px;
  border-radius: 99px;
  font-size: 12px;
  font-weight: 600;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.09);
  color: rgba(231,227,255,.68);
}
.lv-rt__form { display: flex; flex-direction: column; gap: 12px; }
.lv-rt__frow { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.lv-rt__form label { display: flex; flex-direction: column; gap: 6px; font-size: 11px; font-weight: 600; color: rgba(231,227,255,.5); text-transform: uppercase; letter-spacing: .04em; }
.lv-rt__form input,
.lv-rt__form select,
.lv-rt__form textarea {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 10px;
  padding: 10px 13px;
  font-size: 13px;
  font-family: inherit;
  color: #fff;
  outline: none;
  width: 100%;
  transition: border-color .18s;
  -webkit-appearance: none;
}
.lv-rt__form input:focus,
.lv-rt__form select:focus,
.lv-rt__form textarea:focus { border-color: rgba(124,92,255,.5); }
.lv-rt__form select option { background: #1a1340; color: #fff; }
.lv-rt__form textarea { min-height: 80px; resize: vertical; }
.lv-rt__form input::placeholder,
.lv-rt__form textarea::placeholder { color: rgba(231,227,255,.28); }
.lv-rt__done { text-align: center; padding: 36px 24px; }
.lv-rt__check {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(16,185,129,.12);
  border: 1px solid rgba(16,185,129,.28);
  display: grid;
  place-items: center;
  font-size: 22px;
  color: #6ee7b7;
  margin: 0 auto 18px;
}

/* ══════════════════════════════════════════
   RESPONSIVE — V6
══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .lv-hero__inner { grid-template-columns: 1fr; gap: 48px; padding: 60px 28px; }
  .lv-sz { grid-template-columns: 1fr; gap: 40px; }
  .lv-contact-v6__inner { grid-template-columns: 1fr; gap: 48px; }
  .lv-footer-v6__inner { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 768px) {
  .lv-s { padding: 72px 0; }
  .lv-problem__grid { grid-template-columns: 1fr; }
  .lv-cap__grid { grid-template-columns: 1fr 1fr; }
  .lv-sup__grid { grid-template-columns: 1fr; }
  .lv-bp__steps { grid-template-columns: 1fr; }
  .lv-bp__steps::before { display: none; }
  .lv-pkg__grid { grid-template-columns: 1fr; }
  .lv-vendor__grid { grid-template-columns: repeat(2, 1fr); }
  .lv-insights__grid { grid-template-columns: 1fr; }
  .lv-insights__header { flex-direction: column; align-items: flex-start; }
  .lv-rt__grid { grid-template-columns: 1fr; }
  .lv-rt__frow { grid-template-columns: 1fr; }
  .lv-sz__split { grid-template-columns: 1fr; }
  .lv-nav-v6__links { display: none; }
  .lv-nav-v6__ms { display: none; }
  .lv-form-v6__row { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .lv-hero__title { font-size: 2.4rem; }
  .lv-footer-v6__inner { grid-template-columns: 1fr; gap: 28px; }
  .lv-cap__grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════════════
   MEGA-NAV V6 — replaces lv-nav-v6 for multi-page site
══════════════════════════════════════════════════════════ */
.lv-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 9000;
  padding: 18px 24px 0;
}
.lv-nav--scrolled .lv-nav__inner {
  box-shadow: 0 8px 32px rgba(15,21,36,.10);
}
.lv-nav__inner {
  position: relative;
  max-width: 1240px; margin: 0 auto;
  display: flex; align-items: center; gap: 0;
  background: rgba(255,255,255,.72);
  backdrop-filter: blur(20px) saturate(150%);
  border: 1px solid rgba(15,21,36,.08);
  border-radius: 18px;
  padding: 10px 12px 10px 18px;
  transition: box-shadow .2s, border-color .2s;
  box-shadow: 0 6px 28px rgba(15,21,36,.07);
}
.lv-nav__logo {
  flex-shrink: 0; margin-right: 16px;
  text-decoration: none;
  width: 30px; height: 30px; border-radius: 8px;
  background: #0f0c24;
  padding: 4px; box-sizing: border-box;
  overflow: hidden; display: flex; align-items: center; justify-content: center;
}
.lv-nav__logo img {
  display: block; width: 100%; height: 100%;
  object-fit: contain; flex-shrink: 0;
  filter: invert(1);
  animation: lv-logo-blink 6s ease-in-out infinite;
  transform-origin: center 52%;
}
@keyframes lv-logo-blink {
  0%, 86%, 94%, 100% { transform: scaleY(1); }
  88%  { transform: scaleY(0.05); }
  90%  { transform: scaleY(1); }
  92%  { transform: scaleY(0.05); }
}
.lv-nav__links {
  display: flex; align-items: center; gap: 1px; flex: 1;
}
.lv-nav__link {
  background: none; border: none; cursor: pointer;
  color: rgba(15,12,36,.65);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px; font-weight: 500;
  padding: 8px 13px; border-radius: 10px;
  display: flex; align-items: center; gap: 5px;
  transition: color .15s, background .15s;
  white-space: nowrap;
}
.lv-nav__link:hover { color: #0f1524; background: rgba(15,21,36,.05); }
.lv-nav__link--open { color: #fff; background: #111a2e; border-radius: 10px; padding: 10px 14px; }
.lv-nav__link--open .lv-nav__caret { opacity: .7; }
.lv-nav__caret { opacity: .4; font-size: 9px; margin-top: 1px; }
.lv-nav__right {
  display: flex; align-items: center; gap: 8px; flex-shrink: 0; margin-left: auto;
}
.lv-nav__badge {
  display: flex; align-items: center; gap: 7px;
  padding: 5px 10px;
  border: 1px solid rgba(0,0,0,.1);
  border-radius: 8px;
  cursor: default;
}
.lv-nav__badge svg rect { fill: #0f0c24; }
.lv-nav__badge-label {
  font-size: 10px; font-weight: 700; color: #0f0c24; line-height: 1.3;
  text-transform: uppercase; letter-spacing: .04em;
}
.lv-nav__badge-label span {
  display: block; font-size: 8px; font-weight: 500;
  text-transform: uppercase; letter-spacing: .09em;
  color: rgba(15,12,36,.45);
}
.lv-nav__lang {
  display: flex; border: 1px solid rgba(0,0,0,.1); border-radius: 8px; overflow: hidden;
}
.lv-nav__lang button {
  background: none; border: none; cursor: pointer;
  color: rgba(15,12,36,.4);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 11px; font-weight: 700; letter-spacing: .07em;
  padding: 5px 9px;
  transition: color .15s, background .15s;
}
.lv-nav__lang button.active,
.lv-nav__lang button:hover { color: #fff; background: #0f0c24; }
.lv-nav__cta {
  background: oklch(58% 0.22 295);
  color: #fff; border: none; cursor: pointer;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px; font-weight: 700;
  padding: 9px 18px; border-radius: 10px;
  transition: filter .15s, transform .15s;
  white-space: nowrap;
}
.lv-nav__cta:hover { filter: brightness(1.1); transform: translateY(-1px); }
.lv-nav__burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer;
  padding: 6px; border-radius: 8px;
}
.lv-nav__burger span {
  display: block; width: 20px; height: 2px;
  background: rgba(15,12,36,.6); border-radius: 2px;
  transition: opacity .15s;
}
.lv-nav__burger:hover span { background: #0f0c24; }

/* Mega dropdown */
.lv-mega {
  position: absolute; top: calc(100% + 8px); left: 0; right: 0;
  background: #fff;
  border: 1px solid rgba(0,0,0,.09);
  border-radius: 18px;
  grid-template-columns: 220px 1fr;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,.12), 0 2px 8px rgba(0,0,0,.06);
  animation: lv-mega-in .17s ease;
  z-index: 9001;
}
@keyframes lv-mega-in {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.lv-mega__aside {
  padding: 28px 24px;
  background: rgba(0,0,0,.02);
  border-right: 1px solid rgba(0,0,0,.07);
  display: flex; flex-direction: column; gap: 10px;
}
.lv-mega__label {
  font-size: 10px; font-weight: 700; letter-spacing: .13em;
  text-transform: uppercase; color: oklch(58% 0.22 295);
}
.lv-mega__aside p {
  font-size: 13px; line-height: 1.65;
  color: rgba(15,12,36,.5); margin: 0;
}
.lv-mega__cta {
  font-size: 13px; font-weight: 600;
  color: oklch(58% 0.22 295);
  text-decoration: none; margin-top: auto;
  transition: opacity .15s;
}
.lv-mega__cta:hover { opacity: .7; }
.lv-mega__items {
  padding: 18px 20px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 2px;
  align-content: start;
}
.lv-mega__item {
  display: flex; flex-direction: column; gap: 3px;
  padding: 11px 13px; border-radius: 10px;
  text-decoration: none; transition: background .15s;
}
.lv-mega__item:hover { background: rgba(0,0,0,.04); }
.lv-mega__item--hot {
  background: rgba(124,92,255,.08);
  border: 1px solid rgba(124,92,255,.15);
  grid-column: 1 / -1;
  flex-direction: row; align-items: center; gap: 14px;
  padding: 12px 16px; margin-bottom: 4px;
}
.lv-mega__item--hot:hover { background: rgba(124,92,255,.14); }
.lv-mega__t { font-size: 13.5px; font-weight: 600; color: #0f0c24; }
.lv-mega__item--hot .lv-mega__t { font-size: 14px; color: oklch(52% 0.24 295); }
.lv-mega__d { font-size: 12px; line-height: 1.4; color: rgba(15,12,36,.45); }

/* Mobile nav */
.lv-mnav {
  position: absolute; top: calc(100% + 6px); left: 0; right: 0;
  background: #fff;
  border: 1px solid rgba(0,0,0,.09);
  border-radius: 16px;
  padding: 16px 20px 24px;
  display: flex; flex-direction: column; gap: 20px;
  max-height: calc(100vh - 70px); overflow-y: auto;
  box-shadow: 0 16px 40px rgba(0,0,0,.1);
}
.lv-mnav__group { display: flex; flex-direction: column; }
.lv-mnav__h {
  font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .11em;
  color: oklch(58% 0.22 295); margin-bottom: 8px;
}
.lv-mnav a {
  display: block; padding: 9px 0; font-size: 15px; font-weight: 500;
  color: rgba(15,12,36,.65); text-decoration: none;
  border-bottom: 1px solid rgba(0,0,0,.05);
  transition: color .15s;
}
.lv-mnav a:hover { color: #0f0c24; }

/* Page-specific nav active states */
.lv-nav--platform .lv-nav__link[data-menu="platform"],
.lv-nav--operate .lv-nav__link[data-menu="operate"],
.lv-nav--ecosystem .lv-nav__link[data-menu="ecosystem"],
.lv-nav--work .lv-nav__link[data-menu="work"],
.lv-nav--about .lv-nav__link[data-menu="about"] {
  color: #fff; background: #111a2e; border-radius: 10px; padding: 10px 14px;
}

/* Responsive */
@media (max-width: 960px) {
  .lv-nav__links { display: none; }
  .lv-nav__lang { display: none; }
  .lv-nav__badge { display: none; }
  .lv-nav__burger { display: flex; }
}
@media (max-width: 480px) {
  .lv-nav { padding: 10px 12px; }
  .lv-nav__inner { padding: 6px 12px; border-radius: 12px; }
  .lv-nav__cta { font-size: 12px; padding: 7px 13px; }
}

/* Page-level body padding for fixed nav */
.lv-page { padding-top: 70px; }

/* ── Operate page specific ── */
.lv-op__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px;
}
.lv-op__card {
  background: rgba(231,227,255,.04);
  border: 1px solid rgba(231,227,255,.08);
  border-radius: 14px; padding: 28px 24px;
  transition: border-color .2s, background .2s;
}
.lv-op__card:hover {
  background: rgba(231,227,255,.06);
  border-color: rgba(124,92,255,.25);
}
.lv-op__num {
  font-size: 28px; font-weight: 800; color: rgba(231,227,255,.12); margin-bottom: 12px;
}
.lv-op__card h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.lv-op__card p { font-size: 13.5px; line-height: 1.65; color: rgba(231,227,255,.6); margin: 0; }
.lv-op__icon {
  width: 40px; height: 40px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 14px;
  font-size: 18px;
}
.lv-op__detail {
  margin-top: 14px; padding-top: 14px;
  border-top: 1px solid rgba(231,227,255,.07);
  font-size: 12px; color: rgba(231,227,255,.45);
  display: flex; flex-wrap: wrap; gap: 6px;
}
.lv-op__tag {
  background: rgba(231,227,255,.06); border-radius: 6px; padding: 3px 8px;
}

/* Ecosystem map */
.lv-map__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 40px;
}
.lv-map__zone {
  background: rgba(231,227,255,.04); border: 1px solid rgba(231,227,255,.07);
  border-radius: 12px; padding: 20px 18px;
}
.lv-map__zone-label {
  font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: .12em;
  color: var(--accent, #8b5cf6); margin-bottom: 12px;
}
.lv-map__zone-items { display: flex; flex-direction: column; gap: 8px; }
.lv-map__zone-item {
  font-size: 12.5px; color: rgba(231,227,255,.7);
  display: flex; align-items: center; gap: 8px;
}
.lv-map__zone-item::before {
  content: ''; flex-shrink: 0;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent, #8b5cf6); opacity: .6;
}

/* About / founder */
.lv-about__founder {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
  padding: 60px 0;
}
.lv-about__photo {
  aspect-ratio: 3/4; max-width: 320px;
  background: rgba(124,92,255,.1);
  border: 1px solid rgba(124,92,255,.2);
  border-radius: 20px;
  display: flex; align-items: center; justify-content: center;
  font-size: 80px; color: rgba(231,227,255,.15);
}
.lv-about__name { font-size: 28px; font-weight: 800; margin-bottom: 6px; }
.lv-about__role { color: var(--accent, #8b5cf6); font-weight: 600; margin-bottom: 20px; }
.lv-about__bio {
  font-size: 15px; line-height: 1.75; color: rgba(231,227,255,.75);
}
.lv-about__regions {
  display: flex; gap: 12px; margin-top: 24px; flex-wrap: wrap;
}
.lv-about__region {
  background: rgba(231,227,255,.06); border: 1px solid rgba(231,227,255,.1);
  border-radius: 8px; padding: 6px 14px;
  font-size: 12px; font-weight: 600;
}

/* Vacancies */
.lv-vac__grid { display: flex; flex-direction: column; gap: 16px; margin-top: 40px; }
.lv-vac__card {
  background: rgba(231,227,255,.04); border: 1px solid rgba(231,227,255,.08);
  border-radius: 14px; padding: 24px 28px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  transition: border-color .2s, background .2s;
}
.lv-vac__card:hover { background: rgba(231,227,255,.06); border-color: rgba(124,92,255,.25); }
.lv-vac__body { flex: 1; }
.lv-vac__title { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.lv-vac__meta { display: flex; gap: 12px; flex-wrap: wrap; }
.lv-vac__pill {
  font-size: 11px; font-weight: 600;
  background: rgba(231,227,255,.07); border-radius: 6px; padding: 3px 9px;
  color: rgba(231,227,255,.6);
}
.lv-vac__pill--accent { background: rgba(124,92,255,.15); color: #a78bfa; }
.lv-vac__apply {
  flex-shrink: 0;
  display: inline-flex; align-items: center;
  background: none; border: 1px solid rgba(231,227,255,.2);
  color: rgba(231,227,255,.8); border-radius: 9px; padding: 8px 16px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px; font-weight: 600; cursor: pointer;
  transition: border-color .15s, color .15s, background .15s;
}
.lv-vac__apply:hover {
  border-color: var(--accent, #8b5cf6); color: #fff;
  background: rgba(124,92,255,.12);
}

/* Candidate form */
.lv-cand__form {
  background: rgba(231,227,255,.04); border: 1px solid rgba(231,227,255,.08);
  border-radius: 18px; padding: 40px 48px;
  max-width: 680px; margin: 0 auto;
}
.lv-cand__form .lv-form-v6__row { grid-template-columns: 1fr 1fr; }

/* Vendor licensing */
.lv-lic__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px;
}
.lv-lic__card {
  background: rgba(231,227,255,.04); border: 1px solid rgba(231,227,255,.08);
  border-radius: 14px; padding: 26px 22px;
  transition: border-color .2s;
}
.lv-lic__card:hover { border-color: rgba(124,92,255,.25); }
.lv-lic__vendor { font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.lv-lic__desc { font-size: 13px; color: rgba(231,227,255,.55); margin-bottom: 16px; line-height: 1.5; }
.lv-lic__items { display: flex; flex-direction: column; gap: 6px; }
.lv-lic__item {
  font-size: 12.5px; color: rgba(231,227,255,.65);
  display: flex; align-items: center; gap: 8px;
}
.lv-lic__item::before {
  content: ''; flex-shrink: 0;
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--accent, #8b5cf6); opacity: .65;
}

/* Responsive — operate/licensing/vacancies */
@media (max-width: 900px) {
  .lv-op__grid { grid-template-columns: 1fr 1fr; }
  .lv-map__grid { grid-template-columns: 1fr 1fr; }
  .lv-lic__grid { grid-template-columns: 1fr 1fr; }
  .lv-about__founder { grid-template-columns: 1fr; gap: 36px; }
  .lv-about__photo { max-width: 220px; aspect-ratio: 1; }
  .lv-cand__form { padding: 32px 24px; }
}
@media (max-width: 600px) {
  .lv-op__grid { grid-template-columns: 1fr; }
  .lv-map__grid { grid-template-columns: 1fr; }
  .lv-lic__grid { grid-template-columns: 1fr; }
  .lv-vac__card { flex-direction: column; align-items: flex-start; }
  .lv-cand__form .lv-form-v6__row { grid-template-columns: 1fr; }
}
