@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&display=swap");
/* Vision Rebel — light Apple liquid multipage */
:root {
  color-scheme: light;
  --ink: #101a2c;
  --muted: rgba(22, 40, 68, 0.62);
  --faint: rgba(36, 68, 110, 0.48);
  --line: rgba(36, 74, 120, 0.12);
  --accent: #5b87b5;
  --accent-soft: #e8eef6;
  --navy: #173254;
  --bg: #f2f5f9;
  --surface: #ffffff;
  --pad: clamp(20px, 4vw, 48px);
  --header-h: 68px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --display: "Space Grotesk", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font: "Space Grotesk", -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.vr-liquid {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.vr-liquid a { color: inherit; text-decoration: none; }
body.vr-liquid a.vl-btn--solid,
body.vr-liquid a.vl-btn--solid:visited {
  color: #ffffff !important;
}
body.vr-liquid a.vl-btn--ghost,
body.vr-liquid a.vl-btn--ghost:visited {
  color: #1a2438 !important;
}
body.vr-liquid .vl-cta-band a.vl-btn--solid,
body.vr-liquid .vl-cta-band a.vl-btn--solid:visited {
  color: #ffffff !important;
}
body.vr-liquid img { display: block; max-width: 100%; }
body.vr-liquid button { font: inherit; cursor: pointer; }
body.vr-liquid [hidden] { display: none !important; }

.vl-wrap {
  width: min(1180px, calc(100% - (var(--pad) * 2)));
  margin-inline: auto;
}

.vl-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 var(--pad);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 1px 0 rgba(36, 74, 120, 0.04);
}
.vl-header.is-solid {
  background: #ffffff;
  border-bottom-color: var(--line);
}
.vl-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  z-index: 2;
  flex-shrink: 0;
  color: var(--navy);
}
.vl-brand-mark {
  width: 36px;
  height: 36px;
  object-fit: contain;
  flex-shrink: 0;
}
.vl-brand-word {
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--navy);
  line-height: 1;
  white-space: nowrap;
}
@media (max-width: 720px) {
  .vl-brand-mark { width: 30px; height: 30px; }
  .vl-brand-word { font-size: 0.78rem; letter-spacing: 0.12em; }
}
.vl-nav {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
}
.vl-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  font-size: 0.92rem;
  font-weight: 560;
  color: #1a2438;
  letter-spacing: -0.01em;
  white-space: nowrap;
  padding: 8px 2px;
  transform: scale(1);
  transform-origin: center center;
  transition: color 0.2s var(--ease), transform 0.22s var(--ease);
}
.vl-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1px;
  height: 1.5px;
  border-radius: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.22s var(--ease);
}
.vl-nav a:hover {
  color: var(--navy);
  transform: scale(1.14);
}
.vl-nav a:hover::after { transform: scaleX(0.5); }
.vl-nav a.is-active {
  color: var(--ink);
  font-weight: 700;
  transform: scale(1.08);
}
.vl-nav a.is-active::after {
  transform: scaleX(1);
  height: 2px;
  background: var(--accent);
}
.vl-nav a.is-active:hover { transform: scale(1.16); }

.vl-header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 2;
}
.vl-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: transform 0.25s var(--ease), background 0.25s, border-color 0.25s, color 0.25s;
}
.vl-btn:hover { transform: translateY(-1px); }
.vl-btn--solid {
  background: var(--navy);
  color: #ffffff;
}
.vl-btn--solid span {
  color: #ffffff;
}
.vl-btn--solid:hover { background: #21406a; }
.vl-btn--ghost {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(91, 135, 181, 0.35);
  color: var(--navy);
}
.vl-btn--ghost:hover {
  background: rgba(11, 18, 32, 0.04);
  border-color: rgba(11, 18, 32, 0.35);
  color: var(--ink);
}
.vl-btn--lg { min-height: 48px; padding: 0 22px; font-size: 0.94rem; }
.vl-nav-toggle {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 12px;
  background: rgba(11, 18, 32, 0.06);
  color: var(--ink);
  cursor: pointer;
}
.vl-nav-toggle:hover { background: rgba(11, 18, 32, 0.1); }
.vl-icon-btn {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  color: var(--ink);
  background: transparent;
  transition: background 0.2s var(--ease), color 0.2s;
}
.vl-icon-btn:hover {
  background: rgba(11, 18, 32, 0.06);
  color: var(--navy);
}
.vl-drawer-label {
  margin: 4px 12px 2px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.vl-drawer-divider {
  height: 1px;
  margin: 8px 8px;
  background: var(--line);
}
.vl-drawer-section { display: grid; gap: 2px; }

.vl-drawer {
  position: fixed;
  inset: var(--header-h) 12px auto 12px;
  z-index: 49;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--line);
  backdrop-filter: blur(22px);
  display: grid;
  gap: 4px;
  box-shadow: 0 24px 60px rgba(11, 18, 32, 0.12);
}
.vl-drawer a {
  padding: 12px 12px;
  border-radius: 12px;
  font-size: 0.98rem;
  font-weight: 500;
  color: rgba(11, 18, 32, 0.82);
}
.vl-drawer a:hover { background: rgba(11, 18, 32, 0.05); }
.vl-drawer a.is-active {
  color: var(--ink);
  background: rgba(11, 18, 32, 0.06);
  font-weight: 650;
}

.vl-hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: start;
  overflow: hidden;
  padding: calc(var(--header-h) + 48px) 0 40px;
  background: var(--bg);
}
.vl-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.vl-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 78% 42%;
}
.vl-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(242, 245, 249, 0.92) 0%, rgba(242, 245, 249, 0.70) 32%, rgba(242, 245, 249, 0.12) 48%, transparent 58%),
    linear-gradient(180deg, rgba(242, 245, 249, 0.22) 0%, transparent 18%, transparent 82%, rgba(242, 245, 249, 0.30) 100%);
  pointer-events: none;
}
.vl-hero-inner {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - (var(--pad) * 2)));
  margin-inline: auto;
  display: grid;
  gap: 28px;
  padding-bottom: 8px;
}
.vl-hero-copy {
  max-width: 540px;
  animation: vlRise 0.9s var(--ease) both;
}
.vl-kicker {
  margin: 0 0 14px;
  font-size: 0.7rem;
  font-weight: 650;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #6b8faf;
}
.vl-hero h1 {
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 3.85rem);
  line-height: 1.02;
  letter-spacing: -0.035em;
  font-weight: 700;
  color: var(--ink);
}
.vl-hero h1 .rest { color: var(--accent); font-weight: 650; }
.vl-lede {
  margin: 18px 0 0;
  max-width: 42ch;
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--muted);
  font-weight: 400;
}
.vl-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}
.vl-pills {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  max-width: 860px;
  animation: vlRise 1s 0.08s var(--ease) both;
}
.vl-pill {
  display: grid;
  gap: 14px;
  justify-items: start;
  padding: 20px 18px 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(91, 135, 181, 0.16);
  box-shadow: 0 12px 32px rgba(23, 50, 84, 0.06);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.vl-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(23, 50, 84, 0.1);
}
.vl-pill-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--accent-soft);
  color: var(--navy);
}
.vl-pill-icon svg {
  width: 22px;
  height: 22px;
  display: block;
}
.vl-pill span {
  font-family: var(--display);
  font-size: 0.84rem;
  font-weight: 650;
  letter-spacing: -0.01em;
  text-transform: none;
  color: var(--ink);
  line-height: 1.35;
}
.vl-scroll {
  position: absolute;
  left: var(--pad);
  bottom: 22px;
  z-index: 2;
  display: grid;
  justify-items: center;
  gap: 8px;
  color: rgba(11, 18, 32, 0.35);
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.vl-scroll i {
  width: 1px;
  height: 42px;
  background: linear-gradient(180deg, rgba(11, 18, 32, 0.45), transparent);
  animation: vlPulse 2.2s ease-in-out infinite;
}

.vl-page {
  position: relative;
  isolation: isolate;
  padding: calc(var(--header-h) + 56px) 0 0;
  min-height: calc(100svh - var(--header-h));
  display: flex;
  flex-direction: column;
}
.vl-page-hero {
  width: min(860px, calc(100% - (var(--pad) * 2)));
  margin: 0 auto 42px;
  animation: vlRise 0.7s var(--ease) both;
}
.vl-page-hero h1 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.35rem, 5vw, 3.6rem);
  letter-spacing: -0.045em;
  line-height: 0.98;
  font-weight: 700;
  color: var(--ink);
}
.vl-page-hero p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.55;
  max-width: 52ch;
}
.vl-panel {
  width: min(980px, calc(100% - (var(--pad) * 2)));
  margin: 0 auto 18px;
  padding: 28px 28px;
  border-radius: 24px;
  background: var(--surface);
  border: 1px solid rgba(11, 18, 32, 0.08);
  box-shadow: 0 16px 40px rgba(11, 18, 32, 0.05);
  animation: vlRise 0.75s 0.05s var(--ease) both;
}
.vl-panel h2 {
  margin: 0 0 10px;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  font-weight: 650;
  color: var(--ink);
}
.vl-panel p,
.vl-panel li {
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.98rem;
}
.vl-panel p { margin: 0 0 12px; }
.vl-panel p:last-child { margin-bottom: 0; }
.vl-steps {
  display: grid;
  gap: 14px;
  counter-reset: step;
}
.vl-step {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: start;
  padding: 16px 0;
  border-top: 1px solid rgba(11, 18, 32, 0.08);
}
.vl-step:first-child { border-top: 0; padding-top: 0; }
.vl-step::before {
  counter-increment: step;
  content: counter(step);
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--accent-soft);
  border: 1px solid rgba(91, 135, 181, 0.22);
  font-weight: 650;
  font-size: 0.9rem;
  color: var(--navy);
}
.vl-step h3 {
  margin: 2px 0 6px;
  font-size: 1.05rem;
  font-weight: 650;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.vl-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  width: min(980px, calc(100% - (var(--pad) * 2)));
  margin: 0 auto;
}
.vl-card {
  padding: 24px;
  border-radius: 22px;
  background: var(--surface);
  border: 1px solid rgba(11, 18, 32, 0.08);
  box-shadow: 0 12px 30px rgba(11, 18, 32, 0.04);
}
.vl-card h3 {
  margin: 0 0 8px;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.vl-card p { margin: 0; color: var(--muted); line-height: 1.55; }
.vl-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}
.vl-list li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  color: var(--muted);
}
.vl-list li::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-top: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px rgba(122, 160, 200, 0.22);
}
.vl-faq details {
  border-top: 1px solid rgba(11, 18, 32, 0.08);
  padding: 14px 0;
}
.vl-faq details:first-child { border-top: 0; padding-top: 0; }
.vl-faq summary {
  cursor: pointer;
  list-style: none;
  font-weight: 620;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.vl-faq summary::-webkit-details-marker { display: none; }
.vl-faq details p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.55;
}
.vl-cta-band {
  width: min(980px, calc(100% - (var(--pad) * 2)));
  margin: auto auto 0;
  padding: 14px 0 18px;
  border-radius: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
  gap: 10px 16px;
  background: transparent;
  color: var(--ink);
  border: 0;
  border-top: 1px solid rgba(11, 18, 32, 0.1);
}
.vl-cta-band h2 {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--faint);
}
.vl-cta-band p {
  margin: 2px 0 0;
  font-size: 0.82rem;
  color: var(--muted);
}
.vl-cta-band .vl-btn {
  min-height: 34px;
  padding: 0 14px;
  font-size: 0.78rem;
}
.vl-cta-band .vl-btn--lg {
  min-height: 34px;
  padding: 0 14px;
  font-size: 0.78rem;
}
.vl-cta-band .vl-btn--solid {
  background: var(--navy);
  color: #ffffff;
}
.vl-cta-band .vl-btn--solid span {
  color: #ffffff;
}


.vl-page {
  position: relative;
  isolation: isolate;
}
.vl-page-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.vl-page-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
  opacity: 1;
}
.vl-page-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(242,245,249,0.92) 0%, rgba(242,245,249,0.78) 34%, rgba(242,245,249,0.28) 58%, rgba(242,245,249,0.18) 100%),
    linear-gradient(180deg, rgba(242,245,249,0.35) 0%, transparent 22%, transparent 62%, rgba(242,245,249,0.88) 100%);
}
.vl-page > *:not(.vl-page-bg) {
  position: relative;
  z-index: 1;
}
.vl-panel,
.vl-card {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.vl-footer {
  border-top: 1px solid rgba(11, 18, 32, 0.08);
  padding: 18px var(--pad) 28px;
  color: var(--faint);
  font-size: 0.82rem;
}
.vl-footer-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  justify-content: space-between;
  align-items: center;
}
.vl-footer a { color: var(--muted); }
.vl-footer a:hover { color: var(--ink); }

@keyframes vlRise {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: none; }
}
@keyframes vlPulse {
  0%, 100% { opacity: 0.35; transform: scaleY(0.85); transform-origin: top; }
  50% { opacity: 0.9; transform: scaleY(1); transform-origin: top; }
}

@media (max-width: 980px) {
  .vl-nav { display: none; }
  .vl-header .vl-btn--partner-label { display: none; }
  .vl-pills { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .vl-grid-2 { grid-template-columns: 1fr; }
  .vl-scroll { display: none; }
  .vl-hero-media {
    inset: auto 0 0 0;
    height: 52vh;
  }
  .vl-hero { padding-bottom: calc(52vh + 24px); }
  .vl-hero-media::after {
    background: linear-gradient(180deg, rgba(242,245,249,0.88) 0%, rgba(242,245,249,0.18) 28%, transparent 52%);
  }
  /* Frame the phone so Starfond boutique UI is readable */
  .vl-hero-media img { object-position: 82% 38%; }
}
@media (max-width: 640px) {
  .vl-pills { grid-template-columns: 1fr 1fr; }
  .vl-panel, .vl-card { padding: 20px; border-radius: 18px; }
  .vl-cta-band { padding: 12px 0 16px; }
  .vl-hero { padding-top: calc(var(--header-h) + 28px); }
  .vl-hero-media { height: 48vh; }
  .vl-hero { padding-bottom: calc(48vh + 20px); }
  .vl-hero-media img { object-position: 84% 36%; }
}
@media (prefers-reduced-motion: reduce) {
  .vl-hero-copy, .vl-pills, .vl-page-hero, .vl-panel { animation-duration: 0.28s !important; }
  .vl-scroll i { animation-duration: 0.8s !important; }
  .vl-nav a { transition-duration: 0.18s !important; }
  .vl-faq-answer, .vl-faq-answer-inner, .vl-faq-modern summary .chev { transition-duration: 0.22s !important; }
}

/* Home next CTA — sit just above footer */
body.vr-liquid > main {
  display: flex;
  flex-direction: column;
  min-height: calc(100svh - var(--header-h));
}
body.vr-liquid > main > .vl-hero {
  flex: 1 1 auto;
}
.vl-cta-band--home {
  width: min(1180px, calc(100% - (var(--pad) * 2)));
  margin-top: auto;
  position: relative;
  z-index: 2;
}


/* ===== Full-bleed page backgrounds (no boxed figures) ===== */
.vl-page--bg {
  min-height: calc(100svh - var(--header-h));
  display: flex;
  flex-direction: column;
  padding-top: 0;
}
.vl-page--bg .vl-page-hero {
  width: auto;
  max-width: 620px;
  margin: 0 0 8px;
  margin-inline: 0;
}
.vl-page--bg .vl-page-bg {
  position: absolute;
  inset: 0;
  min-height: 100%;
}
.vl-page-stage {
  width: min(1180px, calc(100% - (var(--pad) * 2)));
  margin: 0 auto;
  padding: calc(var(--header-h) + 48px) 0 28px;
  display: block;
  position: relative;
  z-index: 1;
}
.vl-page--bg .vl-page-copy {
  max-width: 620px;
}
.vl-page-copy .vl-page-hero {
  width: auto;
  margin: 0;
}
.vl-page--bg .vl-panel {
  width: min(1180px, calc(100% - (var(--pad) * 2)));
  margin: 8px auto 0;
}
.vl-page--bg .vl-cta-band {
  margin-top: auto;
}
.vl-page-figure { display: none !important; }
@media (max-width: 900px) {
  .vl-page-stage { padding-top: calc(var(--header-h) + 28px); }
  .vl-page--bg .vl-page-copy { max-width: 100%; }
}


/* ===== Distinctive inner-page layouts ===== */
.vl-page--bg .vl-page-hero .vl-kicker {
  color: var(--navy);
}
.vl-stack {
  width: min(980px, calc(100% - (var(--pad) * 2)));
  margin: 0 auto 28px;
  display: grid;
  gap: 0;
  position: relative;
  z-index: 1;
}
.vl-stack-row {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 18px;
  align-items: start;
  padding: 22px 0;
  border-top: 1px solid rgba(16, 26, 44, 0.12);
  background: transparent;
  transition: padding 0.35s var(--ease);
}
.vl-stack-row:first-child { border-top: 0; }
.vl-stack-row:hover { padding-left: 8px; }
.vl-stack-idx {
  font-family: var(--display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--accent);
  padding-top: 6px;
}
.vl-stack-row h3 {
  margin: 0 0 6px;
  font-family: var(--display);
  font-size: clamp(1.25rem, 2.4vw, 1.65rem);
  letter-spacing: -0.03em;
  font-weight: 650;
  color: var(--ink);
}
.vl-stack-row p {
  margin: 0;
  max-width: 52ch;
  color: var(--muted);
  line-height: 1.55;
  font-size: 0.98rem;
}
.vl-youkeep {
  width: min(980px, calc(100% - (var(--pad) * 2)));
  margin: 8px auto 36px;
  padding: 22px 24px;
  border-radius: 20px;
  background: rgba(23, 50, 84, 0.92);
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 28px;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}
.vl-youkeep strong {
  font-family: var(--display);
  font-size: 0.95rem;
  letter-spacing: -0.02em;
  font-weight: 650;
}
.vl-youkeep span {
  font-size: 0.9rem;
  opacity: 0.82;
  letter-spacing: 0.02em;
}

.vl-duo {
  width: min(1100px, calc(100% - (var(--pad) * 2)));
  margin: 0 auto 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  position: relative;
  z-index: 1;
}
.vl-duo-col {
  padding: 28px 26px 32px;
  border-radius: 24px;
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(16, 26, 44, 0.08);
  min-height: 280px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.vl-duo-col--ink {
  background: rgba(16, 26, 44, 0.92);
  color: #fff;
  border-color: transparent;
}
.vl-duo-col--ink p { color: rgba(255,255,255,0.72); }
.vl-duo-col .vl-eyebrow {
  margin: 0;
  font-size: 0.68rem;
  font-weight: 650;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}
.vl-duo-col--ink .vl-eyebrow { color: #9bb8d8; }
.vl-duo-col h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  letter-spacing: -0.035em;
  line-height: 1.05;
  font-weight: 700;
}
.vl-duo-col p {
  margin: 0;
  line-height: 1.55;
  color: var(--muted);
  font-size: 0.98rem;
  max-width: 36ch;
}
.vl-duo-col ul {
  margin: auto 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}
.vl-duo-col li {
  font-size: 0.9rem;
  color: var(--muted);
  padding-left: 14px;
  position: relative;
}
.vl-duo-col li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.55em;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
}
.vl-duo-col--ink li { color: rgba(255,255,255,0.7); }
.vl-duo-col--ink li::before { background: #9bb8d8; }

.vl-fitbar {
  width: min(1100px, calc(100% - (var(--pad) * 2)));
  margin: 0 auto 36px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  position: relative;
  z-index: 1;
}
.vl-fit {
  padding: 20px 22px;
  border-radius: 18px;
  background: rgba(255,255,255,0.78);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(16,26,44,0.08);
}
.vl-fit h4 {
  margin: 0 0 12px;
  font-family: var(--display);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 650;
  color: var(--navy);
}
.vl-fit--no h4 { color: var(--faint); }
.vl-fit ul {
  margin: 0; padding: 0; list-style: none; display: grid; gap: 8px;
}
.vl-fit li {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.4;
}

.vl-manifesto {
  width: min(920px, calc(100% - (var(--pad) * 2)));
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
}
.vl-pull {
  margin: 0 0 28px;
  font-family: var(--display);
  font-size: clamp(1.55rem, 3.4vw, 2.35rem);
  letter-spacing: -0.04em;
  line-height: 1.12;
  font-weight: 600;
  color: var(--ink);
  max-width: 18ch;
}
.vl-principles {
  display: grid;
  gap: 0;
}
.vl-principle {
  padding: 26px 0;
  border-top: 1px solid rgba(16,26,44,0.12);
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.2fr);
  gap: 18px 32px;
  align-items: start;
}
.vl-principle:last-child { border-bottom: 1px solid rgba(16,26,44,0.12); }
.vl-principle h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.2rem, 2.2vw, 1.55rem);
  letter-spacing: -0.03em;
  font-weight: 650;
  color: var(--ink);
}
.vl-principle p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
  font-size: 0.98rem;
}
.vl-sign {
  margin: 28px auto 36px;
  width: min(920px, calc(100% - (var(--pad) * 2)));
  padding: 18px 0 0;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.5;
  position: relative;
  z-index: 1;
}
.vl-sign em {
  font-style: normal;
  color: var(--navy);
  font-weight: 650;
}

.vl-faq-wrap {
  width: min(860px, calc(100% - (var(--pad) * 2)));
  margin: 0 auto 28px;
  position: relative;
  z-index: 1;
}
.vl-faq-group {
  margin: 0 0 28px;
}
.vl-faq-group > h2 {
  margin: 0 0 8px;
  font-family: var(--display);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 650;
  color: var(--navy);
}
.vl-faq-modern details {
  border-top: 1px solid rgba(16,26,44,0.12);
  padding: 0;
}
.vl-faq-modern details:last-child {
  border-bottom: 1px solid rgba(16,26,44,0.12);
}
.vl-faq-modern summary {
  cursor: pointer;
  list-style: none;
  display: grid;
  grid-template-columns: 48px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 18px 0;
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.vl-faq-modern summary::-webkit-details-marker { display: none; }
.vl-faq-modern summary .n {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: var(--accent);
  font-weight: 650;
}
.vl-faq-modern summary .chev {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid rgba(16,26,44,0.15);
  display: grid;
  place-items: center;
  color: var(--navy);
  font-size: 0.85rem;
  transition:
    transform 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.45s ease,
    color 0.45s ease,
    background 0.45s ease;
}
.vl-faq-modern details.is-open summary .chev {
  transform: rotate(45deg);
  border-color: rgba(23, 50, 84, 0.28);
  background: var(--accent-soft);
}
.vl-faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.vl-faq-modern details.is-open .vl-faq-answer {
  grid-template-rows: 1fr;
}
.vl-faq-answer-inner {
  overflow: hidden;
  min-height: 0;
  opacity: 0;
  transform: translateY(-8px);
  transition:
    opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.1s,
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.vl-faq-modern details.is-open .vl-faq-answer-inner {
  opacity: 1;
  transform: none;
}
.vl-faq-modern .vl-faq-answer-inner p {
  margin: 0 0 20px 60px;
  color: var(--muted);
  line-height: 1.65;
  max-width: 54ch;
  font-size: 0.98rem;
}

.vl-page--bg .vl-page-copy { max-width: 720px; }

@media (max-width: 800px) {
  .vl-duo, .vl-fitbar, .vl-principle {
    grid-template-columns: 1fr;
  }
  .vl-stack-row { grid-template-columns: 48px 1fr; }
  .vl-faq-modern .vl-faq-answer-inner p { margin-left: 0; }
  .vl-youkeep { flex-direction: column; align-items: flex-start; }
}


/* ===== How It Works — mockup layout ===== */
.vl-hiw {
  position: relative;
  background: #fff;
}
.vl-hiw-hero {
  position: relative;
  isolation: isolate;
  padding: calc(var(--header-h) + 28px) 0 36px;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.vl-hiw-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.vl-hiw-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% center;
}
.vl-hiw-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.88) 0%, rgba(255,255,255,0.72) 34%, rgba(255,255,255,0.28) 58%, rgba(255,255,255,0.12) 100%),
    linear-gradient(180deg, rgba(255,255,255,0.35) 0%, transparent 28%, rgba(255,255,255,0.55) 72%, #fff 100%);
}
.vl-hiw-hero-inner {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - (var(--pad) * 2)));
  margin: 0 auto;
  padding-bottom: 0;
}
.vl-hiw-copy {
  max-width: 620px;
  margin-bottom: 22px;
  animation: vlRise 0.7s var(--ease) both;
}
.vl-hiw-copy .vl-kicker {
  color: rgba(22, 40, 68, 0.55);
  margin-bottom: 10px;
}
.vl-hiw-copy h1 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.4rem, 5vw, 3.7rem);
  letter-spacing: -0.045em;
  line-height: 0.98;
  font-weight: 700;
  color: var(--ink);
}
.vl-hiw-copy .vl-lede {
  margin-top: 12px;
  max-width: 44ch;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.5;
}
.vl-hiw-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  transform: none;
  margin: 0;
}
.vl-hiw-card {
  background: #fff;
  border: 1px solid rgba(16, 26, 44, 0.06);
  border-radius: 20px;
  padding: 18px 16px 16px;
  box-shadow: 0 14px 40px rgba(16, 26, 44, 0.08);
  display: flex;
  flex-direction: column;
  min-height: 0;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.vl-hiw-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 56px rgba(16, 26, 44, 0.12);
}
.vl-hiw-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.vl-hiw-num {
  font-family: var(--display);
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  color: rgba(36, 68, 110, 0.35);
}
.vl-hiw-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--accent-soft);
  color: var(--navy);
}
.vl-hiw-card h3 {
  margin: 0 0 10px;
  font-family: var(--display);
  font-size: 1.15rem;
  letter-spacing: -0.025em;
  font-weight: 700;
  color: var(--ink);
}
.vl-hiw-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
  flex: 1;
}
.vl-hiw-link {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy) !important;
}
.vl-hiw-link:hover { color: var(--accent) !important; }

.vl-hiw-foot {
  position: relative;
  z-index: 0;
  background: #fff;
  padding: 32px var(--pad) 44px;
  text-align: center;
}
.vl-hiw-rule {
  position: relative;
  max-width: 720px;
  margin: 0 auto 18px;
  height: 1px;
  background: rgba(16, 26, 44, 0.12);
}
.vl-hiw-rule span {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  padding: 0 14px;
  font-size: 0.68rem;
  font-weight: 650;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--faint);
  white-space: nowrap;
}
.vl-hiw-foot > p {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 0.95rem;
}
.vl-hiw-next {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.84rem;
  font-weight: 650;
  color: var(--navy) !important;
}
.vl-hiw-next:hover { color: var(--accent) !important; }

@media (max-width: 980px) {
  .vl-hiw-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    transform: none;
  }
  .vl-hiw-foot { padding-top: 24px; }
}
@media (max-width: 640px) {
  .vl-hiw-hero {
    min-height: 100svh;
    padding-top: calc(var(--header-h) + 20px);
    padding-bottom: 20px;
    justify-content: flex-end;
  }
  .vl-hiw-copy { margin-bottom: 16px; }
  .vl-hiw-cards {
    grid-template-columns: 1fr;
    margin: 0;
  }
  .vl-hiw-foot { padding-top: 24px; }
}


/* ===== What We Handle — mockup layout ===== */
.vl-wwh { background: #fff; }
.vl-wwh-hero {
  position: relative;
  isolation: isolate;
  padding: calc(var(--header-h) + 56px) 0 0;
  min-height: min(88svh, 860px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.vl-wwh-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.vl-wwh-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 65% center;
}
.vl-wwh-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.90) 0%, rgba(255,255,255,0.78) 36%, rgba(255,255,255,0.28) 62%, rgba(255,255,255,0.14) 100%),
    linear-gradient(180deg, rgba(255,255,255,0.30) 0%, transparent 26%, rgba(255,255,255,0.55) 70%, #fff 100%);
}
.vl-wwh-hero-inner {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - (var(--pad) * 2)));
  margin: 0 auto;
}
.vl-wwh-copy {
  max-width: 640px;
  margin-bottom: 34px;
  animation: vlRise 0.7s var(--ease) both;
}
.vl-wwh-copy .vl-kicker {
  color: rgba(22, 40, 68, 0.55);
  margin-bottom: 16px;
}
.vl-wwh-copy h1 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.3rem, 4.8vw, 3.5rem);
  letter-spacing: -0.045em;
  line-height: 1.0;
  font-weight: 700;
  color: var(--ink);
}
.vl-wwh-copy .vl-lede {
  margin-top: 16px;
  max-width: 46ch;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.55;
}
.vl-wwh-tag {
  margin: 18px 0 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.7rem;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(22, 40, 68, 0.55);
}
.vl-wwh-tag span {
  width: 22px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  flex-shrink: 0;
}

.vl-wwh-panel {
  background: #fff;
  border: 1px solid rgba(16, 26, 44, 0.06);
  border-radius: 28px;
  box-shadow: 0 22px 60px rgba(16, 26, 44, 0.10);
  padding: 10px 8px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  transform: translateY(28%);
  margin-bottom: 0;
}
.vl-wwh-item {
  display: grid;
  grid-template-columns: 48px 1fr 18px;
  gap: 14px;
  align-items: center;
  padding: 22px 18px;
  border-radius: 18px;
  color: inherit !important;
  transition: background 0.25s var(--ease);
}
.vl-wwh-item:hover { background: rgba(232, 238, 246, 0.55); }
.vl-wwh-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--accent-soft);
  color: var(--navy);
  flex-shrink: 0;
}
.vl-wwh-text {
  display: grid;
  gap: 4px;
  min-width: 0;
}
.vl-wwh-text strong {
  font-family: var(--display);
  font-size: 0.98rem;
  letter-spacing: -0.02em;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.25;
}
.vl-wwh-text span {
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.4;
}
.vl-wwh-arrow {
  color: rgba(36, 68, 110, 0.35);
  font-size: 1rem;
  justify-self: end;
}
.vl-wwh-item:hover .vl-wwh-arrow { color: var(--navy); }

.vl-wwh-next {
  position: relative;
  z-index: 1;
  margin-top: 5.5rem !important;
  padding-top: 28px !important;
  padding-bottom: 36px !important;
  width: min(1180px, calc(100% - (var(--pad) * 2))) !important;
}

@media (max-width: 980px) {
  .vl-wwh-panel {
    grid-template-columns: 1fr;
    transform: translateY(12%);
  }
  .vl-wwh-next { margin-top: 3rem !important; }
}
@media (max-width: 640px) {
  .vl-wwh-hero { min-height: auto; padding-top: calc(var(--header-h) + 32px); }
  .vl-wwh-panel {
    transform: none;
    margin-top: 8px;
    border-radius: 22px;
  }
  .vl-wwh-next { margin-top: 1.5rem !important; }
}


/* ===== Our Standard — simple layout ===== */
.vl-std { background: #fff; }
.vl-std-hero {
  position: relative;
  isolation: isolate;
  padding: calc(var(--header-h) + 56px) 0 0;
  min-height: min(82svh, 780px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.vl-std-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.vl-std-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 60% center;
}
.vl-std-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.90) 0%, rgba(255,255,255,0.78) 38%, rgba(255,255,255,0.30) 64%, rgba(255,255,255,0.16) 100%),
    linear-gradient(180deg, rgba(255,255,255,0.28) 0%, transparent 26%, rgba(255,255,255,0.55) 72%, #fff 100%);
}
.vl-std-hero-inner {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - (var(--pad) * 2)));
  margin: 0 auto;
}
.vl-std-copy {
  max-width: 620px;
  margin-bottom: 32px;
}
.vl-std-copy .vl-kicker {
  color: rgba(22, 40, 68, 0.55);
  margin-bottom: 14px;
}
.vl-std-copy h1 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.2rem, 4.6vw, 3.4rem);
  letter-spacing: -0.045em;
  line-height: 1.0;
  font-weight: 700;
  color: var(--ink);
}
.vl-std-copy .vl-lede {
  margin-top: 14px;
  max-width: 42ch;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.55;
}
.vl-std-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  transform: translateY(36%);
}
.vl-std-card {
  background: #fff;
  border: 1px solid rgba(16, 26, 44, 0.06);
  border-radius: 20px;
  padding: 22px 20px;
  box-shadow: 0 16px 44px rgba(16, 26, 44, 0.08);
}
.vl-std-num {
  display: block;
  margin-bottom: 14px;
  font-family: var(--display);
  font-size: 0.75rem;
  font-weight: 650;
  letter-spacing: 0.1em;
  color: var(--accent);
}
.vl-std-card h3 {
  margin: 0 0 8px;
  font-family: var(--display);
  font-size: 1.12rem;
  letter-spacing: -0.025em;
  font-weight: 700;
  color: var(--ink);
}
.vl-std-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}
.vl-std-next {
  margin-top: 5.5rem !important;
  padding-top: 28px !important;
  padding-bottom: 36px !important;
  width: min(1180px, calc(100% - (var(--pad) * 2))) !important;
}
@media (max-width: 980px) {
  .vl-std-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    transform: translateY(16%);
  }
  .vl-std-next { margin-top: 3rem !important; }
}
@media (max-width: 640px) {
  .vl-std-hero { min-height: auto; padding-top: calc(var(--header-h) + 32px); }
  .vl-std-cards {
    grid-template-columns: 1fr;
    transform: none;
    margin-top: 8px;
  }
  .vl-std-next { margin-top: 1.5rem !important; }
}


/* Account menu drawer — desktop + mobile */
.vl-drawer {
  max-width: 360px;
  margin-left: auto;
  right: 12px;
  left: auto;
  width: min(360px, calc(100vw - 24px));
}
@media (min-width: 981px) {
  .vl-drawer {
    inset: calc(var(--header-h) + 8px) 16px auto auto;
    left: auto;
  }
}
body.vl-nav-open .vl-nav-toggle {
  background: rgba(11, 18, 32, 0.12);
}
