:root {
  --vl-grey: #f3f3f4;
  --vl-ink: #000000;
  --vl-paper: #f9faf4;
  --vl-cream: #f9f3e5;
  --vl-orange: #ff3814;
  --vl-orange-ink: var(--vl-ink);
  --vl-magenta: #f98cf9;
  --vl-muted: #5f5d58;
  --vl-line: rgba(0, 0, 0, 0.16);
  --vl-line-soft: rgba(0, 0, 0, 0.09);
  --vl-display: "Iowan Old Style", "Palatino Linotype", Palatino, "Book Antiqua", Georgia, serif;
  --vl-body: "Helvetica Neue", Helvetica, Arial, system-ui, sans-serif;
  --vl-mono: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
  --vl-shell: 1320px;
  --vl-gutter: clamp(20px, 4.8vw, 76px);
  --vl-section: clamp(80px, 11vw, 154px);
  --vl-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--vl-paper);
  color-scheme: light;
}

body {
  margin: 0;
  background: var(--vl-paper);
  color: var(--vl-ink);
  font-family: var(--vl-body);
  font-size: clamp(1rem, 0.96rem + 0.16vw, 1.125rem);
  line-height: 1.58;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body[data-menu-open="true"] { overflow: hidden; }

img, svg { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; }

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.22em;
}

a:hover { text-decoration-thickness: 2px; }

::selection { background: var(--vl-magenta); color: var(--vl-ink); }

.vl-shell {
  width: min(100%, var(--vl-shell));
  margin-inline: auto;
  padding-inline: var(--vl-gutter);
}

.vl-skip {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  background: var(--vl-ink);
  color: var(--vl-paper);
  transform: translateY(-180%);
  transition: transform 0.16s ease;
}

.vl-skip:focus { transform: translateY(0); }

.vl-header {
  position: sticky;
  z-index: 100;
  top: 0;
  background: color-mix(in srgb, var(--vl-grey) 94%, transparent);
  border-bottom: 1px solid var(--vl-line-soft);
  backdrop-filter: blur(12px);
}

.vl-header__inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.vl-brand {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  text-decoration: none;
}

.vl-brand img {
  width: clamp(170px, 19vw, 242px);
  height: auto;
}

.vl-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(14px, 2.2vw, 34px);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.vl-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  text-decoration: none;
}

.vl-nav a:not(.vl-button):hover { text-decoration: underline; }

.vl-menu-button {
  position: relative;
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid var(--vl-ink);
  border-radius: 0;
  background: transparent;
  color: var(--vl-ink);
  cursor: pointer;
}

.vl-menu-button span,
.vl-menu-button::before,
.vl-menu-button::after {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 20px;
  height: 2px;
  margin: 0;
  background: currentColor;
  content: "";
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.vl-menu-button span { transform: translate(-50%, -50%); }
.vl-menu-button::before { transform: translate(-50%, calc(-50% - 6px)); }
.vl-menu-button::after { transform: translate(-50%, calc(-50% + 6px)); }
.vl-menu-button[aria-expanded="true"] span { opacity: 0; }
.vl-menu-button[aria-expanded="true"]::before { transform: translate(-50%, -50%) rotate(45deg); }
.vl-menu-button[aria-expanded="true"]::after { transform: translate(-50%, -50%) rotate(-45deg); }

.vl-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 22px;
  border: 1px solid var(--vl-orange);
  border-radius: 6px;
  background: var(--vl-orange);
  color: var(--vl-ink);
  font-family: var(--vl-body);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition: transform 0.2s var(--vl-ease), box-shadow 0.2s var(--vl-ease);
}

.vl-button:hover {
  transform: translateY(-2px);
  box-shadow: 5px 5px 0 var(--vl-ink);
  text-decoration: none;
}

.vl-button--ink { border-color: var(--vl-ink); background: var(--vl-ink); color: var(--vl-paper); }
.vl-button--paper { border-color: var(--vl-paper); background: var(--vl-paper); color: var(--vl-ink); }
.vl-button--ghost { border-color: currentColor; background: transparent; color: currentColor; }

.vl-button:focus-visible,
.vl-menu-button:focus-visible,
.vl-nav a:focus-visible,
.vl-brand:focus-visible,
summary:focus-visible,
a:focus-visible {
  outline: 3px solid var(--vl-magenta);
  outline-offset: 4px;
}

.vl-hero {
  position: relative;
  overflow: clip;
  background: var(--vl-grey);
  border-bottom: 1px solid var(--vl-line-soft);
}

.vl-hero__grid {
  min-height: min(840px, calc(100svh - 84px));
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  align-items: center;
  gap: clamp(48px, 7vw, 112px);
  padding-block: clamp(76px, 10vw, 144px);
}

.vl-hero__copy { position: relative; z-index: 2; }

.vl-eyebrow,
.vl-kicker,
.vl-card__tag,
.vl-status,
.vl-meta {
  margin: 0;
  font-family: var(--vl-mono);
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.vl-eyebrow { margin-bottom: 26px; }

.vl-display {
  max-width: 10ch;
  margin: 0;
  font-family: var(--vl-display);
  font-size: clamp(4rem, 9vw, 9rem);
  font-weight: 400;
  line-height: 0.84;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.vl-display em {
  color: var(--vl-orange);
  font-style: normal;
}

.vl-lede {
  max-width: 62ch;
  margin: 34px 0 0;
  font-size: clamp(1.16rem, 1.03rem + 0.5vw, 1.55rem);
  line-height: 1.48;
  letter-spacing: -0.025em;
  text-wrap: pretty;
}

.vl-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.vl-hero__note {
  max-width: 54ch;
  margin: 24px 0 0;
  color: var(--vl-muted);
  font-size: 0.88rem;
}

.vl-organism {
  position: relative;
  margin: 0;
  aspect-ratio: 0.9;
  width: min(100%, 570px);
  justify-self: end;
  color: var(--vl-ink);
}

.vl-organism::before {
  position: absolute;
  inset: 8% 5% 3% 12%;
  border: 1px solid var(--vl-line);
  border-radius: 50% 50% 48% 52% / 42% 53% 47% 58%;
  content: "";
  transform: rotate(-7deg);
}

.vl-organism svg {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.vl-organism__branch { fill: none; stroke: currentColor; stroke-width: 1.6; vector-effect: non-scaling-stroke; }
.vl-organism__fine { fill: none; stroke: currentColor; stroke-width: 0.75; opacity: 0.45; vector-effect: non-scaling-stroke; }
.vl-organism__cell { transform-box: fill-box; transform-origin: center; animation: vl-breathe 6s ease-in-out infinite; }
.vl-organism__cell:nth-of-type(2n) { animation-delay: -1.7s; }
.vl-organism__cell:nth-of-type(3n) { animation-delay: -3.4s; }
.vl-organism__label { font: 600 11px/1 var(--vl-mono); letter-spacing: 0.12em; text-transform: uppercase; }

@keyframes vl-breathe {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.055); }
}

.vl-section { padding-block: var(--vl-section); }
.vl-section--tight { padding-block: clamp(60px, 7vw, 96px); }
.vl-section--grey { background: var(--vl-grey); }
.vl-section--cream { background: var(--vl-cream); }
.vl-section--ink { background: var(--vl-ink); color: var(--vl-paper); }
.vl-section--signal { background: var(--vl-orange); color: var(--vl-ink); }

.vl-section__head {
  display: grid;
  grid-template-columns: minmax(130px, 0.3fr) minmax(0, 1.7fr);
  gap: clamp(30px, 6vw, 100px);
  align-items: start;
  margin-bottom: clamp(44px, 7vw, 90px);
}

.vl-title {
  max-width: 18ch;
  margin: 0;
  font-family: var(--vl-display);
  font-size: clamp(2.6rem, 5.8vw, 6.4rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.vl-title--small { font-size: clamp(2.1rem, 4.3vw, 4.4rem); }

.vl-prose { max-width: 68ch; }
.vl-prose > *:first-child { margin-top: 0; }
.vl-prose > *:last-child { margin-bottom: 0; }
.vl-prose p { text-wrap: pretty; }
.vl-prose p + p { margin-top: 1.25em; }
.vl-prose h2,
.vl-prose h3 {
  margin: 1.8em 0 0.55em;
  font-family: var(--vl-display);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.025em;
}
.vl-prose h2:first-child,
.vl-prose h3:first-child { margin-top: 0; }
.vl-prose h2 { font-size: clamp(1.75rem, 3vw, 2.9rem); }
.vl-prose h3 { font-size: clamp(1.35rem, 2.2vw, 2rem); }
.vl-prose ul,
.vl-prose ol { padding-left: 1.35em; }
.vl-prose li + li { margin-top: 0.45em; }
.vl-prose a { overflow-wrap: anywhere; }
.vl-prose--large { font-size: clamp(1.15rem, 1.03rem + 0.45vw, 1.45rem); line-height: 1.52; letter-spacing: -0.02em; }
.vl-space-top { margin-top: 32px; }

.vl-answer {
  position: relative;
  display: grid;
  grid-template-columns: minmax(220px, 0.6fr) minmax(0, 1.4fr);
  gap: clamp(32px, 7vw, 110px);
  padding: clamp(34px, 5vw, 70px);
  background: var(--vl-cream);
  border-left: 10px solid var(--vl-orange);
}

.vl-answer::after {
  position: absolute;
  top: 0;
  right: 0;
  width: clamp(44px, 7vw, 92px);
  aspect-ratio: 1;
  background: var(--vl-magenta);
  border-radius: 0 0 0 100%;
  content: "";
}

.vl-answer h2 {
  position: relative;
  z-index: 1;
  max-width: 12ch;
  margin: 0;
  font-family: var(--vl-display);
  font-size: clamp(2.05rem, 4vw, 4.4rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.035em;
}

.vl-answer p {
  position: relative;
  z-index: 1;
  max-width: 60ch;
  margin: 0;
  font-size: clamp(1.08rem, 1rem + 0.35vw, 1.35rem);
}

.vl-grid { display: grid; gap: 1px; background: var(--vl-line); border: 1px solid var(--vl-line); }
.vl-grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.vl-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.vl-grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.vl-card {
  position: relative;
  min-height: 300px;
  padding: clamp(28px, 3.2vw, 48px);
  background: var(--vl-paper);
  transition: background 0.25s ease, color 0.25s ease;
}

.vl-card--cream { background: var(--vl-cream); }
.vl-card--grey { background: var(--vl-grey); }
.vl-card--ink { background: var(--vl-ink); color: var(--vl-paper); }
.vl-card--orange { background: var(--vl-orange); color: var(--vl-ink); }
.vl-card--magenta { background: var(--vl-magenta); color: var(--vl-ink); }

.vl-card h3 {
  max-width: 16ch;
  margin: 42px 0 0;
  font-family: var(--vl-display);
  font-size: clamp(2rem, 3vw, 3.45rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.035em;
}

.vl-card p { max-width: 43ch; margin: 24px 0 0; }

.vl-card__link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  margin-top: 30px;
  font-weight: 700;
}

.vl-card:has(.vl-card__link:hover) { background: var(--vl-ink); color: var(--vl-paper); }
.vl-card--ink:has(.vl-card__link:hover) { background: var(--vl-orange); color: var(--vl-ink); }

.vl-rule { height: 1px; margin: 0; border: 0; background: var(--vl-line); }
.vl-section--ink .vl-rule { background: rgba(255, 255, 255, 0.24); }

.vl-list { list-style: none; margin: 0; padding: 0; }

.vl-list__item {
  display: grid;
  grid-template-columns: minmax(120px, 0.32fr) minmax(0, 1.25fr) auto;
  gap: clamp(18px, 4vw, 58px);
  align-items: start;
  padding-block: 28px;
  border-top: 1px solid var(--vl-line);
}

.vl-list__item:last-child { border-bottom: 1px solid var(--vl-line); }

.vl-list__item h3 {
  margin: 0;
  font-family: var(--vl-display);
  font-size: clamp(1.55rem, 2.4vw, 2.55rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.025em;
}

.vl-list__item p { max-width: 54ch; margin: 10px 0 0; color: var(--vl-muted); }

.vl-status {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  min-height: 32px;
  padding: 7px 10px;
  border: 1px solid currentColor;
  line-height: 1.3;
  overflow-wrap: anywhere;
}

.vl-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 38px;
  color: var(--vl-muted);
  font-size: 0.86rem;
}

.vl-breadcrumbs span[aria-current="page"] { color: var(--vl-ink); }
.vl-breadcrumbs a { display: inline-flex; min-height: 44px; align-items: center; }

.vl-page-hero {
  padding-block: clamp(72px, 10vw, 142px) clamp(70px, 9vw, 122px);
  background: var(--vl-grey);
  border-bottom: 1px solid var(--vl-line);
}

.vl-page-hero .vl-title { max-width: 13ch; }
.vl-page-hero .vl-lede { max-width: 66ch; }

.vl-callout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.75fr);
  gap: clamp(34px, 7vw, 110px);
  align-items: center;
  padding: clamp(40px, 6vw, 84px);
  background: var(--vl-ink);
  color: var(--vl-paper);
}

.vl-callout h2 {
  margin: 0;
  font-family: var(--vl-display);
  font-size: clamp(2.4rem, 5vw, 5.8rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.vl-callout p { max-width: 46ch; margin: 22px 0 0; color: rgba(249, 250, 244, 0.74); }

.vl-callout--plain {
  padding: 0;
  background: transparent;
  color: inherit;
}

.vl-callout--plain p { color: inherit; }

.vl-faq { border-top: 1px solid var(--vl-line); }

.vl-faq details { border-bottom: 1px solid var(--vl-line); }

.vl-faq summary {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 20px;
  cursor: pointer;
  font-family: var(--vl-display);
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.15;
  list-style: none;
}

.vl-faq summary::-webkit-details-marker { display: none; }
.vl-faq summary::after { flex: 0 0 auto; font-family: var(--vl-body); font-size: 1.4rem; content: "+"; }
.vl-faq details[open] summary::after { content: "−"; }
.vl-faq details p { max-width: 68ch; margin: 0; padding: 0 0 26px; }

.vl-footnote { color: var(--vl-muted); font-size: 0.86rem; }

.reader-document { margin-inline: auto; }
.markdown-body { font-size: clamp(1rem, 0.97rem + 0.18vw, 1.12rem); }
.markdown-body h2,
.markdown-body h3,
.markdown-body h4,
.markdown-body h5 {
  margin: 2.2em 0 0.65em;
  font-family: var(--vl-display);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.025em;
}
.markdown-body h2 { font-size: clamp(2rem, 4vw, 3.8rem); }
.markdown-body h3 { font-size: clamp(1.55rem, 2.8vw, 2.55rem); }
.markdown-body h4,
.markdown-body h5 { font-size: clamp(1.2rem, 2vw, 1.65rem); }
.markdown-body p,
.markdown-body li { text-wrap: pretty; }
.markdown-body li + li { margin-top: 0.55em; }
.markdown-body code {
  padding: 0.12em 0.32em;
  background: var(--vl-grey);
  font-family: var(--vl-mono);
  font-size: 0.88em;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.markdown-body pre {
  max-width: 100%;
  overflow: auto;
  padding: 22px;
  background: var(--vl-ink);
  color: var(--vl-paper);
}
.markdown-body pre code {
  padding: 0;
  background: transparent;
  color: inherit;
  overflow-wrap: normal;
  white-space: pre;
  word-break: normal;
}
.markdown-body blockquote {
  margin: 2em 0;
  padding: 1px 0 1px 24px;
  border-left: 6px solid var(--vl-orange);
  font-size: 1.08em;
}
.markdown-body hr { height: 1px; margin: 3em 0; border: 0; background: var(--vl-line); }
.table-wrap { max-width: 100%; overflow-x: auto; margin: 2em 0; }
.table-wrap table { width: 100%; min-width: 620px; border-collapse: collapse; }
.table-wrap th,
.table-wrap td { padding: 14px 16px; border: 1px solid var(--vl-line); text-align: left; vertical-align: top; }
.table-wrap th { background: var(--vl-grey); font-family: var(--vl-mono); font-size: 0.74rem; letter-spacing: 0.08em; text-transform: uppercase; }
.reader-paper-nav { width: 100%; margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--vl-line); }
.reader-error { margin-inline: auto; }

.vl-footer {
  padding-block: clamp(64px, 8vw, 112px) 34px;
  background: var(--vl-grey);
  border-top: 1px solid var(--vl-line);
}

.vl-footer__top {
  display: grid;
  grid-template-columns: minmax(220px, 1.4fr) repeat(4, minmax(130px, 0.6fr));
  gap: clamp(30px, 5vw, 72px);
}

.vl-footer__brand img { width: min(100%, 270px); }
.vl-footer__brand p { max-width: 34ch; margin: 22px 0 0; color: var(--vl-muted); }
.vl-footer h2 { margin: 0 0 14px; font-family: var(--vl-mono); font-size: 0.72rem; letter-spacing: 0.13em; text-transform: uppercase; }
.vl-footer ul { list-style: none; margin: 0; padding: 0; }
.vl-footer li + li { margin-top: 9px; }
.vl-footer a { font-size: 0.92rem; }
.vl-footer li a { display: inline-flex; min-height: 44px; align-items: center; }

.vl-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  margin-top: clamp(54px, 7vw, 90px);
  padding-top: 24px;
  border-top: 1px solid var(--vl-line);
  color: var(--vl-muted);
  font-size: 0.8rem;
}

.vl-js [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.72s var(--vl-ease), transform 0.72s var(--vl-ease);
}

.vl-js [data-reveal][data-visible="true"] { opacity: 1; transform: none; }

@media (max-width: 1040px) {
  .vl-header__inner { min-height: 74px; }
  .vl-menu-button { display: block; }
  .vl-nav {
    position: fixed;
    inset: 74px 0 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    overflow: auto;
    padding: 22px var(--vl-gutter) 34px;
    background: var(--vl-grey);
    border-bottom: 1px solid var(--vl-line);
  }
  .vl-nav[data-open="true"] { display: flex; }
  .vl-nav a { min-height: 54px; border-bottom: 1px solid var(--vl-line-soft); }
  .vl-nav .vl-button { margin-top: 16px; border-bottom: 0; }
  .vl-hero__grid { min-height: auto; grid-template-columns: 1fr; }
  .vl-organism { width: min(80vw, 570px); justify-self: center; }
  .vl-footer__top { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .vl-footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  .vl-display { font-size: clamp(4.1rem, 23vw, 7rem); }
  .vl-section__head, .vl-answer, .vl-callout { grid-template-columns: 1fr; }
  .vl-grid--2, .vl-grid--3, .vl-grid--4 { grid-template-columns: 1fr; }
  .vl-list__item { grid-template-columns: 1fr; gap: 12px; }
  .vl-list__item .vl-status { justify-self: start; }
  .vl-card { min-height: 250px; }
  .vl-organism { width: min(95vw, 510px); }
}

@media (max-width: 520px) {
  .vl-brand img { width: 165px; }
  .vl-actions { flex-direction: column; align-items: stretch; }
  .vl-button { width: 100%; }
  .vl-footer__top { grid-template-columns: 1fr; }
  .vl-footer__brand { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
  .vl-js [data-reveal] { opacity: 1; transform: none; }
}

/* ================================================================
   Founder visual direction · 2026-08-21
   The supplied references establish the page rhythm: monumental serif,
   hard porcelain/ink cuts, deliberate empty space, and orange/magenta
   Living Art mosaics. The raster mosaics are production assets derived
   for these exact slots; no decorative mark is redrawn in CSS.
   ================================================================ */

:root {
  --vl-shell: 1540px;
  --vl-gutter: clamp(20px, 4.6vw, 88px);
  --vl-section: clamp(96px, 11vw, 176px);
}

body { background: var(--vl-paper); }

.vl-header {
  position: sticky;
  background: var(--vl-grey);
  border-bottom-color: var(--vl-line);
  backdrop-filter: none;
}

.vl-header__inner { min-height: 80px; }

.vl-brand img { width: clamp(205px, 18vw, 276px); }

.vl-nav {
  gap: clamp(18px, 2.2vw, 38px);
  font-size: 0.82rem;
  font-weight: 560;
  letter-spacing: 0.01em;
}

.vl-button {
  min-height: 50px;
  padding-inline: 24px;
  border-radius: 7px;
  box-shadow: none;
  font-size: 0.93rem;
  white-space: nowrap;
}

.vl-button:hover {
  transform: translateY(-1px);
  box-shadow: none;
}

.vl-button:active { transform: translateY(1px); }

.vl-hero {
  background: var(--vl-grey);
  border-bottom-color: var(--vl-line);
}

.vl-hero__grid {
  min-height: calc(94svh - 80px);
  grid-template-columns: minmax(0, 8.5fr) minmax(300px, 3.5fr);
  align-items: start;
  gap: clamp(48px, 8vw, 148px);
  padding-block: clamp(68px, 9vh, 120px);
}

.vl-hero__copy { max-width: 980px; }

.vl-eyebrow,
.vl-kicker,
.vl-card__tag,
.vl-status,
.vl-meta {
  font-family: var(--vl-body);
  font-size: 0.71rem;
  font-weight: 650;
  letter-spacing: 0.14em;
}

.vl-eyebrow { margin-bottom: clamp(28px, 4vh, 52px); }

.vl-display {
  max-width: 9.5ch;
  font-size: clamp(4.2rem, 9.2vw, 9rem);
  line-height: 0.88;
  letter-spacing: -0.04em;
  text-wrap: pretty;
}

.vl-lede {
  max-width: 47ch;
  margin-top: clamp(32px, 4vw, 56px);
  font-size: clamp(1.12rem, 1.4vw, 1.5rem);
  line-height: 1.46;
}

.vl-hero__note {
  max-width: 55ch;
  margin-top: 26px;
  font-size: 0.82rem;
  line-height: 1.55;
}

.vl-mosaic-frame {
  align-self: start;
  width: min(100%, 500px);
  margin: 0;
  justify-self: end;
}

.vl-mosaic-frame > img {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
  background: var(--vl-grey);
  animation: vl-living-field-light 12s ease-in-out infinite alternate;
}

.vl-mosaic-frame figcaption {
  padding-top: 16px;
  border-top: 1px solid var(--vl-line);
  color: var(--vl-muted);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
}

.vl-brand-stage {
  position: relative;
  min-height: clamp(760px, 100svh, 1080px);
  overflow: hidden;
  background: var(--vl-ink);
  color: var(--vl-paper);
}

.vl-brand-stage__art {
  position: absolute;
  inset: 0 0 0 auto;
  width: 56%;
  height: 100%;
  object-fit: cover;
  object-position: 60% center;
  animation: vl-living-field-ink 14s ease-in-out infinite alternate;
}

@keyframes vl-living-field-light {
  from { transform: scale(1); }
  to { transform: scale(1.012) translate3d(-0.25%, -0.2%, 0); }
}

@keyframes vl-living-field-ink {
  from { transform: scale(1.002); }
  to { transform: scale(1.018) translate3d(0.3%, -0.25%, 0); }
}

.vl-brand-stage__content {
  position: relative;
  z-index: 1;
  min-height: inherit;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-block: clamp(96px, 12vw, 176px);
}

.vl-brand-stage .vl-kicker { color: rgba(249, 250, 244, 0.7); }

.vl-brand-stage h2 {
  max-width: 10ch;
  margin: 28px 0 0;
  font-family: var(--vl-display);
  font-size: clamp(4rem, 8vw, 8rem);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -0.04em;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.vl-brand-stage__lower {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-top: auto;
  padding-top: clamp(80px, 14vh, 180px);
}

.vl-brand-stage__lower p {
  max-width: 39ch;
  margin: 0 auto 0 min(32vw, 460px);
  color: rgba(249, 250, 244, 0.76);
  font-size: clamp(1rem, 1.3vw, 1.3rem);
}

.vl-section { border-bottom: 1px solid var(--vl-line-soft); }

.vl-section--ink {
  position: relative;
  border-color: rgba(255, 255, 255, 0.18);
  background-color: var(--vl-ink);
  background-image: url('/assets/vext-mosaic-ink-20260821.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.vl-section--ink > .vl-shell { position: relative; z-index: 1; }
.vl-section--ink .vl-grid { border-color: rgba(255, 255, 255, 0.26); }
.vl-section--ink .vl-card { border-color: rgba(255, 255, 255, 0.26); }

.vl-section--signal {
  background: var(--vl-paper);
  color: var(--vl-ink);
}

.vl-section--signal .vl-callout {
  padding-block: clamp(42px, 6vw, 82px);
  padding-inline: clamp(34px, 5vw, 76px);
  background: var(--vl-orange);
  color: var(--vl-ink);
}

.vl-section--signal .vl-callout p { color: var(--vl-ink); }

.vl-section__head {
  grid-template-columns: minmax(140px, 2fr) minmax(0, 10fr);
  gap: clamp(30px, 6vw, 112px);
  margin-bottom: clamp(60px, 8vw, 112px);
}

.vl-title {
  max-width: 13ch;
  font-size: clamp(3.2rem, 6.4vw, 7rem);
  line-height: 0.94;
  letter-spacing: -0.04em;
}

.vl-title--small { font-size: clamp(2.65rem, 5vw, 5.4rem); }

.vl-answer {
  grid-template-columns: minmax(250px, 4fr) minmax(0, 8fr);
  gap: clamp(42px, 8vw, 136px);
  padding: clamp(48px, 7vw, 104px) 0;
  background: transparent;
  border-top: 1px solid var(--vl-line);
  border-right: 0;
  border-bottom: 1px solid var(--vl-line);
  border-left: 0;
}

.vl-answer::after { display: none; }

.vl-answer h2 {
  max-width: 10ch;
  font-size: clamp(2.7rem, 5vw, 5.6rem);
  line-height: 0.94;
}

.vl-answer p {
  max-width: 48ch;
  font-size: clamp(1.1rem, 1.35vw, 1.45rem);
  line-height: 1.5;
}

.vl-answer--sales > div { align-self: center; }

.vl-fit-rail {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: clamp(34px, 5vw, 68px);
  border-top: 1px solid var(--vl-line);
}

.vl-fit-rail span {
  min-height: 94px;
  display: flex;
  align-items: center;
  padding: 20px 24px 20px 0;
  border-right: 1px solid var(--vl-line);
  color: var(--vl-muted);
  font-size: 0.86rem;
  font-weight: 600;
  line-height: 1.35;
}

.vl-fit-rail span + span { padding-left: 24px; }
.vl-fit-rail span:last-child { border-right: 0; }

.vl-section__head--stacked {
  display: block;
  max-width: 980px;
}

.vl-section__head--stacked .vl-title { max-width: 11ch; }
.vl-section__head--stacked .vl-lede,
.vl-section__head--stacked .vl-prose { max-width: 48ch; }

.vl-grid {
  gap: 0;
  border: 1px solid var(--vl-line);
  background: transparent;
}

.vl-grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.vl-principle-grid,
.vl-path-grid,
.vl-grid--asymmetric {
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  grid-template-rows: repeat(2, minmax(0, 1fr));
}

.vl-principle-grid > :first-child,
.vl-path-grid > :first-child,
.vl-grid--asymmetric > :first-child {
  grid-row: 1 / span 2;
}

.vl-principle-grid > .vl-card,
.vl-path-grid > .vl-card,
.vl-grid--asymmetric > .vl-card { border-right: 0; }

.vl-principle-grid > :first-child,
.vl-path-grid > :first-child,
.vl-grid--asymmetric > :first-child { border-right: 1px solid var(--vl-line); }

.vl-path-grid__primary h3 { max-width: 11ch; }

.vl-process {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--vl-line);
  border-bottom: 1px solid var(--vl-line);
}

.vl-process li {
  min-height: 330px;
  padding: clamp(34px, 4vw, 58px);
  border-right: 1px solid var(--vl-line);
}

.vl-process li:last-child { border-right: 0; }

.vl-process span {
  color: var(--vl-orange-ink);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.vl-process h3 {
  max-width: 10ch;
  margin: clamp(62px, 8vw, 112px) 0 18px;
  font-family: var(--vl-display);
  font-size: clamp(2.2rem, 3.2vw, 3.8rem);
  font-weight: 400;
  line-height: 0.96;
  letter-spacing: -0.03em;
}

.vl-process p { max-width: 34ch; color: var(--vl-muted); }

.vl-card {
  min-height: clamp(320px, 30vw, 470px);
  padding: clamp(34px, 4vw, 64px);
  border-right: 1px solid var(--vl-line);
  border-bottom: 1px solid var(--vl-line);
  transition: none;
}

.vl-grid--2 .vl-card:nth-child(2n),
.vl-grid--3 .vl-card:nth-child(3n),
.vl-grid--4 .vl-card:nth-child(2n) { border-right: 0; }

.vl-card h3 {
  max-width: 14ch;
  margin-top: clamp(54px, 7vw, 110px);
  font-size: clamp(2.35rem, 3.5vw, 4.2rem);
  line-height: 0.96;
}

.vl-card p { max-width: 39ch; }

.vl-card:has(.vl-card__link:hover),
.vl-card--ink:has(.vl-card__link:hover) {
  background: inherit;
  color: inherit;
}

.vl-page-hero {
  position: relative;
  min-height: clamp(660px, 82svh, 940px);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-block: clamp(100px, 13vh, 160px);
  background-color: var(--vl-grey);
  background-image: url('/assets/vext-mosaic-paper-20260821.png');
  background-repeat: no-repeat;
  background-position: right var(--vl-gutter) center;
  background-size: min(33vw, 520px) auto;
}

.vl-page-hero--arch { background-image: url('/assets/vext-mosaic-arch-20260821.png'); }
.vl-page-hero--ripple { background-image: url('/assets/vext-mosaic-ripple-20260821.png'); }

.vl-lineage-stage {
  position: relative;
  min-height: clamp(780px, 100svh, 1080px);
  overflow: hidden;
  background: var(--vl-ink);
  color: var(--vl-paper);
}

.vl-lineage-stage__art {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: vl-living-field-ink 14s ease-in-out infinite alternate;
}

.vl-lineage-stage__content {
  position: relative;
  z-index: 1;
  min-height: inherit;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: clamp(36px, 6vh, 72px);
  padding-block: clamp(96px, 11vw, 160px);
  text-align: center;
}

.vl-lineage-stage h2 {
  max-width: 10ch;
  margin: 0;
  font-family: var(--vl-display);
  font-size: clamp(3.7rem, 7vw, 7.4rem);
  font-weight: 400;
  line-height: 0.91;
  letter-spacing: -0.04em;
}

.vl-lineage-flow {
  display: grid;
  justify-items: center;
  gap: 22px;
}

.vl-lineage-flow__lab {
  width: clamp(240px, 25vw, 380px);
  padding: 14px 20px;
  background: var(--vl-grey);
}

.vl-lineage-flow__lab img { width: 100%; height: auto; display: block; }

.vl-lineage-flow > span {
  color: rgba(249, 250, 244, 0.68);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.vl-lineage-flow__product {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--vl-paper);
  text-decoration: none;
}

.vl-lineage-flow__product img { width: clamp(44px, 5vw, 70px); height: auto; }

.vl-lineage-flow__product strong {
  font-family: var(--vl-body);
  font-size: clamp(2.6rem, 5vw, 5.2rem);
  font-weight: 520;
  letter-spacing: -0.045em;
}

.vl-lineage-stage__lower {
  width: min(100%, 820px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding-top: 28px;
  border-top: 1px solid rgba(249, 250, 244, 0.22);
  text-align: left;
}

.vl-lineage-stage__lower p {
  max-width: 46ch;
  margin: 0;
  color: rgba(249, 250, 244, 0.76);
}

.vl-page-hero > .vl-shell { padding-right: min(44vw, 690px); }
.vl-page-hero .vl-title { max-width: 11.5ch; }
.vl-page-hero .vl-lede { max-width: 46ch; }

.vl-callout {
  min-height: clamp(480px, 52vw, 720px);
  grid-template-columns: minmax(0, 7fr) minmax(280px, 5fr);
  padding: clamp(52px, 7vw, 108px);
}

.vl-callout h2 {
  max-width: 11ch;
  font-size: clamp(3.1rem, 6.3vw, 7rem);
  line-height: 0.92;
}

.vl-list__item {
  grid-template-columns: minmax(120px, 2fr) minmax(0, 8fr) minmax(110px, 2fr);
  padding-block: clamp(34px, 4vw, 62px);
}

.vl-list__item h3 { font-size: clamp(2rem, 3.2vw, 3.65rem); }

.vl-faq summary {
  min-height: 92px;
  padding-block: 28px;
  font-size: clamp(1.6rem, 2.4vw, 2.75rem);
}

.vl-footer { padding-top: clamp(90px, 10vw, 150px); }

@media (max-width: 1120px) {
  .vl-header__inner { min-height: 82px; }
  .vl-nav { inset: 82px 0 0; }
  .vl-hero__grid {
    min-height: auto;
    grid-template-columns: minmax(0, 6fr) minmax(250px, 2fr);
    gap: clamp(30px, 5vw, 64px);
  }
  .vl-display { font-size: clamp(4.1rem, 9.8vw, 7rem); }
  .vl-mosaic-frame { width: min(100%, 370px); }
  .vl-page-hero { background-size: min(35vw, 420px) auto; }
}

@media (max-width: 759px) {
  .vl-header__inner { min-height: 76px; }
  .vl-nav { inset: 76px 0 0; }
  .vl-brand img { width: 188px; }

  .vl-hero__grid {
    grid-template-columns: 1fr;
    gap: 56px;
    padding-block: 82px 72px;
  }

  .vl-display {
    max-width: 10ch;
    font-size: clamp(3.5rem, 17vw, 4.4rem);
    line-height: 0.9;
  }

  .vl-lede { font-size: 1.08rem; }

  .vl-mosaic-frame {
    width: 100%;
    max-width: none;
    justify-self: stretch;
  }

  .vl-mosaic-frame > img {
    height: min(62.5vw, 294px);
    aspect-ratio: auto;
    object-position: center bottom;
  }

  .vl-mosaic-frame figcaption { flex-direction: column; gap: 4px; }

  .vl-brand-stage {
    min-height: 780px;
    display: flex;
  }

  .vl-brand-stage__art {
    width: 100%;
    height: 52%;
    top: auto;
    object-position: bottom center;
  }

  .vl-brand-stage__content {
    justify-content: flex-start;
    padding-block: 84px 62px;
  }

  .vl-brand-stage h2 {
    max-width: 8ch;
    font-size: clamp(3.6rem, 15.5vw, 5rem);
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
  }

  .vl-brand-stage__lower {
    align-items: stretch;
    flex-direction: column;
    margin-top: 52px;
    padding-top: 0;
  }

  .vl-brand-stage__lower p { margin-left: 0; }

  .vl-lineage-stage { min-height: 820px; }

  .vl-lineage-stage__art {
    object-position: center;
    opacity: 0.9;
  }

  .vl-lineage-stage__content {
    justify-items: stretch;
    align-content: start;
    gap: 36px;
    padding-block: 84px 64px;
    text-align: left;
  }

  .vl-lineage-stage h2 { max-width: 8ch; }

  .vl-lineage-flow {
    justify-items: start;
    margin-top: 32px;
  }

  .vl-lineage-stage__lower {
    align-items: stretch;
    flex-direction: column;
    margin-top: auto;
  }

  .vl-section__head,
  .vl-answer,
  .vl-callout { grid-template-columns: 1fr; }

  .vl-fit-rail,
  .vl-process { grid-template-columns: 1fr; }

  .vl-fit-rail span,
  .vl-fit-rail span + span {
    min-height: 64px;
    padding: 18px 0;
    border-right: 0;
    border-bottom: 1px solid var(--vl-line);
  }

  .vl-fit-rail span:last-child { border-bottom: 0; }

  .vl-process li {
    min-height: 250px;
    border-right: 0;
    border-bottom: 1px solid var(--vl-line);
  }

  .vl-process li:last-child { border-bottom: 0; }

  .vl-process h3 { margin-top: 56px; }

  .vl-title { font-size: clamp(3.25rem, 14.5vw, 4.5rem); }
  .vl-title--small { font-size: clamp(2.8rem, 12vw, 3.8rem); }

  .vl-grid--2,
  .vl-grid--3,
  .vl-grid--4,
  .vl-principle-grid,
  .vl-path-grid,
  .vl-grid--asymmetric {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .vl-principle-grid > :first-child,
  .vl-path-grid > :first-child,
  .vl-grid--asymmetric > :first-child {
    grid-row: auto;
    border-right: 0;
  }

  .vl-grid .vl-card { border-right: 0; }
  .vl-card { min-height: 310px; }

  .vl-page-hero {
    min-height: auto;
    display: block;
    padding-block: 82px 76px;
    padding-bottom: calc(76px + min(90vw, 470px));
    background-position: center bottom 58px;
    background-size: min(calc(100vw - 40px), 470px) auto;
  }

  .vl-page-hero > .vl-shell { padding-right: var(--vl-gutter); }
  .vl-page-hero .vl-title { max-width: 10ch; }

  .vl-callout { min-height: 0; }
  .vl-list__item { grid-template-columns: 1fr; }
}

@media (max-width: 520px) {
  .vl-actions { align-items: stretch; }
  .vl-button { width: 100%; }
  .vl-hero__note { font-size: 0.78rem; }
}

@media print {
  .vl-header, .vl-footer, .vl-actions, .vl-menu-button { display: none !important; }
  body { background: #fff; color: #000; font-size: 11pt; }
  .vl-section, .vl-page-hero { padding-block: 28px; }
  .vl-card, .vl-answer, .vl-callout { break-inside: avoid; background: #fff; color: #000; }
}
