/* Design System v2 prototype entrypoint. */
@font-face {
  font-family: "Matter Trial";
  src: url("../brand/fonts/Matter-TRIAL-Regular.otf") format("opentype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Matter Trial";
  src: url("../brand/fonts/Matter-TRIAL-RegularItalic.otf") format("opentype");
  font-style: italic;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Matter Trial";
  src: url("../brand/fonts/Matter-TRIAL-Bold.otf") format("opentype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Matter Trial";
  src: url("../brand/fonts/Matter-TRIAL-BoldItalic.otf") format("opentype");
  font-style: italic;
  font-weight: 700;
  font-display: swap;
}

:root {
  --v2-color-ink: #000000;
  --v2-color-paper: #ffffff;
  --v2-color-accent: #ff6512;
  --v2-color-focus: #81eafc;
  --v2-color-wash: #edf9fc;
  --v2-color-panel: #ffffff;
  --v2-color-dark: #11161d;
  --v2-color-dark-soft: #1b2430;
  --v2-color-paper-strong: #ffffff;
  --v2-color-paper-rgb: 255 255 255;
  --v2-color-ink-rgb: 0 0 0;
  --v2-color-accent-rgb: 255 101 18;
  --v2-color-focus-rgb: 129 234 252;
  --v2-color-line: rgb(var(--v2-color-ink-rgb) / 0.12);
  --v2-color-muted: rgb(var(--v2-color-ink-rgb) / 0.68);
  --v2-color-grid-line: rgb(var(--v2-color-ink-rgb) / 0.035);
  --v2-color-glow: rgb(var(--v2-color-focus-rgb) / 0.22);
  --v2-color-panel-fill: rgb(255 255 255 / 0.84);
  --v2-color-panel-fill-strong: rgb(255 255 255 / 0.92);
  --v2-color-panel-fill-max: rgb(255 255 255 / 0.96);
  --v2-color-accent-soft: rgb(var(--v2-color-accent-rgb) / 0.08);
  --v2-color-accent-line: rgb(var(--v2-color-accent-rgb) / 0.2);
  --v2-color-accent-wash: rgb(var(--v2-color-accent-rgb) / 0.12);
  --v2-color-focus-wash: rgb(var(--v2-color-focus-rgb) / 0.12);
  --v2-color-dark-line: rgb(var(--v2-color-focus-rgb) / 0.12);
  --v2-color-dark-muted: rgb(var(--v2-color-paper-rgb) / 0.76);
  --v2-color-panel-soft: rgb(var(--v2-color-paper-rgb) / 0.78);
  --v2-color-panel-strong: rgb(var(--v2-color-paper-rgb) / 0.82);
  --v2-color-border-strong: rgb(var(--v2-color-ink-rgb) / 0.1);
  --v2-color-accent-faint: rgb(var(--v2-color-accent-rgb) / 0.14);
  --v2-color-accent-faint-line: rgb(var(--v2-color-accent-rgb) / 0.16);
  --v2-color-accent-stroke: rgb(var(--v2-color-accent-rgb) / 0.3);
  --v2-color-dark-heavy: rgb(0 0 0 / 0.72);
  --v2-color-accent-strong: rgb(var(--v2-color-accent-rgb) / 0.96);
  --v2-color-accent-rich: rgb(var(--v2-color-accent-rgb) / 0.88);
  --v2-color-focus-strong: rgb(var(--v2-color-focus-rgb) / 0.94);
  --v2-color-focus-rich: rgb(var(--v2-color-focus-rgb) / 0.98);
  --v2-color-accent-gradient: rgb(var(--v2-color-accent-rgb) / 0.72);
  --v2-color-focus-gradient: rgb(var(--v2-color-focus-rgb) / 0.82);
  --v2-shadow-panel: 0 18px 48px rgb(var(--v2-color-ink-rgb) / 0.08);
  --v2-focus-ring: 0 0 0 3px rgb(var(--v2-color-focus-rgb) / 0.85);

  --v2-grid-columns: 12;
  --v2-grid-gutter: 24px;
  --v2-grid-margin: 32px;
  --v2-safe-left: env(safe-area-inset-left, 0px);
  --v2-safe-right: env(safe-area-inset-right, 0px);
  --v2-grid-max: 1280px;
  --v2-nav-height: 74px;
  --v2-reading-max: 42rem;
  --v2-measure-tight: 18ch;
  --v2-measure-title: 11ch;

  --v2-space-0: 0;
  --v2-space-1: 8px;
  --v2-space-2: 16px;
  --v2-space-3: 24px;
  --v2-space-4: 32px;
  --v2-space-5: 48px;
  --v2-space-6: 64px;
  --v2-space-7: 96px;
  --v2-space-8: 128px;

  --v2-radius-1: 12px;
  --v2-radius-2: 20px;
  --v2-radius-3: 32px;

  --v2-type-label: 0.75rem;
  --v2-type-body: 1rem;
  --v2-type-perex: 1.125rem;
  --v2-type-lead: 1.25rem;
  --v2-type-title-3: clamp(1.75rem, 2.2vw, 2.25rem);
  --v2-type-title-2: clamp(2.5rem, 4vw, 3.5rem);
  --v2-type-title-1: clamp(3.75rem, 7vw, 5.5rem);

  --v2-leading-tight: 1.08;
  --v2-leading-heading: 1.12;
  --v2-leading-body: 1.65;
  --v2-leading-perex: 1.55;

  --v2-section-space: var(--v2-space-7);
  --v2-stack-gap: var(--v2-space-3);
  --v2-cluster-gap: var(--v2-space-2);
  --v2-panel-padding: var(--v2-space-4);
}

@media (max-width: 767px) {
  :root {
    --v2-grid-gutter: 16px;
    --v2-grid-margin: 16px;
    --v2-section-space: var(--v2-space-6);
    --v2-panel-padding: var(--v2-space-3);
  }
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--v2-color-paper);
}

body {
  margin: 0;
  min-height: 100%;
  background:
    radial-gradient(circle at top left, var(--v2-color-glow), transparent 34%),
    linear-gradient(180deg, var(--v2-color-paper-strong) 0%, var(--v2-color-paper) 100%);
  color: var(--v2-color-ink);
  font-family: "Matter Trial", Arial, Helvetica, sans-serif;
  font-size: var(--v2-type-body);
  line-height: var(--v2-leading-body);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(var(--v2-color-grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--v2-color-grid-line) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: linear-gradient(180deg, transparent, #000 14%, #000 82%, transparent);
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: none;
  box-shadow: var(--v2-focus-ring);
}

.v2-page {
  padding: var(--v2-space-7) 0 0;
}

.v2-page--content {
  padding-top: calc(var(--v2-nav-height) + var(--v2-space-6));
}

.v2-page--standalone {
  padding-bottom: var(--v2-space-8);
}

.v2-frame {
  width: 100%;
  max-width: calc(var(--v2-grid-max) + (2 * var(--v2-grid-margin)));
  padding-left: max(var(--v2-grid-margin), var(--v2-safe-left));
  padding-right: max(var(--v2-grid-margin), var(--v2-safe-right));
  margin-inline: auto;
}

.wrap {
  width: 100%;
  max-width: calc(var(--v2-grid-max) + (2 * var(--v2-grid-margin)));
  padding-left: max(var(--v2-grid-margin), var(--v2-safe-left));
  padding-right: max(var(--v2-grid-margin), var(--v2-safe-right));
  margin-inline: auto;
}

.v2-stack {
  display: grid;
  gap: var(--v2-stack-gap);
}

.v2-stack[data-gap="tight"] {
  gap: var(--v2-space-2);
}

.v2-stack[data-gap="loose"] {
  gap: var(--v2-space-5);
}

.v2-cluster {
  display: flex;
  flex-wrap: wrap;
  gap: var(--v2-cluster-gap);
  align-items: center;
}

.v2-eyebrow {
  margin: 0;
  color: var(--v2-color-accent);
  font-size: var(--v2-type-label);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow {
  margin: 0;
  color: var(--v2-color-accent);
  display: block;
  font-size: var(--v2-type-label);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.v2-title-1,
.v2-title-2,
.v2-title-3 {
  margin: 0;
  font-weight: 700;
}

.v2-title-1 {
  font-size: var(--v2-type-title-1);
  line-height: var(--v2-leading-tight);
  text-wrap: balance;
}

.v2-title-2 {
  font-size: var(--v2-type-title-2);
  line-height: var(--v2-leading-heading);
}

.v2-title-3 {
  max-width: 18ch;
  font-size: var(--v2-type-title-3);
  line-height: var(--v2-leading-heading);
}

.v2-lead,
.v2-copy {
  margin: 0;
  max-width: var(--v2-reading-max);
}

.v2-lead {
  font-size: var(--v2-type-lead);
  line-height: 1.45;
}

.v2-copy {
  color: var(--v2-color-muted);
}

.v2-perex {
  font-size: var(--v2-type-perex);
  line-height: var(--v2-leading-perex);
}

.v2-rule {
  width: 100%;
  height: 1px;
  border: 0;
  background: var(--v2-color-line);
}

.v2-tag {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border: 1px solid var(--v2-color-line);
  border-radius: 999px;
  background: var(--v2-color-panel-fill-max);
  color: var(--v2-color-accent);
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.v2-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.75rem 1rem;
  border: 1px solid var(--v2-color-accent-line);
  border-radius: var(--v2-radius-1);
  background: var(--v2-color-accent);
  color: var(--v2-color-paper);
  font: inherit;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.v2-button:hover,
.v2-button:focus-visible {
  background: var(--v2-color-accent-strong);
}

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

.v2-button--ghost {
  background: rgb(255 255 255 / 0.08);
  color: inherit;
}

.v2-section {
  padding-block: var(--v2-section-space);
  border-top: 1px solid var(--v2-color-line);
}

.v2-section:first-child {
  border-top: 0;
  padding-top: 0;
}

.v2-doc-layout {
  display: grid;
  grid-template-columns: minmax(220px, 268px) minmax(0, 1fr);
  gap: var(--v2-space-5);
  align-items: start;
}

.v2-doc-sidebar {
  position: sticky;
  top: var(--v2-space-4);
}

.v2-doc-sidebar__inner {
  gap: var(--v2-space-3);
  max-height: calc(100vh - (2 * var(--v2-space-4)));
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-gutter: stable;
}

.v2-doc-content {
  min-width: 0;
}

.v2-doc-nav {
  display: grid;
  gap: var(--v2-space-1);
}

.v2-doc-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid var(--v2-color-line);
  border-radius: var(--v2-radius-1);
  background: var(--v2-color-panel-fill);
  font-weight: 700;
  text-decoration: none;
}

.v2-doc-nav a::after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--v2-color-line);
  transition: background .18s ease, transform .18s ease;
}

.v2-doc-nav-group {
  display: grid;
  gap: var(--v2-space-1);
}

.v2-doc-nav-children {
  display: none;
  gap: var(--v2-space-1);
}

.v2-doc-nav-group.is-expanded .v2-doc-nav-children {
  display: grid;
}

.v2-doc-nav .v2-doc-nav-sub {
  min-height: 32px;
  padding-left: var(--v2-space-4);
  font-size: 0.75rem;
  font-weight: 600;
}

.v2-doc-nav a.is-active {
  border-color: var(--v2-color-accent-line);
  background: var(--v2-color-panel-fill-max);
  box-shadow: 0 0 0 2px var(--v2-color-accent-soft);
}

.v2-doc-nav a.is-active::after {
  background: var(--v2-color-accent);
  transform: scale(1.1);
}

.v2-doc-block {
  display: grid;
  gap: var(--v2-space-4);
  padding-top: var(--v2-space-5);
  border-top: 1px solid var(--v2-color-line);
  scroll-margin-top: 156px;
}

.v2-doc-block:first-of-type {
  padding-top: 0;
  border-top: 0;
}

@media (max-width: 1100px) {
  .v2-doc-layout {
    grid-template-columns: 1fr;
  }

  .v2-doc-sidebar {
    position: static;
  }

  .v2-doc-sidebar__inner {
    max-height: none;
    overflow: visible;
  }
}

.v2-grid {
  display: grid;
  grid-template-columns: repeat(var(--v2-grid-columns), minmax(0, 1fr));
  column-gap: var(--v2-grid-gutter);
  row-gap: var(--v2-space-4);
}

.v2-grid > * {
  min-width: 0;
  grid-column: span 12;
}

.v2-span-3 { grid-column: span 3; }
.v2-span-4 { grid-column: span 4; }
.v2-span-5 { grid-column: span 5; }
.v2-span-6 { grid-column: span 6; }
.v2-span-7 { grid-column: span 7; }
.v2-span-8 { grid-column: span 8; }
.v2-span-9 { grid-column: span 9; }
.v2-span-10 { grid-column: span 10; }
.v2-span-12 { grid-column: span 12; }

.v2-start-1 { grid-column-start: 1; }
.v2-start-2 { grid-column-start: 2; }
.v2-start-3 { grid-column-start: 3; }
.v2-start-4 { grid-column-start: 4; }

.v2-shell {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: var(--v2-grid-gutter);
}

.v2-shell[data-layout="split"] > .v2-shell__main {
  grid-column: 1 / span 7;
}

.v2-shell[data-layout="split"] > .v2-shell__aside {
  grid-column: 8 / span 5;
}

.v2-shell[data-layout="full"] > .v2-shell__main {
  grid-column: 1 / -1;
}

.v2-shell[data-layout="editorial"] > .v2-shell__main {
  grid-column: 2 / span 6;
}

.v2-shell[data-layout="editorial"] > .v2-shell__aside {
  grid-column: 9 / span 3;
}

.v2-measure {
  max-width: var(--v2-reading-max);
}

@media (max-width: 1023px) {
  .v2-shell,
  .v2-doc-layout {
    grid-template-columns: 1fr;
  }

  .v2-shell[data-layout] > .v2-shell__main,
  .v2-shell[data-layout] > .v2-shell__aside {
    grid-column: auto;
  }

  .v2-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .v2-span-7,
  .v2-span-8,
  .v2-span-9,
  .v2-span-10,
  .v2-span-12 {
    grid-column: span 6;
  }

  .v2-span-3,
  .v2-span-4,
  .v2-span-5,
  .v2-span-6 {
    grid-column: span 3;
  }
}

@media (max-width: 767px) {
  .v2-page {
    padding: var(--v2-space-6) 0 0;
  }

  .v2-page--standalone {
    padding-bottom: var(--v2-space-7);
  }

  .v2-page--content {
    padding-top: calc(var(--v2-nav-height) + var(--v2-space-5));
  }

  .v2-grid {
    grid-template-columns: 1fr;
    row-gap: var(--v2-space-3);
  }

  .v2-doc-nav a {
    min-height: 38px;
  }

  .v2-doc-nav .v2-doc-nav-sub {
    padding-left: var(--v2-space-2);
    font-size: 11px;
  }

  .v2-grid > *,
  .v2-span-3,
  .v2-span-4,
  .v2-span-5,
  .v2-span-6,
  .v2-start-1,
  .v2-start-2,
  .v2-start-3,
  .v2-start-4 {
    grid-column: auto;
  }
}

/* Aggregates v2 block layers into a stable import surface. */
.v2-section-head__copy,
.v2-section-head__source {
  max-width: var(--v2-reading-max);
}

.v2-perex-aside {
  display: grid;
  align-content: start;
  gap: var(--v2-space-2);
  max-width: var(--v2-reading-max);
  padding-left: var(--v2-space-3);
  border-left: 2px solid var(--v2-color-accent-stroke);
}

.v2-content-card__link {
  font-weight: 700;
  text-decoration: none;
}

.v2-content-card__link:hover,
.v2-content-card__link:focus-visible {
  text-decoration: underline;
}

.v2-stat-card {
  min-height: 100%;
}

.v2-form,
.v2-form-grid,
.v2-form-field,
.v2-form-actions {
  display: grid;
}

.v2-form {
  gap: var(--v2-space-4);
}

.v2-form-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--v2-space-3);
}

.v2-form-field {
  gap: var(--v2-space-1);
}

.v2-form-field.is-textarea {
  grid-column: 1 / -1;
}

.v2-form-label {
  font-size: var(--v2-type-label);
  font-weight: 700;
  line-height: 1.4;
}

.v2-form-control {
  width: 100%;
  border: 1px solid var(--v2-color-line);
  border-radius: var(--v2-radius-1);
  background: rgba(255, 255, 255, 0.96);
  color: var(--v2-color-ink);
  font: inherit;
  font-size: 1rem;
  line-height: 1.45;
  padding: 0.875rem 1rem;
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.v2-form textarea.v2-form-control {
  min-height: 7rem;
  resize: vertical;
}

.v2-form-control::placeholder {
  color: var(--v2-color-muted);
}

.v2-form-control:focus-visible {
  border-color: var(--v2-color-accent-line);
  background: var(--v2-color-panel-fill-max);
}

.v2-form-actions {
  gap: var(--v2-space-2);
  justify-items: start;
}

.v2-form-note,
.v2-form-status {
  max-width: 56ch;
}

.v2-form-status:empty {
  display: none;
}

.v2-panel {
  display: grid;
  align-content: start;
  gap: var(--v2-space-3);
  padding: var(--v2-panel-padding);
  border: 1px solid var(--v2-color-line);
  border-radius: var(--v2-radius-2);
  background: var(--v2-color-panel-fill);
  box-shadow: var(--v2-shadow-panel);
  backdrop-filter: blur(12px);
}

.v2-panel[data-surface="wash"] {
  background: var(--v2-color-panel-fill-strong);
}

.v2-panel[data-surface="accent"] {
  background: linear-gradient(135deg, var(--v2-color-accent-wash), var(--v2-color-panel-fill-max));
}

.v2-panel[data-surface="dark"] {
  border-color: var(--v2-color-dark-line);
  background: rgb(17 22 29 / .9);
  color: var(--v2-color-paper);
}

.v2-panel[data-surface="dark"] .v2-copy,
.v2-panel[data-surface="dark"] .v2-eyebrow {
  color: var(--v2-color-dark-muted);
}

.v2-kicker {
  display: grid;
  gap: var(--v2-space-2);
}

.v2-stat {
  display: grid;
  gap: var(--v2-space-2);
}

.v2-stat__value {
  margin: 0;
  font-size: clamp(2.5rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.v2-stat__label,
.v2-stat__copy {
  margin: 0;
}

.v2-stat__label {
  font-weight: 700;
}

.v2-stat__copy {
  color: var(--v2-color-muted);
}

.v2-list {
  margin: 0;
  padding-left: 1.2rem;
}

.v2-list li + li {
  margin-top: var(--v2-space-1);
}

.v2-code {
  margin: 0;
  max-height: 28rem;
  padding: var(--v2-space-3);
  border: 1px solid var(--v2-color-line);
  border-radius: var(--v2-radius-2);
  background: var(--v2-color-panel-fill-max);
  overflow: auto;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.9375rem;
  line-height: 1.55;
}

.v2-code figure.highlight,
.v2-code .highlight,
.v2-code pre {
  margin: 0;
  background: transparent;
}

.v2-code .highlight pre {
  padding: 0;
}

.v2-code .nt,
.v2-code .nc {
  color: #9a3412;
}

.v2-code .na,
.v2-code .nx {
  color: #1d4ed8;
}

.v2-code .s,
.v2-code .s1,
.v2-code .s2 {
  color: #0f766e;
}

.v2-code .c,
.v2-code .cm {
  color: #6b7280;
  font-style: italic;
}

.v2-code .p,
.v2-code .o {
  color: var(--v2-color-muted);
}

@media (max-width: 767px) {
  .v2-form-grid {
    grid-template-columns: 1fr;
  }

  .v2-form-field.is-textarea {
    grid-column: auto;
  }
}

.v2-hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: min(100svh, 52rem);
  overflow: clip;
  color: var(--v2-color-paper);
  background:
    radial-gradient(circle at 14% 16%, rgb(var(--v2-color-accent-rgb) / 0.3), transparent 0 34%),
    radial-gradient(circle at 82% 18%, rgb(var(--v2-color-focus-rgb) / 0.24), transparent 0 38%),
    linear-gradient(135deg, rgb(var(--v2-color-accent-rgb) / 0.34), transparent 40%),
    linear-gradient(315deg, rgb(var(--v2-color-focus-rgb) / 0.24), transparent 46%),
    var(--v2-color-dark);
  isolation: isolate;
}

.v2-thank-you-page {
  min-height: 100svh;
  background:
    radial-gradient(circle at 16% 18%, rgb(var(--v2-color-accent-rgb) / .2), transparent 0 34%),
    radial-gradient(circle at 82% 18%, rgb(var(--v2-color-focus-rgb) / .2), transparent 0 38%);
}

.v2-thank-you-section {
  display: grid;
  min-height: clamp(32rem, calc(100svh - var(--v2-nav-height) - var(--v2-space-7)), 45rem);
  align-items: center;
  border-top: 0;
}

.v2-thank-you-frame {
  display: grid;
}

.v2-thank-you-card {
  width: min(100%, 56rem);
  padding: clamp(var(--v2-space-4), 5vw, var(--v2-space-6));
}

.v2-thank-you-card .v2-title-1 {
  max-width: 11ch;
}

@media (max-width: 767px) {
  .v2-thank-you-section {
    min-height: 0;
    align-items: start;
  }
}

.v2-landing-page {
  padding-top: 0;
}

.v2-hero__media,
.v2-hero::before,
.v2-hero::after {
  position: absolute;
  inset: 0;
}

.v2-hero__media {
  z-index: -2;
  overflow: hidden;
}

.v2-hero__media img {
  width: 100%;
  height: 118%;
  object-fit: cover;
  object-position: 54% center;
  transform: translate3d(0, var(--parallax-y, 0px), 0) scale(1.06);
  filter: saturate(.88) brightness(.82) contrast(1.02);
}

.v2-hero::after {
  content: "";
  z-index: -1;
  background:
    linear-gradient(90deg, rgb(0 0 0 / 0.9) 0%, rgb(0 0 0 / 0.62) 34%, rgb(0 0 0 / 0.24) 64%, rgb(0 0 0 / 0.12) 100%),
    linear-gradient(180deg, rgb(0 0 0 / 0.34) 0%, rgb(0 0 0 / 0.12) 38%, rgb(0 0 0 / 0.8) 100%);
}

.v2-hero::before {
  content: "";
  z-index: -1;
  background:
    radial-gradient(circle at 22% 46%, rgb(0 0 0 / 0.44), transparent 0 34%),
    linear-gradient(180deg, rgb(var(--v2-color-focus-rgb) / 0.12), transparent 28%);
}

.v2-hero .v2-lead {
  color: inherit;
}

.v2-hero .v2-eyebrow {
  color: var(--v2-color-focus);
}

.v2-hero > .v2-frame {
  display: grid;
  min-height: inherit;
}

.v2-hero__body {
  min-height: inherit;
  align-items: center;
  padding-block: var(--v2-space-7);
}

.v2-quote--theme-paper {
  --v2-sticky-runway-extra: 620px;
  background:
    radial-gradient(circle at 14% 22%, rgb(var(--v2-color-accent-rgb) / 0.14), transparent 0 34%),
    radial-gradient(circle at 86% 24%, rgb(var(--v2-color-focus-rgb) / 0.18), transparent 0 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(249, 247, 242, 0.98) 100%);
}

.v2-quote--theme-dark {
  --v2-sticky-runway-extra: 620px;
  background:
    radial-gradient(circle at 16% 18%, rgb(var(--v2-color-accent-rgb) / 0.28), transparent 0 34%),
    radial-gradient(circle at 82% 18%, rgb(var(--v2-color-focus-rgb) / 0.22), transparent 0 38%),
    linear-gradient(135deg, rgb(var(--v2-color-accent-rgb) / 0.38), transparent 40%),
    linear-gradient(315deg, rgb(var(--v2-color-focus-rgb) / 0.3), transparent 42%),
    var(--v2-color-dark);
  color: var(--v2-color-paper);
}

.v2-quote--theme-dark .v2-eyebrow {
  color: var(--v2-color-focus);
}

.v2-quote__quote {
  margin: 0;
}

.v2-quote__scene {
  align-items: start;
}

.v2-quote__pin {
  align-content: center;
}

.v2-quote__shell {
  align-items: center;
  min-height: inherit;
}

.v2-quote .v2-title-1 {
  max-width: var(--v2-measure-title);
}

.v2-quote__main {
  justify-items: end;
  text-align: right;
  padding-right: var(--v2-space-5);
}

.v2-quote__aside {
  position: relative;
  max-width: var(--v2-reading-max);
  min-height: 0;
  padding-left: var(--v2-space-5);
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.v2-quote__aside .v2-copy {
  max-width: var(--v2-reading-max);
  color: var(--v2-color-muted);
  font-size: var(--v2-type-lead);
  line-height: var(--v2-leading-body);
  text-wrap: pretty;
}

.v2-quote__aside::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 2px;
  height: min(46vh, 28rem);
  transform: translateY(-50%);
  background: linear-gradient(180deg, rgb(var(--v2-color-accent-rgb) / 0.18), rgb(var(--v2-color-focus-rgb) / 0.82));
  pointer-events: none;
}

.v2-quote--theme-dark .v2-quote__aside::before {
  background: linear-gradient(180deg, rgb(var(--v2-color-focus-rgb) / 0.3), rgb(255 255 255 / 0.84));
}

.v2-quote--theme-dark .v2-title-1,
.v2-quote--theme-dark .v2-copy {
  color: var(--v2-color-paper);
}

.v2-intro-metric {
  min-height: 250px;
  justify-content: space-between;
  gap: 0;
  padding: 30px 28px 28px;
  border-color: rgb(var(--v2-color-accent-rgb) / 0.18);
  background: rgb(255 255 255 / 0.8);
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 0.5), 0 16px 40px rgb(var(--v2-color-focus-rgb) / 0.16);
}

.v2-intro-metric__value {
  display: block;
  margin: 0 0 18px;
  font-size: clamp(40px, 4vw, 58px);
  line-height: .95;
}

.v2-intro-metric__label {
  display: block;
  max-width: 16ch;
  color: var(--v2-color-muted);
  font-size: 21px;
  line-height: 1.35;
}

.v2-intro-metric:last-child .v2-intro-metric__value,
.v2-intro-metric:last-child .v2-intro-metric__label {
  color: var(--v2-color-ink);
}

.v2-intro-metric.v2-intro-metric--accent .v2-intro-metric__value,
.v2-intro-metric.v2-intro-metric--accent .v2-intro-metric__label {
  color: var(--v2-color-accent);
}

.v2-cards-section--theme-paper {
  background:
    linear-gradient(180deg, rgb(var(--v2-color-focus-rgb) / 0.12) 0%, rgba(255, 255, 255, 0.96) 48%, rgb(var(--v2-color-accent-rgb) / 0.08) 100%);
}

.v2-cards-section--theme-dark {
  background:
    radial-gradient(circle at 12% 18%, rgb(var(--v2-color-accent-rgb) / 0.28), transparent 0 34%),
    radial-gradient(circle at 88% 16%, rgb(var(--v2-color-focus-rgb) / 0.22), transparent 0 40%),
    linear-gradient(315deg, rgb(var(--v2-color-focus-rgb) / 0.14), transparent 46%),
    var(--v2-color-dark);
  color: var(--v2-color-paper);
}

.v2-cards-section--theme-dark .v2-eyebrow,
.v2-cards-section--theme-dark .v2-tag {
  color: var(--v2-color-focus);
}

.v2-cards-section__item,
.v2-cards-section__visual {
  min-height: 100%;
}

.v2-cards-section__visual-body {
  display: grid;
  min-height: 100%;
}

.v2-timeline-card {
  min-height: 100%;
}

.v2-timeline-card__step {
  margin: 0;
  font-size: var(--v2-type-label);
  font-weight: 700;
  line-height: 1.4;
  color: var(--v2-color-accent);
}

.v2-people-grid > * {
  min-height: 100%;
}

@media (max-width: 1279px) {
  .v2-intro-metric {
    min-height: 200px;
    padding: 26px 24px 24px;
  }
}

@media (max-width: 1023px) {
  .v2-quote__shell[data-layout="split"] {
    grid-template-columns: 1fr;
    row-gap: 0;
  }

  .v2-quote__shell > .v2-shell__main,
  .v2-quote__shell > .v2-shell__aside {
    grid-column: auto;
  }

  .v2-quote__main {
    justify-items: start;
    text-align: left;
    padding-right: 0;
  }

  .v2-quote__aside {
    max-width: var(--v2-reading-max);
    padding-left: 0;
    padding-top: calc(var(--v2-space-4) * 2);
  }

  .v2-quote__aside .v2-copy {
    max-width: var(--v2-reading-max);
  }

  .v2-quote__aside::before {
    top: var(--v2-space-4);
    left: 0;
    width: min(10rem, 32%);
    height: 2px;
    transform: none;
  }
}

@media (hover: none) and (pointer: coarse) {
  .v2-sticky-shell__scene {
    min-height: 0;
  }

  .v2-sticky-shell__pin {
    position: static;
    min-height: 0;
  }
}

.v2-sticky-shell__scene,
.v2-sticky-shell__pin,
.v2-sticky-shell__body {
  display: grid;
}

.v2-stickysection {
  --v2-sticky-pin-top: 112px;
  --v2-sticky-pin-min-height: calc(100svh - var(--v2-sticky-pin-top));
  --v2-sticky-runway-viewport: min(100svh, 760px);
  --v2-sticky-runway-extra: 700px;
  --v2-sticky-runway-buffer: 220px;
  --v2-sticky-scene-runway: calc(
    (var(--v2-sticky-runway-viewport) - var(--v2-sticky-pin-top)) +
    var(--v2-sticky-runway-extra) +
    var(--v2-sticky-runway-buffer)
  );
  --v2-sticky-pin-padding-block: 0px;
}

.v2-stickysection--cards-1 { --v2-sticky-runway-extra: 420px; }
.v2-stickysection--cards-2 { --v2-sticky-runway-extra: 560px; }
.v2-stickysection--cards-3 { --v2-sticky-runway-extra: 700px; }
.v2-stickysection--cards-4 { --v2-sticky-runway-extra: 860px; }

.v2-sticky-shell__scene {
  min-height: var(--v2-sticky-scene-runway, clamp(26rem, 72vh, 42rem));
}

.v2-stickysection__scene {
  position: relative;
  align-items: start;
  gap: var(--v2-space-6);
}

.v2-sticky-shell__pin {
  position: sticky;
  top: var(--v2-sticky-pin-top, 112px);
  min-height: var(--v2-sticky-pin-min-height, min(100vh - 144px, 42rem));
  padding-block: var(--v2-sticky-pin-padding-block, 0px);
  align-content: start;
}

.v2-stickysection__pin {
  align-self: start;
  width: 100%;
  box-sizing: border-box;
  grid-template-rows: auto auto;
  align-content: center;
}

.v2-stickysection__pin > .v2-stickysection__grid {
  margin-top: var(--v2-space-6);
}

.v2-sticky-shell__body {
  align-content: start;
  min-width: 0;
}

.v2-sticky-shell__scene[data-layout="split"] .v2-sticky-shell__body {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: var(--v2-grid-gutter);
  row-gap: var(--v2-space-4);
}

.v2-sticky-shell__scene[data-layout="split"] .v2-sticky-shell__body > * {
  grid-column: span 6;
}

.v2-sticky-shell--preview {
  padding-block: 0;
}

.v2-sticky-shell__scene--preview {
  min-height: 0;
}

.v2-sticky-shell__pin--preview {
  position: static;
  min-height: 0;
}

.v2-stickysection--theme-paper {
  background:
    radial-gradient(circle at 14% 8%, rgb(var(--v2-color-focus-rgb) / .24), transparent 0 38%),
    radial-gradient(circle at 86% 94%, rgb(var(--v2-color-accent-rgb) / .18), transparent 0 42%),
    linear-gradient(180deg, rgb(var(--v2-color-focus-rgb) / .16) 0%, rgb(255 255 255 / .96) 48%, rgb(var(--v2-color-accent-rgb) / .12) 100%);
}

.v2-stickysection--theme-dark {
  background:
    radial-gradient(circle at 12% 8%, rgb(var(--v2-color-accent-rgb) / .44), transparent 0 38%),
    radial-gradient(circle at 86% 94%, rgb(var(--v2-color-focus-rgb) / .3), transparent 0 42%),
    linear-gradient(135deg, rgb(var(--v2-color-accent-rgb) / .2) 0%, transparent 48%),
    linear-gradient(315deg, rgb(var(--v2-color-focus-rgb) / .17) 0%, transparent 52%),
    linear-gradient(180deg, rgb(255 255 255 / .035) 0%, transparent 36%, rgb(255 255 255 / .018) 100%),
    var(--v2-color-dark);
  color: var(--v2-color-paper);
}

.v2-stickysection--theme-dark .v2-title-2,
.v2-stickysection--theme-dark .v2-title-3,
.v2-stickysection--theme-dark .v2-copy,
.v2-stickysection--theme-dark .v2-section-head__source {
  color: var(--v2-color-paper);
}

.v2-stickysection--theme-dark .v2-eyebrow,
.v2-stickysection--theme-dark .v2-stickysection__tag {
  color: var(--v2-color-focus);
}

.v2-stickysection--theme-dark .v2-perex-aside {
  border-left-color: rgb(var(--v2-color-focus-rgb) / 0.24);
}

.v2-stickysection .proof-stat {
  display: block;
  margin-bottom: 8px;
  font-size: clamp(30px, 3.2vw, 48px);
  line-height: 0.96;
  font-weight: 700;
}

.v2-stickysection .proof-stat strong {
  color: currentColor;
}

.v2-stickysection--theme-dark .proof-stat {
  color: var(--v2-color-paper);
}

.v2-stickysection--theme-dark .proof-stat strong {
  color: var(--v2-color-focus);
}

.v2-stickysection__grid {
  display: grid;
  gap: var(--v2-grid-gutter);
}

.v2-stickysection__grid[data-cards="1"] {
  grid-template-columns: 1fr;
}

.v2-stickysection__grid[data-cards="2"] {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.v2-stickysection__grid[data-cards="3"] {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.v2-stickysection__grid[data-cards="4"] {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.v2-stickysection__card {
  position: relative;
  min-height: 17.5rem;
  overflow: clip;
}

.v2-quote .v2-quote__aside {
  min-height: 0;
  align-content: center;
}

.v2-stickysection__card-body {
  min-width: 0;
}

.v2-stickysection__card-body--visual {
  display: grid;
  height: 100%;
}

.v2-stickysection__tag {
  width: fit-content;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  font-size: var(--v2-type-label);
  line-height: 1.4;
}

.v2-stickysection--has-mobile-visual .section-visual--convergence {
  display: grid;
  place-items: center;
  width: min(100%, 34rem);
  min-height: 18rem;
  margin-left: auto;
}

.v2-stickysection--has-mobile-visual .v2-stickysection__card--visual {
  display: none;
  min-height: 14.5rem;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.v2-stickysection--has-mobile-visual .v2-stickysection__card-body--visual {
  padding: 0;
  background: transparent;
}

.v2-people .v2-stickysection__grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.v2-people__aside {
  display: grid;
  gap: var(--v2-space-4);
}

.v2-people__head .v2-title-2 {
  max-width: 18ch;
  text-wrap: balance;
}

.v2-people-card {
  display: flex;
  flex-direction: column;
  padding: 0;
  gap: 0;
}

.v2-people-card__figure {
  flex: 1;
  display: grid;
  gap: 0;
  grid-template-columns: minmax(190px, 260px) minmax(0, 1fr);
  align-items: stretch;
  height: 100%;
  min-height: 0;
  margin: 0;
}

.v2-people-card__figure figcaption {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 28px;
}

.v2-people-card__media {
  aspect-ratio: auto;
  margin: 0;
  height: 100%;
  border-radius: calc(var(--v2-radius-2) - 1px) 0 0 calc(var(--v2-radius-2) - 1px);
  background: rgba(129, 234, 252, 0.18);
  overflow: hidden;
}

.v2-people-card .v2-title-3,
.v2-people-card .v2-copy {
  max-width: none;
}

.v2-people-card .v2-title-3 {
  text-wrap: balance;
}

.v2-people-card .v2-copy {
  line-height: 1.6;
}

.v2-people-card .v2-eyebrow {
  margin-bottom: 4px;
}

.v2-people-card__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: var(--people-image-position, center center);
  transform: scale(var(--people-image-zoom, 1));
  transform-origin: var(--people-image-position, center center);
}

.v2-timeline {
  --v2-timeline-gap: calc(var(--v2-grid-gutter) + var(--v2-space-2) - var(--v2-space-1) / 2);
  --v2-timeline-axis-card-gap: calc(var(--v2-space-5) + var(--v2-space-2));
  --v2-timeline-map-offset: var(--v2-space-6);
  --v2-timeline-map-offset-tablet: var(--v2-space-3);
  --v2-timeline-mobile-gutter: clamp(var(--v2-space-6), 18vw, var(--v2-space-7));
  --v2-timeline-step-size: var(--v2-space-5);
  --v2-timeline-step-size-mobile: calc(var(--v2-space-5) - (var(--v2-space-1) / 2));
  --v2-timeline-step-mobile-left: calc((var(--v2-space-6) + var(--v2-space-1)) * -1);
  --v2-timeline-mobile-map-top: var(--v2-space-1);
  --v2-timeline-mobile-map-bottom-trim: calc(var(--v2-space-2) - (var(--v2-space-1) / 2));
}

.v2-timeline-sequence {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--v2-timeline-gap);
  padding-top: var(--v2-timeline-axis-card-gap);
}

.v2-timeline-map {
  position: absolute;
  top: calc((var(--v2-timeline-axis-card-gap) * -1) - var(--v2-timeline-map-offset));
  left: 3%;
  width: 90%;
  aspect-ratio: 1160 / 306;
  pointer-events: none;
  z-index: 0;
}

.v2-timeline-map__svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.v2-timeline-map__svg--mobile {
  display: none;
}

.v2-timeline-map__route {
  fill: none;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 9 9;
  vector-effect: non-scaling-stroke;
}

.v2-timeline-map__route--ghost {
  stroke: rgb(var(--v2-color-ink-rgb) / 0.16);
  opacity: 0.95;
}

.v2-timeline-map__route--active {
  stroke: var(--v2-color-ink);
  opacity: 0.82;
}

.v2-timeline-map__pin {
  opacity: 0.24;
  transition: opacity 220ms ease, transform 220ms ease;
}

.v2-timeline-map__pin.is-reached {
  opacity: 1;
}

.v2-timeline-map__halo {
  fill: rgb(var(--v2-color-paper-rgb) / 0.92);
}

.v2-timeline-map__dot {
  fill: var(--v2-color-ink);
}

.v2-timeline-map__stem {
  stroke: var(--v2-color-ink);
  stroke-width: 3;
  stroke-linecap: round;
}

.v2-timeline-map__pin--day-2 .v2-timeline-map__dot {
  fill: var(--v2-color-accent);
}

.v2-timeline-map__pin--day-3 .v2-timeline-map__dot {
  fill: var(--v2-color-focus);
}

.v2-timeline-map__label-box {
  fill: rgb(var(--v2-color-paper-rgb) / 0.94);
  stroke: rgb(var(--v2-color-ink-rgb) / 0.18);
  stroke-width: 1.15;
  stroke-dasharray: 3 3;
  vector-effect: non-scaling-stroke;
}

.v2-timeline-map__label-connector {
  stroke: rgb(var(--v2-color-ink-rgb) / 0.28);
  stroke-width: 1.15;
  stroke-linecap: round;
  vector-effect: non-scaling-stroke;
}

.v2-timeline-map__label-text {
  fill: var(--v2-color-ink);
  font-family: var(--v2-font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.v2-timeline-map__day-text {
  display: none;
  fill: rgb(var(--v2-color-ink-rgb) / 0.48);
  font-family: var(--v2-font-ui);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.v2-timeline-map__day-badge-fill {
  display: none;
  fill: rgb(var(--v2-color-paper-rgb) / 0.82);
}

.v2-timeline-card {
  --v2-timeline-node-shift: 0px;
  overflow: visible;
  height: 100%;
  z-index: 1;
}

.v2-timeline-card[data-surface="wash"] {
  background: rgb(var(--v2-color-paper-rgb) / .88);
}

.v2-timeline-card__step {
  display: grid;
  place-items: center;
  width: var(--v2-timeline-step-size);
  height: var(--v2-timeline-step-size);
  border-radius: 999px;
  background: var(--v2-color-ink);
  color: var(--v2-color-paper);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  box-shadow: 0 0 0 10px rgb(var(--v2-color-paper-rgb) / 0.92);
}

.v2-timeline-card .v2-eyebrow {
  margin-bottom: 4px;
}

.v2-timeline-card .v2-timeline-card__step {
  opacity: 0;
  pointer-events: none;
}

.v2-timeline-card:nth-of-type(2) .v2-timeline-card__step {
  background: var(--v2-color-accent);
  color: var(--v2-color-ink);
}

.v2-timeline-card:nth-of-type(3) .v2-timeline-card__step {
  background: var(--v2-color-focus);
  color: var(--v2-color-ink);
}

@media (min-width: 1280px) and (prefers-reduced-motion: no-preference) {
  html.has-stickysection-motion .v2-stickysection__card {
    --stickysection-card-y: 96px;
    --stickysection-card-scale: .94;
    --stickysection-card-opacity: .22;
    transform: translateY(var(--stickysection-card-y)) scale(var(--stickysection-card-scale));
    opacity: var(--stickysection-card-opacity);
    transition: border-color .18s ease, box-shadow .18s ease;
  }

  html.has-stickysection-motion .v2-people .v2-people-card {
    --stickysection-card-y: 0px;
    --stickysection-card-scale: 1;
    --stickysection-card-opacity: 1;
  }
}

@media (min-width: 1280px) and (min-height: 820px) {
  .v2-stickysection {
    --v2-sticky-pin-padding-block: clamp(24px, calc((100svh - 820px) * 0.18), 72px);
  }
}

@media (max-width: 1279px) {
  .v2-sticky-shell__scene {
    min-height: 0;
  }

  .v2-sticky-shell__pin {
    position: static;
    min-height: 0;
  }

  .v2-sticky-shell__scene[data-layout="split"] .v2-sticky-shell__body {
    grid-template-columns: 1fr;
  }

  .v2-sticky-shell__scene[data-layout="split"] .v2-sticky-shell__body > * {
    grid-column: auto;
  }

  .v2-people-card__figure {
    grid-template-columns: minmax(180px, 220px) minmax(0, 1fr);
    height: 100%;
  }

  .v2-people-card__media {
    height: 100%;
    min-height: 100%;
    overflow: hidden;
    border-radius: calc(var(--v2-radius-2) - 1px) 0 0 calc(var(--v2-radius-2) - 1px);
  }

  .v2-people-card__media img {
    object-position: var(--people-image-position-tablet, var(--people-image-position, center 12%));
  }

  .v2-timeline-sequence {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .v2-timeline-card {
    height: auto;
  }

  .v2-timeline-map {
    top: calc((var(--v2-timeline-axis-card-gap) * -1) - var(--v2-timeline-map-offset-tablet));
    left: 0;
    width: 100%;
    height: auto;
  }

  .v2-stickysection__grid[data-cards="2"],
  .v2-stickysection__grid[data-cards="3"],
  .v2-stickysection__grid[data-cards="4"] {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .v2-stickysection--has-mobile-visual .v2-stickysection__head .section-visual--convergence {
    display: none;
  }

  .v2-stickysection--has-mobile-visual .v2-stickysection__card--visual {
    display: block;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .v2-people .v2-stickysection__grid {
    grid-template-columns: 1fr;
  }

  .v2-people-card__figure {
    grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
  }

  .v2-people-card__media {
    border-radius: calc(var(--v2-radius-2) - 1px) 0 0 calc(var(--v2-radius-2) - 1px);
  }

  .v2-people-card__figure figcaption {
    padding: 26px 24px;
  }
}

@media (max-width: 767px) {
  .v2-intro-metric {
    min-height: 220px;
    padding: 24px 22px 22px;
    height: 100%;
  }

  .v2-intro-metric__label {
    max-width: none;
    font-size: 19px;
  }

  .v2-hero {
    min-height: 100dvh;
  }

  .v2-hero::after {
    background:
      linear-gradient(180deg, rgb(0 0 0 / 0.62) 0%, rgb(0 0 0 / 0.42) 36%, rgb(0 0 0 / 0.88) 100%);
  }

  .v2-hero__body {
    padding-top: calc(var(--v2-nav-height) + var(--v2-space-3));
    padding-bottom: max(var(--v2-space-7), calc(env(safe-area-inset-bottom, 0px) + var(--v2-space-6)));
  }

  .v2-quote__main {
    justify-items: start;
    text-align: left;
    padding-right: 0;
  }

  .v2-quote__aside {
    padding-left: 0;
  }

  .v2-stickysection__grid[data-cards] {
    grid-template-columns: 1fr;
  }

  .v2-stickysection__card {
    min-height: 0;
  }

  .v2-people-card__figure {
    display: block;
    grid-template-columns: 1fr;
  }

  .v2-people-card {
    overflow: visible;
  }

  .v2-people-card__media {
    position: sticky;
    top: calc(var(--v2-nav-height) + 10px);
    z-index: 1;
    height: clamp(28rem, calc(100svh - var(--v2-nav-height) - 2rem), 44rem);
    min-height: 28rem;
    overflow: hidden;
    border-radius: calc(var(--v2-radius-2) - 1px) calc(var(--v2-radius-2) - 1px) 0 0;
  }

  .v2-people-card__figure figcaption {
    position: relative;
    z-index: 2;
    margin: -72px 12px 12px;
    padding: 18px 18px 20px;
    border: 1px solid rgb(255 255 255 / 0.26);
    border-radius: calc(var(--v2-radius-2) - 10px);
    background: linear-gradient(180deg, rgb(255 255 255 / 0.74), rgb(255 255 255 / 0.9));
    backdrop-filter: blur(18px) saturate(1.08);
    box-shadow: 0 14px 34px rgb(0 0 0 / 0.12);
  }

  .v2-people-card[data-mobile-caption-theme="inverse"] .v2-people-card__figure figcaption {
    border-color: rgb(255 255 255 / 0.14);
    background: linear-gradient(180deg, rgb(16 18 24 / 0.28), rgb(16 18 24 / 0.74));
    color: var(--v2-color-paper);
    box-shadow: 0 16px 36px rgb(0 0 0 / 0.2);
  }

  .v2-people-card[data-mobile-caption-theme="inverse"] .v2-title-3,
  .v2-people-card[data-mobile-caption-theme="inverse"] .v2-copy {
    color: var(--v2-color-paper);
  }

  .v2-people-card[data-mobile-caption-theme="inverse"] .v2-copy {
    color: rgb(255 255 255 / 0.86);
  }

  .v2-people-card[data-mobile-caption-theme="inverse"] .v2-eyebrow {
    color: var(--v2-color-focus);
  }

  .v2-people-card[data-mobile-caption-theme="light"] .v2-people-card__figure figcaption {
    border-color: rgb(255 255 255 / 0.42);
    background: linear-gradient(180deg, rgb(255 255 255 / 0.78), rgb(255 255 255 / 0.94));
  }

  .v2-people-card__media img {
    object-position: var(--people-image-position-mobile, var(--people-image-position-tablet, var(--people-image-position, center 21%)));
  }

  .v2-timeline-sequence {
    grid-template-columns: 1fr;
    padding-top: 0;
  }

  .v2-timeline-map {
    display: block;
    top: var(--v2-timeline-mobile-map-top);
    left: 0;
    width: var(--v2-timeline-mobile-gutter);
    height: calc(100% - var(--v2-timeline-mobile-map-bottom-trim));
    aspect-ratio: auto;
    overflow: visible;
  }

  .v2-timeline-card {
    display: block;
    height: auto;
    min-height: 0;
    margin-left: var(--v2-timeline-mobile-gutter);
  }

  .v2-timeline-card + .v2-timeline-card {
    margin-top: var(--v2-grid-gutter);
  }

  .v2-timeline-card__step {
    top: 0;
    left: var(--v2-timeline-step-mobile-left);
    width: var(--v2-timeline-step-size-mobile);
    height: var(--v2-timeline-step-size-mobile);
  }

  .v2-timeline-map__svg--desktop {
    display: none;
  }

  .v2-timeline-map__svg--mobile {
    display: block;
    inset: auto;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    transform: none;
  }

  .v2-timeline-map__svg--mobile .v2-timeline-map__day-text {
    display: block;
    fill: rgb(var(--v2-color-ink-rgb) / 0.36);
  }

  .v2-timeline-map__svg--mobile .v2-timeline-map__day-badge-fill {
    display: block;
  }

  .v2-timeline-map__svg--mobile .v2-timeline-map__label {
    display: none;
  }

  .v2-stickysection--has-mobile-visual .v2-stickysection__head .section-visual--convergence {
    display: none;
  }

  .v2-stickysection--has-mobile-visual .v2-stickysection__card--visual {
    display: block;
  }
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  color: var(--v2-color-paper);
  background: linear-gradient(180deg, rgb(0 0 0 / 0.76), rgb(0 0 0 / 0.18) 68%, rgb(0 0 0 / 0));
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}

.site-header.is-solid,
.site-header--solid {
  color: var(--v2-color-ink);
  background: rgb(255 255 255 / 0.88);
  border-bottom: 1px solid rgb(var(--v2-color-ink-rgb) / 0.08);
  backdrop-filter: blur(18px);
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  min-height: var(--v2-nav-height);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 1 1 auto;
  min-width: 0;
  gap: 18px;
  text-decoration: none;
}

.brand img {
  width: 142px;
  filter: invert(1);
  transition: filter .2s ease;
}

.brand-symbol {
  display: none;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  object-fit: contain;
}

.brand-copy {
  display: grid;
  flex: 1 1 auto;
  min-width: 0;
  font-size: 13px;
  line-height: 1.25;
}

.brand-copy strong {
  display: block;
  font-size: 24px;
  font-weight: 400;
  line-height: 1;
  white-space: nowrap;
}

.site-header.is-solid .brand img,
.site-header--solid .brand img {
  filter: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: auto;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity .18s ease, transform .18s ease;
}

.nav-item {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-item--has-submenu::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 18px;
}

.site-header.is-cta-visible .nav-links,
.site-header--primary-nav .nav-links {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.site-header--landing .nav-links {
  display: none;
}

.site-header--landing.is-cta-visible .nav-links {
  display: flex;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-links > a,
.language-switcher a,
.language-switcher span,
.mobile-nav__links a {
  text-decoration: none;
}

.nav-submenu {
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  display: grid;
  grid-template-columns: minmax(11rem, 14rem) minmax(15rem, 20rem);
  gap: 24px;
  min-width: 34rem;
  max-width: min(44rem, calc(100vw - 3rem));
  max-height: min(70vh, 38rem);
  padding: 1.25rem 1.25rem 1.1rem;
  border: 1px solid rgb(var(--v2-color-ink-rgb) / 0.08);
  border-radius: 1.5rem;
  background:
    linear-gradient(180deg, rgb(255 255 255 / 0.98), rgb(250 248 244 / 0.98)),
    rgb(255 255 255 / 0.96);
  color: var(--v2-color-ink);
  box-shadow: 0 18px 44px rgb(0 0 0 / 0.16);
  backdrop-filter: blur(18px);
  overflow: auto;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 10px);
  transition: opacity .18s ease, transform .18s ease;
  z-index: 20;
}

.nav-item--has-submenu:hover .nav-submenu,
.nav-item--has-submenu:focus-within .nav-submenu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-submenu__group,
.mobile-nav__submenu-group {
  display: grid;
  gap: 10px;
}

.nav-submenu__title,
.mobile-nav__submenu-title {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.64;
}

.nav-submenu__link,
.mobile-nav__submenu-link {
  line-height: 1.35;
}

.nav-submenu__group {
  align-content: start;
}

.nav-submenu__link {
  display: inline-block;
  width: fit-content;
  color: rgb(var(--v2-color-ink-rgb) / 0.9);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.2;
  text-decoration: none;
  text-wrap: pretty;
  transition: color .18s ease, opacity .18s ease;
}

.nav-submenu__link:hover,
.nav-submenu__link:focus-visible {
  color: var(--v2-color-accent);
}

.nav-submenu__link[aria-current="page"] {
  color: var(--v2-color-ink);
  font-weight: 700;
}

.nav-submenu__link[aria-current="page"]::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  margin-top: 0.18rem;
  border-radius: 999px;
  background: currentColor;
}

.mobile-nav__submenu {
  display: grid;
  gap: 16px;
  padding: 2px 0 0 14px;
}

.nav-links > a,
.language-switcher__link,
.language-switcher__current,
.mobile-nav__links a {
  position: relative;
  transition: color .18s ease, opacity .18s ease;
}

.nav-links > a:hover,
.nav-links > a:focus-visible,
.language-switcher__link:hover,
.language-switcher__link:focus-visible,
.mobile-nav__links a:hover,
.mobile-nav__links a:focus-visible {
  color: var(--v2-color-accent);
}

.site-header:not(.is-solid):not(.site-header--solid) .nav-links > a:hover,
.site-header:not(.is-solid):not(.site-header--solid) .nav-links > a:focus-visible,
.site-header:not(.is-solid):not(.site-header--solid) .language-switcher__link:hover,
.site-header:not(.is-solid):not(.site-header--solid) .language-switcher__link:focus-visible {
  color: var(--v2-color-focus);
}

.nav-links > a[aria-current="page"],
.language-switcher__current,
.mobile-nav__links a[aria-current="page"] {
  font-weight: 700;
}

.nav-links > a[aria-current="page"]::after,
.language-switcher__current::after,
.mobile-nav__links a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.45rem;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  opacity: 0.9;
}

.mobile-nav__links a[aria-current="page"] {
  width: fit-content;
}

.mobile-nav__submenu-link[aria-current="page"] {
  width: fit-content;
}

.mobile-nav {
  display: none;
  margin-left: auto;
  position: relative;
}

.mobile-nav__toggle {
  list-style: none;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.mobile-nav__toggle::-webkit-details-marker {
  display: none;
}

.mobile-nav__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin-left: auto;
  border-radius: 999px;
  background: currentColor;
}

.mobile-nav__panel {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 220px;
  padding: 18px;
  border: 1px solid rgb(255 255 255 / 0.12);
  border-radius: 22px;
  background: rgb(17 18 24 / 0.94);
  color: var(--v2-color-paper);
  box-shadow: 0 18px 44px rgb(0 0 0 / 0.28);
  backdrop-filter: blur(18px);
}

.site-header.is-solid .mobile-nav__panel,
.site-header--solid .mobile-nav__panel {
  border-color: rgb(var(--v2-color-ink-rgb) / 0.08);
  background: rgb(255 255 255 / 0.96);
  color: var(--v2-color-ink);
}

.mobile-nav__links {
  display: grid;
  gap: 14px;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.mobile-nav .language-switcher {
  margin-top: 16px;
  gap: 14px;
  flex-wrap: wrap;
}

.mobile-nav .language-switcher__link,
.mobile-nav .language-switcher__current {
  font-size: 18px;
  line-height: 1.2;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid currentColor;
  border-radius: 999px;
  background: var(--v2-color-paper);
  color: var(--v2-color-ink);
  text-decoration: none;
  font: inherit;
  font-size: 16px;
  font-weight: 700;
  transition: transform .18s ease, background .18s ease, color .18s ease;
}

.button:hover {
  transform: translateY(-1px);
  background: var(--v2-color-accent);
  color: var(--v2-color-paper);
}

.nav-links > .button:hover,
.nav-links > .button:focus-visible {
  color: var(--v2-color-paper);
}

.button.secondary {
  background: rgb(255 255 255 / 0.08);
  color: var(--v2-color-paper);
  border-color: rgb(255 255 255 / 0.34);
  backdrop-filter: blur(10px);
}

.button.secondary:hover {
  background: rgb(255 255 255 / 0.16);
  color: var(--v2-color-paper);
}

.site-footer {
  color: var(--v2-color-ink);
  background:
    linear-gradient(180deg, rgb(var(--v2-color-focus-rgb) / 0.08) 0%, rgb(255 255 255 / 0.94) 42%, rgb(255 255 255) 100%),
    linear-gradient(135deg, rgb(var(--v2-color-accent-rgb) / 0.08), transparent 44%),
    linear-gradient(315deg, rgb(var(--v2-color-focus-rgb) / 0.08), transparent 52%),
    var(--v2-color-paper);
  border-top: 1px solid rgb(var(--v2-color-ink-rgb) / 0.08);
}

.site-footer-inner {
  display: grid;
  gap: 24px;
  padding-block: var(--v2-section-space);
}

.site-footer-brand {
  display: grid;
  gap: 12px;
  max-width: 32rem;
}

.site-footer-brand h2 {
  max-width: none;
  margin: 0;
  color: var(--v2-color-ink);
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.site-footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.site-footer-block {
  display: grid;
  align-content: start;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid rgb(var(--v2-color-ink-rgb) / 0.1);
}

.site-footer-block h3 {
  margin: 0;
  font-size: 16px;
  line-height: 1.3;
}

.site-footer-block p,
.site-footer-block address {
  margin: 0;
  color: var(--v2-color-muted);
  font-size: 17px;
  font-style: normal;
}

.site-footer-block address span {
  display: block;
}

.site-footer-block a {
  color: var(--v2-color-ink);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.14em;
}

.site-footer-block--compact {
  gap: 0;
}

.site-footer-block--compact h3 {
  margin-bottom: 8px;
}

.site-footer-block--compact p + p {
  margin-top: 2px;
}

@media (max-width: 1100px) {
  .nav-links {
    gap: 18px;
    font-size: 15px;
  }

  .brand img {
    width: 132px;
  }
}

@media (max-width: 900px) {
  .nav-links {
    gap: 14px;
    font-size: 14px;
  }

  .brand img {
    width: 124px;
  }

  .nav-submenu {
    left: auto;
    right: -1rem;
    transform: translateY(10px);
    min-width: 30rem;
    max-width: min(36rem, calc(100vw - 2rem));
  }

  .nav-item--has-submenu:hover .nav-submenu,
  .nav-item--has-submenu:focus-within .nav-submenu {
    transform: translateY(0);
  }
}

@media (max-width: 767px) {
  .nav {
    gap: 14px;
  }

  .brand {
    min-width: 0;
    gap: 12px;
    flex: 1 1 auto;
  }

  .brand-logo {
    width: 116px;
    flex: 0 0 auto;
  }

  .brand-copy strong {
    font-size: 20px;
  }

  .site-header--landing.is-cta-visible .brand-logo {
    display: none;
  }

  .site-header--landing.is-cta-visible .brand-symbol {
    display: block;
    width: auto;
    height: 26px;
    flex: 0 0 auto;
    filter: none;
  }

  .site-header--landing.is-cta-visible .brand-copy strong {
    font-weight: 700;
  }

  .mobile-nav {
    display: block;
  }

  .site-header--primary-nav .nav-links {
    display: none;
  }

  .nav-links .button {
    min-height: 42px;
    padding: 0 14px;
    font-size: 14px;
    white-space: nowrap;
  }

  .site-footer-inner {
    gap: 28px;
    padding-block: var(--v2-space-6);
  }

  .site-footer-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

@media (max-width: 1279px) {
  .site-footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .site-footer-block:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 767px) {
  .site-footer-block:last-child {
    grid-column: auto;
  }
}

.scroll-cue {
  position: fixed;
  right: max(28px, env(safe-area-inset-right, 0px));
  bottom: max(28px, env(safe-area-inset-bottom, 0px));
  z-index: 20;
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  padding: 0;
  border: 1px solid rgb(var(--v2-color-ink-rgb) / 0.16);
  border-radius: 999px;
  background: rgb(var(--v2-color-paper-rgb) / 0.94);
  color: var(--v2-color-ink);
  font: inherit;
  font-size: 26px;
  line-height: 1;
  box-shadow: 0 18px 42px rgb(var(--v2-color-ink-rgb) / 0.22);
  backdrop-filter: blur(10px);
  cursor: pointer;
  transition:
    opacity 180ms ease,
    translate 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease;
}

.scroll-cue:hover,
.scroll-cue:focus-visible {
  translate: 0 -2px;
  background: var(--v2-color-paper);
  box-shadow: 0 22px 48px rgb(var(--v2-color-ink-rgb) / 0.28);
}

.scroll-cue:focus-visible {
  outline: 3px solid var(--v2-color-focus);
  outline-offset: 3px;
}

.scroll-cue.is-hidden {
  opacity: 0;
  translate: 0 8px;
  pointer-events: none;
}

.scroll-cue > span {
  display: block;
  transition: transform 220ms ease;
}

.scroll-cue.is-return-to-top > span {
  transform: rotate(180deg);
}

@media (max-width: 767px) {
  .scroll-cue {
    right: 50%;
    bottom: max(12px, env(safe-area-inset-bottom, 0px));
    width: 56px;
    height: 56px;
    translate: 50% 0;
    font-size: 22px;
  }

  .scroll-cue:hover,
  .scroll-cue:focus-visible {
    translate: 50% -2px;
  }

  .scroll-cue.is-hidden {
    translate: 50% 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .scroll-cue,
  .scroll-cue > span {
    transition: none;
  }
}

.v2-doc-render-preview {
  display: grid;
  gap: var(--v2-space-3);
  padding: var(--v2-space-3);
  border: 1px solid var(--v2-color-line);
  border-radius: var(--v2-radius-2);
  background: linear-gradient(180deg, var(--v2-color-panel-fill-max), var(--v2-color-panel-soft));
  overflow: clip;
}

.v2-doc-render-preview[data-preview-mode="section"] {
  padding: var(--v2-space-4);
}

.v2-doc-render-preview[data-preview-mode="atom"] {
  align-content: start;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.v2-doc-render-preview--primitive[data-preview-mode="atom"] {
  padding: var(--v2-space-3);
  border: 1px solid var(--v2-color-line);
  border-radius: var(--v2-radius-2);
  background: linear-gradient(180deg, var(--v2-color-panel-fill-max), var(--v2-color-panel-soft));
}

.v2-doc-render-preview--primitive[data-preview-mode="section"] {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(244, 248, 251, 0.98)),
    repeating-linear-gradient(
      90deg,
      transparent 0,
      transparent calc(8.333% - 1px),
      rgba(17, 24, 39, 0.04) calc(8.333% - 1px),
      rgba(17, 24, 39, 0.04) 8.333%
    );
}

.v2-doc-render-preview--primitive .v2-section + .v2-section {
  margin-top: 0;
}

.v2-doc-render-preview--primitive .v2-section > .v2-panel {
  margin-inline: var(--v2-space-4);
}

.v2-doc-render-preview > :first-child {
  margin-top: 0;
}

.v2-doc-render-preview > :last-child {
  margin-bottom: 0;
}

.v2-doc-render-preview .site-header {
  position: relative;
  inset: auto;
  border: 0;
  border-radius: 0;
  background: rgb(255 255 255 / 0.88);
  color: var(--v2-color-ink);
  backdrop-filter: none;
  box-shadow: none;
}

.v2-doc-render-preview .site-header .brand img {
  filter: none;
}

.v2-doc-render-preview .site-header .nav-links {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.v2-doc-render-preview .site-header .button {
  min-height: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: inherit;
  box-shadow: none;
}

.v2-doc-render-preview .site-header .button:hover,
.v2-doc-render-preview .site-header .button:focus-visible {
  transform: none;
  background: transparent;
  color: var(--v2-color-accent);
  box-shadow: none;
  text-decoration: underline;
  text-underline-offset: 0.14em;
}

.v2-doc-render-preview .site-header .wrap {
  width: min(100%, calc(100% - (2 * var(--v2-space-3))));
}

.v2-doc-render-preview .site-header + .site-footer,
.v2-doc-render-preview .site-footer {
  border-radius: var(--v2-radius-2);
}

.v2-doc-definition {
  display: grid;
  gap: var(--v2-space-1);
}

.v2-doc-definition strong,
.v2-doc-token {
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.4;
}

.v2-doc-token {
  margin: 0;
  color: var(--v2-color-ink);
}

.v2-doc-metric-value {
  margin: 0;
  font-size: var(--v2-type-title-3);
  font-weight: 700;
  line-height: 1.12;
}

.v2-doc-metrics-sections {
  display: grid;
  gap: var(--v2-space-4);
}

.v2-doc-metrics-section {
  gap: var(--v2-space-3);
}

.v2-doc-metrics-table {
  display: grid;
  gap: 0;
  border: 1px solid var(--v2-color-line);
  border-radius: var(--v2-radius-2);
  overflow: clip;
}

.v2-doc-metrics-row {
  display: grid;
  grid-template-columns: minmax(180px, 0.9fr) minmax(160px, 0.8fr) minmax(0, 1.6fr);
  gap: var(--v2-space-2);
  align-items: start;
  padding: var(--v2-space-3);
  background: var(--v2-color-panel-fill-max);
}

.v2-doc-metrics-row + .v2-doc-metrics-row {
  border-top: 1px solid var(--v2-color-line);
}

.v2-doc-metrics-row strong,
.v2-doc-metrics-row p {
  margin: 0;
}

.v2-doc-rules-list {
  margin: 0;
  padding-left: 1.2rem;
}

.v2-doc-rules-list li + li {
  margin-top: var(--v2-space-1);
}

.v2-doc-logo-preview,
.v2-doc-swatch,
.v2-doc-surface-demo,
.v2-doc-radius-demo {
  min-height: 138px;
  border: 1px solid var(--v2-color-border-strong);
  border-radius: var(--v2-radius-1);
}

.v2-doc-logo-preview {
  display: grid;
  place-items: center;
  min-height: 180px;
  padding: var(--v2-space-4);
  background: rgb(var(--v2-color-focus-rgb) / 0.26);
}

.v2-doc-logo-preview img {
  width: min(100%, 360px);
}

.v2-doc-logo-preview--symbol img {
  width: 128px;
}

.v2-doc-type-demo {
  gap: var(--v2-space-1);
}

.v2-doc-type-demo__matter {
  font-size: var(--v2-space-5);
  line-height: var(--v2-leading-heading);
}

.v2-doc-type-demo__arial {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--v2-color-muted);
  font-size: var(--v2-type-title-3);
}

.v2-doc-gradient-demo {
  min-height: 260px;
  border-radius: var(--v2-radius-3);
  background:
    radial-gradient(circle at 4% 8%, var(--v2-color-dark-heavy), transparent 0 22%),
    radial-gradient(circle at 30% 22%, var(--v2-color-accent-strong), transparent 0 36%),
    radial-gradient(circle at 24% 78%, var(--v2-color-accent-rich), transparent 0 28%),
    radial-gradient(circle at 78% 30%, var(--v2-color-focus-strong), transparent 0 42%),
    radial-gradient(circle at 76% 78%, var(--v2-color-focus-rich), transparent 0 44%),
    linear-gradient(135deg, var(--v2-color-accent-gradient), var(--v2-color-focus-gradient));
}

.v2-doc-gradient-ratio {
  display: grid;
  grid-template-columns: 45fr 45fr 10fr;
  min-height: 44px;
  overflow: clip;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.4;
}

.v2-doc-gradient-ratio span {
  display: grid;
  place-items: center;
  padding: var(--v2-space-1) var(--v2-space-2);
}

.v2-doc-gradient-ratio__blue {
  background: var(--v2-color-focus);
}

.v2-doc-gradient-ratio__orange {
  background: var(--v2-color-accent);
}

.v2-doc-gradient-ratio__black {
  background: var(--v2-color-ink);
  color: var(--v2-color-paper);
}

.v2-doc-swatch {
  background: var(--v2-swatch);
}

.v2-doc-surface-demo--paper-section {
  background: var(--v2-color-paper);
}

.v2-doc-surface-demo--soft-wash {
  background: linear-gradient(180deg, var(--v2-color-panel-fill-max), var(--v2-color-focus-wash));
}

.v2-doc-surface-demo--accent-panel {
  background: var(--v2-color-accent);
}

.v2-doc-surface-demo--dark-editorial {
  background:
    linear-gradient(135deg, rgb(var(--v2-color-accent-rgb) / 0.18), transparent 44%),
    var(--v2-color-ink);
}

.v2-doc-radius-demo--radius-card {
  border-radius: var(--v2-radius-2);
  background: linear-gradient(180deg, var(--v2-color-panel-fill-max), var(--v2-color-focus-wash));
}

.v2-doc-radius-demo--radius-compact {
  border-radius: var(--v2-radius-1);
  background: var(--v2-color-accent-faint);
}

.v2-doc-radius-demo--rhythm-demo {
  display: grid;
  align-content: center;
  gap: var(--v2-space-2);
  padding: var(--v2-space-3);
  background: var(--v2-color-panel-fill-max);
}

.v2-doc-radius-demo--rhythm-demo::before,
.v2-doc-radius-demo--rhythm-demo::after {
  content: "";
  display: block;
  height: var(--v2-space-2);
  border-radius: 999px;
  background: var(--v2-color-accent-faint-line);
}

.v2-doc-type-list {
  gap: 0;
}

.v2-doc-type-sample {
  display: grid;
  gap: var(--v2-space-1);
  padding: var(--v2-space-3) 0;
  border-top: 1px solid var(--v2-color-line);
}

.v2-doc-type-sample:first-child {
  padding-top: 0;
  border-top: 0;
}

.v2-doc-type-sample__page {
  font-size: var(--v2-type-title-1);
  line-height: var(--v2-leading-tight);
}

.v2-doc-type-sample__section {
  font-size: var(--v2-type-title-2);
  line-height: var(--v2-leading-heading);
}

.v2-doc-type-sample__subsection {
  font-size: var(--v2-type-title-3);
  line-height: var(--v2-leading-heading);
}

.v2-doc-type-sample__card {
  font-size: var(--v2-type-body);
  line-height: var(--v2-leading-body);
}

.v2-doc-type-sample__perex {
  font-size: var(--v2-type-perex);
  line-height: var(--v2-leading-perex);
}

.v2-doc-pattern-card > .v2-panel {
  box-shadow: none;
}

.v2-doc-preview-split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: var(--v2-space-2);
  align-items: start;
}

.v2-doc-preview-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--v2-space-1);
}

.v2-doc-preview-stats div,
.v2-doc-preview-sticky span,
.v2-doc-preview-form span,
.v2-doc-preview-form button {
  display: grid;
  gap: var(--v2-space-1);
  min-height: 110px;
  padding: var(--v2-space-2);
  border: 1px solid var(--v2-color-line);
  border-radius: var(--v2-radius-1);
  background: var(--v2-color-panel-soft);
}

.v2-doc-preview-stats strong {
  font-size: var(--v2-type-title-2);
  line-height: 1;
}

.v2-doc-preview-stats span,
.v2-doc-preview-sticky span,
.v2-doc-preview-form span {
  font-size: 0.75rem;
  color: var(--v2-color-muted);
}

.v2-doc-preview-sticky {
  display: grid;
  gap: var(--v2-space-1);
}

.v2-doc-preview-sticky span {
  min-height: auto;
  background: var(--v2-color-panel-strong);
}

.v2-doc-preview-sticky span:first-child {
  background: var(--v2-color-ink);
  color: var(--v2-color-paper);
}

.v2-doc-preview-form {
  display: grid;
  gap: var(--v2-space-1);
}

.v2-doc-preview-form span,
.v2-doc-preview-form button {
  width: 100%;
  min-height: 42px;
  font: inherit;
  text-align: left;
}

.v2-doc-preview-form button {
  min-height: 46px;
  border-color: transparent;
  background: var(--v2-color-accent);
  color: var(--v2-color-paper);
}

.v2-doc-reference-list {
  display: grid;
  gap: 0;
}

.v2-doc-reference-entry {
  display: grid;
  gap: var(--v2-space-4);
  padding-bottom: var(--v2-space-4);
}

.v2-doc-reference-entry + .v2-doc-reference-entry {
  padding-top: var(--v2-space-4);
  border-top: 1px solid var(--v2-color-line);
}

.v2-doc-reference-summary {
  display: flex;
  flex-wrap: wrap;
  gap: var(--v2-space-2);
}

.v2-doc-reference-summary p,
.v2-doc-reference-section p {
  margin: 0;
}

.v2-doc-reference-summary p {
  padding: 0.25rem 0.625rem;
  border-radius: 999px;
  background: rgb(var(--v2-color-focus-rgb) / 0.08);
}

.v2-doc-reference-section {
  display: grid;
  gap: var(--v2-space-2);
  padding-top: var(--v2-space-2);
  border-top: 1px solid rgb(var(--v2-color-ink-rgb) / 0.08);
}

.v2-doc-reference-listing {
  display: grid;
  gap: var(--v2-space-2);
}

.v2-doc-reference-line {
  display: grid;
  gap: var(--v2-space-1);
  padding: var(--v2-space-3);
  border: 1px solid rgb(var(--v2-color-ink-rgb) / 0.08);
  border-radius: calc(var(--v2-radius-2) - 4px);
  background:
    linear-gradient(180deg, rgb(255 255 255 / 0.94), rgb(255 255 255 / 0.78));
  box-shadow:
    inset 0 1px 0 rgb(255 255 255 / 0.7),
    0 14px 34px rgb(var(--v2-color-ink-rgb) / 0.04);
}

.v2-doc-reference-line:first-child {
  padding-top: var(--v2-space-3);
}

.v2-doc-reference-line p {
  margin: 0;
}

.v2-doc-reference-line code {
  width: fit-content;
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgb(var(--v2-color-focus-rgb) / 0.16), rgb(255 255 255 / 0.8));
  color: var(--v2-color-ink);
  white-space: normal;
  overflow-wrap: anywhere;
  font-size: 0.95em;
  box-shadow: inset 0 0 0 1px rgb(var(--v2-color-focus-rgb) / 0.1);
}

.v2-doc-reference-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}

.v2-doc-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  white-space: normal;
  overflow-wrap: anywhere;
}

.v2-doc-tag code {
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  font-size: 1em;
}

.v2-doc-tag--required {
  border-color: rgb(var(--v2-color-accent-rgb) / 0.2);
  background: rgb(var(--v2-color-accent-rgb) / 0.1);
  color: #9a3412;
}

.v2-doc-tag--optional {
  border-color: rgb(var(--v2-color-focus-rgb) / 0.18);
  background: rgb(var(--v2-color-focus-rgb) / 0.12);
  color: #0f4c5c;
}

.v2-doc-tag--doc-only,
.v2-doc-tag--reserved {
  border-color: rgb(var(--v2-color-ink-rgb) / 0.08);
  background: rgb(var(--v2-color-ink-rgb) / 0.05);
  color: var(--v2-color-muted);
}

.v2-doc-tag--default {
  text-transform: none;
  letter-spacing: 0;
  font-weight: 600;
  color: var(--v2-color-ink);
}

.v2-doc-reference-section .v2-copy code {
  padding: 0.14rem 0.45rem;
  border-radius: 999px;
  background: rgb(var(--v2-color-focus-rgb) / 0.08);
  font-size: 0.92em;
  box-shadow: inset 0 0 0 1px rgb(var(--v2-color-focus-rgb) / 0.08);
}

.v2-doc-reference-heading {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

@media (max-width: 767px) {
  .v2-doc-metrics-row {
    grid-template-columns: 1fr;
  }

  .v2-doc-preview-split,
  .v2-doc-preview-stats {
    grid-template-columns: 1fr;
  }
}


.section-visual {
  display: none;
}

.stickysection-card--convergence-static {
  display: none;
  min-height: 232px;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
}

.stickysection-card--convergence-static.is-active,
.stickysection-card--convergence-static.outcome-row,
.stickysection-card--convergence-static.story-row {
  background: transparent;
  border: 0;
  box-shadow: none;
}

.stickysection-card--convergence-static .stickysection-card-content,
.stickysection-card--convergence-static.outcome-row .stickysection-card-content,
.stickysection-card--convergence-static.story-row .stickysection-card-content {
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.convergence-static-card-body {
  display: grid;
  place-items: center;
  min-height: 100%;
  padding: 0;
  overflow: visible;
}

.section-visual--static-card {
  display: block;
  position: relative;
  width: min(100%, 312px);
  height: 232px;
  margin: 0 auto;
  overflow: visible;
  --convergence-progress: 1;
  --convergence-cluster: 0;
  --convergence-rise: 0;
}

.section-visual--static-card .section-visual-surface {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: visible;
  isolation: isolate;
  transform: translateX(-20px);
}

.section-visual--static-card .section-visual-surface::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 14px;
  width: 86%;
  height: 52px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(129, 234, 252, 0.08) 0%, rgba(129, 234, 252, 0.035) 42%, rgba(129, 234, 252, 0) 74%);
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 0;
}

.section-visual--static-card .section-visual-glow {
  opacity: 0.14;
}

.section-visual--static-card .convergence-figure {
  --table-x: 0px;
  --table-y: 0px;
  --person-end-x: 0px;
  --person-end-y: 0px;
  --person-start-x: 8px;
  --person-start-y: -18px;
  --table-scale: 1;
  --figure-shadow-angle: 24deg;
  position: absolute;
  inset: 0;
  margin: 0;
}

.section-visual--static-card .convergence-table,
.section-visual--static-card .figure-silhouette-wrap,
.section-visual--static-card .figure-silhouette {
  position: absolute;
  left: 50%;
}

.figure-silhouette-wrap {
  top: 0;
  left: 0;
  width: 42px;
  height: 92px;
  overflow: visible;
  z-index: 2;
  --figure-shadow-left-x: 17px;
  --figure-shadow-left-y: 86px;
  --figure-shadow-right-x: 29px;
  --figure-shadow-right-y: 86px;
  --figure-shadow-width: 58px;
  --figure-shadow-height: 20px;
  --figure-shadow-scale: 0.96;
  --figure-shadow-opacity: 0.28;
}

.figure-silhouette-wrap::after {
  content: none;
}

.figure-shadow {
  position: absolute;
  top: var(--figure-shadow-left-y);
  left: var(--figure-shadow-left-x);
  width: var(--figure-shadow-width);
  height: var(--figure-shadow-height);
  overflow: visible;
  opacity: var(--figure-shadow-opacity);
  transform: translateY(-50%) rotate(var(--figure-shadow-left-angle, var(--figure-shadow-angle))) scale(var(--figure-shadow-scale));
  transform-origin: left center;
  filter: blur(0.35px);
  pointer-events: none;
  z-index: 0;
}

.figure-shadow--right {
  top: var(--figure-shadow-right-y);
  left: var(--figure-shadow-right-x);
  transform: translateY(-50%) rotate(var(--figure-shadow-right-angle, var(--figure-shadow-angle))) scale(var(--figure-shadow-scale));
}

.figure-silhouette {
  position: relative;
  z-index: 1;
}

.section-visual--static-card .convergence-table {
  top: var(--table-y);
  left: var(--table-x);
  width: 72px;
  height: 20px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 28%, rgba(255, 255, 255, 0.18) 0 38%, transparent 39%),
    rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(145, 157, 173, 0.4);
  box-shadow: 0 6px 14px rgba(17, 24, 39, 0.04);
  overflow: visible;
  transform: scale(var(--table-scale, 1));
  transform-origin: 50% 50%;
  z-index: 1;
}

.section-visual--static-card .convergence-table::before,
.section-visual--static-card .convergence-table::after {
  content: "";
  position: absolute;
  top: calc(100% - 1px);
  width: 3px;
  height: 18px;
  border-radius: 999px;
  background: rgba(145, 157, 173, 0.5);
}

.section-visual--static-card .convergence-table::before {
  left: 24px;
}

.section-visual--static-card .convergence-table::after {
  right: 24px;
}

.section-visual--static-card .convergence-table::after,
.section-visual--static-card .convergence-table::before {
  opacity: 0.9;
}

.section-visual--static-card .convergence-figure--back-center .convergence-table {
  width: 42px;
  height: 72px;
  border-radius: 14px 14px 8px 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.3), rgba(223, 232, 241, 0.14)),
    rgba(255, 255, 255, 0.12);
  border: 2px solid rgba(145, 157, 173, 0.42);
  box-shadow: 0 10px 20px rgba(17, 24, 39, 0.035);
}

.section-visual--static-card .convergence-figure--back-center .convergence-table::before,
.section-visual--static-card .convergence-figure--back-center .convergence-table::after {
  top: 10px;
  width: 1.5px;
  height: 52px;
  background: rgba(145, 157, 173, 0.34);
}

.section-visual--static-card .convergence-figure--back-center .convergence-table::before {
  left: 50%;
  transform: translateX(-50%);
}

.section-visual--static-card .convergence-figure--back-center .convergence-table::after {
  top: 40px;
  right: 10px;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(145, 157, 173, 0.56);
}

.section-visual--static-card .figure-silhouette-wrap {
  top: 0;
  left: 0;
  width: 42px;
  height: 92px;
  overflow: visible;
  z-index: 2;
  transform: translate(var(--person-end-x), var(--person-end-y));
}

.section-visual--static-card .convergence-figure--front-left .figure-silhouette-wrap {
  --figure-shadow-left-x: 15px;
  --figure-shadow-left-y: 100px;
  --figure-shadow-right-x: 34px;
  --figure-shadow-right-y: 97px;
}

.section-visual--static-card .convergence-figure--front-right .figure-silhouette-wrap {
  --figure-shadow-left-x: 10px;
  --figure-shadow-left-y: 105px;
  --figure-shadow-right-x: 34px;
  --figure-shadow-right-y: 106px;
}

.section-visual--static-card .figure-silhouette {
  bottom: 0;
  width: 44px;
  height: 78px;
  transform-origin: 50% 100%;
}

.section-visual--static-card .figure-silhouette-svg {
  display: block;
  width: 72px;
  height: 118px;
  overflow: visible;
}

.section-visual--static-card .figure-silhouette-svg .ink-line {
  fill: none;
  stroke: var(--person-ink, rgba(41, 46, 58, 0.92));
  stroke-width: var(--person-limb-width, 5.6);
  stroke-linecap: round;
  stroke-linejoin: round;
}

.section-visual--static-card .figure-silhouette-svg .ink-fill {
  fill: var(--person-fill, rgba(49, 55, 69, 0.94));
}

.section-visual--static-card .figure-silhouette-svg .ink-body {
  fill: color-mix(in srgb, var(--person-fill, rgba(49, 55, 69, 0.94)) 94%, white);
}

.section-visual--static-card .figure-silhouette-svg .ink-hair {
  fill: var(--person-ink, rgba(41, 46, 58, 0.92));
}

.section-visual--static-card .figure-silhouette-svg .ink-face {
  fill: color-mix(in srgb, var(--paper) 68%, var(--person-fill, rgba(49, 55, 69, 0.94)));
}

.section-visual--static-card .figure-silhouette-svg--1 {
  --person-ink: rgba(160, 77, 39, 0.98);
  --person-fill: rgba(231, 137, 78, 0.98);
  --person-limb-width: 5.1;
  transform: translate(-18px, -23px) scale(0.96) rotate(-4deg);
}

.section-visual--static-card .figure-silhouette-svg--2 {
  --person-ink: rgba(20, 86, 110, 0.98);
  --person-fill: rgba(79, 181, 210, 0.98);
  --person-limb-width: 6.1;
  transform: translate(-17px, -23px) scale(1.04) rotate(2deg);
}

.section-visual--static-card .figure-silhouette-svg--3 {
  --person-ink: rgba(101, 82, 154, 0.94);
  --person-fill: rgba(160, 144, 211, 0.96);
  --person-limb-width: 5.2;
  transform: translate(-15px, -15px) scale(0.9) rotate(1deg);
}

.section-visual--static-card .convergence-figure--front-left {
  --table-x: 29px;
  --table-y: 130px;
  --person-end-x: 98px;
  --person-end-y: 96px;
  --table-scale: 1.06;
  --figure-shadow-angle: 17deg;
  --figure-shadow-left-angle: 13deg;
  --figure-shadow-right-angle: 22deg;
}

.section-visual--static-card .convergence-figure--front-right {
  --table-x: 235px;
  --table-y: 113px;
  --person-end-x: 195px;
  --person-end-y: 96px;
  --table-scale: 0.98;
  --figure-shadow-angle: 23deg;
  --figure-shadow-left-angle: 17deg;
  --figure-shadow-right-angle: 33deg;
}

.section-visual--static-card .convergence-figure--back-center {
  --table-x: 132px;
  --table-y: 21px;
  --person-end-x: 149px;
  --person-end-y: 43px;
  --figure-shadow-angle: 31deg;
  --figure-shadow-left-angle: 26deg;
  --figure-shadow-right-angle: 39deg;
}

.section-visual--static-card .figure-silhouette-wrap {
  --figure-shadow-width: 46px;
  --figure-shadow-height: 16px;
  --figure-shadow-scale: 0.98;
  --figure-shadow-opacity: 0.24;
}

.section-visual--static-card .figure-silhouette {
  transform:
    translateX(-50%)
    translateY(0)
    scale(1)
    rotate(0deg);
  opacity: 1;
}

.section-visual--static-card .convergence-figure--back-center .figure-silhouette {
  transform:
    translateX(-50%)
    translateY(0)
    scale(0.82)
    rotate(0deg);
  opacity: 0.92;
}

.section-visual--static-card .convergence-figure--back-center .figure-silhouette-wrap {
  --figure-shadow-left-x: 16px;
  --figure-shadow-left-y: 94px;
  --figure-shadow-right-x: 27px;
  --figure-shadow-right-y: 94px;
  --figure-shadow-width: 34px;
  --figure-shadow-height: 12px;
  --figure-shadow-scale: 1;
  --figure-shadow-opacity: 0.2;
}

@media (min-width: 1280px) {
  .section-head--split .section-visual {
    position: absolute;
    display: block;
    top: 28px;
    right: 132px;
    width: min(30vw, 380px);
    height: 272px;
    min-height: 0;
    --convergence-progress: 0;
    --convergence-cluster: 1;
    --convergence-rise: 0;
  }

  .section-visual-surface {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    isolation: isolate;
  }

  .section-visual-surface::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 28px;
    width: 240px;
    height: 74px;
    border-radius: 50%;
    background:
      radial-gradient(circle at 50% 50%, rgba(129, 234, 252, 0.09) 0%, rgba(129, 234, 252, 0.04) 42%, rgba(129, 234, 252, 0) 74%);
    transform: translateX(-50%);
    pointer-events: none;
    z-index: 0;
  }

  .section-visual-glow {
    position: absolute;
    inset: 50% auto auto 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
  }

  .section-visual-glow {
    width: 42%;
    aspect-ratio: 1;
    border-radius: 50%;
    opacity: calc(0.14 + (var(--convergence-progress) * 0.18));
    filter: blur(8px);
  }

  .section-visual-glow--blue {
    background: radial-gradient(circle, rgba(129, 234, 252, 0.46) 0%, rgba(129, 234, 252, 0) 68%);
    transform: translate(calc(-50% - (var(--convergence-cluster) * 42%)), calc(-50% - (var(--convergence-cluster) * 20%)));
  }

  .section-visual-glow--orange {
    background: radial-gradient(circle, rgba(255, 101, 18, 0.3) 0%, rgba(255, 101, 18, 0) 68%);
    transform: translate(calc(-50% + (var(--convergence-cluster) * 38%)), calc(-50% + (var(--convergence-cluster) * 22%)));
  }

  .convergence-figure {
    --table-x: 0px;
    --table-y: 0px;
    --person-end-x: 0px;
    --person-end-y: 0px;
    --person-start-x: 8px;
    --person-start-y: -18px;
    --figure-shadow-angle: 24deg;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: 0;
  }

  .convergence-figure--front-left {
    --table-x: 36px;
    --table-y: 170px;
    --person-end-x: 120px;
    --person-end-y: 126px;
    --person-start-x: 10px;
    --person-start-y: -16px;
    --table-scale: 1.08;
    z-index: 3;
  }

  .convergence-figure--front-right {
    --table-x: 286px;
    --table-y: 148px;
    --person-end-x: 238px;
    --person-end-y: 126px;
    --person-start-x: 10px;
    --person-start-y: -10px;
    --table-scale: 1;
    z-index: 3;
  }

  .convergence-figure--back-center {
    --table-x: 160px;
    --table-y: 28px;
    --person-end-x: 182px;
    --person-end-y: 56px;
    --person-start-x: 8px;
    --person-start-y: -6px;
    --table-scale: 1;
    z-index: 2;
  }

  .convergence-table,
  .figure-silhouette-wrap,
  .figure-silhouette {
    position: absolute;
    left: 50%;
  }

  .convergence-table {
    top: var(--table-y);
    left: var(--table-x);
    width: 72px;
    height: 20px;
    border-radius: 999px;
    background:
      radial-gradient(circle at 50% 28%, rgba(255, 255, 255, 0.18) 0 38%, transparent 39%),
      rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(145, 157, 173, 0.4);
    box-shadow: 0 6px 14px rgba(17, 24, 39, 0.04);
    overflow: visible;
    transform: scale(var(--table-scale, 1));
    transform-origin: 50% 50%;
    z-index: 1;
  }

  .convergence-table::before,
  .convergence-table::after {
    content: "";
    position: absolute;
    top: calc(100% - 1px);
    width: 3px;
    height: 18px;
    border-radius: 999px;
    background: rgba(145, 157, 173, 0.5);
  }

  .convergence-table::before {
    left: 24px;
  }

  .convergence-table::after {
    right: 24px;
  }

  .convergence-table::after,
  .convergence-table::before {
    box-shadow: none;
    opacity: 0.9;
  }

  .convergence-table {
    background-image:
      radial-gradient(circle at 50% 22%, rgba(255, 255, 255, 0.2) 0, rgba(255, 255, 255, 0.2) 28%, transparent 29%);
  }

  .convergence-figure--back-center .convergence-table {
    width: 42px;
    height: 72px;
    border-radius: 14px 14px 8px 8px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.3), rgba(223, 232, 241, 0.14)),
      rgba(255, 255, 255, 0.12);
    border: 2px solid rgba(145, 157, 173, 0.42);
    box-shadow: 0 10px 20px rgba(17, 24, 39, 0.035);
    opacity: 0.94;
  }

  .convergence-figure--back-center .convergence-table::before,
  .convergence-figure--back-center .convergence-table::after {
    top: 10px;
    width: 1.5px;
    height: 52px;
    background: rgba(145, 157, 173, 0.34);
  }

  .convergence-figure--back-center .convergence-table::before {
    left: 50%;
    transform: translateX(-50%);
  }

  .convergence-figure--back-center .convergence-table::after {
    top: 40px;
    right: 10px;
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: rgba(145, 157, 173, 0.56);
  }

  .figure-silhouette-wrap {
    top: 0;
    left: 0;
    width: 42px;
    height: 92px;
    overflow: visible;
    z-index: 2;
    --figure-shadow-left-x: 17px;
    --figure-shadow-left-y: 86px;
    --figure-shadow-right-x: 29px;
    --figure-shadow-right-y: 86px;
    --figure-shadow-width: 58px;
    --figure-shadow-height: 20px;
    --figure-shadow-scale: calc(1 - (var(--convergence-progress) * 0.04));
    --figure-shadow-opacity: calc(0.18 + (var(--convergence-progress) * 0.1));
    transform: translate(
      calc((var(--table-x) + var(--person-start-x)) * var(--convergence-cluster) + (var(--person-end-x) * var(--convergence-progress))),
      calc((var(--table-y) + var(--person-start-y)) * var(--convergence-cluster) + (var(--person-end-y) * var(--convergence-progress)))
    );
  }

  .convergence-figure--front-left .figure-silhouette-wrap {
    --figure-shadow-left-x: 18px;
    --figure-shadow-left-y: 87px;
    --figure-shadow-right-x: 30px;
    --figure-shadow-right-y: 87px;
  }

  .convergence-figure--front-right .figure-silhouette-wrap {
    --figure-shadow-left-x: 11px;
    --figure-shadow-left-y: 93px;
    --figure-shadow-right-x: 30px;
    --figure-shadow-right-y: 90px;
  }

  .figure-silhouette-wrap::after {
    content: none;
  }

  .figure-silhouette {
    bottom: 0;
    width: 44px;
    height: 78px;
    position: relative;
    z-index: 1;
    transform:
      translateX(-50%)
      translateY(0)
      scale(calc(1.12 - (var(--convergence-progress) * 0.12)))
      rotate(calc((0.5 - var(--convergence-progress)) * 8deg));
    transform-origin: 50% 100%;
  }

  .figure-silhouette-svg {
    display: block;
    width: 72px;
    height: 118px;
    overflow: visible;
    transform: translate(-14px, -22px);
  }

  .figure-silhouette-svg .ink-line {
    fill: none;
    stroke: var(--person-ink, rgba(41, 46, 58, 0.92));
    stroke-width: var(--person-limb-width, 5.6);
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .figure-silhouette-svg .ink-fill {
    fill: var(--person-fill, rgba(49, 55, 69, 0.94));
  }

  .figure-silhouette-svg .ink-body {
    fill: color-mix(in srgb, var(--person-fill, rgba(49, 55, 69, 0.94)) 94%, white);
  }

  .figure-silhouette-svg .ink-hair {
    fill: var(--person-ink, rgba(41, 46, 58, 0.92));
  }

  .figure-silhouette-svg .ink-face {
    fill: color-mix(in srgb, var(--paper) 68%, var(--person-fill, rgba(49, 55, 69, 0.94)));
  }

  .figure-silhouette-svg .ink-fill--soft {
    fill: color-mix(in srgb, var(--person-fill, rgba(49, 55, 69, 0.94)) 93%, white);
  }

  .figure-silhouette-svg--1 {
    --person-ink: rgba(160, 77, 39, 0.98);
    --person-fill: rgba(231, 137, 78, 0.98);
    --person-limb-width: 5.1;
    transform: translate(-18px, -23px) scale(0.96) rotate(-4deg);
  }

  .figure-silhouette-svg--2 {
    --person-ink: rgba(20, 86, 110, 0.98);
    --person-fill: rgba(79, 181, 210, 0.98);
    --person-limb-width: 6.1;
    transform: translate(-17px, -23px) scale(1.04) rotate(2deg);
  }

  .figure-silhouette-svg--3 {
    --person-ink: rgba(101, 82, 154, 0.94);
    --person-fill: rgba(160, 144, 211, 0.96);
    --person-limb-width: 5.2;
    transform: translate(-15px, -15px) scale(0.9) rotate(1deg);
  }

  .convergence-figure--back-center .figure-silhouette-wrap {
    transform: translate(
      calc((var(--table-x) + var(--person-start-x)) * var(--convergence-cluster) + (var(--person-end-x) * var(--convergence-progress))),
      calc((var(--table-y) + var(--person-start-y)) * var(--convergence-cluster) + (var(--person-end-y) * var(--convergence-progress)))
    );
  }

  .convergence-figure--back-center .figure-silhouette {
    transform:
      translateX(-50%)
      translateY(0)
      scale(calc(0.54 + (var(--convergence-progress) * 0.34)))
      rotate(calc((0.5 - var(--convergence-progress)) * 4deg));
    opacity: calc(0.5 + (var(--convergence-progress) * 0.42));
  }

  .convergence-figure--back-center .figure-silhouette-svg {
    transform: translate(-15px, -15px) scale(0.88);
  }

  .convergence-figure--back-center .figure-silhouette-wrap {
    --figure-shadow-left-x: 17px;
    --figure-shadow-left-y: 80px;
    --figure-shadow-right-x: 27px;
    --figure-shadow-right-y: 80px;
    --figure-shadow-width: 38px;
    --figure-shadow-height: 14px;
    --figure-shadow-scale: 1;
    --figure-shadow-opacity: calc(0.14 + (var(--convergence-progress) * 0.08));
  }

  .figure-silhouette--1 .ink-body {
    fill: color-mix(in srgb, var(--person-fill) 88%, white);
  }

  .figure-silhouette--2 .ink-body {
    fill: color-mix(in srgb, var(--person-fill) 96%, white);
  }

  .figure-silhouette--3 .ink-body {
    fill: color-mix(in srgb, var(--person-fill) 92%, white);
  }

  html.has-stickysection-motion .section-visual--convergence .convergence-figure {
    opacity: calc(0.42 + (var(--convergence-progress) * 0.58));
  }
}

@media (max-width: 1279px) {
  .section-head--split .section-visual {
    top: 22px;
    right: 72px;
    width: min(28vw, 320px);
    height: 238px;
  }
}

@media (max-width: 1100px) {
  .section-head--split .section-visual {
    display: none;
  }
}

