/* VitaAvanza route bundle source: /scrollbar.css */
:root {
  color-scheme: light;
  scrollbar-color: #E8520A #F3EFE8;
  scrollbar-width: thin;
}

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: #F3EFE8;
}

::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: #C4B89A;
}

::-webkit-scrollbar-thumb:hover {
  background: #E8520A;
}


/* VitaAvanza route bundle source: /cursor.css */
:root {
  --va-cursor-orange: rgba(232, 82, 10, 0.90);
  --va-cursor-orange-soft: rgba(232, 82, 10, 0.50);
  --va-cursor-violet: rgba(91, 33, 182, 0.82);
  --va-cursor-violet-soft: rgba(91, 33, 182, 0.45);
}

@media (hover: hover) and (pointer: fine) {
  html.va-custom-cursor.va-cursor-active body,
  html.va-custom-cursor.va-cursor-active body * {
    cursor: none !important;
  }

  html.va-custom-cursor.va-cursor-active input:not([type="submit"]):not([type="button"]):not([type="checkbox"]):not([type="radio"]):not([type="range"]),
  html.va-custom-cursor.va-cursor-active textarea,
  html.va-custom-cursor.va-cursor-active select,
  html.va-custom-cursor.va-cursor-active option,
  html.va-custom-cursor.va-cursor-active [contenteditable="true"] {
    cursor: text !important;
  }
}

.va-cursor,
.va-cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  opacity: 0;
  z-index: 2147483647;
  isolation: isolate;
  transform: translate3d(-100px, -100px, 0);
  transition:
    transform 85ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 180ms ease,
    width 220ms cubic-bezier(0.16, 1, 0.3, 1),
    height 220ms cubic-bezier(0.16, 1, 0.3, 1),
    border-color 220ms ease,
    box-shadow 220ms ease,
    background 220ms ease,
    filter 220ms ease;
  will-change: transform, opacity, width, height;
}

.va-cursor-dot {
  transition-duration: 35ms, 180ms, 220ms, 220ms, 220ms, 220ms, 220ms, 220ms;
}

.va-cursor {
  width: 34px;
  height: 34px;
  border: 1.5px solid var(--va-cursor-orange-soft);
  border-radius: 999px;
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.65), transparent 40%),
    linear-gradient(135deg, rgba(232, 82, 10, 0.14), rgba(91, 33, 182, 0.10));
  box-shadow:
    0 0 0 1px rgba(28, 25, 23, 0.06),
    0 0 28px rgba(232, 82, 10, 0.22),
    0 0 16px rgba(91, 33, 182, 0.14),
    inset 0 0 18px rgba(232, 82, 10, 0.06);
}

.va-cursor::before,
.va-cursor::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
}

.va-cursor::before {
  inset: -16px;
  background: radial-gradient(circle, rgba(232, 82, 10, 0.12) 0%, rgba(91, 33, 182, 0.06) 42%, transparent 72%);
  filter: blur(12px);
  opacity: 0.88;
}

.va-cursor::after {
  inset: 5px;
  border: 1px solid rgba(28, 25, 23, 0.05);
}

.va-cursor-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #E8520A;
  box-shadow:
    0 0 0 1px rgba(232, 82, 10, 0.4),
    0 0 16px rgba(232, 82, 10, 0.50),
    0 0 8px rgba(91, 33, 182, 0.30);
}

html.va-cursor-visible .va-cursor,
html.va-cursor-visible .va-cursor-dot {
  opacity: 1;
}

html.va-cursor-hover .va-cursor {
  width: 46px;
  height: 46px;
  border-color: var(--va-cursor-violet-soft);
  background: linear-gradient(135deg, rgba(232, 82, 10, 0.10), rgba(91, 33, 182, 0.08));
  box-shadow:
    0 0 32px rgba(232, 82, 10, 0.18),
    0 0 20px rgba(91, 33, 182, 0.14),
    inset 0 0 22px rgba(232, 82, 10, 0.05);
}

html.va-cursor-hover .va-cursor-dot {
  width: 10px;
  height: 10px;
  background: linear-gradient(135deg, #E8520A, #5B21B6);
  box-shadow:
    0 0 20px rgba(232, 82, 10, 0.45),
    0 0 12px rgba(91, 33, 182, 0.28);
}

html.va-cursor-press .va-cursor {
  width: 24px;
  height: 24px;
}

html.va-cursor-press .va-cursor-dot {
  width: 5px;
  height: 5px;
}

html.va-cursor-native .va-cursor,
html.va-cursor-native .va-cursor-dot {
  opacity: 0 !important;
}


/* VitaAvanza route bundle source: /cookie-banner.css */
.va-cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 10000;
  display: flex;
  justify-content: center;
  pointer-events: none;
}

.va-cookie-banner__panel {
  position: relative;
  width: min(100%, 72rem);
  pointer-events: auto;
  border: 1px solid rgba(28, 25, 23, 0.10);
  border-radius: 28px;
  padding: 1rem 1rem 1.1rem;
  background: #FFFFFF;
  box-shadow: 0 22px 60px rgba(28, 25, 23, 0.10), 0 0 30px rgba(91, 33, 182, 0.06);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  color: #1C1917;
  transition: opacity 220ms ease, transform 220ms ease;
}

.va-cookie-banner__panel.is-leaving {
  opacity: 0;
  transform: translateY(1rem) scale(0.98);
}

.va-cookie-banner__inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.va-cookie-banner__copy {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.va-cookie-banner__eyebrow {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #5B21B6;
}

.va-cookie-banner__title {
  font-size: 1rem;
  font-weight: 700;
  color: #1C1917;
}

.va-cookie-banner__body {
  font-size: 0.92rem;
  line-height: 1.65;
  color: #44403C;
  max-width: 58rem;
}

.va-cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}

.va-cookie-banner__button,
.va-cookie-banner__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.85rem;
  padding: 0 1.1rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.va-cookie-banner__button:hover,
.va-cookie-banner__link:hover {
  transform: translateY(-1px);
}

.va-cookie-banner__button--ghost {
  border: 1px solid rgba(28, 25, 23, 0.12);
  background: rgba(28, 25, 23, 0.04);
  color: #44403C;
}

.va-cookie-banner__button--primary {
  border: 1px solid rgba(232, 82, 10, 0.18);
  background: linear-gradient(135deg, #E8520A, #5B21B6);
  color: #ffffff;
  box-shadow: 0 0 24px rgba(232, 82, 10, 0.20);
}

.va-cookie-banner__link {
  color: #44403C;
}

body[data-cookie-theme="mitra"] .va-cookie-banner__panel {
  overflow: hidden;
  border-color: rgba(139, 92, 246, 0.24);
  border-radius: 22px;
  background: rgba(7, 5, 16, 0.94);
  box-shadow: 0 24px 60px rgba(2, 1, 8, 0.6), 0 0 42px rgba(139, 92, 246, 0.12);
}

body[data-cookie-theme="mitra"] .va-cookie-banner__panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.16) 50%),
    linear-gradient(90deg, rgba(139, 92, 246, 0.03), rgba(45, 212, 191, 0.02), rgba(139, 92, 246, 0.03));
  background-size: 100% 2px, 3px 100%;
  opacity: 0.35;
}

body[data-cookie-theme="mitra"] .va-cookie-banner__eyebrow,
body[data-cookie-theme="mitra"] .va-cookie-banner__title,
body[data-cookie-theme="mitra"] .va-cookie-banner__button,
body[data-cookie-theme="mitra"] .va-cookie-banner__link {
  font-family: "Space Grotesk", "Manrope", sans-serif;
}

body[data-cookie-theme="mitra"] .va-cookie-banner__eyebrow {
  color: rgba(196, 181, 253, 0.92);
}

body[data-cookie-theme="mitra"] .va-cookie-banner__button--ghost {
  border-color: rgba(139, 92, 246, 0.2);
  background: rgba(139, 92, 246, 0.08);
}

body[data-cookie-theme="mitra"] .va-cookie-banner__button--primary {
  border-color: rgba(94, 234, 212, 0.24);
  box-shadow: 0 0 24px rgba(45, 212, 191, 0.18);
}

@media (min-width: 768px) {
  .va-cookie-banner__inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }

  .va-cookie-banner__actions {
    justify-content: flex-end;
    flex-shrink: 0;
  }
}


/* VitaAvanza route bundle source: /page-transition.css */
@media (prefers-reduced-motion: no-preference) {

  @view-transition {
    navigation: auto;
  }

  ::view-transition-old(root) {
    animation: va-vt-out 0.18s cubic-bezier(0.4, 0, 1, 1) forwards;
    transform-origin: center top;
  }

  ::view-transition-new(root) {
    animation: va-vt-in 0.30s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    transform-origin: center top;
  }

  @keyframes va-vt-out {
    to {
      opacity: 0;
      transform: translateY(-10px) scale(0.984);
    }
  }

  @keyframes va-vt-in {
    from {
      opacity: 0;
      transform: translateY(18px) scale(0.992);
    }
  }

  html {
    background: #FAF8F5;
  }

  body {
    animation: va-page-enter 0.32s cubic-bezier(0.22, 1, 0.36, 1) both;
    transform-origin: center top;
    transition:
      opacity 0.18s cubic-bezier(0.4, 0, 1, 1),
      transform 0.20s cubic-bezier(0.4, 0, 1, 1);
  }

  @keyframes va-page-enter {
    from {
      opacity: 0;
      transform: translateY(18px) scale(0.992);
    }
  }

  body.va-page-leaving {
    opacity: 0;
    transform: translateY(-10px) scale(0.984);
    pointer-events: none;
  }
}


/* VitaAvanza route bundle source: /vita-design-system.css */
:root {
  --va-canvas-primary: #faf8f5;
  --va-canvas-secondary: #f3efe8;
  --va-surface-deep: #ebe4d8;
  --va-surface-system: rgba(255, 255, 255, 0.78);
  --va-surface-intelligence: rgba(250, 248, 245, 0.72);

  --va-ink-primary: #1c1917;
  --va-text-secondary: #57534e;
  --va-text-muted: #78716c;

  --va-violet: #5b21b6;
  --va-violet-deep: #4c1d95;
  --va-violet-light: #6d44d1;
  --va-intelligence: #c12be3;
  --va-intelligence-text: #a21caf;
  --va-action: #e8520a;
  --va-action-text: #c2410c;
  --va-governed: #0891b2;
  --va-governed-text: #0e7490;
  --va-success: #059669;
  --va-success-text: #047857;

  --va-border-subtle: rgba(28, 25, 23, 0.12);
  --va-border-soft: rgba(28, 25, 23, 0.08);
  --va-border-control: #8f877f;
  --va-border-intelligence: rgba(91, 33, 182, 0.18);
  --va-border-governed: rgba(8, 145, 178, 0.22);

  --va-radius-control: 8px;
  --va-radius-small: 12px;
  --va-radius-surface: 16px;
  --va-radius-panel: 20px;
  --va-radius-editorial: 28px;
  --va-radius-pill: 9999px;

  --va-shadow-floating: 0 12px 40px rgba(28, 25, 23, 0.07);

  --va-glass-air-fill:
    linear-gradient(145deg, rgba(255, 255, 255, 0.48), rgba(255, 252, 249, 0.26));
  --va-glass-air-border: rgba(255, 255, 255, 0.70);
  --va-glass-air-filter: blur(22px) saturate(132%);
  --va-glass-air-highlight:
    inset 0 1px 0 rgba(255, 255, 255, 0.94),
    inset 1px 0 0 rgba(255, 255, 255, 0.42),
    inset -1px 0 0 rgba(91, 33, 182, 0.025);
  --va-glass-air-shadow: 0 14px 42px rgba(45, 24, 68, 0.055);

  --va-glass-system-fill:
    linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(250, 247, 243, 0.58) 52%, rgba(244, 239, 233, 0.52));
  --va-glass-system-border: rgba(255, 255, 255, 0.78);
  --va-glass-system-filter: blur(24px) saturate(126%);
  --va-glass-system-highlight:
    inset 0 1px 0 rgba(255, 255, 255, 0.96),
    inset 1px 0 0 rgba(255, 255, 255, 0.44),
    inset -1px 0 0 rgba(91, 33, 182, 0.028),
    0 0 0 1px rgba(91, 33, 182, 0.045);
  --va-glass-system-shadow: 0 28px 78px rgba(45, 24, 68, 0.085), 0 6px 18px rgba(45, 24, 68, 0.035);

  --va-glass-intelligence-fill:
    linear-gradient(142deg, rgba(255, 255, 255, 0.80), rgba(250, 247, 245, 0.54) 48%, rgba(247, 241, 249, 0.54));
  --va-glass-intelligence-border: rgba(255, 255, 255, 0.80);
  --va-glass-intelligence-filter: blur(26px) saturate(134%);
  --va-glass-intelligence-highlight:
    inset 0 1px 0 rgba(255, 255, 255, 0.97),
    inset 1px 0 0 rgba(255, 255, 255, 0.42),
    inset -1px 0 0 rgba(193, 43, 227, 0.035),
    0 0 0 1px rgba(91, 33, 182, 0.065);
  --va-glass-intelligence-shadow: 0 30px 82px rgba(45, 24, 68, 0.09), 0 7px 20px rgba(91, 33, 182, 0.035);

  --va-glass-private-fill:
    linear-gradient(145deg, rgba(255, 255, 255, 0.76), rgba(235, 228, 216, 0.60));
  --va-glass-private-filter: blur(34px) saturate(112%);
  --va-glass-governed-fill:
    linear-gradient(138deg, rgba(255, 255, 255, 0.84), rgba(250, 248, 245, 0.66));
  --va-glass-governed-filter: blur(22px) saturate(126%);

  --va-glass-violet-light: rgba(91, 33, 182, 0.12);
  --va-glass-magenta-light: rgba(193, 43, 227, 0.10);
  --va-glass-cyan-light: rgba(8, 145, 178, 0.10);
  --va-glass-specular: rgba(255, 255, 255, 0.72);

  --va-font-editorial: "Instrument Serif", Georgia, serif;
  --va-font-interface: "Manrope", Arial, sans-serif;
  --va-font-system: "JetBrains Mono", ui-monospace, monospace;

  --va-content-width: 86rem;
  --va-copy-width: 43rem;
  --va-ease-standard: cubic-bezier(0.22, 1, 0.36, 1);
}

body[data-va-page="home"] {
  margin: 0;
  background: var(--va-canvas-primary);
  color: var(--va-ink-primary);
  font-family: var(--va-font-interface);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body[data-va-page="home"] *,
body[data-va-page="home"] *::before,
body[data-va-page="home"] *::after {
  box-sizing: border-box;
}

.ci-home :where(h1, h2, h3, p, ul, ol, dl, dd, blockquote, figure) {
  margin: 0;
}

.ci-home :where(ul, ol) {
  padding: 0;
}

.ci-home :where(a) {
  color: inherit;
}

.va-canvas {
  background: var(--va-canvas-primary);
}

.va-eyebrow,
.va-system-label {
  display: inline-flex;
  align-items: center;
  gap: 0.62rem;
  color: var(--va-violet);
  font-family: var(--va-font-system);
  font-size: 0.69rem;
  font-weight: 600;
  letter-spacing: 0.19em;
  line-height: 1.4;
  text-transform: uppercase;
}

.va-system-label {
  color: var(--va-text-muted);
  font-size: 0.64rem;
  letter-spacing: 0.16em;
}

.va-eyebrow::before,
.va-state::before {
  width: 0.42rem;
  height: 0.42rem;
  flex: 0 0 auto;
  border-radius: var(--va-radius-pill);
  background: currentColor;
  content: "";
}

.va-surface,
.va-glass {
  position: relative;
  border: 1px solid var(--va-border-subtle);
  border-radius: var(--va-radius-surface);
  isolation: isolate;
  contain: paint;
}

.va-glass--air {
  overflow: hidden;
  border-color: var(--va-glass-air-border);
  background: var(--va-glass-air-fill);
  box-shadow: var(--va-glass-air-highlight), var(--va-glass-air-shadow);
  -webkit-backdrop-filter: var(--va-glass-air-filter);
  backdrop-filter: var(--va-glass-air-filter);
}

.va-surface--system,
.va-glass--system {
  --va-glass-fill: var(--va-glass-system-fill);
  --va-glass-border: var(--va-glass-system-border);
  --va-glass-filter: var(--va-glass-system-filter);
  --va-glass-highlight: var(--va-glass-system-highlight);
  --va-glass-shadow: var(--va-glass-system-shadow);
  overflow: hidden;
  border-color: rgba(255, 255, 255, 0.74);
  background: var(--va-glass-fill);
  box-shadow: var(--va-glass-highlight), var(--va-glass-shadow);
  -webkit-backdrop-filter: var(--va-glass-filter);
  backdrop-filter: var(--va-glass-filter);
}

.va-surface--system.va-surface--large {
  border-radius: var(--va-radius-panel);
}

.va-surface--floating {
  box-shadow: var(--va-glass-highlight, inset 0 1px 0 rgba(255, 255, 255, 0.78)),
    var(--va-glass-shadow, var(--va-shadow-floating));
}

.va-surface--intelligence,
.va-glass--intelligence {
  --va-glass-fill: var(--va-glass-intelligence-fill);
  --va-glass-border: var(--va-glass-intelligence-border);
  --va-glass-filter: var(--va-glass-intelligence-filter);
  --va-glass-highlight: var(--va-glass-intelligence-highlight);
  --va-glass-shadow: var(--va-glass-intelligence-shadow);
  overflow: hidden;
  border-color: rgba(255, 255, 255, 0.76);
  border-radius: var(--va-radius-panel);
  background: var(--va-glass-fill);
  box-shadow: var(--va-glass-highlight), var(--va-glass-shadow);
  -webkit-backdrop-filter: var(--va-glass-filter);
  backdrop-filter: var(--va-glass-filter);
}

.va-surface--system::after,
.va-surface--intelligence::after,
.va-glass--system::after,
.va-glass--intelligence::after,
.va-glass--air::after {
  position: absolute;
  z-index: 0;
  inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(
      circle 11rem at var(--glass-x, 14%) var(--glass-y, 4%),
      var(--va-glass-specular),
      rgba(255, 255, 255, 0.18) 28%,
      transparent 64%
    ),
    linear-gradient(122deg, rgba(255, 255, 255, 0.34), transparent 20%, transparent 72%, rgba(91, 33, 182, 0.035));
  content: "";
  opacity: 0.16;
  pointer-events: none;
  transition: opacity 240ms ease;
}

.is-specular-active.va-surface--system::after,
.is-specular-active.va-surface--intelligence::after,
[data-glass-specular].is-specular-active::after {
  opacity: clamp(0.08, var(--glass-specular-opacity, 0.18), 0.20);
}

.va-surface--system > *,
.va-surface--intelligence > *,
.va-glass--system > *,
.va-glass--intelligence > *,
.va-glass--air > * {
  position: relative;
  z-index: 1;
}

.va-surface--system::before,
.va-glass--system::before {
  position: absolute;
  z-index: 0;
  height: 1px;
  left: 1rem;
  right: 28%;
  top: 0;
  border-radius: var(--va-radius-pill);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.98) 18%, rgba(255, 255, 255, 0.46), transparent);
  content: "";
  opacity: 0.88;
  pointer-events: none;
}

.va-surface--intelligence::before,
.va-glass--intelligence::before {
  position: absolute;
  z-index: 0;
  inset: -34%;
  background:
    radial-gradient(circle at 82% 18%, rgba(193, 43, 227, 0.15), transparent 26%),
    radial-gradient(circle at 12% 76%, rgba(91, 33, 182, 0.13), transparent 34%);
  filter: blur(28px);
  opacity: 0.48;
  content: "";
  pointer-events: none;
  transform: scale(0.98);
  transition: opacity 700ms var(--va-ease-standard), transform 900ms var(--va-ease-standard);
}

.va-surface--intelligence.is-clear::before,
.va-surface--intelligence.is-visible::before {
  opacity: 0.72;
  transform: scale(1.015);
}

.va-state {
  display: inline-flex;
  align-items: center;
  gap: 0.48rem;
  color: var(--va-text-secondary);
  font-family: var(--va-font-system);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1.35;
  text-transform: uppercase;
}

.va-state--context {
  color: var(--va-violet);
}

.va-state--intelligence {
  color: var(--va-intelligence-text);
}

.va-state--action {
  color: var(--va-action-text);
}

.va-state--governed {
  color: var(--va-governed-text);
}

.va-state--success {
  color: var(--va-success-text);
}

.va-button {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  border: 1px solid transparent;
  border-radius: var(--va-radius-pill);
  padding: 0.78rem 1.35rem;
  font-family: var(--va-font-interface);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition:
    transform 180ms var(--va-ease-standard),
    border-color 180ms ease,
    background-color 180ms ease,
    color 180ms ease;
}

.va-button:hover {
  transform: translateY(-1px);
}

.va-button:active {
  transform: translateY(0);
}

.va-button--primary {
  border-color: rgba(232, 82, 10, 0.28);
  background: var(--va-action-text);
  color: #fff;
}

.va-button--primary:hover {
  background: #9a3412;
}

.va-button--secondary {
  border-color: var(--va-glass-air-border);
  background: var(--va-glass-air-fill);
  box-shadow: var(--va-glass-air-highlight), 0 8px 28px rgba(45, 24, 68, 0.045);
  color: var(--va-ink-primary);
  -webkit-backdrop-filter: blur(18px) saturate(130%);
  backdrop-filter: blur(18px) saturate(130%);
}

.va-button--secondary:hover {
  border-color: var(--va-violet);
  background: rgba(255, 255, 255, 0.82);
}

.va-button--quiet {
  min-height: 2.55rem;
  border-color: rgba(143, 135, 127, 0.58);
  border-radius: var(--va-radius-control);
  background: rgba(255, 255, 255, 0.56);
  padding: 0.62rem 0.86rem;
  color: var(--va-text-secondary);
  font-size: 0.78rem;
}

.va-button--quiet:hover {
  border-color: var(--va-violet);
  color: var(--va-ink-primary);
}

body[data-va-page="home"] :where(a, button, input, select, textarea):focus-visible {
  outline: 3px solid var(--va-governed-text);
  outline-offset: 4px;
}

@media (max-width: 767px) {
  .va-surface--system,
  .va-glass--system {
    --va-glass-filter: blur(18px) saturate(122%);
  }

  .va-surface--intelligence,
  .va-glass--intelligence {
    --va-glass-filter: blur(20px) saturate(128%);
  }

  .va-glass--air {
    -webkit-backdrop-filter: blur(16px) saturate(122%);
    backdrop-filter: blur(16px) saturate(122%);
  }

  .va-button {
    width: 100%;
    min-height: 3.1rem;
  }

  .va-button--quiet {
    width: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .va-button,
  .va-surface--system::after,
  .va-surface--intelligence::before,
  .va-surface--intelligence::after,
  .va-glass::before,
  .va-glass::after {
    transition: none;
  }

  .va-surface--intelligence::before,
  .va-glass--intelligence::before {
    opacity: 0.52;
    transform: none;
  }

  .va-button:hover,
  .va-button:active {
    transform: none;
  }
}

@supports not ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))) {
  .va-glass--air,
  .va-button--secondary {
    background: rgba(255, 255, 255, 0.88);
  }

  .va-surface--system,
  .va-glass--system,
  .va-surface--intelligence,
  .va-glass--intelligence {
    background: rgba(252, 250, 247, 0.94);
  }
}


/* VitaAvanza route bundle source: /for-organizations/organizations.css */
:root {
  --org-paper: #faf8f5;
  --org-paper-deep: #f3efe8;
  --org-ink: #1c1917;
  --org-copy: #57534e;
  --org-muted: #706964;
  --org-line: rgba(28, 25, 23, 0.12);
  --org-line-soft: rgba(28, 25, 23, 0.075);
  --org-cyan: #0891b2;
  --org-cyan-deep: #0e7490;
  --org-cyan-soft: rgba(8, 145, 178, 0.1);
  --org-violet: #5b21b6;
  --org-orange: #b9470b;
  --org-green: #047857;
  --org-serif: "Instrument Serif", Georgia, serif;
  --org-sans: "Manrope", Arial, sans-serif;
  --org-mono: "JetBrains Mono", ui-monospace, monospace;
  --org-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

body[data-va-page="organizations"] {
  margin: 0;
  overflow-x: clip;
  background: var(--org-paper);
  color: var(--org-ink);
  font-family: var(--org-sans);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body[data-va-page="organizations"] *,
body[data-va-page="organizations"] *::before,
body[data-va-page="organizations"] *::after {
  box-sizing: border-box;
}

.org-page {
  position: relative;
  isolation: isolate;
  overflow: clip;
  background:
    radial-gradient(circle at 86% 6%, rgba(8, 145, 178, 0.075), transparent 24rem),
    radial-gradient(circle at 12% 21%, rgba(91, 33, 182, 0.045), transparent 27rem),
    var(--org-paper);
}

.org-page :where(h1, h2, h3, p, ul, ol, dl, dd, figure) {
  margin: 0;
}

.org-page :where(ul, ol) {
  padding: 0;
}

.org-page :where(a) {
  color: inherit;
}

.org-page :where(section[id]) {
  scroll-margin-top: 7rem;
}

.org-visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.org-page :where(a, button):focus-visible {
  outline: 3px solid var(--org-cyan-deep);
  outline-offset: 4px;
}

.org-shell {
  width: min(calc(100% - 3rem), 86rem);
  margin-inline: auto;
}

.org-page .va-eyebrow {
  color: var(--org-cyan-deep);
  font-size: 0.75rem;
}

.org-page .va-button {
  min-height: 3.2rem;
  padding-inline: 1.35rem;
  gap: 0.75rem;
  justify-content: center;
}

.org-page .va-button--primary {
  background: var(--org-orange);
  box-shadow: 0 12px 28px rgba(185, 71, 11, 0.17), inset 0 1px 0 rgba(255,255,255,0.35);
}

.org-page .va-button--primary:hover {
  background: #9a3412;
}

.org-page .va-button--secondary {
  border-color: rgba(28, 25, 23, 0.14);
  background: rgba(255, 255, 255, 0.5);
}

.org-page h1,
.org-page h2 {
  font-family: var(--org-serif);
  font-weight: 400;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.org-page h1 em,
.org-page h2 em,
.org-principle-line em {
  color: var(--org-cyan-deep);
  font-weight: 400;
}

.org-page h3 {
  font-weight: 600;
  letter-spacing: -0.025em;
}

.org-hero {
  position: relative;
  min-height: 0;
  padding-block: calc(var(--va-site-nav-clearance, 6.25rem) + var(--va-hero-gap-split, 3.25rem)) var(--va-hero-bottom-split, 6rem);
}

.org-hero::before {
  position: absolute;
  inset: 7rem -12rem auto auto;
  width: min(54rem, 60vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(8, 145, 178, 0.12), rgba(91, 33, 182, 0.025) 45%, transparent 70%);
  filter: blur(10px);
  pointer-events: none;
  content: "";
}

.org-hero__layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(36rem, 1.1fr);
  align-items: start;
  gap: clamp(3rem, 7vw, 8rem);
}

.org-hero__copy {
  min-width: 0;
}

.org-hero h1 {
  max-width: 12ch;
  margin-top: 1.2rem;
  font-size: clamp(3.85rem, 5.55vw, 6.55rem);
  line-height: 0.92;
}

.org-hero__lead {
  max-width: 42rem;
  margin-top: 2rem;
  color: var(--org-copy);
  font-size: clamp(1.05rem, 1.35vw, 1.25rem);
  line-height: 1.62;
}

.org-hero__secondary {
  max-width: 40rem;
  margin-top: 1rem;
  color: var(--org-muted);
  font-size: 0.98rem;
}

.org-focus-statement {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-top: 1rem;
  color: var(--org-cyan-deep);
  font-family: var(--org-mono);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  line-height: 1.5;
  text-transform: uppercase;
}

.org-focus-statement span {
  width: 0.48rem;
  height: 0.48rem;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--org-orange);
  box-shadow: 0 0 0 0.35rem rgba(232, 82, 10, 0.08);
}

.org-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2.25rem;
}

.org-dual {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 4.4rem minmax(0, 1fr);
  gap: 1rem;
  min-width: 0;
  min-height: 38rem;
  padding: 5rem 1.25rem 1.25rem;
  border-radius: 1.75rem;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.86), rgba(248,246,244,0.64)),
    var(--org-paper-deep);
}

.org-dual::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background:
    radial-gradient(circle at 18% 25%, rgba(91,33,182,0.09), transparent 15rem),
    radial-gradient(circle at 83% 70%, rgba(8,145,178,0.11), transparent 16rem);
  content: "";
}

.org-dual__caption {
  position: absolute;
  top: 1.35rem;
  right: 1.5rem;
  left: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--org-line-soft);
  font-family: var(--org-mono);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.org-dual__caption span {
  color: var(--org-violet);
}

.org-dual__caption strong {
  color: var(--org-cyan-deep);
  font-size: inherit;
}

.org-environment {
  min-width: 0;
  padding: 1rem;
  border: 1px solid var(--org-line-soft);
  border-radius: 1.15rem;
  background: rgba(255, 255, 255, 0.5);
}

.org-environment > header {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.15rem 0.2rem 0.9rem;
}

.org-environment > header p,
.org-environment > header h2 {
  font-family: var(--org-mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  line-height: 1.35;
  text-transform: uppercase;
}

.org-environment > header p {
  color: var(--org-muted);
  font-size: 0.75rem;
}

.org-environment > header h2 {
  margin-top: 0.18rem;
  color: var(--org-ink);
  font-weight: 600;
}

.org-ui-dot {
  display: inline-block;
  width: 0.55rem;
  height: 0.55rem;
  flex: 0 0 auto;
  border-radius: 50%;
  box-shadow: 0 0 0 0.32rem rgba(28, 25, 23, 0.035);
}

.org-ui-dot--violet { background: var(--org-violet); }
.org-ui-dot--cyan { background: var(--org-cyan); }

.org-mini-console {
  overflow: hidden;
  border: 1px solid rgba(28,25,23,0.1);
  border-radius: 0.85rem;
  background: rgba(250, 248, 245, 0.88);
  box-shadow: 0 14px 35px rgba(45,24,68,0.05);
}

.org-mini-console__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
  padding: 0.75rem;
  border-bottom: 1px solid var(--org-line-soft);
  font-size: 0.75rem;
}

.org-mini-console__top span { color: var(--org-muted); }
.org-mini-console__top strong { color: var(--org-cyan-deep); font-weight: 600; }

.org-mini-console__list {
  list-style: none;
}

.org-mini-console__list li {
  display: grid;
  grid-template-columns: 1.65rem minmax(0, 1fr);
  gap: 0 0.5rem;
  padding: 0.72rem 0.75rem;
  border-bottom: 1px solid var(--org-line-soft);
}

.org-mini-console__list li:last-child { border-bottom: 0; }
.org-mini-console__list li > span { grid-row: 1 / span 2; color: var(--org-muted); font-family: var(--org-mono); font-size: 0.75rem; }
.org-mini-console__list strong { min-width: 0; font-size: 0.78rem; line-height: 1.25; }
.org-mini-console__list small { min-width: 0; margin-top: 0.16rem; color: var(--org-muted); font-size: 0.75rem; line-height: 1.25; }

.org-responsibility {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  color: var(--org-muted);
  text-align: center;
}

.org-responsibility span,
.org-responsibility strong {
  font-family: var(--org-mono);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.45;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.org-responsibility strong { color: var(--org-cyan-deep); }

.org-responsibility i {
  display: block;
  width: 1px;
  height: 6.2rem;
  background: linear-gradient(var(--org-violet), rgba(28,25,23,0.12), var(--org-cyan));
}

.org-section {
  position: relative;
  padding-block: clamp(7rem, 11vw, 11rem);
  border-top: 1px solid var(--org-line-soft);
}

.org-section-head {
  max-width: 66rem;
}

.org-section-head h2,
.org-operating__copy h2,
.org-dvi__copy h2,
.org-access__panel h2,
.org-closing h2 {
  margin-top: 1.1rem;
  font-size: clamp(3rem, 5.2vw, 5.8rem);
  line-height: 0.96;
}

.org-section-head > p:not(.va-eyebrow) {
  max-width: 46rem;
  margin-top: 1.5rem;
  color: var(--org-copy);
  font-size: 1.05rem;
}

.org-section-head--split {
  display: grid;
  max-width: none;
  grid-template-columns: minmax(0, 1.08fr) minmax(22rem, 0.62fr);
  align-items: end;
  gap: clamp(3rem, 9vw, 9rem);
}

.org-section-copy {
  color: var(--org-copy);
  font-size: 1rem;
}

.org-section-copy p + p { margin-top: 1rem; }
.org-section-copy strong { display: block; margin-top: 1.3rem; color: var(--org-cyan-deep); font-family: var(--org-mono); font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase; }

.org-section-head--center {
  margin-inline: auto;
  text-align: center;
}

.org-section-head--center .va-eyebrow { justify-content: center; }
.org-section-head--center > p:not(.va-eyebrow) { margin-inline: auto; }

.org-begins {
  background: linear-gradient(180deg, rgba(243,239,232,0.36), transparent 70%);
}

.org-fragment-field {
  display: grid;
  margin-top: clamp(3.5rem, 7vw, 7rem);
  grid-template-columns: repeat(8, minmax(0, 1fr));
  border-block: 1px solid var(--org-line);
}

.org-fragment-field span {
  position: relative;
  min-width: 0;
  padding: 1.55rem 0.5rem;
  color: var(--org-copy);
  font-family: var(--org-mono);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.org-fragment-field span + span { border-left: 1px solid var(--org-line-soft); }
.org-fragment-field span:nth-child(3n+1) { color: var(--org-violet); }
.org-fragment-field span:nth-child(3n+2) { color: var(--org-cyan-deep); }
.org-fragment-field span:nth-child(3n) { color: #b9470b; }

.org-types { background: rgba(255,255,255,0.2); }

.org-type-ledger {
  display: grid;
  margin-top: clamp(3.5rem, 7vw, 6.5rem);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-block: 1px solid var(--org-line);
}

.org-type-ledger section {
  min-width: 0;
  padding: clamp(2rem, 4vw, 3.5rem);
}

.org-type-ledger section + section { border-left: 1px solid var(--org-line); }

.org-ledger-index {
  color: var(--org-cyan-deep);
  font-family: var(--org-mono);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.org-type-ledger h3,
.org-human-boundary h3 {
  margin-top: 1.4rem;
  font-family: var(--org-serif);
  font-size: clamp(2rem, 3vw, 3.1rem);
  font-weight: 400;
  line-height: 1;
}

.org-type-ledger section > p:not(.org-ledger-index) {
  margin-top: 1.4rem;
  color: var(--org-copy);
}

.org-type-ledger ul,
.org-human-boundary ul {
  margin-top: 2rem;
  list-style: none;
}

.org-type-ledger li,
.org-human-boundary li {
  position: relative;
  padding: 0.65rem 0 0.65rem 1.2rem;
  border-top: 1px solid var(--org-line-soft);
  color: var(--org-copy);
  font-size: 0.88rem;
}

.org-type-ledger li::before,
.org-human-boundary li::before {
  position: absolute;
  top: 1.2rem;
  left: 0;
  width: 0.34rem;
  height: 0.34rem;
  border-radius: 50%;
  background: var(--org-cyan);
  content: "";
}

.org-type-ledger section:nth-child(2) .org-ledger-index,
.org-type-ledger section:nth-child(2) li::before { color: var(--org-orange); background: var(--org-orange); }
.org-type-ledger section:nth-child(3) .org-ledger-index,
.org-type-ledger section:nth-child(3) li::before { color: var(--org-violet); background: var(--org-violet); }

.org-scope-note {
  max-width: 57rem;
  margin: 2rem auto 0;
  color: var(--org-muted);
  font-size: 0.88rem;
  text-align: center;
}

.org-two-views {
  background:
    radial-gradient(circle at 50% 55%, rgba(8,145,178,0.07), transparent 30rem),
    linear-gradient(180deg, transparent, rgba(243,239,232,0.38), transparent);
}

.org-view-compare {
  display: grid;
  margin-top: clamp(3rem, 6vw, 5.5rem);
  grid-template-columns: minmax(0, 1fr) 6.8rem minmax(0, 1fr);
  padding: clamp(1.5rem, 4vw, 3.5rem);
  border-radius: 1.75rem;
}

.org-view-compare > section {
  min-width: 0;
  padding: clamp(1rem, 3vw, 2.5rem);
}

.org-view-compare__label {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--org-muted);
  font-family: var(--org-mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.org-view-compare h3 {
  margin-top: 1.4rem;
  font-family: var(--org-serif);
  font-size: clamp(2.6rem, 4vw, 4.3rem);
  font-weight: 400;
  line-height: 1;
}

.org-view-compare section > p { margin-top: 1rem; color: var(--org-copy); }

.org-view-compare section > .org-view-compare__intro {
  color: var(--org-copy);
  font-size: 0.87rem;
}

.org-view-compare__intro + p {
  padding-top: 0.9rem;
  border-top: 1px solid var(--org-line-soft);
  font-size: 0.82rem;
  font-weight: 600;
}

.org-view-compare ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.6rem;
  list-style: none;
}

.org-view-compare li {
  padding: 0.65rem 0.85rem;
  border: 1px solid var(--org-line);
  border-radius: 999px;
  background: rgba(255,255,255,0.42);
  font-size: 0.8rem;
}

.org-view-compare__boundary {
  display: flex;
  align-items: center;
  justify-content: center;
}

.org-view-compare__boundary::before {
  width: 1px;
  height: 100%;
  background: linear-gradient(transparent, var(--org-violet), var(--org-cyan), transparent);
  content: "";
}

.org-view-compare__boundary span {
  position: absolute;
  padding: 0.8rem 0.35rem;
  background: rgba(250,248,245,0.92);
  color: var(--org-cyan-deep);
  font-family: var(--org-mono);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.org-principle-line {
  margin-top: 2.75rem;
  font-family: var(--org-serif);
  font-size: clamp(2rem, 3.7vw, 4.1rem);
  line-height: 1;
  text-align: center;
}

.org-operating__layout,
.org-dvi__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.68fr) minmax(36rem, 1.32fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 8rem);
}

.org-operating__copy p:not(.va-eyebrow),
.org-dvi__copy > p:not(.va-eyebrow):not(.org-dvi__declaration) {
  margin-top: 1.6rem;
  color: var(--org-copy);
  font-size: 1.05rem;
}

.org-inline-boundary {
  padding-top: 1.5rem;
  border-top: 1px solid var(--org-line);
  font-size: 0.9rem !important;
}

.org-console {
  min-width: 0;
  padding: clamp(1.25rem, 3vw, 2.25rem);
  border-radius: 1.75rem;
}

.org-console figcaption,
.org-dvi-instrument figcaption,
.org-reasoning-flow figcaption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1.1rem;
  border-bottom: 1px solid var(--org-line-soft);
  color: var(--org-cyan-deep);
  font-family: var(--org-mono);
  font-size: 0.75rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.org-console figcaption strong { color: var(--org-ink); font-size: inherit; }

.org-console__status {
  display: grid;
  margin-top: 1.5rem;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  border: 1px solid rgba(8,145,178,0.16);
  border-radius: 0.9rem;
  background: rgba(8,145,178,0.055);
}

.org-console__status p { color: var(--org-muted); font-family: var(--org-mono); font-size: 0.75rem; letter-spacing: 0.08em; text-transform: uppercase; }
.org-console__status strong { font-size: 0.78rem; }

.org-console__grid {
  display: grid;
  margin-top: 0.8rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.org-console__grid section {
  min-width: 0;
  min-height: 9rem;
  padding: 1rem;
  border: 1px solid var(--org-line-soft);
  border-radius: 0.9rem;
  background: rgba(255,255,255,0.48);
}

.org-console__grid span { color: var(--org-muted); font-family: var(--org-mono); font-size: 0.75rem; letter-spacing: 0.08em; text-transform: uppercase; }
.org-console__grid strong { display: block; margin-top: 0.65rem; color: var(--org-cyan-deep); font-size: 1rem; }
.org-console__grid p { margin-top: 0.45rem; color: var(--org-copy); font-size: 0.76rem; }
.org-console__grid .org-console__vareon { background: linear-gradient(145deg, rgba(91,33,182,0.075), rgba(255,255,255,0.5)); }
.org-console__grid .org-console__vareon strong { color: var(--org-violet); }
.org-console__grid .org-console__human { border-color: rgba(4,120,87,0.18); background: rgba(4,120,87,0.055); }
.org-console__grid .org-console__human strong { color: var(--org-green); }

.org-console__note {
  margin-top: 1rem;
  color: var(--org-muted);
  font-family: var(--org-mono);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-align: right;
  text-transform: uppercase;
}

.org-vareon {
  background:
    radial-gradient(circle at 25% 30%, rgba(91,33,182,0.065), transparent 24rem),
    rgba(255,255,255,0.18);
}

.org-reasoning-flow {
  display: grid;
  margin-top: clamp(3.5rem, 7vw, 6.5rem);
  grid-template-columns: repeat(5, auto);
  align-items: stretch;
  gap: 1rem;
  padding: clamp(1.5rem, 4vw, 3rem);
  border-radius: 1.75rem;
}

.org-reasoning-flow figcaption {
  grid-column: 1 / -1;
}

.org-reasoning-flow > div {
  min-width: 0;
  padding: clamp(1.25rem, 2.5vw, 2rem);
  border: 1px solid var(--org-line-soft);
  border-radius: 1rem;
  background: rgba(255,255,255,0.45);
}

.org-reasoning-flow > div span { color: var(--org-violet); font-family: var(--org-mono); font-size: 0.75rem; }
.org-reasoning-flow > div small { display: block; margin-top: 1.35rem; color: var(--org-cyan-deep); font-family: var(--org-mono); font-size: 0.75rem; letter-spacing: 0.08em; text-transform: uppercase; }
.org-reasoning-flow > div strong { display: block; margin-top: 0.7rem; font-size: 1.05rem; }
.org-reasoning-flow > i { align-self: center; color: var(--org-cyan); font-size: 1.25rem; font-style: normal; transform: rotate(-90deg); }
.org-reasoning-flow > .is-human { border-color: rgba(4,120,87,0.18); background: rgba(4,120,87,0.055); }
.org-reasoning-flow > .is-human small,
.org-reasoning-flow > .is-human span { color: var(--org-green); }

.org-dvi {
  background: linear-gradient(180deg, rgba(243,239,232,0.44), rgba(250,248,245,0.4));
}

.org-dvi__declaration {
  display: inline-block;
  margin-top: 2rem;
  padding: 0.72rem 0.95rem;
  border: 1px solid rgba(232,82,10,0.25);
  border-radius: 999px;
  color: #b9470b;
  font-family: var(--org-mono);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.org-text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin-top: 1.8rem;
  border-bottom: 1px solid currentColor;
  color: var(--org-cyan-deep) !important;
  font-weight: 650;
  text-decoration: none;
}

.org-text-link:hover { color: var(--org-orange) !important; }

.org-dvi-instrument {
  display: grid;
  min-width: 0;
  grid-template-columns: 13rem minmax(0, 1fr);
  gap: 1.4rem;
  padding: clamp(1.5rem, 4vw, 3rem);
  border-radius: 1.75rem;
}

.org-dvi-instrument figcaption { grid-column: 1 / -1; }

.org-dvi-score {
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  border-radius: 50%;
  background: conic-gradient(var(--org-orange) 0 76%, rgba(28,25,23,0.09) 76% 100%);
}

.org-dvi-score::before {
  position: absolute;
  width: 9.8rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(250,248,245,0.94);
  box-shadow: inset 0 0 0 1px var(--org-line-soft);
  content: "";
}

.org-dvi-score > div { position: relative; z-index: 1; text-align: center; }
.org-dvi-score span { display: block; color: var(--org-muted); font-family: var(--org-mono); font-size: 0.75rem; letter-spacing: 0.16em; }
.org-dvi-score strong { display: block; margin-top: 0.1rem; font-family: "Sora", var(--org-sans); font-size: 4.2rem; line-height: 1; }

.org-dvi-summary {
  display: grid;
  align-self: start;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}

.org-dvi-summary div { padding: 0.9rem; border: 1px solid var(--org-line-soft); border-radius: 0.8rem; background: rgba(255,255,255,0.4); }
.org-dvi-summary dt { color: var(--org-muted); font-family: var(--org-mono); font-size: 0.75rem; letter-spacing: 0.08em; text-transform: uppercase; }
.org-dvi-summary dd { margin-top: 0.45rem; color: #b9470b; font-size: 1rem; font-weight: 650; }

.org-dvi-dimensions {
  display: grid;
  grid-column: 2;
  gap: 0.8rem;
}

.org-dvi-dimensions > div { display: grid; grid-template-columns: 5.5rem minmax(0,1fr); align-items: center; gap: 0.8rem; }
.org-dvi-dimensions dt { color: var(--org-copy); font-family: var(--org-mono); font-size: 0.75rem; text-transform: uppercase; }
.org-dvi-dimensions dd { display: grid; grid-template-columns: minmax(0,1fr) 2rem; align-items: center; gap: 0.65rem; }
.org-dvi-dimensions dd > span { display: block; height: 0.38rem; overflow: hidden; border-radius: 999px; background: rgba(28,25,23,0.08); }
.org-dvi-dimensions dd > span::after { display: block; width: var(--org-value); height: 100%; border-radius: inherit; background: var(--org-dimension-color); content: ""; }
.org-dvi-dimensions dd strong { color: var(--org-dimension-color); font-family: "Sora", var(--org-sans); font-size: 0.76rem; text-align: right; }
.org-dvi-dimensions > div:nth-child(1) { --org-dimension-color: #006b43; }
.org-dvi-dimensions > div:nth-child(2) { --org-dimension-color: #875800; }
.org-dvi-dimensions > div:nth-child(3) { --org-dimension-color: #006c78; }
.org-dvi-dimensions > div:nth-child(4) { --org-dimension-color: #6527bd; }

.org-human-boundary {
  display: grid;
  margin-top: clamp(3.5rem, 7vw, 6rem);
  grid-template-columns: minmax(0,1fr) 9rem minmax(0,1fr);
  border-block: 1px solid var(--org-line);
}

.org-human-boundary > section { min-width: 0; padding: clamp(2rem, 5vw, 4.5rem); }
.org-human-boundary > section:last-child { background: rgba(4,120,87,0.045); }
.org-human-boundary > section:last-child .org-ledger-index { color: var(--org-green); }
.org-human-boundary > section:last-child li::before { background: var(--org-green); }

.org-human-boundary > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  border-inline: 1px solid var(--org-line);
}

.org-human-boundary > div span { color: var(--org-muted); font-family: var(--org-mono); font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; }
.org-human-boundary > div span:last-child { color: var(--org-green); }
.org-human-boundary > div i { width: 1px; height: 7rem; background: linear-gradient(var(--org-cyan), var(--org-green)); }

.org-use { background: rgba(255,255,255,0.17); }
.org-use .org-section-head--split { align-items: start; }
.org-use .org-section-head--split > p { color: var(--org-copy); }

.org-use-rail {
  margin-top: clamp(3.5rem, 7vw, 6rem);
  border-top: 1px solid var(--org-line);
  list-style: none;
}

.org-use-rail li {
  display: grid;
  grid-template-columns: 5rem minmax(14rem, 0.7fr) minmax(0, 1fr);
  align-items: baseline;
  gap: 1rem;
  padding: 1.65rem 0;
  border-bottom: 1px solid var(--org-line);
}

.org-use-rail li > span { color: var(--org-cyan-deep); font-family: var(--org-mono); font-size: 0.75rem; }
.org-use-rail li > div { display: contents; }
.org-use-rail h3 { font-family: var(--org-serif); font-size: clamp(1.65rem,2.5vw,2.45rem); font-weight: 400; line-height: 1.05; }
.org-use-rail p { max-width: 42rem; color: var(--org-copy); font-size: 0.92rem; }

.org-access {
  padding-block: clamp(5rem, 9vw, 9rem);
}

.org-access__panel {
  display: grid;
  grid-template-columns: minmax(0,0.9fr) minmax(24rem,0.7fr);
  gap: clamp(3rem,9vw,9rem);
  padding: clamp(2rem,6vw,5rem);
  border-radius: 1.75rem;
  background:
    radial-gradient(circle at 90% 15%, rgba(8,145,178,0.08), transparent 22rem),
    linear-gradient(145deg, rgba(255,255,255,0.8), rgba(246,242,238,0.62));
}

.org-access__panel > div:last-child { color: var(--org-copy); }
.org-access__panel > div:last-child p + p { margin-top: 1rem; }
.org-access__panel > div:last-child strong { display: block; margin-top: 1.6rem; padding-top: 1.6rem; border-top: 1px solid var(--org-line); color: var(--org-cyan-deep); font-size: 0.9rem; }

.org-deployment-rail {
  display: grid;
  margin-top: clamp(3.5rem,7vw,6rem);
  grid-template-columns: repeat(4, minmax(0,1fr));
  border-block: 1px solid var(--org-line);
  list-style: none;
}

.org-deployment-rail li { position: relative; min-width: 0; padding: clamp(2rem,4vw,3.5rem); }
.org-deployment-rail li + li { border-left: 1px solid var(--org-line); }
.org-deployment-rail span { color: var(--org-orange); font-family: var(--org-mono); font-size: 0.75rem; }
.org-deployment-rail h3 { margin-top: 2.5rem; font-family: var(--org-serif); font-size: clamp(2rem,3vw,3rem); font-weight: 400; }
.org-deployment-rail p { margin-top: 1rem; color: var(--org-copy); font-size: 0.88rem; }

.org-future {
  background:
    radial-gradient(circle at 80% 24%, rgba(91,33,182,0.06), transparent 28rem),
    linear-gradient(180deg, rgba(243,239,232,0.4), transparent);
}

.org-future-chapters {
  display: grid;
  margin-top: clamp(3.5rem,7vw,6rem);
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: clamp(1.5rem,4vw,3rem);
}

.org-future-chapters section {
  min-width: 0;
  padding-top: 1.5rem;
  border-top: 2px solid var(--org-cyan);
}

.org-future-chapters section:nth-child(2) { border-color: var(--org-violet); }
.org-future-chapters section:nth-child(3) { border-color: var(--org-orange); }
.org-future-chapters span { color: var(--org-muted); font-family: var(--org-mono); font-size: 0.75rem; letter-spacing: 0.08em; text-transform: uppercase; }
.org-future-chapters h3 { margin-top: 1.5rem; font-family: var(--org-serif); font-size: clamp(2.25rem,3.5vw,3.7rem); font-weight: 400; line-height: 1; }
.org-future-chapters p { margin-top: 1.3rem; color: var(--org-copy); }

.org-principles-rail {
  margin-top: clamp(3.5rem,7vw,6rem);
  border-top: 1px solid var(--org-line);
}

.org-principles-rail > div {
  display: grid;
  grid-template-columns: minmax(14rem,0.55fr) minmax(0,1fr);
  gap: 2rem;
  padding: 1.65rem 0;
  border-bottom: 1px solid var(--org-line);
}

.org-principles-rail dt { color: var(--org-cyan-deep); font-family: var(--org-mono); font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; }
.org-principles-rail dd { color: var(--org-copy); }

.org-proof {
  border-block: 1px solid var(--org-line);
  background: rgba(255,255,255,0.24);
}

.org-proof__inner {
  display: grid;
  grid-template-columns: auto minmax(0,1fr) auto;
  align-items: center;
  gap: clamp(2rem,6vw,6rem);
  padding-block: 2.25rem;
}

.org-proof__inner > p:not(.va-eyebrow) { max-width: 44rem; color: var(--org-copy); }
.org-proof ul { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 0.5rem 1.3rem; list-style: none; color: var(--org-muted); font-family: var(--org-mono); font-size: 0.75rem; letter-spacing: 0.06em; text-transform: uppercase; }
.org-proof li { position: relative; padding-left: 0.8rem; }
.org-proof li::before { position: absolute; top: 0.65em; left: 0; width: 0.28rem; height: 0.28rem; border-radius: 50%; background: var(--org-cyan); content: ""; }

.org-closing {
  position: relative;
  padding-block: clamp(8rem,13vw,13rem);
  overflow: hidden;
  text-align: center;
}

.org-closing::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(70rem, 90vw);
  aspect-ratio: 2 / 1;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(8,145,178,0.09), rgba(91,33,182,0.035) 48%, transparent 72%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  content: "";
}

.org-closing__inner { position: relative; z-index: 1; }
.org-closing .va-eyebrow { justify-content: center; }
.org-closing h2 { max-width: 13ch; margin-inline: auto; }
.org-closing__inner > p { max-width: 46rem; margin: 1.7rem auto 0; color: var(--org-copy); font-size: 1.08rem; }
.org-closing .org-actions { justify-content: center; }
.org-closing__inner > strong { display: block; margin-top: 4rem; color: var(--org-cyan-deep); font-family: var(--org-mono); font-size: 0.75rem; letter-spacing: 0.16em; text-transform: uppercase; }

.org-motion-ready .org-page [data-org-reveal] {
  opacity: 0;
  transform: translateY(1.1rem);
  transition:
    opacity 700ms var(--org-ease) var(--org-delay, 0ms),
    transform 760ms var(--org-ease) var(--org-delay, 0ms);
}

.org-motion-ready .org-page [data-org-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1240px) {
  .org-hero__layout {
    grid-template-columns: minmax(0, 0.9fr) minmax(32rem, 1.1fr);
    gap: 2.5rem;
  }

  .org-hero h1 { font-size: clamp(3.55rem, 5.9vw, 5.3rem); }
  .org-dual { grid-template-columns: minmax(0,1fr) 3.2rem minmax(0,1fr); }
  .org-responsibility span { display: none; }
  .org-operating__layout,
  .org-dvi__layout { grid-template-columns: minmax(0,0.62fr) minmax(32rem,1.38fr); gap: 3rem; }
}

@media (max-width: 1050px) {
  .org-hero { padding-top: calc(var(--va-site-nav-clearance, 6.25rem) + var(--va-hero-gap-split, 3.25rem)); }
  .org-hero__layout { grid-template-columns: 1fr; }
  .org-hero__copy { max-width: 53rem; }
  .org-hero h1 { max-width: 13ch; font-size: clamp(4rem, 8.5vw, 6.2rem); }
  .org-dual { min-height: auto; }
  .org-section-head--split { grid-template-columns: minmax(0,1fr) minmax(19rem,0.62fr); gap: 3rem; }
  .org-type-ledger section { padding-inline: 1.5rem; }
  .org-operating__layout,
  .org-dvi__layout { grid-template-columns: 1fr; }
  .org-operating__copy,
  .org-dvi__copy { max-width: 52rem; }
  .org-console,
  .org-dvi-instrument { width: 100%; }
  .org-human-boundary { grid-template-columns: minmax(0,1fr) 6rem minmax(0,1fr); }
  .org-human-boundary > section { padding-inline: 2rem; }
  .org-use-rail li { grid-template-columns: 3rem minmax(12rem,0.7fr) minmax(0,1fr); }
  .org-proof__inner { grid-template-columns: auto minmax(0,1fr); }
  .org-proof ul { grid-column: 1 / -1; justify-content: flex-start; }
}

@media (min-width: 701px) and (max-width: 1050px) {
  html[lang="it"] .org-hero h1 { max-width: 16ch; }
}

@media (max-width: 820px) {
  .org-shell { width: min(calc(100% - 2.25rem), 46rem); }
  .org-section { padding-block: 7rem; }
  .org-section-head--split { grid-template-columns: 1fr; align-items: start; }
  .org-section-copy { max-width: 40rem; }
  .org-fragment-field { grid-template-columns: repeat(4, minmax(0,1fr)); }
  .org-fragment-field span:nth-child(5) { border-left: 0; border-top: 1px solid var(--org-line-soft); }
  .org-fragment-field span:nth-child(n+6) { border-top: 1px solid var(--org-line-soft); }
  .org-type-ledger { grid-template-columns: 1fr; }
  .org-type-ledger section + section { border-top: 1px solid var(--org-line); border-left: 0; }
  .org-view-compare { grid-template-columns: 1fr; }
  .org-view-compare__boundary { min-height: 5rem; }
  .org-view-compare__boundary::before { width: 100%; height: 1px; background: linear-gradient(90deg,transparent,var(--org-violet),var(--org-cyan),transparent); }
  .org-view-compare__boundary span { padding: 0.35rem 0.8rem; writing-mode: initial; }
  .org-reasoning-flow { grid-template-columns: 1fr; }
  .org-reasoning-flow figcaption { grid-column: auto; }
  .org-reasoning-flow > i { justify-self: center; transform: none; }
  .org-human-boundary { grid-template-columns: 1fr; }
  .org-human-boundary > div { min-height: 5rem; flex-direction: row; border-block: 1px solid var(--org-line); border-inline: 0; }
  .org-human-boundary > div i { width: 7rem; height: 1px; background: linear-gradient(90deg,var(--org-cyan),var(--org-green)); }
  .org-use-rail li { grid-template-columns: 2.5rem minmax(0,1fr); }
  .org-use-rail li > div { display: block; }
  .org-use-rail p { margin-top: 0.6rem; }
  .org-access__panel { grid-template-columns: 1fr; }
  .org-deployment-rail { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .org-deployment-rail li:nth-child(3) { border-top: 1px solid var(--org-line); border-left: 0; }
  .org-deployment-rail li:nth-child(4) { border-top: 1px solid var(--org-line); }
  .org-future-chapters { grid-template-columns: 1fr; gap: 3rem; }
}

@media (max-width: 700px) {
  .org-hero { padding-block: calc(var(--va-site-nav-clearance, 4.75rem) + var(--va-hero-gap-split, 2.25rem)) var(--va-hero-bottom-split, 4.5rem); }
  .org-hero h1 { font-size: clamp(3.25rem, 15.4vw, 4.8rem); }
  .org-hero__lead { font-size: 1rem; }
  .org-actions { align-items: stretch; flex-direction: column; }
  .org-actions .va-button { width: 100%; }
  .org-dual { grid-template-columns: 1fr; gap: 0.9rem; padding: 1.25rem; }
  .org-dual__caption { position: static; flex-direction: column; align-items: flex-start; padding: 0 0 1rem; }
  .org-responsibility { min-height: 6rem; flex-direction: row; }
  .org-responsibility span { display: block; writing-mode: initial; transform: none; }
  .org-responsibility strong { writing-mode: initial; transform: none; }
  .org-responsibility i { width: 2.7rem; height: 1px; background: linear-gradient(90deg,var(--org-violet),var(--org-cyan)); }
  .org-section-head h2,
  .org-operating__copy h2,
  .org-dvi__copy h2,
  .org-access__panel h2,
  .org-closing h2 { font-size: clamp(2.75rem, 13vw, 4.1rem); }
  .org-dvi-instrument { grid-template-columns: 1fr; }
  .org-dvi-score { width: min(13rem,72vw); justify-self: center; }
  .org-dvi-dimensions { grid-column: auto; }
  .org-dvi-summary { align-self: stretch; }
  .org-console__grid { grid-template-columns: 1fr; }
  .org-console__grid section { min-height: 0; }
  .org-console__status { grid-template-columns: auto 1fr; }
  .org-console__status strong { grid-column: 2; }
  .org-principles-rail > div { grid-template-columns: 1fr; gap: 0.65rem; }
  .org-proof__inner { grid-template-columns: 1fr; }
  .org-proof ul { grid-column: auto; }
}

@media (max-width: 700px) {
  html[lang="it"] .org-hero h1 {
    font-size: clamp(2.9rem, 13.8vw, 4.25rem);
  }
}

@media (max-width: 480px) {
  .org-shell { width: calc(100% - 2rem); }
  .org-page .va-eyebrow { font-size: 0.75rem; letter-spacing: 0.15em; }
  .org-focus-statement { align-items: flex-start; font-size: 0.75rem; }
  .org-fragment-field { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .org-fragment-field span:nth-child(odd) { border-left: 0; }
  .org-fragment-field span:nth-child(n+3) { border-top: 1px solid var(--org-line-soft); }
  .org-type-ledger section { padding: 2rem 0.25rem; }
  .org-view-compare { padding: 1rem; }
  .org-view-compare > section { padding-inline: 0.35rem; }
  .org-view-compare li { font-size: 0.78rem; }
  .org-console,
  .org-dvi-instrument,
  .org-reasoning-flow,
  .org-access__panel { padding: 1rem; border-radius: 1.2rem; }
  .org-console figcaption,
  .org-dvi-instrument figcaption,
  .org-reasoning-flow figcaption { align-items: flex-start; flex-direction: column; }
  .org-dvi-summary { grid-template-columns: 1fr; }
  .org-dvi-dimensions > div { grid-template-columns: 4.7rem minmax(0,1fr); }
  .org-human-boundary > section { padding: 2rem 0.25rem; }
  .org-human-boundary > div span { font-size: 0.75rem; }
  .org-use-rail li { grid-template-columns: 2rem minmax(0,1fr); }
  .org-deployment-rail { grid-template-columns: 1fr; }
  .org-deployment-rail li + li { border-top: 1px solid var(--org-line); border-left: 0; }
  .org-deployment-rail li { padding-inline: 0.25rem; }
  .org-closing__inner > strong { font-size: 0.75rem; }
}

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

  .org-motion-ready .org-page [data-org-reveal] {
    opacity: 1;
    transform: none;
  }
}

@media (forced-colors: active) {
  .org-dvi-score { border: 0.5rem solid CanvasText; background: Canvas; }
  .org-dvi-dimensions dd > span { border: 1px solid CanvasText; }
  .org-dvi-dimensions dd > span::after { background: CanvasText; }
  .org-ui-dot,
  .org-focus-statement span,
  .org-type-ledger li::before,
  .org-human-boundary li::before { border: 1px solid CanvasText; background: CanvasText; }
}


/* VitaAvanza route bundle source: /site-shell/site-shell.css */
:root {
  --va-shell-paper: #faf8f5;
  --va-shell-paper-soft: #f3efe8;
  --va-shell-paper-deep: #ebe4d8;
  --va-shell-ink: #1c1917;
  --va-shell-ink-secondary: #57534e;
  --va-shell-ink-muted: #78716c;
  --va-shell-violet: #5b21b6;
  --va-shell-violet-deep: #4c1d95;
  --va-shell-magenta: #c12be3;
  --va-shell-orange: #e8520a;
  --va-shell-orange-deep: #c2410c;
  --va-shell-cyan: #0891b2;
  --va-shell-green: #059669;
  --va-shell-serif: "Instrument Serif", Georgia, serif;
  --va-shell-sans: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --va-shell-mono: "JetBrains Mono", "SFMono-Regular", Consolas, monospace;
  --va-shell-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --va-shell-width: 87.5rem;
  --va-shell-page-accent: var(--va-shell-violet);
  --va-shell-page-accent-soft: rgba(91, 33, 182, 0.075);
  /* Shared first-screen calibration. Page styles compose one clearance value
     with the appropriate hero gap instead of recreating sticky-nav offsets. */
  --va-site-nav-clearance: clamp(5.75rem, 7vw, 6.5rem);
  --va-hero-gap-compact: clamp(2.25rem, 3vw, 3rem);
  --va-hero-gap-standard: clamp(3rem, 4vw, 4rem);
  --va-hero-gap-editorial: clamp(3.5rem, 4.5vw, 4.75rem);
  --va-hero-gap-product: clamp(2.75rem, 3.5vw, 3.75rem);
  --va-hero-gap-split: clamp(2.75rem, 3.5vw, 3.75rem);
  --va-hero-gap-utility: clamp(2.25rem, 2.75vw, 3rem);
  --va-hero-bottom-compact: clamp(4.5rem, 6vw, 6rem);
  --va-hero-bottom-standard: clamp(5rem, 7vw, 7rem);
  --va-hero-bottom-editorial: clamp(5.5rem, 8vw, 8rem);
  --va-hero-bottom-product: clamp(5rem, 7vw, 7rem);
  --va-hero-bottom-split: clamp(5rem, 7vw, 7rem);
  --va-hero-bottom-utility: clamp(4rem, 5vw, 5.5rem);
}

@media (max-width: 47.9375rem) {
  :root {
    --va-site-nav-clearance: 4.75rem;
    --va-hero-gap-compact: 2rem;
    --va-hero-gap-standard: 2.5rem;
    --va-hero-gap-editorial: 2.75rem;
    --va-hero-gap-product: 2.25rem;
    --va-hero-gap-split: 2.25rem;
    --va-hero-gap-utility: 2rem;
    --va-hero-bottom-compact: 4rem;
    --va-hero-bottom-standard: 4.5rem;
    --va-hero-bottom-editorial: 4.75rem;
    --va-hero-bottom-product: 4.5rem;
    --va-hero-bottom-split: 4.5rem;
    --va-hero-bottom-utility: 4rem;
  }
}

body[data-va-accent="cyan"] {
  --va-shell-page-accent: var(--va-shell-cyan);
  --va-shell-page-accent-soft: rgba(8, 145, 178, 0.075);
}

body[data-va-accent="magenta"] {
  --va-shell-page-accent: var(--va-shell-magenta);
  --va-shell-page-accent-soft: rgba(193, 43, 227, 0.075);
}

body[data-va-accent="orange"] {
  --va-shell-page-accent: var(--va-shell-orange);
  --va-shell-page-accent-soft: rgba(232, 82, 10, 0.075);
}

body[data-va-accent="green"] {
  --va-shell-page-accent: var(--va-shell-green);
  --va-shell-page-accent-soft: rgba(5, 150, 105, 0.075);
}

.va-shell-header,
.va-shell-header *,
.va-shell-mobile,
.va-shell-mobile *,
.va-shell-backdrop,
.va-shell-newsletter,
.va-shell-newsletter *,
.va-shell-ecosystem,
.va-shell-ecosystem *,
.va-shell-footer,
.va-shell-footer *,
.va-welcome,
.va-welcome *,
.va-shell-nojs,
.va-shell-nojs * {
  box-sizing: border-box;
}

html {
  scroll-padding-top: 7rem;
  overflow-x: clip;
}

body.va-shell-menu-open {
  overflow: hidden !important;
}

body[data-va-shell-version="2"] {
  animation-fill-mode: backwards !important;
  overflow-x: clip;
}

html body[data-va-shell-version="2"] > .va-cookie-banner {
  position: fixed !important;
  right: 1rem !important;
  left: 1rem !important;
  width: calc(100vw - 2rem) !important;
  max-width: calc(100vw - 2rem) !important;
}

/* Legacy visual layers assign position: relative to every direct body child.
   Keep the canonical shell overlays out of document flow on those routes. */
body[data-va-shell-version="2"] > .va-shell-backdrop,
body[data-va-shell-version="2"] > .va-shell-mobile,
body[data-va-shell-version="2"] > .va-welcome {
  position: fixed !important;
}

.va-shell-sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.va-shell-skip {
  position: fixed !important;
  z-index: 100000 !important;
  top: 0.75rem !important;
  left: 0.75rem !important;
  padding: 0.78rem 1rem !important;
  border-radius: 0.75rem !important;
  background: var(--va-shell-paper) !important;
  color: var(--va-shell-violet-deep) !important;
  font: 600 0.8rem/1 var(--va-shell-sans) !important;
  box-shadow: 0 12px 34px rgba(48, 27, 76, 0.16) !important;
  transform: translateY(-170%) !important;
  transition: transform 180ms var(--va-shell-ease) !important;
}

.va-shell-skip:focus {
  transform: translateY(0) !important;
}

.va-shell-header a:focus-visible,
.va-shell-header button:focus-visible,
.va-shell-mobile a:focus-visible,
.va-shell-mobile button:focus-visible,
.va-shell-mobile summary:focus-visible,
.va-shell-newsletter a:focus-visible,
.va-shell-newsletter button:focus-visible,
.va-shell-newsletter input:focus-visible,
.va-shell-ecosystem a:focus-visible,
.va-shell-footer a:focus-visible,
.va-shell-footer button:focus-visible,
.va-shell-nojs a:focus-visible,
.va-shell-nojs summary:focus-visible {
  outline: 3px solid rgba(8, 145, 178, 0.82) !important;
  outline-offset: 4px !important;
}

/* Three-zone desktop navigation: 1fr / auto / 1fr. */
.va-shell-header {
  position: fixed;
  z-index: 9000;
  top: 1.25rem;
  left: 50%;
  width: min(calc(100% - 4rem), var(--va-shell-width));
  color: var(--va-shell-ink);
  font-family: var(--va-shell-sans);
  transform: translateX(-50%);
  isolation: isolate;
}

body > .va-shell-header[data-va-shell-header] {
  position: fixed !important;
  z-index: 9000 !important;
  min-height: 0 !important;
  padding-block: 0 !important;
  background: transparent !important;
}

.va-shell-header__frame {
  position: relative;
  display: grid;
  min-height: 4.5rem;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 1rem;
  padding: 0.5rem 0.65rem 0.5rem 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 1.4rem;
  background:
    linear-gradient(148deg, rgba(255, 255, 255, 0.58), rgba(255, 252, 249, 0.34)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.9), rgba(91, 33, 182, 0.045) 56%, rgba(232, 82, 10, 0.035));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.98),
    inset 1px 0 0 rgba(255, 255, 255, 0.55),
    0 15px 46px rgba(48, 27, 76, 0.075),
    0 6px 20px rgba(232, 82, 10, 0.035);
  -webkit-backdrop-filter: blur(22px) saturate(128%);
  backdrop-filter: blur(22px) saturate(128%);
  transition: background 240ms var(--va-shell-ease), box-shadow 240ms var(--va-shell-ease), backdrop-filter 240ms var(--va-shell-ease);
}

.va-shell-header__frame::before {
  position: absolute;
  top: 0;
  right: 1.5rem;
  left: 1.5rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.98) 32%, rgba(255, 255, 255, 0.78) 72%, transparent);
  content: "";
  pointer-events: none;
}

.va-shell-header.is-scrolled .va-shell-header__frame {
  background:
    linear-gradient(148deg, rgba(255, 255, 255, 0.79), rgba(250, 248, 245, 0.64)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.96), rgba(91, 33, 182, 0.055) 58%, rgba(232, 82, 10, 0.04));
  box-shadow: inset 0 1px 0 #fff, 0 18px 52px rgba(48, 27, 76, 0.1), 0 6px 18px rgba(232, 82, 10, 0.04);
  -webkit-backdrop-filter: blur(26px) saturate(134%);
  backdrop-filter: blur(26px) saturate(134%);
}

.va-shell-brand {
  display: inline-flex;
  min-width: max-content;
  min-height: 2.9rem;
  align-items: center;
  justify-self: start;
  gap: 0.65rem;
  padding: 0.18rem 0.55rem 0.18rem 0.12rem;
  border-radius: 0.82rem;
  color: var(--va-shell-ink) !important;
  text-decoration: none !important;
}

.va-shell-brand__mark {
  display: block;
  width: 2.2rem;
  height: 2.2rem;
  object-fit: contain;
}

.va-shell-brand__name {
  font: 700 1rem/1 var(--va-shell-sans);
  letter-spacing: -0.025em;
}

.va-shell-desktop {
  display: contents;
}

.va-shell-nav {
  display: flex;
  grid-column: 2;
  align-items: center;
  justify-self: center;
  gap: 0.12rem;
}

.va-shell-nav__link,
.va-shell-intelligence__summary {
  position: relative;
  display: inline-flex;
  min-height: 2.62rem;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 0.78rem;
  background: transparent;
  color: rgba(28, 25, 23, 0.76) !important;
  font: 550 0.8rem/1 var(--va-shell-sans);
  text-decoration: none !important;
  white-space: nowrap;
  cursor: pointer;
  transition: color 170ms var(--va-shell-ease), background 170ms var(--va-shell-ease), box-shadow 170ms var(--va-shell-ease);
}

.va-shell-nav__link {
  padding: 0 0.76rem;
}

.va-shell-nav__link:hover,
.va-shell-intelligence__summary:hover {
  background: rgba(255, 255, 255, 0.38);
  color: var(--va-shell-violet-deep) !important;
}

.va-shell-nav__link[aria-current="page"],
.va-shell-intelligence.is-current > .va-shell-intelligence__summary,
.va-shell-intelligence[open] > .va-shell-intelligence__summary {
  background: var(--va-shell-page-accent-soft);
  color: var(--va-shell-page-accent) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.76);
}

.va-shell-intelligence {
  position: relative;
}

.va-shell-intelligence__summary {
  gap: 0.45rem;
  padding: 0 0.66rem 0 0.76rem;
  list-style: none;
}

.va-shell-intelligence__summary::-webkit-details-marker,
.va-shell-mobile__summary::-webkit-details-marker {
  display: none;
}

.va-shell-intelligence__summary-mark {
  position: relative;
  width: 0.72rem;
  height: 0.72rem;
}

.va-shell-intelligence__summary-mark::before,
.va-shell-intelligence__summary-mark::after {
  position: absolute;
  top: 50%;
  width: 0.45rem;
  height: 1px;
  border-radius: 2px;
  background: currentColor;
  content: "";
  transition: transform 170ms var(--va-shell-ease);
}

.va-shell-intelligence__summary-mark::before {
  left: 0;
  transform: rotate(45deg);
}

.va-shell-intelligence__summary-mark::after {
  right: 0;
  transform: rotate(-45deg);
}

.va-shell-intelligence[open] .va-shell-intelligence__summary-mark::before {
  transform: rotate(-45deg);
}

.va-shell-intelligence[open] .va-shell-intelligence__summary-mark::after {
  transform: rotate(45deg);
}

.va-shell-intelligence__menu {
  position: absolute;
  top: calc(100% + 0.75rem);
  left: 50%;
  width: min(16rem, calc(100vw - 2rem));
  padding: 1rem 1rem 0.7rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.84);
  border-radius: 1.12rem;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.88), rgba(250, 246, 249, 0.7)),
    linear-gradient(110deg, rgba(91, 33, 182, 0.07), rgba(193, 43, 227, 0.035) 52%, rgba(232, 82, 10, 0.03));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.98), 0 24px 64px rgba(48, 27, 76, 0.16), 0 8px 22px rgba(91, 33, 182, 0.07);
  -webkit-backdrop-filter: blur(25px) saturate(136%);
  backdrop-filter: blur(25px) saturate(136%);
  opacity: 0;
  transform: translate(-50%, -0.35rem) scale(0.985);
  transform-origin: 50% 0;
  transition: opacity 180ms var(--va-shell-ease), transform 210ms var(--va-shell-ease);
}

.va-shell-intelligence[open] .va-shell-intelligence__menu {
  opacity: 1;
  transform: translate(-50%, 0) scale(1);
}

.va-shell-intelligence__atmosphere {
  position: absolute;
  top: -5rem;
  right: -4rem;
  width: 11rem;
  height: 11rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(193, 43, 227, 0.13), rgba(91, 33, 182, 0.045) 48%, transparent 72%);
  filter: blur(16px);
  pointer-events: none;
}

.va-shell-intelligence__eyebrow,
.va-shell-mobile__eyebrow,
.va-shell-newsletter__eyebrow,
.va-shell-ecosystem__eyebrow,
.va-shell-footer__contact-label,
.va-shell-footer__title {
  margin: 0;
  font: 600 0.62rem/1.4 var(--va-shell-mono);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.va-shell-intelligence__eyebrow {
  position: relative;
  padding: 0.05rem 0.25rem 0.58rem;
  color: rgba(87, 83, 78, 0.72);
}

.va-shell-intelligence__items {
  position: relative;
}

.va-shell-intelligence__item {
  position: relative;
  display: grid;
  min-height: 4.25rem;
  grid-template-columns: 0.9rem 1fr 0.8rem;
  align-items: center;
  gap: 0.58rem;
  padding: 0.55rem 0.25rem;
  color: var(--va-shell-ink) !important;
  text-decoration: none !important;
}

.va-shell-intelligence__item + .va-shell-intelligence__item {
  border-top: 1px solid rgba(28, 25, 23, 0.08);
}

.va-shell-intelligence__signal {
  position: relative;
  display: block;
  width: 0.82rem;
  height: 2.25rem;
}

.va-shell-intelligence__signal::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(91, 33, 182, 0.42), transparent);
  content: "";
}

.va-shell-intelligence__signal span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--va-shell-violet), var(--va-shell-magenta));
  box-shadow: 0 0 0 4px rgba(91, 33, 182, 0.07);
  transform: translate(-50%, -50%);
}

.va-shell-intelligence__item--dvi .va-shell-intelligence__signal::before {
  background: linear-gradient(180deg, transparent, rgba(232, 82, 10, 0.42), transparent);
}

.va-shell-intelligence__item--dvi .va-shell-intelligence__signal span {
  background: var(--va-shell-orange);
  box-shadow: 0 0 0 4px rgba(232, 82, 10, 0.07);
}

.va-shell-intelligence__copy {
  display: grid;
  min-width: 0;
  grid-template-columns: auto 1fr;
  align-items: baseline;
  column-gap: 0.4rem;
}

.va-shell-intelligence__index {
  color: rgba(87, 83, 78, 0.45);
  font: 600 0.5rem/1 var(--va-shell-mono);
}

.va-shell-intelligence__label {
  color: var(--va-shell-violet-deep);
  font: 650 0.82rem/1.2 var(--va-shell-sans);
}

.va-shell-intelligence__item--dvi .va-shell-intelligence__label {
  color: var(--va-shell-orange-deep);
}

.va-shell-intelligence__description {
  grid-column: 1 / -1;
  margin-top: 0.24rem;
  color: var(--va-shell-ink-secondary);
  font: 450 0.66rem/1.48 var(--va-shell-sans);
}

.va-shell-intelligence__arrow {
  width: 0.82rem;
  height: 0.82rem;
  color: rgba(87, 83, 78, 0.45);
  transition: color 170ms var(--va-shell-ease), transform 170ms var(--va-shell-ease);
}

.va-shell-intelligence__item:hover .va-shell-intelligence__arrow {
  color: var(--va-shell-violet);
  transform: translateX(2px);
}

.va-shell-intelligence__item--dvi:hover .va-shell-intelligence__arrow {
  color: var(--va-shell-orange);
}

.va-shell-header__actions {
  display: flex;
  grid-column: 3;
  align-items: center;
  justify-self: end;
  gap: 0.55rem;
}

.va-shell-language {
  display: inline-flex;
  min-height: 2.7rem;
  align-items: center;
  gap: 0.04rem;
  padding: 0.22rem;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 0.86rem;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.48), rgba(243, 239, 232, 0.32));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.va-shell-language__link {
  display: inline-flex;
  min-width: 2rem;
  min-height: 2.05rem;
  align-items: center;
  justify-content: center;
  padding: 0 0.38rem;
  border-radius: 0.62rem;
  color: rgba(87, 83, 78, 0.62) !important;
  font: 600 0.64rem/1 var(--va-shell-mono) !important;
  letter-spacing: 0.07em;
  text-decoration: none !important;
  white-space: nowrap;
}

.va-shell-language__link[aria-current="true"] {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.86), rgba(91, 33, 182, 0.065));
  color: var(--va-shell-violet-deep) !important;
  box-shadow: 0 2px 9px rgba(91, 33, 182, 0.065), inset 0 1px 0 rgba(255, 255, 255, 0.96);
}

.va-shell-language__divider {
  min-width: auto;
  padding: 0;
  color: rgba(87, 83, 78, 0.28) !important;
}

/* Contact belongs to the navigation glass; only its arrow is orange. */
.va-shell-contact,
.va-shell-mobile__contact {
  display: inline-flex;
  min-height: 2.72rem;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  padding: 0.2rem 0.24rem 0.2rem 0.92rem;
  border: 1px solid rgba(232, 82, 10, 0.32);
  border-radius: 0.88rem;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.5), rgba(255, 248, 243, 0.36));
  color: var(--va-shell-ink) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.88), 0 5px 15px rgba(232, 82, 10, 0.055);
  font: 650 0.74rem/1 var(--va-shell-sans);
  text-decoration: none !important;
  white-space: nowrap;
  transition: border-color 170ms var(--va-shell-ease), background 170ms var(--va-shell-ease), box-shadow 170ms var(--va-shell-ease);
}

.va-shell-contact__arrow {
  display: inline-flex;
  width: 2.05rem;
  height: 2.05rem;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--va-shell-orange);
  color: #fffaf5;
  transition: background 170ms var(--va-shell-ease), color 170ms var(--va-shell-ease), transform 170ms var(--va-shell-ease);
}

.va-shell-contact__arrow svg {
  width: 1rem;
  height: 1rem;
}

.va-shell-contact:hover,
.va-shell-mobile__contact:hover {
  border-color: rgba(232, 82, 10, 0.5);
  background: rgba(255, 255, 255, 0.62);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.96), 0 7px 20px rgba(232, 82, 10, 0.08);
}

.va-shell-contact:hover .va-shell-contact__arrow,
.va-shell-mobile__contact:hover .va-shell-contact__arrow {
  background: var(--va-shell-orange);
  color: #fffaf5;
  transform: translateX(1px);
}

.va-shell-menu-button {
  display: none;
  min-width: 5.2rem;
  min-height: 2.78rem;
  align-items: center;
  justify-content: center;
  gap: 0.62rem;
  border: 1px solid rgba(91, 33, 182, 0.12);
  border-radius: 0.82rem;
  background: rgba(255, 255, 255, 0.4);
  color: var(--va-shell-violet-deep);
  font: 650 0.68rem/1 var(--va-shell-sans);
  cursor: pointer;
}

.va-shell-menu-button__lines {
  position: relative;
  width: 1.08rem;
  height: 0.7rem;
}

.va-shell-menu-button__lines::before,
.va-shell-menu-button__lines::after {
  position: absolute;
  right: 0;
  width: 100%;
  height: 1px;
  border-radius: 2px;
  background: currentColor;
  content: "";
}

.va-shell-menu-button__lines::before { top: 0.12rem; }
.va-shell-menu-button__lines::after { right: 0.18rem; bottom: 0.12rem; width: calc(100% - 0.18rem); }

/* Deliberate mobile paper environment. */
.va-shell-backdrop {
  position: fixed;
  z-index: 9400;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: rgba(76, 29, 149, 0.1);
  -webkit-backdrop-filter: blur(7px);
  backdrop-filter: blur(7px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 240ms var(--va-shell-ease), visibility 240ms step-end;
}

.va-shell-backdrop.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 240ms var(--va-shell-ease), visibility 0ms step-start;
}

.va-shell-mobile {
  position: fixed;
  z-index: 9500;
  inset: 0.55rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 1.6rem;
  background: var(--va-shell-paper);
  color: var(--va-shell-ink);
  box-shadow: 0 28px 90px rgba(48, 27, 76, 0.2);
  font-family: var(--va-shell-sans);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-0.55rem) scale(0.987);
  transition: opacity 240ms var(--va-shell-ease), transform 300ms var(--va-shell-ease), visibility 300ms step-end;
}

.va-shell-mobile.is-open {
  opacity: 1;
  visibility: visible;
  transform: none;
  transition: opacity 240ms var(--va-shell-ease), transform 300ms var(--va-shell-ease), visibility 0ms step-start;
}

.va-shell-mobile__atmosphere {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.va-shell-mobile__atmosphere::before,
.va-shell-mobile__atmosphere::after {
  position: absolute;
  width: 26rem;
  height: 26rem;
  border-radius: 50%;
  content: "";
  filter: blur(36px);
}

.va-shell-mobile__atmosphere::before {
  top: -15rem;
  right: -12rem;
  background: radial-gradient(circle, rgba(193, 43, 227, 0.12), rgba(91, 33, 182, 0.05) 48%, transparent 72%);
}

.va-shell-mobile__atmosphere::after {
  bottom: -18rem;
  left: -13rem;
  background: radial-gradient(circle, rgba(232, 82, 10, 0.1), rgba(232, 82, 10, 0.025) 48%, transparent 72%);
}

.va-shell-mobile__inner {
  position: relative;
  display: flex;
  height: 100%;
  flex-direction: column;
}

.va-shell-mobile__top {
  display: flex;
  min-height: 4.15rem;
  align-items: center;
  justify-content: space-between;
  margin: 0.5rem;
  padding: 0.4rem 0.44rem 0.4rem 0.62rem;
  border: 1px solid rgba(255, 255, 255, 0.84);
  border-radius: 1.05rem;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.68), rgba(243, 239, 232, 0.42));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.98), 0 12px 32px rgba(48, 27, 76, 0.055);
  -webkit-backdrop-filter: blur(18px) saturate(126%);
  backdrop-filter: blur(18px) saturate(126%);
}

.va-shell-mobile__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.62rem;
  color: var(--va-shell-ink) !important;
  font: 700 0.97rem/1 var(--va-shell-sans);
  letter-spacing: -0.025em;
  text-decoration: none !important;
}

.va-shell-mobile__brand img {
  width: 2.12rem;
  height: 2.12rem;
  object-fit: contain;
}

.va-shell-mobile__close {
  position: relative;
  width: 2.85rem;
  height: 2.85rem;
  border: 1px solid rgba(232, 82, 10, 0.22);
  border-radius: 0.82rem;
  background: rgba(255, 255, 255, 0.48);
  color: var(--va-shell-orange-deep);
  cursor: pointer;
}

.va-shell-mobile__close span::before,
.va-shell-mobile__close span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1rem;
  height: 1px;
  background: currentColor;
  content: "";
}

.va-shell-mobile__close span::before { transform: translate(-50%, -50%) rotate(45deg); }
.va-shell-mobile__close span::after { transform: translate(-50%, -50%) rotate(-45deg); }

.va-shell-mobile__body {
  display: flex;
  min-height: 0;
  flex: 1;
  flex-direction: column;
  overflow-y: auto;
  padding: clamp(1rem, 4vh, 2.4rem) clamp(1.1rem, 5vw, 2.7rem) 1.35rem;
  overscroll-behavior: contain;
}

.va-shell-mobile__eyebrow {
  margin-bottom: 0.65rem;
  color: rgba(91, 33, 182, 0.65);
}

.va-shell-mobile__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.va-shell-mobile__link {
  display: flex;
  min-height: clamp(3.45rem, 8vh, 5.1rem);
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(28, 25, 23, 0.075);
  color: var(--va-shell-ink) !important;
  font: 400 clamp(2.05rem, 7.4vw, 3.4rem)/0.95 var(--va-shell-serif);
  letter-spacing: -0.035em;
  text-decoration: none !important;
}

.va-shell-mobile__link span {
  color: rgba(91, 33, 182, 0.36);
  font: 500 0.75rem/1 var(--va-shell-mono);
}

.va-shell-mobile__link[aria-current="page"] {
  color: var(--va-shell-page-accent) !important;
}

.va-shell-mobile__section {
  margin: 0;
  border-bottom: 1px solid rgba(28, 25, 23, 0.075);
}

.va-shell-mobile__summary {
  width: 100%;
  display: flex;
  min-height: clamp(3.45rem, 8vh, 5.1rem);
  align-items: center;
  justify-content: space-between;
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--va-shell-ink);
  font: 400 clamp(2.05rem, 7.4vw, 3.4rem)/0.95 var(--va-shell-serif);
  letter-spacing: -0.035em;
  text-align: left;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}

.va-shell-mobile__summary span:last-child {
  color: rgba(91, 33, 182, 0.5);
  font: 400 1.18rem/1 var(--va-shell-sans);
  transition: transform 170ms var(--va-shell-ease);
}

.va-shell-mobile__section.is-current > .va-shell-mobile__summary {
  color: var(--va-shell-page-accent);
}

.va-shell-mobile__section.is-open .va-shell-mobile__summary span:last-child {
  transform: rotate(45deg);
}

.va-shell-mobile__submenu {
  padding: 0.1rem 0.15rem 0.55rem;
  border-top: 1px solid rgba(91, 33, 182, 0.08);
}

.va-shell-mobile__submenu[hidden] {
  display: none !important;
}

.va-shell-mobile__intelligence-link {
  position: relative;
  display: grid;
  min-height: 4.25rem;
  grid-template-columns: 0.9rem 1fr 0.85rem;
  align-items: center;
  gap: 0.62rem;
  padding: 0.62rem 0.12rem;
  color: var(--va-shell-ink) !important;
  text-decoration: none !important;
}

.va-shell-mobile__intelligence-link + .va-shell-mobile__intelligence-link {
  border-top: 1px solid rgba(28, 25, 23, 0.07);
}

.va-shell-mobile__intelligence-link[aria-current="page"] .va-shell-intelligence__label {
  color: var(--va-shell-page-accent);
}

.va-shell-mobile__actions {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.68rem;
  margin-top: 1.3rem;
}

.va-shell-mobile__language {
  display: flex;
  align-items: stretch;
  padding: 0.26rem;
  border: 1px solid rgba(91, 33, 182, 0.1);
  border-radius: 0.86rem;
  background: rgba(255, 255, 255, 0.5);
}

.va-shell-mobile__language-link {
  display: inline-flex;
  min-width: 2.3rem;
  min-height: 2.85rem;
  align-items: center;
  justify-content: center;
  padding: 0 0.45rem;
  border-radius: 0.64rem;
  color: rgba(87, 83, 78, 0.62) !important;
  font: 600 0.66rem/1 var(--va-shell-mono);
  letter-spacing: 0.07em;
  text-decoration: none !important;
  white-space: nowrap;
}

.va-shell-mobile__language-link[aria-current="true"] {
  background: rgba(91, 33, 182, 0.07);
  color: var(--va-shell-violet-deep) !important;
}

.va-shell-mobile__language .va-shell-language__divider {
  min-width: auto;
  padding: 0 0.08rem;
}

.va-shell-mobile__contact {
  min-height: 3.42rem;
  justify-content: space-between;
  padding-left: 1.05rem;
  font-size: 0.78rem;
}

.va-shell-mobile__contact .va-shell-contact__arrow {
  width: 2.75rem;
  height: 2.75rem;
}

.va-shell-mobile__meta {
  margin: 1.1rem 0 0;
  color: rgba(87, 83, 78, 0.56);
  font: 500 0.6rem/1.5 var(--va-shell-mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* One compact horizontal newsletter glass surface. */
.va-shell-newsletter {
  position: relative;
  z-index: 2;
  padding: clamp(5.5rem, 7vw, 7.5rem) 2rem 2.6rem;
  overflow: hidden;
  background: var(--va-shell-paper);
  color: var(--va-shell-ink);
  font-family: var(--va-shell-sans);
}

.va-shell-newsletter__atmosphere {
  position: absolute;
  top: 15%;
  right: -4%;
  width: 45%;
  height: 75%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(193, 43, 227, 0.06), rgba(91, 33, 182, 0.025) 48%, transparent 72%);
  filter: blur(28px);
  pointer-events: none;
}

.va-shell-newsletter__inner {
  position: relative;
  display: grid;
  width: min(100%, var(--va-shell-width));
  min-height: 11.5rem;
  margin: 0 auto;
  grid-template-columns: minmax(0, 0.92fr) minmax(28rem, 1.08fr);
  align-items: center;
  gap: clamp(2.5rem, 5vw, 5.5rem);
  padding: clamp(1.65rem, 2.6vw, 2.2rem) clamp(1.8rem, 3vw, 2.6rem);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.84);
  border-radius: 1.45rem;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.59), rgba(250, 246, 243, 0.34)), linear-gradient(95deg, rgba(232, 82, 10, 0.025), rgba(91, 33, 182, 0.035));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.98), 0 20px 62px rgba(48, 27, 76, 0.065), 0 8px 24px rgba(232, 82, 10, 0.035);
  -webkit-backdrop-filter: blur(22px) saturate(126%);
  backdrop-filter: blur(22px) saturate(126%);
}

.va-shell-newsletter__inner::before {
  position: absolute;
  right: -6rem;
  bottom: -7rem;
  width: 19rem;
  height: 19rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(193, 43, 227, 0.075), rgba(232, 82, 10, 0.025) 48%, transparent 72%);
  content: "";
  filter: blur(18px);
  pointer-events: none;
}

.va-shell-newsletter__copy,
.va-shell-newsletter__form-wrap {
  position: relative;
  z-index: 1;
}

.va-shell-newsletter__eyebrow {
  margin-bottom: 0.82rem;
  color: var(--va-shell-violet);
}

.va-shell-newsletter__title {
  max-width: 22ch;
  margin: 0;
  color: var(--va-shell-ink);
  font: 400 clamp(2.05rem, 2.55vw, 2.7rem)/1 var(--va-shell-serif);
  letter-spacing: -0.035em;
}

.va-shell-newsletter__description {
  max-width: 34rem;
  margin: 0.95rem 0 0;
  color: var(--va-shell-ink-secondary);
  font: 450 0.86rem/1.65 var(--va-shell-sans);
}

.va-shell-newsletter__form-wrap {
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.va-shell-newsletter__form-light {
  display: none;
}

.va-shell-newsletter__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 0.58rem;
}

.va-shell-newsletter__field {
  min-width: 0;
}

.va-shell-newsletter__label {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
}

.va-shell-newsletter__input {
  display: block;
  width: 100%;
  min-height: 3.05rem;
  padding: 0 1rem;
  border: 1px solid rgba(28, 25, 23, 0.1);
  border-radius: 1.52rem;
  background: rgba(250, 248, 245, 0.64);
  color: var(--va-shell-ink);
  font: 500 0.8rem/1 var(--va-shell-sans);
  box-shadow: inset 0 1px 3px rgba(48, 27, 76, 0.025);
}

.va-shell-newsletter__input::placeholder {
  color: rgba(87, 83, 78, 0.58);
}

.va-shell-newsletter__input.is-invalid,
.va-shell-newsletter__consent input.is-invalid {
  border-color: rgba(194, 65, 12, 0.68);
}

.va-shell-newsletter__button,
.va-shell-footer__contact a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.58rem;
  border: 1px solid rgba(194, 65, 12, 0.25);
  border-radius: 1.5rem;
  background: linear-gradient(145deg, #f0641d, var(--va-shell-orange));
  color: #fffaf5 !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28), 0 8px 20px rgba(232, 82, 10, 0.18);
  font: 650 0.72rem/1 var(--va-shell-sans);
  text-decoration: none !important;
  transition: filter 170ms var(--va-shell-ease), box-shadow 170ms var(--va-shell-ease), transform 170ms var(--va-shell-ease);
}

.va-shell-newsletter__button {
  min-height: 3.05rem;
  padding: 0 1rem 0 1.15rem;
  cursor: pointer;
}

.va-shell-newsletter__button svg,
.va-shell-footer__contact a svg {
  width: 1rem;
  height: 1rem;
}

.va-shell-newsletter__button:hover,
.va-shell-footer__contact a:hover {
  filter: brightness(1.035) saturate(106%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.34), 0 10px 24px rgba(232, 82, 10, 0.21);
  transform: translateY(-1px);
}

.va-shell-newsletter__consent {
  display: grid;
  grid-template-columns: 0.9rem 1fr;
  align-items: start;
  gap: 0.5rem;
  margin-top: 0.68rem;
  color: var(--va-shell-ink-secondary);
  font: 450 0.64rem/1.45 var(--va-shell-sans);
  cursor: pointer;
}

.va-shell-newsletter__consent input {
  width: 0.9rem;
  height: 0.9rem;
  margin: 0.05rem 0 0;
  accent-color: var(--va-shell-violet);
}

.va-shell-newsletter__consent a {
  color: var(--va-shell-violet-deep) !important;
  text-decoration-thickness: 1px !important;
  text-underline-offset: 2px;
}

.va-shell-newsletter__delivery {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.62rem;
  margin-top: 0.72rem;
  color: rgba(87, 83, 78, 0.6);
}

.va-shell-newsletter__delivery-icon {
  display: inline-flex;
  flex: 0 0 2.35rem;
  width: 2.35rem;
  height: 2.35rem;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(91, 33, 182, 0.12);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.46);
  color: var(--va-shell-orange);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8), 0 7px 18px rgba(48, 27, 76, 0.055);
}

.va-shell-newsletter__delivery-icon svg {
  display: block;
  width: 1.15rem;
  height: 1.15rem;
}

.va-shell-newsletter__note {
  max-width: 13rem;
  color: inherit;
  font: 500 0.58rem/1.4 var(--va-shell-sans);
}

.va-shell-newsletter__fineprint {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 0.46rem;
  color: rgba(87, 83, 78, 0.52);
  font: 500 0.53rem/1.35 var(--va-shell-mono);
  letter-spacing: 0.04em;
}

.va-shell-newsletter__note,
.va-shell-feedback {
  margin: 0;
}

.va-shell-feedback {
  margin-top: 0.65rem;
  color: var(--va-shell-orange-deep);
  font: 600 0.68rem/1.45 var(--va-shell-sans);
}

/* Compact, official-logo ecosystem index. */
.va-shell-ecosystem {
  position: relative;
  z-index: 2;
  padding: 2rem 2rem 2.4rem;
  background: var(--va-shell-paper);
  color: var(--va-shell-ink);
  font-family: var(--va-shell-sans);
}

.va-shell-ecosystem__inner {
  width: min(100%, var(--va-shell-width));
  margin: 0 auto;
}

.va-shell-ecosystem__head {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(20rem, 1.05fr);
  align-items: end;
  gap: clamp(2rem, 6vw, 7rem);
  margin-bottom: 1.55rem;
}

.va-shell-ecosystem__eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -0.78rem;
  color: var(--va-shell-violet);
}

.va-shell-ecosystem__eyebrow::before {
  display: inline-block;
  width: 0.4rem;
  height: 0.4rem;
  margin-right: 0.65rem;
  border-radius: 50%;
  background: currentColor;
  content: "";
  vertical-align: 0.05rem;
}

.va-shell-ecosystem__title {
  max-width: 18ch;
  margin: 0;
  color: var(--va-shell-ink);
  font: 400 clamp(2rem, 3vw, 2.85rem)/0.98 var(--va-shell-serif);
  letter-spacing: -0.035em;
}

.va-shell-ecosystem__description {
  max-width: 38rem;
  margin: 0 0 0.18rem;
  color: var(--va-shell-ink-secondary);
  font: 450 0.78rem/1.55 var(--va-shell-sans);
}

.va-shell-ecosystem__categories {
  display: grid;
  gap: 0.42rem;
}

.va-shell-ecosystem__group {
  display: grid;
  grid-template-columns: minmax(10.75rem, 12.5rem) minmax(0, 1fr);
  align-items: start;
  gap: 1.2rem;
  padding: 0.38rem 0;
}

.va-shell-ecosystem__group-head {
  position: relative;
  display: block;
  padding: 0.72rem 0.4rem 0 1.18rem;
}

.va-shell-ecosystem__group-head::before {
  position: absolute;
  top: 0.96rem;
  left: 0.12rem;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: var(--va-shell-violet);
  content: "";
}

.va-shell-ecosystem__group[data-va-ecosystem-group="institutional"] .va-shell-ecosystem__group-head::before { background: var(--va-shell-cyan); }
.va-shell-ecosystem__group[data-va-ecosystem-group="operations"] .va-shell-ecosystem__group-head::before { background: var(--va-shell-orange); }

.va-shell-ecosystem__group-index,
.va-shell-ecosystem__group-count {
  display: none;
}

.va-shell-ecosystem__group-title {
  margin: 0;
  color: var(--va-shell-violet-deep);
  font: 600 0.7rem/1.42 var(--va-shell-sans);
}

.va-shell-ecosystem__group[data-va-ecosystem-group="institutional"] .va-shell-ecosystem__group-title { color: var(--va-shell-cyan); }
.va-shell-ecosystem__group[data-va-ecosystem-group="operations"] .va-shell-ecosystem__group-title { color: var(--va-shell-orange-deep); }

.va-shell-programs {
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.42rem;
  list-style: none;
}

.va-shell-program {
  min-width: 0;
  min-height: 4.1rem;
}

.va-shell-program__link {
  position: relative;
  display: flex;
  width: 100%;
  height: 100%;
  min-height: 4.1rem;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 1.05rem 0.55rem 0.65rem;
  overflow: hidden;
  border: 1px solid rgba(28, 25, 23, 0.09);
  border-radius: 0.82rem;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.55), rgba(243, 239, 232, 0.25));
  color: var(--va-shell-ink) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
  text-decoration: none !important;
  transition: border-color 170ms var(--va-shell-ease), background 170ms var(--va-shell-ease), box-shadow 170ms var(--va-shell-ease), transform 170ms var(--va-shell-ease);
}

a.va-shell-program__link:hover {
  border-color: rgba(91, 33, 182, 0.17);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.94), 0 7px 20px rgba(48, 27, 76, 0.05);
  transform: translateY(-1px);
}

.va-shell-program__media {
  display: inline-flex;
  width: 3.1rem;
  height: 2.15rem;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
}

.va-shell-program__logo {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 2rem;
  object-fit: contain;
  object-position: center;
}

.va-shell-program__body {
  display: flex;
  min-width: 0;
  flex: 1;
  flex-direction: column;
  gap: 0.16rem;
}

.va-shell-program__name {
  color: var(--va-shell-ink);
  font: 650 0.65rem/1.25 var(--va-shell-sans);
  letter-spacing: -0.01em;
}

.va-shell-program__relationship {
  color: rgba(87, 83, 78, 0.63);
  font: 600 0.45rem/1.35 var(--va-shell-mono);
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.va-shell-program__external {
  position: absolute;
  top: 0.42rem;
  right: 0.42rem;
  color: rgba(91, 33, 182, 0.36);
  font: 500 0.58rem/1 var(--va-shell-mono);
  transition: color 170ms var(--va-shell-ease), transform 170ms var(--va-shell-ease);
}

.va-shell-program__link:hover .va-shell-program__external {
  color: var(--va-shell-violet);
  transform: translate(1px, -1px);
}

.va-shell-program__status-line {
  display: none;
}

/* Light editorial footer ledger. */
.va-shell-footer {
  position: relative;
  z-index: 2;
  overflow: hidden;
  padding: 2.3rem 2rem 1.35rem;
  border-top: 1px solid rgba(28, 25, 23, 0.08);
  background:
    radial-gradient(circle at 7% 15%, rgba(232, 82, 10, 0.035), transparent 25%),
    radial-gradient(circle at 88% 8%, rgba(193, 43, 227, 0.035), transparent 28%),
    linear-gradient(180deg, var(--va-shell-paper-soft), #f7f3ed);
  background-color: var(--va-shell-paper-soft);
  color: var(--va-shell-ink);
  font-family: var(--va-shell-sans);
}

.va-shell-footer__atmosphere {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.va-shell-footer__inner {
  position: relative;
  width: min(100%, var(--va-shell-width));
  margin: 0 auto;
}

.va-shell-footer__upper {
  display: grid;
  grid-template-columns: minmax(14rem, 1.15fr) minmax(13rem, 0.95fr) minmax(0, 4fr);
  align-items: stretch;
}

.va-shell-footer__brand {
  padding: 0 1.7rem 1.4rem 0;
}

.va-shell-footer__brand-link {
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
  color: var(--va-shell-ink) !important;
  font: 700 1.28rem/1 var(--va-shell-sans);
  letter-spacing: -0.025em;
  text-decoration: none !important;
}

.va-shell-footer__logo {
  display: block;
  width: 2.7rem;
  height: 2.7rem;
  object-fit: contain;
}

.va-shell-footer__hero-title {
  max-width: 15ch;
  margin: 1rem 0 0.55rem;
  color: var(--va-shell-ink);
  font: 400 clamp(1.55rem, 2.1vw, 2rem)/1 var(--va-shell-serif);
  letter-spacing: -0.03em;
}

.va-shell-footer__statement {
  max-width: 19rem;
}

.va-shell-footer__statement p {
  margin: 0;
  color: var(--va-shell-ink-secondary);
  font: 450 0.68rem/1.46 var(--va-shell-sans);
}

.va-shell-footer__statement p + p {
  margin-top: 0.42rem;
}

.va-shell-footer__statement .va-shell-footer__focus {
  color: var(--va-shell-ink-secondary);
  font-weight: 500;
}

.va-shell-footer__contact {
  padding: 0.25rem 1.8rem 1.4rem;
  border-left: 1px solid rgba(28, 25, 23, 0.09);
}

.va-shell-footer__contact-label {
  color: var(--va-shell-violet);
}

.va-shell-footer__contact > p:not(.va-shell-footer__contact-label) {
  max-width: 15rem;
  margin: 1.05rem 0 1.15rem;
  color: var(--va-shell-ink-secondary);
  font: 450 0.68rem/1.55 var(--va-shell-sans);
}

.va-shell-footer__contact a {
  min-height: 2.6rem;
  padding: 0 0.85rem 0 1rem;
  font-size: 0.68rem;
}

.va-shell-footer__nav {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-left: 1px solid rgba(28, 25, 23, 0.09);
}

.va-shell-footer__column {
  min-width: 0;
  padding: 0.25rem 1.1rem 1.4rem 1.65rem;
}

.va-shell-footer__column + .va-shell-footer__column {
  border-left: 1px solid rgba(28, 25, 23, 0.07);
}

.va-shell-footer__title {
  margin-bottom: 1rem;
  color: var(--va-shell-violet);
}

.va-shell-footer__list {
  display: grid;
  gap: 0.58rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.va-shell-footer__link {
  position: relative;
  display: inline-flex;
  width: fit-content;
  min-height: 1.1rem;
  align-items: center;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(28, 25, 23, 0.78) !important;
  font: 500 0.68rem/1.4 var(--va-shell-sans);
  text-align: left;
  text-decoration: none !important;
  cursor: pointer;
  transition: color 170ms var(--va-shell-ease);
}

.va-shell-footer__link i {
  position: absolute;
  right: 0;
  bottom: -0.1rem;
  left: 0;
  height: 1px;
  background: var(--va-shell-violet);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 200ms var(--va-shell-ease), background 170ms var(--va-shell-ease);
}

.va-shell-footer__link:hover,
.va-shell-footer__link[aria-current="page"] {
  color: var(--va-shell-ink) !important;
}

.va-shell-footer__link:hover i,
.va-shell-footer__link[aria-current="page"] i {
  transform: scaleX(1);
}

.va-shell-footer__link[data-va-footer-tone="orange"] i { background: var(--va-shell-orange); }
.va-shell-footer__link[data-va-footer-tone="cyan"] i { background: var(--va-shell-cyan); }
.va-shell-footer__link[data-va-footer-tone="green"] i { background: var(--va-shell-green); }
.va-shell-footer__link[data-va-footer-tone="magenta"] i { background: var(--va-shell-magenta); }

.va-shell-footer__legal-rail {
  display: flex;
  align-items: center;
  gap: 0.65rem 1.25rem;
  padding-top: 1.15rem;
  border-top: 1px solid rgba(28, 25, 23, 0.09);
  color: rgba(87, 83, 78, 0.68);
  font: 500 0.58rem/1.5 var(--va-shell-mono);
  letter-spacing: 0.02em;
}

.va-shell-footer__legal-rail span + span::before {
  display: inline-block;
  width: 0.16rem;
  height: 0.16rem;
  margin-right: 1.25rem;
  border-radius: 50%;
  background: rgba(91, 33, 182, 0.34);
  content: "";
  vertical-align: middle;
}

.va-shell-footer--compact {
  padding-top: 2.1rem;
}

/* One-time welcome and permanent feedback entry. The surface is intentionally
   non-modal: it has no backdrop and never interrupts reading or navigation. */
.va-welcome[hidden] {
  display: none !important;
}

.va-welcome {
  z-index: 8890;
  right: clamp(1rem, 2.4vw, 2.25rem);
  bottom: clamp(1rem, 2.4vw, 2.25rem);
  width: min(calc(100vw - 2rem), 27rem);
  margin: 0;
  pointer-events: none;
  color: var(--va-shell-ink);
  font-family: var(--va-shell-sans);
}

.va-welcome__panel {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 1.45rem;
  border: 1px solid rgba(91, 33, 182, 0.14);
  border-radius: 1.45rem;
  outline: none;
  background:
    radial-gradient(circle at 92% 6%, rgba(232, 82, 10, 0.1), transparent 30%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(250, 246, 240, 0.91));
  box-shadow: 0 1.5rem 4.5rem rgba(47, 32, 67, 0.18), 0 0.35rem 1rem rgba(47, 32, 67, 0.08);
  opacity: 0;
  pointer-events: auto;
  transform: translateY(1rem) scale(0.985);
  transition: opacity 220ms var(--va-shell-ease), transform 220ms var(--va-shell-ease);
  -webkit-backdrop-filter: blur(1.35rem) saturate(1.15);
  backdrop-filter: blur(1.35rem) saturate(1.15);
}

.va-welcome.is-open .va-welcome__panel {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.va-welcome__accent {
  position: absolute;
  top: 0;
  right: 2rem;
  left: 2rem;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--va-shell-violet), var(--va-shell-orange), transparent);
  opacity: 0.78;
}

.va-welcome__close {
  position: absolute;
  z-index: 1;
  top: 0.72rem;
  right: 0.72rem;
  display: inline-grid;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(28, 25, 23, 0.1);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.58);
  color: var(--va-shell-ink);
  cursor: pointer;
  transition: border-color 170ms var(--va-shell-ease), background-color 170ms var(--va-shell-ease), transform 170ms var(--va-shell-ease);
}

.va-welcome__close span,
.va-welcome__close span::after {
  width: 0.9rem;
  height: 1px;
  background: currentColor;
  content: "";
  transform: rotate(45deg);
}

.va-welcome__close span::after {
  display: block;
  transform: rotate(90deg);
}

.va-welcome__close:hover {
  border-color: rgba(91, 33, 182, 0.3);
  background: rgba(255, 255, 255, 0.9);
  transform: rotate(4deg);
}

.va-welcome__label {
  display: flex;
  margin: 0 3.2rem 0.8rem 0;
  align-items: center;
  gap: 0.52rem;
  color: var(--va-shell-violet);
  font: 700 0.61rem/1.25 var(--va-shell-mono);
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.va-welcome__label i {
  width: 0.42rem;
  height: 0.42rem;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--va-shell-green);
  box-shadow: 0 0 0 0.24rem rgba(5, 150, 105, 0.1);
}

.va-welcome__heading {
  max-width: 9.5em;
  margin: 0;
  color: var(--va-shell-ink);
  font: 400 clamp(2rem, 3vw, 2.5rem)/0.98 var(--va-shell-serif);
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.va-welcome__copy {
  display: grid;
  gap: 0.55rem;
  margin-top: 0.95rem;
  color: var(--va-shell-ink-secondary);
  font: 450 0.78rem/1.58 var(--va-shell-sans);
}

.va-welcome__copy p {
  margin: 0;
}

.va-welcome__actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 0.6rem;
  margin-top: 1.2rem;
}

.va-welcome__action {
  display: inline-flex;
  min-width: 0;
  min-height: 3rem;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.15rem 0.82rem 0.15rem 1rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font: 700 0.7rem/1 var(--va-shell-sans);
  text-align: left;
  text-decoration: none !important;
  cursor: pointer;
  transition: border-color 170ms var(--va-shell-ease), background-color 170ms var(--va-shell-ease), color 170ms var(--va-shell-ease), transform 170ms var(--va-shell-ease);
}

.va-welcome__action span {
  display: inline-grid;
  width: 2.1rem;
  height: 2.1rem;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  font-size: 0.9rem;
}

.va-welcome__action--primary {
  border-color: var(--va-shell-orange);
  background: var(--va-shell-orange);
  color: #fff !important;
  box-shadow: 0 0.7rem 1.7rem rgba(232, 82, 10, 0.2);
}

.va-welcome__action--primary span {
  background: rgba(255, 255, 255, 0.17);
}

.va-welcome__action--secondary {
  border-color: rgba(91, 33, 182, 0.18);
  background: rgba(255, 255, 255, 0.5);
  color: var(--va-shell-violet-deep) !important;
}

.va-welcome__action--secondary span {
  background: rgba(91, 33, 182, 0.08);
}

.va-welcome__action:hover {
  transform: translateY(-2px);
}

.va-welcome__action--secondary:hover {
  border-color: rgba(91, 33, 182, 0.34);
  background: rgba(255, 255, 255, 0.9);
}

.va-welcome__close:focus-visible,
.va-welcome__action:focus-visible,
.va-shell-footer__link--feedback:focus-visible {
  outline: 3px solid rgba(91, 33, 182, 0.48) !important;
  outline-offset: 3px !important;
}

/* Useful static fallback when JavaScript is unavailable. */
.va-shell-nojs {
  position: relative;
  z-index: 8990;
  padding: 7rem 1rem 1rem;
  background: var(--va-shell-paper);
  color: var(--va-shell-ink);
  font-family: var(--va-shell-sans);
}

.va-shell-nojs__inner {
  display: flex;
  width: min(100%, var(--va-shell-width));
  margin: 0 auto;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid rgba(91, 33, 182, 0.1);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.55);
}

.va-shell-nojs__label {
  font: 600 0.64rem/1 var(--va-shell-mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.va-shell-nojs__nav { flex: 1; }
.va-shell-nojs__list { display: flex; flex-wrap: wrap; gap: 0.72rem; margin: 0; padding: 0; list-style: none; }
.va-shell-nojs a, .va-shell-nojs summary { color: var(--va-shell-violet-deep); }
.va-shell-nojs__submenu { display: flex; gap: 0.72rem; padding: 0.5rem 0; }
.va-shell-js .va-shell-nojs { display: none; }

@media (max-width: 87.5rem) {
  .va-shell-nav__link { padding-right: 0.58rem; padding-left: 0.58rem; font-size: 0.75rem; }
  .va-shell-intelligence__summary { padding-right: 0.52rem; padding-left: 0.62rem; font-size: 0.75rem; }
  .va-shell-header__frame { gap: 0.65rem; }
}

@media (max-width: 1180px) {
  .va-shell-header { top: 1rem; width: calc(100% - 2rem); }
  .va-shell-header__frame { display: flex; justify-content: space-between; }
  .va-shell-desktop { display: none; }
  .va-shell-menu-button { display: inline-flex; }
  .va-shell-programs { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .va-shell-footer__upper { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .va-shell-footer__brand, .va-shell-footer__contact { min-height: 16rem; }
  .va-shell-footer__nav { grid-column: 1 / -1; border-top: 1px solid rgba(28, 25, 23, 0.09); border-left: 0; }
  .va-shell-footer__column { padding-top: 1.6rem; }
}

@media (max-width: 60rem) {
  .va-shell-newsletter__inner,
  .va-shell-ecosystem__head {
    grid-template-columns: 1fr;
  }

  .va-shell-newsletter__inner { gap: 1.65rem; }
  .va-shell-ecosystem__head { gap: 0.9rem; }
  .va-shell-ecosystem__eyebrow { margin-bottom: -0.2rem; }
  .va-shell-ecosystem__group { grid-template-columns: 1fr; gap: 0.35rem; padding-top: 0.55rem; border-top: 1px solid rgba(28, 25, 23, 0.075); }
  .va-shell-ecosystem__group-head { padding-top: 0.25rem; padding-bottom: 0.25rem; }
  .va-shell-ecosystem__group-head::before { top: 0.48rem; }
  .va-shell-footer__legal-rail { flex-wrap: wrap; }
}

@media (max-width: 45rem) {
  html { scroll-padding-top: 5.8rem; }
  .va-shell-header { top: 1rem; width: calc(100% - 2rem); }
  .va-shell-header__frame { min-height: 3.85rem; padding: 0.36rem 0.4rem 0.36rem 0.52rem; border-radius: 1.05rem; }
  .va-shell-brand { min-height: 2.65rem; }
  .va-shell-brand__mark { width: 1.95rem; height: 1.95rem; }
  .va-shell-brand__name { font-size: 0.9rem; }
  .va-shell-menu-button { min-width: 4.8rem; min-height: 2.65rem; }
  .va-shell-mobile { inset: 0.35rem; border-radius: 1.3rem; }
  .va-shell-mobile__top { min-height: 3.85rem; margin: 0.4rem; border-radius: 0.94rem; }
  .va-shell-mobile__body { padding-right: 1.02rem; padding-left: 1.02rem; }
  .va-shell-mobile__actions { grid-template-columns: 1fr; }
  .va-shell-mobile__language { justify-content: center; }
  .va-shell-newsletter { padding: 5.2rem 1rem 2rem; }
  .va-shell-newsletter__inner { min-height: auto; padding: 1.55rem 1.15rem; border-radius: 1.2rem; }
  .va-shell-newsletter__title { font-size: clamp(2.15rem, 10vw, 2.85rem); }
  .va-shell-newsletter__row { grid-template-columns: 1fr; }
  .va-shell-newsletter__button { width: 100%; }
  .va-shell-newsletter__delivery { justify-content: flex-start; }
  .va-shell-newsletter__fineprint { align-items: flex-start; flex-direction: column; gap: 0.25rem; }
  .va-shell-ecosystem { padding: 1.6rem 1rem 2rem; }
  .va-shell-ecosystem__title { font-size: clamp(2.25rem, 11vw, 3.15rem); }
  .va-shell-programs { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.38rem; }
  .va-shell-ecosystem__group[data-va-ecosystem-group="institutional"] .va-shell-programs { grid-template-columns: 1fr; }
  .va-shell-program__link { height: 4.75rem; min-height: 4.75rem; align-items: center; flex-direction: row; justify-content: flex-start; gap: 0.38rem; padding: 0.42rem 0.68rem 0.42rem 0.44rem; }
  .va-shell-program__media { width: 2.55rem; height: 1.7rem; justify-content: center; }
  .va-shell-program__logo { max-height: 1.55rem; object-position: center; }
  .va-shell-program__body { gap: 0.08rem; }
  body[data-va-shell-version="2"] .va-shell-program__name { font: 650 0.68rem/1.18 var(--va-shell-sans) !important; }
  body[data-va-shell-version="2"] .va-shell-program__relationship { font: 600 0.48rem/1.28 var(--va-shell-mono) !important; letter-spacing: 0.02em; }
  .va-shell-footer { padding: 2rem 1rem 1.2rem; }
  .va-shell-footer__upper { grid-template-columns: 1fr; }
  .va-shell-footer__brand, .va-shell-footer__contact { min-height: auto; padding: 0 0 2rem; }
  .va-shell-footer__contact { padding-top: 1.6rem; border-top: 1px solid rgba(28, 25, 23, 0.09); border-left: 0; }
  .va-shell-footer__nav { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .va-shell-footer__column { padding: 1.5rem 0.75rem 1.5rem 0; border-left: 0 !important; }
  .va-shell-footer__column:nth-child(2n) { padding-left: 0.75rem; border-left: 1px solid rgba(28, 25, 23, 0.07) !important; }
  .va-shell-footer__link { font-size: 0.7rem; }
  .va-shell-footer__legal-rail { align-items: flex-start; flex-direction: column; gap: 0.42rem; font-size: 0.56rem; }
  .va-shell-footer__legal-rail span + span::before { display: none; }
  .va-welcome {
    right: 0.75rem;
    bottom: max(0.75rem, env(safe-area-inset-bottom));
    left: 0.75rem;
    width: auto;
  }
  .va-welcome__panel {
    max-height: calc(100dvh - 6.5rem - env(safe-area-inset-bottom));
    overflow-y: auto;
    padding: 1.3rem 1.1rem 1.1rem;
    border-radius: 1.3rem;
    overscroll-behavior: contain;
  }
  .va-welcome__heading { max-width: 10em; font-size: clamp(1.9rem, 9.4vw, 2.35rem); }
  .va-welcome__copy { font-size: 0.75rem; }
  .va-welcome__actions { grid-template-columns: 1fr; gap: 0.48rem; margin-top: 1rem; }
  .va-welcome__action { min-height: 2.85rem; }
}

@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .va-shell-header__frame,
  .va-shell-intelligence__menu,
  .va-shell-mobile__top,
  .va-shell-newsletter__inner {
    background-color: rgba(250, 248, 245, 0.97);
  }

  .va-welcome__panel {
    background-color: rgba(250, 248, 245, 0.98);
  }
}

@media (prefers-reduced-motion: reduce) {
  .va-shell-header *,
  .va-shell-mobile,
  .va-shell-mobile *,
  .va-shell-backdrop,
  .va-shell-newsletter *,
  .va-shell-ecosystem *,
  .va-shell-footer *,
  .va-welcome,
  .va-welcome * {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .va-shell-contact:hover .va-shell-contact__arrow,
  .va-shell-mobile__contact:hover .va-shell-contact__arrow,
  .va-shell-newsletter__button:hover,
  .va-shell-footer__contact a:hover,
  .va-shell-program__link:hover,
  .va-shell-program__link:hover .va-shell-program__external,
  .va-shell-intelligence__item:hover .va-shell-intelligence__arrow,
  .va-welcome__action:hover,
  .va-welcome__close:hover {
    transform: none !important;
  }
}

