/* 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: /team/team.css */
:root {
  --tm-paper: #faf8f5;
  --tm-paper-deep: #f2eee8;
  --tm-ink: #1d1917;
  --tm-muted: #6f6863;
  --tm-line: rgba(52, 45, 41, 0.14);
  --tm-line-strong: rgba(52, 45, 41, 0.24);
  --tm-orange: #e8520a;
  --tm-orange-deep: #c84208;
  --tm-violet: #6d2bd0;
  --tm-violet-deep: #5420a6;
  --tm-cyan: #118ca8;
  --tm-green: #31845f;
  --tm-magenta: #a92b76;
  --tm-serif: "Instrument Serif", Georgia, serif;
  --tm-sans: "Manrope", Arial, sans-serif;
  --tm-mono: "JetBrains Mono", monospace;
  --tm-shadow: 0 1.5rem 4rem rgba(54, 43, 36, 0.1);
}

.tm-page,
.tm-page * { box-sizing: border-box; }

.tm-page {
  position: relative;
  z-index: 0;
  overflow: clip;
  background:
    radial-gradient(circle at 4% 3%, rgba(232, 82, 10, 0.065), transparent 30rem),
    radial-gradient(circle at 96% 7%, rgba(109, 43, 208, 0.07), transparent 32rem),
    var(--tm-paper);
  color: var(--tm-ink);
  font-family: var(--tm-sans);
  font-size: 1rem;
  line-height: 1.7;
}

.tm-page::before {
  position: fixed;
  z-index: -1;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 220 220' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.72' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.11'/%3E%3C/svg%3E");
  content: "";
  opacity: 0.12;
  pointer-events: none;
}

.tm-page :where(h1, h2, h3, p, ul, ol, figure) { margin: 0; }
.tm-page :where(ul, ol) { padding: 0; list-style: none; }
.tm-page a { color: inherit; }
.tm-page a:focus-visible { outline: 3px solid rgba(109, 43, 208, 0.34); outline-offset: 4px; }

.tm-shell { width: min(100% - 3rem, 87rem); margin-inline: auto; }
.tm-section { position: relative; padding-block: clamp(6rem, 10vw, 10rem); border-top: 1px solid var(--tm-line); }
.tm-section[id] { scroll-margin-top: 7.5rem; }

.tm-glass {
  border: 1px solid rgba(255, 255, 255, 0.88);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.77), rgba(255, 255, 255, 0.38)), rgba(250, 248, 245, 0.44);
  box-shadow: inset 0 0 0 1px rgba(84, 68, 58, 0.06), var(--tm-shadow);
  backdrop-filter: blur(24px) saturate(118%);
}

.tm-eyebrow,
.tm-label {
  color: var(--tm-orange-deep);
  font: 600 0.69rem/1.5 var(--tm-mono);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.tm-eyebrow { display: flex; align-items: center; gap: 0.65rem; margin-bottom: 1.2rem; }
.tm-eyebrow::before { width: 0.45rem; height: 0.45rem; flex: none; border-radius: 50%; background: currentColor; content: ""; }

.tm-section h2,
.tm-closing h2 { max-width: 14ch; font: 400 clamp(3rem, 5.8vw, 5.8rem)/0.94 var(--tm-serif); letter-spacing: -0.035em; }
.tm-section h2 em,
.tm-closing h2 em,
.tm-hero h1 em { color: var(--tm-orange-deep); font-weight: 400; }

.tm-section-head { max-width: 66rem; margin-bottom: clamp(3rem, 6vw, 5rem); }
.tm-section-head--wide { display: grid; grid-template-columns: minmax(0, 1.14fr) minmax(19rem, 0.64fr); align-items: end; max-width: none; gap: clamp(2rem, 6vw, 7rem); }
.tm-section-head__copy,
.tm-section-intro { color: var(--tm-muted); font-size: 1.02rem; line-height: 1.75; }
.tm-section-head__copy p + p { margin-top: 1rem; }
.tm-section-intro { max-width: 46rem; margin-top: 1.5rem !important; }

.tm-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 0.7rem; }
.tm-button { display: inline-flex; min-height: 3.35rem; align-items: center; justify-content: center; gap: 1.25rem; padding: 0.8rem 1.35rem; border: 1px solid var(--tm-line-strong); border-radius: 999px; font-size: 0.78rem; font-weight: 700; line-height: 1.2; text-decoration: none; transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease; }
.tm-button:hover { transform: translateY(-2px); }
.tm-button--primary { border-color: var(--tm-orange); background: var(--tm-orange); box-shadow: 0 0.8rem 2rem rgba(232, 82, 10, 0.2); color: #fff !important; }
.tm-button--primary:hover { background: var(--tm-orange-deep); }
.tm-button--secondary { background: rgba(255, 255, 255, 0.5); }
.tm-button--secondary:hover { border-color: rgba(109, 43, 208, 0.42); background: rgba(255, 255, 255, 0.82); }
.tm-text-link { display: inline-flex; align-items: center; gap: 0.7rem; border-bottom: 1px solid currentColor; color: var(--tm-violet) !important; font-size: 0.82rem; font-weight: 700; text-decoration: none; }

/* Hero */
.tm-hero { min-height: 0; padding: calc(var(--va-site-nav-clearance, 6.25rem) + var(--va-hero-gap-split, 3.25rem)) 0 var(--va-hero-bottom-split, 6rem); border-bottom: 1px solid var(--tm-line); }
.tm-hero__layout { display: grid; grid-template-columns: minmax(0, 0.98fr) minmax(31rem, 1fr); align-items: start; gap: clamp(3rem, 6vw, 7rem); }
.tm-hero h1 { max-width: 11ch; font: 400 clamp(4rem, 6.25vw, 7.25rem)/0.89 var(--tm-serif); letter-spacing: -0.047em; }
.tm-hero__lead { max-width: 46rem; margin-top: 2rem !important; color: #4f4945; font-size: clamp(1.06rem, 1.3vw, 1.27rem); line-height: 1.7; }
.tm-hero__second { max-width: 43rem; margin-top: 1rem !important; color: var(--tm-muted); }
.tm-hero .tm-actions { margin-top: 2rem; }
.tm-microfacts { display: flex; flex-wrap: wrap; margin-top: 2.4rem !important; color: var(--tm-muted); font: 600 0.67rem/1.5 var(--tm-mono); letter-spacing: 0.12em; text-transform: uppercase; }
.tm-microfacts li { display: flex; align-items: center; }
.tm-microfacts li:not(:last-child)::after { width: 0.26rem; height: 0.26rem; margin-inline: 0.7rem; border-radius: 50%; background: var(--tm-orange); content: ""; }

.tm-team-system { position: relative; min-height: 39rem; overflow: hidden; border-radius: 2.2rem; }
.tm-team-system::before,
.tm-team-system::after { position: absolute; border-radius: 50%; content: ""; pointer-events: none; }
.tm-team-system::before { top: -22%; right: -14%; width: 25rem; height: 25rem; background: radial-gradient(circle, rgba(109, 43, 208, 0.18), transparent 68%); }
.tm-team-system::after { bottom: -24%; left: -10%; width: 24rem; height: 24rem; background: radial-gradient(circle, rgba(232, 82, 10, 0.15), transparent 68%); }
.tm-team-system__field { position: absolute; z-index: 1; inset: 2.2rem 2rem 3.2rem; }
.tm-function { position: absolute; z-index: 2; display: grid; min-width: 9rem; place-items: center; padding: 0.85rem 0.75rem; border: 1px solid var(--tm-line); border-radius: 1rem; background: rgba(255, 255, 255, 0.62); color: var(--tm-muted); font: 600 0.58rem/1.45 var(--tm-mono); letter-spacing: 0.09em; text-align: center; text-transform: uppercase; }
.tm-function small { margin-top: 0.18rem; color: var(--tm-violet); font-size: 0.52rem; }
.tm-function--leadership { top: 2%; left: 50%; transform: translateX(-50%); border-color: rgba(232, 82, 10, 0.25); }
.tm-function--operations { top: 23%; left: 1%; border-color: rgba(17, 140, 168, 0.25); }
.tm-function--legal { top: 23%; right: 1%; border-color: rgba(232, 82, 10, 0.25); }
.tm-function--human { bottom: 18%; left: 1%; border-color: rgba(49, 132, 95, 0.28); }
.tm-function--research { right: 1%; bottom: 18%; border-color: rgba(169, 43, 118, 0.25); }
.tm-function--engineering { bottom: 0; left: 50%; transform: translateX(-50%); border-style: dashed; border-color: rgba(109, 43, 208, 0.38); }
.tm-team-system__core { position: absolute; z-index: 3; top: 48%; left: 50%; display: grid; width: min(16rem, 46%); min-height: 9rem; place-content: center; padding: 1rem; transform: translate(-50%, -50%); border: 1px solid rgba(109, 43, 208, 0.28); border-radius: 50%; background: rgba(255, 252, 248, 0.82); box-shadow: 0 1rem 3rem rgba(109, 43, 208, 0.12); text-align: center; }
.tm-team-system__core span { color: var(--tm-violet-deep); font: 600 0.65rem/1.4 var(--tm-mono); letter-spacing: 0.14em; text-transform: uppercase; }
.tm-team-system__core strong { margin-top: 0.25rem; font: 400 1.65rem/1.05 var(--tm-serif); }
.tm-team-system__line { position: absolute; z-index: 1; top: 48%; left: 50%; width: 1px; height: 34%; transform-origin: 50% 0; background: linear-gradient(var(--tm-violet), rgba(52, 45, 41, 0.1)); opacity: 0.58; }
.tm-team-system__line--one { transform: rotate(180deg); }
.tm-team-system__line--two { transform: rotate(-62deg); }
.tm-team-system__line--three { transform: rotate(62deg); }
.tm-team-system__line--four { transform: rotate(-119deg); }
.tm-team-system__line--five { transform: rotate(119deg); }
.tm-team-system__line--six { transform: rotate(0); }
.tm-team-system figcaption { position: absolute; z-index: 3; right: 1.5rem; bottom: 0.8rem; color: var(--tm-muted); font-size: 0.68rem; }

/* Connected competencies */
.tm-why { background: linear-gradient(180deg, rgba(242, 238, 232, 0.52), transparent); }
.tm-competency-line { position: relative; display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); border-block: 1px solid var(--tm-line); }
.tm-competency-line::before { position: absolute; top: 2rem; right: 8%; left: 8%; height: 1px; background: linear-gradient(90deg, var(--tm-violet), var(--tm-cyan), var(--tm-orange), var(--tm-green), var(--tm-magenta)); content: ""; opacity: 0.46; }
.tm-competency-line li { position: relative; min-height: 19rem; padding: 4.1rem 1.3rem 2rem; border-right: 1px solid var(--tm-line); }
.tm-competency-line li:last-child { border-right: 0; }
.tm-competency-line li > span { position: absolute; top: 1.35rem; left: 1.3rem; display: grid; width: 1.3rem; height: 1.3rem; place-items: center; border-radius: 50%; background: var(--tm-paper); color: var(--tm-muted); font: 600 0.49rem/1 var(--tm-mono); }
.tm-competency-line h3 { font: 400 clamp(1.65rem, 2.2vw, 2.35rem)/1.02 var(--tm-serif); }
.tm-competency-line p { margin-top: 1rem !important; color: var(--tm-muted); font-size: 0.82rem; line-height: 1.65; }
.tm-competency-line li[data-tone="violet"] h3 { color: var(--tm-violet-deep); }
.tm-competency-line li[data-tone="cyan"] h3 { color: var(--tm-cyan); }
.tm-competency-line li[data-tone="orange"] h3 { color: var(--tm-orange-deep); }
.tm-competency-line li[data-tone="green"] h3 { color: var(--tm-green); }
.tm-competency-line li[data-tone="magenta"] h3 { color: var(--tm-magenta); }

/* Accountability overview */
.tm-overview { background: radial-gradient(circle at 50% 45%, rgba(109, 43, 208, 0.06), transparent 38rem); }
.tm-accountability { position: relative; padding: clamp(1.2rem, 3vw, 2.4rem); overflow: hidden; border-radius: 2rem; }
.tm-accountability__lead { display: grid; width: min(100%, 28rem); margin-inline: auto; padding: 1.5rem; border: 1px solid rgba(232, 82, 10, 0.26); border-radius: 1.2rem; background: rgba(255, 251, 247, 0.8); text-align: center; }
.tm-accountability__lead strong { font: 400 2.4rem/1 var(--tm-serif); }
.tm-accountability__lead small { color: var(--tm-muted); }
.tm-accountability__direct { position: relative; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); width: min(100%, 52rem); gap: 0.75rem; margin: 3rem auto 0; }
.tm-accountability__direct::before { position: absolute; top: -3rem; left: 50%; width: 1px; height: 3rem; background: linear-gradient(var(--tm-orange), var(--tm-cyan)); content: ""; }
.tm-accountability__direct article { display: flex; min-width: 0; align-items: center; gap: 1rem; padding: 1rem; border: 1px solid var(--tm-line); border-radius: 1rem; background: rgba(255, 255, 255, 0.5); }
.tm-accountability__direct article > span { display: grid; width: 2.8rem; height: 2.8rem; flex: none; place-items: center; border-radius: 50%; background: rgba(17, 140, 168, 0.09); color: var(--tm-cyan); font: 600 0.67rem/1 var(--tm-mono); }
.tm-accountability__direct strong,
.tm-accountability__direct small { display: block; }
.tm-accountability__direct small { color: var(--tm-muted); font-size: 0.74rem; }
.tm-accountability__departments { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 0.75rem; margin-top: 2.6rem; }
.tm-accountability__departments article { min-width: 0; padding: 1.25rem; border: 1px solid var(--tm-line); border-top: 3px solid var(--tone, var(--tm-violet)); border-radius: 1rem; background: rgba(255, 255, 255, 0.48); }
.tm-accountability__departments article[data-tone="orange"] { --tone: var(--tm-orange); }
.tm-accountability__departments article[data-tone="green"] { --tone: var(--tm-green); }
.tm-accountability__departments article[data-tone="magenta"] { --tone: var(--tm-magenta); }
.tm-accountability__departments article[data-tone="violet"] { --tone: var(--tm-violet); }
.tm-accountability__departments strong { display: block; margin-top: 0.75rem; font: 400 1.55rem/1.05 var(--tm-serif); }
.tm-accountability__departments small { color: var(--tm-muted); }
.tm-accountability__departments article > small { display: block; }
.tm-accountability__departments ul { margin-top: 1rem !important; padding-top: 0.8rem; border-top: 1px solid var(--tm-line); color: var(--tm-muted); font-size: 0.72rem; }
.tm-accountability__departments li + li { margin-top: 0.35rem; }
.tm-accountability__departments a { display: inline-flex; gap: 0.5rem; margin-top: 1rem; color: var(--tm-violet); font-size: 0.72rem; font-weight: 700; text-decoration: none; }
.tm-accountability__open { border-style: dashed !important; }

/* Team member sections */
.tm-department::before { position: absolute; top: 0; right: 0; left: 0; height: 0.22rem; background: var(--dept-tone, var(--tm-violet)); content: ""; opacity: 0.82; }
.tm-department--leadership { --dept-tone: var(--tm-orange); }
.tm-department--legal { --dept-tone: var(--tm-orange); background: rgba(242, 238, 232, 0.38); }
.tm-department--human { --dept-tone: var(--tm-green); }
.tm-department--research { --dept-tone: var(--tm-magenta); background: rgba(242, 238, 232, 0.38); }
.tm-member-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
.tm-member-grid--leadership { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.tm-member-grid--three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.tm-person { position: relative; display: grid; min-width: 0; min-height: 31rem; align-content: space-between; gap: 2rem; padding: clamp(1.7rem, 3vw, 2.7rem); overflow: hidden; border-radius: 1.7rem; }
.tm-person::after { position: absolute; right: -6rem; bottom: -7rem; width: 16rem; height: 16rem; border-radius: 50%; background: radial-gradient(circle, color-mix(in srgb, var(--dept-tone, var(--tm-violet)) 10%, transparent), transparent 68%); content: ""; pointer-events: none; }
.tm-person--founder { grid-column: 1 / -1; grid-template-columns: clamp(9.375rem, 12vw, 10.625rem) minmax(0, 1fr); min-height: auto; align-items: start; align-content: start; gap: clamp(2rem, 4vw, 3.5rem); padding: clamp(2rem, 4vw, 3.5rem); }
.tm-avatar { display: grid; width: 7rem; height: 7rem; aspect-ratio: 1 / 1; flex: none; place-items: center; overflow: hidden; border-radius: 50%; }
.tm-person__portrait { position: relative; width: clamp(9.375rem, 12vw, 10.625rem); height: auto; max-width: 11.875rem; padding: 0.28rem; border: 1px solid rgba(232, 82, 10, 0.2); background: rgba(255, 251, 247, 0.78); box-shadow: 0 0.8rem 2rem rgba(54, 43, 36, 0.12); }
.tm-person__portrait img { display: block; width: 100%; height: 100%; aspect-ratio: 1 / 1; border-radius: 50%; object-fit: cover; object-position: var(--tm-avatar-focal, center); }
.tm-person:not(.tm-person--founder) .tm-person__portrait { width: 7rem; max-width: 7rem; }
.tm-person--founder .tm-person__content { align-self: start; padding: 0; }
.tm-monogram { border: 1px solid var(--tm-line); background: linear-gradient(135deg, rgba(255,255,255,.8), rgba(109,43,208,.08)); color: var(--dept-tone, var(--tm-violet)); font: 400 2.2rem/1 var(--tm-serif); }
.tm-person h3 { max-width: 12ch; margin-top: 0.7rem; font: 400 clamp(2.65rem, 4vw, 4.35rem)/0.94 var(--tm-serif); letter-spacing: -0.025em; }
.tm-person__content > p:not(.tm-label) { max-width: 52rem; margin-top: 1.15rem; color: var(--tm-muted); }
.tm-tags { display: flex; flex-wrap: wrap; gap: 0.45rem; margin-top: 1.6rem !important; }
.tm-tags li { padding: 0.46rem 0.67rem; border: 1px solid var(--tm-line); border-radius: 999px; color: var(--tm-muted); font: 600 0.56rem/1.25 var(--tm-mono); letter-spacing: 0.06em; text-transform: uppercase; }

/* Open role */
.tm-engineering { background: radial-gradient(circle at 82% 45%, rgba(109, 43, 208, 0.1), transparent 30rem); }
.tm-engineering__layout { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(28rem, 1.1fr); align-items: center; gap: clamp(3rem, 7vw, 8rem); }
.tm-engineering .tm-section-head { margin-bottom: 0; }
.tm-role { position: relative; min-height: 31rem; padding: clamp(2rem, 5vw, 4.2rem); overflow: hidden; border-radius: 2rem; }
.tm-role::before { position: absolute; top: -7rem; right: -5rem; width: 21rem; height: 21rem; border-radius: 50%; background: radial-gradient(circle, rgba(109,43,208,.17), transparent 68%); content: ""; }
.tm-role__status { position: relative; z-index: 1; display: flex; align-items: center; gap: 0.55rem; margin-bottom: 4rem; color: var(--tm-violet); font: 600 0.62rem/1.4 var(--tm-mono); letter-spacing: 0.12em; text-transform: uppercase; }
.tm-role__status i { width: 0.52rem; height: 0.52rem; border-radius: 50%; background: var(--tm-green); box-shadow: 0 0 0 0.35rem rgba(49,132,95,.1); }
.tm-role h3 { margin-top: 0.8rem; font: 400 clamp(3.3rem, 5vw, 5.7rem)/0.9 var(--tm-serif); }
.tm-role > p:not(.tm-label) { max-width: 39rem; margin-top: 1.6rem; color: var(--tm-muted); }
.tm-role .tm-actions { margin-top: 2rem; }

/* Operating cycle */
.tm-operating { background: linear-gradient(180deg, rgba(242,238,232,.45), transparent); }
.tm-cycle { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border: 1px solid var(--tm-line); border-radius: 1.7rem; overflow: hidden; }
.tm-cycle li { position: relative; min-height: 16rem; padding: 2rem; border-right: 1px solid var(--tm-line); border-bottom: 1px solid var(--tm-line); background: rgba(255,255,255,.36); }
.tm-cycle li:nth-child(3n) { border-right: 0; }
.tm-cycle li:nth-child(n+4) { border-bottom: 0; }
.tm-cycle span { color: var(--tm-violet); font: 600 0.62rem/1.4 var(--tm-mono); letter-spacing: .12em; }
.tm-cycle h3 { margin-top: 1.6rem; font: 400 2.2rem/1 var(--tm-serif); }
.tm-cycle p { margin-top: .9rem; color: var(--tm-muted); font-size: .85rem; }
.tm-operating__principle { margin-top: 2rem !important; color: var(--tm-orange-deep); font: 400 clamp(2.3rem, 4vw, 4.2rem)/1 var(--tm-serif); text-align: center; }

/* Principles */
.tm-principle-list { border-top: 1px solid var(--tm-line-strong); }
.tm-principle-list li { display: grid; grid-template-columns: 5rem minmax(16rem, .72fr) minmax(0, 1fr); align-items: center; gap: 2rem; padding: 2rem 0; border-bottom: 1px solid var(--tm-line); }
.tm-principle-list > li > span { color: var(--tm-violet); font: 600 .68rem/1 var(--tm-mono); }
.tm-principle-list h3 { font: 400 clamp(2rem, 3vw, 3rem)/1 var(--tm-serif); }
.tm-principle-list p { max-width: 43rem; color: var(--tm-muted); }

/* Organization map */
.tm-org { background: radial-gradient(circle at 50% 40%, rgba(17,140,168,.07), transparent 34rem); }
.tm-org-map { position: relative; padding: clamp(1.2rem, 3vw, 2.5rem); border: 1px solid var(--tm-line); border-radius: 2rem; background: rgba(255,255,255,.36); }
.tm-org-map__leader { display: grid; width: min(100%, 28rem); margin-inline: auto; padding: 1.4rem; border: 1px solid rgba(232,82,10,.28); border-radius: 1.1rem; background: rgba(255,251,247,.82); text-align: center; }
.tm-org-map__leader span { color: var(--tm-orange-deep); font: 600 .61rem/1.4 var(--tm-mono); letter-spacing: .12em; text-transform: uppercase; }
.tm-org-map__leader strong { font: 400 2.25rem/1 var(--tm-serif); }
.tm-org-map__leader small { color: var(--tm-muted); }
.tm-org-map__branches { position: relative; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: .8rem; margin-top: 4rem !important; }
.tm-org-map__branches::before { position: absolute; top: -2rem; right: 8%; left: 8%; height: 1px; background: linear-gradient(90deg, var(--tm-cyan), var(--tm-orange), var(--tm-green), var(--tm-magenta), var(--tm-violet)); content: ""; opacity: .48; }
.tm-org-map__branches > li { position: relative; }
.tm-org-map__branches > li::before { position: absolute; top: -2rem; left: 50%; width: 1px; height: 2rem; background: var(--tm-line-strong); content: ""; }
.tm-org-map__branches article { min-height: 13.5rem; padding: 1.3rem; border: 1px solid var(--tm-line); border-radius: 1rem; background: rgba(255,255,255,.55); }
.tm-org-map__branches p { color: var(--tm-violet-deep); font: 600 .58rem/1.4 var(--tm-mono); letter-spacing: .09em; text-transform: uppercase; }
.tm-org-map__branches strong { display: block; margin-top: .75rem; font: 400 1.65rem/1.05 var(--tm-serif); }
.tm-org-map__branches small { color: var(--tm-muted); }
.tm-org-map__branches article ul { margin-top: 1rem !important; padding-top: .8rem; border-top: 1px solid var(--tm-line); color: var(--tm-muted); font-size: .7rem; }
.tm-org-map__branches article li + li { margin-top: .3rem; }
.tm-org-map__open article { border-style: dashed; border-color: rgba(109,43,208,.38); }

/* Closing */
.tm-closing { position: relative; padding-block: clamp(7rem, 12vw, 12rem); overflow: hidden; border-top: 1px solid var(--tm-line); background: linear-gradient(135deg, rgba(232,82,10,.07), rgba(109,43,208,.08)); }
.tm-closing::after { position: absolute; right: -10rem; bottom: -15rem; width: 38rem; height: 38rem; border-radius: 50%; background: radial-gradient(circle, rgba(109,43,208,.14), transparent 67%); content: ""; }
.tm-closing__inner { position: relative; z-index: 1; }
.tm-closing h2 { max-width: 12ch; }
.tm-closing__inner > p:not(.tm-eyebrow, .tm-closing__line) { max-width: 45rem; margin-top: 2rem; color: var(--tm-muted); font-size: 1.08rem; }
.tm-closing .tm-actions { margin-top: 2.3rem; }
.tm-closing__line { margin-top: 4rem !important; color: var(--tm-muted); font: 600 .68rem/1.5 var(--tm-mono); letter-spacing: .15em; text-transform: uppercase; }

/* One-shot motion only; content remains visible without JavaScript. */
.tm-motion-ready [data-tm-reveal] { opacity: 0; transform: translateY(1.25rem); transition: opacity 700ms cubic-bezier(.22,1,.36,1) var(--tm-delay,0ms), transform 700ms cubic-bezier(.22,1,.36,1) var(--tm-delay,0ms); }
.tm-motion-ready [data-tm-reveal].is-visible { opacity: 1; transform: none; }

@media (hover: hover) and (pointer: fine) {
  .tm-person { transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease; }
  .tm-person:hover { transform: translateY(-4px); border-color: rgba(109,43,208,.2); box-shadow: inset 0 0 0 1px rgba(84,68,58,.06), 0 2rem 5rem rgba(54,43,36,.13); }
}

@media (max-width: 75rem) {
  .tm-shell { width: min(100% - 2.5rem, 76rem); }
  .tm-hero__layout { grid-template-columns: minmax(0,.98fr) minmax(27rem,1fr); gap: 3rem; }
  .tm-hero h1 { font-size: clamp(4rem,6.3vw,5.7rem); }
  .tm-team-system { min-height: 35rem; }
  .tm-accountability__departments { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .tm-member-grid--three { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .tm-member-grid--three > li:last-child { grid-column: 1 / -1; }
}

@media (max-width: 68rem) {
  .tm-hero { min-height: auto; }
  .tm-hero__layout { grid-template-columns: 1fr; }
  .tm-hero__copy { max-width: 62rem; }
  .tm-hero h1 { max-width: 12ch; font-size: clamp(4.5rem,9vw,7rem); }
  .tm-team-system { width: min(100%,52rem); margin-inline: auto; }
  .tm-section-head--wide,
  .tm-engineering__layout { grid-template-columns: 1fr; }
  .tm-section-head--wide { align-items: start; gap: 2rem; }
  .tm-section-head__copy { max-width: 48rem; }
  .tm-engineering .tm-section-head { margin-bottom: 3rem; }
  .tm-competency-line { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .tm-competency-line::before { display: none; }
  .tm-competency-line li { min-height: 15rem; padding-top: 3.7rem; border-bottom: 1px solid var(--tm-line); }
  .tm-competency-line li:nth-child(2n) { border-right: 0; }
  .tm-competency-line li:last-child { grid-column: 1/-1; border-bottom: 0; }
  .tm-person--founder { grid-template-columns: 9.375rem minmax(0,1fr); }
  .tm-person--founder .tm-person__portrait { width: 9.375rem; }
  .tm-org-map__branches { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .tm-org-map__branches::before,
  .tm-org-map__branches > li::before { display: none; }
}

@media (max-width: 52rem) {
  .tm-shell { width: min(100% - 2rem,46rem); }
  .tm-section { padding-block: clamp(5rem,13vw,7rem); }
  .tm-section h2,
  .tm-closing h2 { font-size: clamp(3rem,11vw,4.8rem); }
  .tm-hero { padding-top: calc(var(--va-site-nav-clearance, 4.75rem) + var(--va-hero-gap-split, 2.25rem)); }
  .tm-hero h1 { font-size: clamp(4rem,13.5vw,6.1rem); }
  .tm-team-system { min-height: 33rem; }
  .tm-team-system__field { inset: 1.4rem 1rem 3rem; }
  .tm-function { min-width: 7.7rem; padding: .65rem .5rem; font-size: .51rem; }
  .tm-team-system__core { width: min(13rem,44%); min-height: 7.6rem; }
  .tm-team-system__core strong { font-size: 1.35rem; }
  .tm-team-system figcaption { display: none; }
  .tm-accountability__direct,
  .tm-accountability__departments,
  .tm-member-grid,
  .tm-member-grid--leadership,
  .tm-member-grid--three,
  .tm-cycle,
  .tm-org-map__branches { grid-template-columns: 1fr; }
  .tm-member-grid--three > li:last-child { grid-column: auto; }
  .tm-person--founder { grid-column: auto; grid-template-columns: 1fr; min-height: auto; gap: 1.5rem; }
  .tm-person--founder .tm-person__portrait { width: 8rem; }
  .tm-person--founder .tm-person__content { padding: 0; }
  .tm-person { min-height: auto; }
  .tm-cycle li,
  .tm-cycle li:nth-child(3n),
  .tm-cycle li:nth-child(n+4) { min-height: auto; border-right: 0; border-bottom: 1px solid var(--tm-line); }
  .tm-cycle li:last-child { border-bottom: 0; }
  .tm-principle-list li { grid-template-columns: 3rem 1fr; align-items: start; gap: 1rem; }
  .tm-accountability__direct::before { height: 2rem; top: -2rem; }
  .tm-org-map__branches article { min-height: auto; }
}

@media (max-width: 36rem) {
  .tm-shell { width: min(100% - 1.5rem,34rem); }
  .tm-hero { padding-top: calc(var(--va-site-nav-clearance, 4.75rem) + var(--va-hero-gap-split, 2.25rem)); }
  .tm-hero h1 { font-size: clamp(3.5rem,16.5vw,5.15rem); }
  .tm-hero__lead { font-size: 1rem; }
  .tm-actions { align-items: stretch; flex-direction: column; }
  .tm-actions .tm-button { width: 100%; }
  .tm-actions .tm-text-link { align-self: center; }
  .tm-microfacts { display: grid; gap: .45rem; }
  .tm-microfacts li::after { display: none; }
  .tm-team-system { min-height: 38rem; }
  .tm-function { min-width: 6.6rem; max-width: 7.8rem; font-size: .47rem; }
  .tm-function--leadership { top: 0; }
  .tm-function--operations,
  .tm-function--legal { top: 21%; }
  .tm-function--human,
  .tm-function--research { bottom: 17%; }
  .tm-team-system__core { top: 48%; width: 10.5rem; min-height: 7rem; }
  .tm-team-system__core strong { font-size: 1.18rem; }
  .tm-competency-line { grid-template-columns: 1fr; }
  .tm-competency-line li,
  .tm-competency-line li:nth-child(2n),
  .tm-competency-line li:last-child { grid-column: auto; min-height: auto; border-right: 0; border-bottom: 1px solid var(--tm-line); }
  .tm-competency-line li:last-child { border-bottom: 0; }
  .tm-accountability { padding: 1rem; }
  .tm-accountability__lead strong { font-size: 2rem; }
  .tm-accountability__departments { margin-top: 1rem; }
  .tm-person { padding: 1.3rem; border-radius: 1.35rem; }
  .tm-person--founder .tm-person__portrait { width: 7.25rem; }
  .tm-monogram { width: 5.5rem; height: 5.5rem; font-size: 1.8rem; }
  .tm-person:not(.tm-person--founder) .tm-person__portrait { width: 5.5rem; }
  .tm-person h3 { font-size: clamp(2.55rem,13vw,3.7rem); }
  .tm-role { min-height: auto; padding: 1.5rem; }
  .tm-role__status { margin-bottom: 3rem; }
  .tm-role h3 { font-size: clamp(3.1rem,15vw,4.6rem); }
  .tm-principle-list li { grid-template-columns: 2.2rem 1fr; }
  .tm-org-map { padding: 1rem; }
  .tm-org-map__leader strong { font-size: 1.95rem; }
  .tm-org-map__branches { margin-top: 1rem !important; }
  .tm-org-map__branches article { min-height: auto; }
  .tm-closing__line { font-size: .58rem; }
}

@media (prefers-reduced-motion: reduce) {
  .tm-motion-ready [data-tm-reveal] { opacity: 1; transform: none; transition: none; }
  .tm-button,
  .tm-person { transition: none; }
}


/* VitaAvanza route bundle source: it/team/index.html#inline-style-1 */
/* Partner logos marquee */ /* Frames (scroll story) */

/* 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;
  }
}

