:root {
  color-scheme: light;
}

body.vector-r3 {
  --vr3-graphite: #192126;
  --vr3-ink: #223038;
  --vr3-porcelain: #f5f4f0;
  --vr3-white: #ffffff;
  --vr3-muted: #53646c;
  --vr3-celadon: #bfdcd2;
  --vr3-celadon-deep: #7aa99a;
  --vr3-amber: #d8a45f;
  --vr3-cool: #e6ecee;
  --vr3-border: #c9d1d0;
  --vr3-dark-border: rgba(245, 244, 240, 0.2);
  --vr3-container: 1240px;
  margin: 0;
  min-width: 320px;
  background: var(--vr3-porcelain);
  color: var(--vr3-ink);
  font-family: "IBM Plex Sans", "Segoe UI", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.62;
  text-rendering: optimizeLegibility;
}

body.vector-r3 *,
body.vector-r3 *::before,
body.vector-r3 *::after {
  box-sizing: border-box;
}

body.vector-r3 img,
body.vector-r3 svg {
  display: block;
  max-width: 100%;
}

body.vector-r3 button,
body.vector-r3 input,
body.vector-r3 select,
body.vector-r3 textarea {
  font: inherit;
}

.vr3-container {
  width: min(calc(100% - 80px), var(--vr3-container));
  margin-inline: auto;
}

.vr3-skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  transform: translateY(-160%);
  border: 2px solid var(--vr3-graphite);
  border-radius: 3px;
  background: var(--vr3-celadon);
  color: var(--vr3-graphite);
  font-weight: 700;
  text-decoration: none;
}

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

.vr3-header {
  position: relative;
  z-index: 30;
  background: var(--vr3-graphite);
  color: var(--vr3-porcelain);
  border-bottom: 1px solid var(--vr3-dark-border);
}

.vr3-header-inner {
  min-height: 86px;
  display: flex;
  align-items: center;
  gap: 34px;
}

.vr3-brand {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  min-width: max-content;
  color: var(--vr3-porcelain);
  text-decoration: none;
}

.vr3-wordmark {
  font-size: 1.34rem;
  font-weight: 650;
  letter-spacing: -0.025em;
}

.vr3-brand-meta {
  color: var(--vr3-celadon);
  font-family: "IBM Plex Mono", Consolas, monospace;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.vr3-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 25px;
}

.vr3-nav > a {
  position: relative;
  color: #e8eceb;
  font-size: 0.84rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}

.vr3-nav > a:not(.vr3-nav-cta)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -10px;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--vr3-amber);
  transition: transform 180ms ease;
}

.vr3-nav > a:hover::after,
.vr3-nav > a[aria-current="page"]::after {
  transform: scaleX(1);
}

.vr3-nav-cta {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 3px;
  background: var(--vr3-celadon);
  color: var(--vr3-graphite) !important;
}

.vr3-menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  margin-left: auto;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-direction: column;
  border: 1px solid var(--vr3-dark-border);
  border-radius: 3px;
  background: transparent;
  color: var(--vr3-porcelain);
  cursor: pointer;
}

.vr3-menu-toggle span {
  width: 20px;
  height: 1px;
  background: currentColor;
}

.vr3-eyebrow {
  margin: 0 0 22px;
  color: var(--vr3-amber);
  font-family: "IBM Plex Mono", Consolas, monospace;
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  line-height: 1.4;
  text-transform: uppercase;
}

.vr3-eyebrow--ink {
  color: #735124;
}

.vr3-hero {
  position: relative;
  overflow: hidden;
  background: var(--vr3-graphite);
  color: var(--vr3-porcelain);
}

.vr3-hero-grid {
  position: relative;
  z-index: 2;
  min-height: 548px;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  align-items: center;
  gap: 24px;
  padding-block: 78px 70px;
}

.vr3-hero-copy {
  grid-column: 1 / span 7;
}

.vr3-hero h1,
.vr3-page-hero h1 {
  margin: 0;
  max-width: 13ch;
  font-size: clamp(3rem, 5vw, 4rem);
  font-weight: 550;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.vr3-hero-lede,
.vr3-page-lede {
  max-width: 60ch;
  margin: 28px 0 0;
  color: #cfd7d5;
  font-size: 1.08rem;
  line-height: 1.7;
}

.vr3-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.vr3-button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 3px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: background-color 160ms ease, color 160ms ease, border-color 160ms ease;
}

.vr3-button--primary {
  background: var(--vr3-celadon);
  color: var(--vr3-graphite);
}

.vr3-button--primary:hover {
  background: #d5e9e2;
}

.vr3-button--secondary {
  border-color: rgba(245, 244, 240, 0.48);
  color: var(--vr3-porcelain);
}

.vr3-button--secondary:hover {
  border-color: var(--vr3-celadon);
  color: var(--vr3-celadon);
}

.vr3-button--ink {
  background: var(--vr3-graphite);
  color: var(--vr3-porcelain);
}

.vr3-button--outline {
  border-color: #718087;
  color: var(--vr3-ink);
}

.vr3-hero-aside {
  position: relative;
  grid-column: 9 / -1;
  min-height: 355px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.vr3-brand-art {
  position: absolute;
  z-index: -1;
  inset: -80px -80px 68px -30px;
  opacity: 0.78;
}

.vr3-v-mark::before,
.vr3-v-mark::after {
  content: "";
  position: absolute;
  top: 16px;
  width: 2px;
  height: 250px;
  background: linear-gradient(to bottom, rgba(191, 220, 210, 0.82), rgba(191, 220, 210, 0.08));
  transform-origin: top;
}

.vr3-v-mark::before {
  left: 31%;
  transform: rotate(-24deg);
}

.vr3-v-mark::after {
  right: 31%;
  transform: rotate(24deg);
}

.vr3-directional-rule {
  position: absolute;
  right: 10px;
  bottom: 30px;
  left: 10px;
  height: 1px;
  background: rgba(216, 164, 95, 0.64);
}

.vr3-directional-rule::after {
  content: "";
  position: absolute;
  top: -4px;
  right: 0;
  width: 9px;
  height: 9px;
  background: var(--vr3-amber);
}

.vr3-capability-index {
  border-top: 1px solid var(--vr3-dark-border);
}

.vr3-capability-index > div {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 14px;
  padding: 15px 0;
  border-bottom: 1px solid var(--vr3-dark-border);
}

.vr3-capability-index span {
  color: var(--vr3-amber);
  font-family: "IBM Plex Mono", Consolas, monospace;
  font-size: 0.72rem;
}

.vr3-capability-index strong {
  font-size: 0.95rem;
  font-weight: 550;
}

.vr3-coverage {
  border-top: 1px solid var(--vr3-dark-border);
  background: var(--vr3-graphite);
  color: var(--vr3-porcelain);
}

.vr3-coverage-inner {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.vr3-coverage span {
  position: relative;
  min-height: 68px;
  display: flex;
  align-items: center;
  padding: 15px 20px 15px 0;
  color: #ccd4d2;
  font-size: 0.8rem;
  font-weight: 600;
}

.vr3-coverage span:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 20px;
  right: 22px;
  bottom: 20px;
  width: 1px;
  background: var(--vr3-dark-border);
}

.vr3-section {
  padding-block: 110px;
}

.vr3-section--white {
  background: var(--vr3-white);
}

.vr3-section--cool {
  background: var(--vr3-cool);
}

.vr3-section-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 28px;
}

.vr3-section-label {
  grid-column: 1 / span 3;
  align-self: start;
}

.vr3-section-label--sticky {
  position: sticky;
  top: 28px;
}

.vr3-section-label h2,
.vr3-section-heading h2 {
  margin: 0;
  font-size: clamp(2.15rem, 3.5vw, 3rem);
  font-weight: 550;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.vr3-section-label p:not(.vr3-eyebrow),
.vr3-section-heading p:not(.vr3-eyebrow) {
  max-width: 58ch;
  margin: 22px 0 0;
  color: var(--vr3-muted);
}

.vr3-section-content {
  grid-column: 5 / -1;
}

.vr3-directory {
  border-top: 1px solid var(--vr3-border);
}

.vr3-directory-row {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) minmax(180px, 0.68fr);
  gap: 28px;
  align-items: start;
  padding: 31px 0 34px;
  border-bottom: 1px solid var(--vr3-border);
}

.vr3-index {
  color: #7b5a2c;
  font-family: "IBM Plex Mono", Consolas, monospace;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.vr3-directory-row h3,
.vr3-quadrant h3,
.vr3-principle h3,
.vr3-reading-row h3,
.vr3-stage h3,
.vr3-responsibility h3,
.vr3-context-panel h2,
.vr3-contact-form h2 {
  margin: 0;
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.28;
}

.vr3-directory-row p {
  margin: 3px 0 0;
  color: var(--vr3-muted);
}

.vr3-directory-row ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.vr3-directory-row li {
  position: relative;
  padding: 0 0 8px 18px;
  color: var(--vr3-muted);
  font-size: 0.92rem;
}

.vr3-directory-row li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 7px;
  height: 1px;
  background: var(--vr3-amber);
}

.vr3-text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 26px;
  color: var(--vr3-ink);
  font-weight: 700;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.vr3-text-link::after {
  content: "→";
}

.vr3-dark-section {
  background: var(--vr3-graphite);
  color: var(--vr3-porcelain);
}

.vr3-dark-section .vr3-section-label p:not(.vr3-eyebrow),
.vr3-dark-section .vr3-section-heading p:not(.vr3-eyebrow),
.vr3-dark-section .vr3-directory-row p,
.vr3-dark-section .vr3-directory-row li {
  color: #c8d1cf;
}

.vr3-dark-section .vr3-directory,
.vr3-dark-section .vr3-directory-row {
  border-color: var(--vr3-dark-border);
}

.vr3-dark-section .vr3-text-link {
  color: var(--vr3-celadon);
}

.vr3-quadrant {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--vr3-border);
  border-left: 1px solid var(--vr3-border);
}

.vr3-quadrant article {
  min-height: 230px;
  padding: 34px;
  border-right: 1px solid var(--vr3-border);
  border-bottom: 1px solid var(--vr3-border);
}

.vr3-quadrant p {
  margin: 18px 0 0;
  color: var(--vr3-muted);
}

.vr3-principles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--vr3-border);
}

.vr3-principle {
  padding: 32px 32px 12px 0;
}

.vr3-principle + .vr3-principle {
  padding-left: 32px;
  border-left: 1px solid var(--vr3-border);
}

.vr3-principle p {
  margin: 16px 0 0;
  color: var(--vr3-muted);
}

.vr3-reading-index {
  border-top: 1px solid var(--vr3-border);
}

.vr3-reading-row {
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr) 130px;
  gap: 28px;
  align-items: center;
  padding: 30px 0;
  border-bottom: 1px solid var(--vr3-border);
}

.vr3-reading-row p {
  margin: 10px 0 0;
  color: var(--vr3-muted);
}

.vr3-reading-row a {
  color: var(--vr3-ink);
  font-weight: 700;
  text-align: right;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.vr3-cta {
  padding-block: 70px;
  background: var(--vr3-celadon);
  color: var(--vr3-graphite);
}

.vr3-cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 40px;
  align-items: center;
}

.vr3-cta h2 {
  margin: 0;
  max-width: 18ch;
  font-size: clamp(2rem, 3.4vw, 3rem);
  font-weight: 550;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.vr3-cta p {
  max-width: 60ch;
  margin: 18px 0 0;
}

.vr3-page-hero {
  position: relative;
  overflow: hidden;
  padding-block: 92px 88px;
  background: var(--vr3-porcelain);
}

.vr3-page-hero::after {
  content: "";
  position: absolute;
  right: -60px;
  bottom: 38px;
  width: min(34vw, 430px);
  height: 1px;
  background: var(--vr3-amber);
}

.vr3-page-hero::before {
  content: "";
  position: absolute;
  right: min(5vw, 58px);
  bottom: 34px;
  width: 9px;
  height: 9px;
  background: var(--vr3-amber);
}

.vr3-page-hero .vr3-eyebrow {
  color: #735124;
}

.vr3-page-hero h1 {
  max-width: 17ch;
  color: var(--vr3-ink);
}

.vr3-page-hero .vr3-page-lede {
  color: var(--vr3-muted);
}

.vr3-page-hero--dark {
  background: var(--vr3-graphite);
  color: var(--vr3-porcelain);
}

.vr3-page-hero--dark .vr3-eyebrow {
  color: var(--vr3-amber);
}

.vr3-page-hero--dark h1 {
  color: var(--vr3-porcelain);
}

.vr3-page-hero--dark .vr3-page-lede {
  color: #cbd3d1;
}

.vr3-scope-note {
  margin-top: 46px;
  padding: 24px 28px;
  border-left: 3px solid var(--vr3-amber);
  background: var(--vr3-cool);
}

.vr3-scope-note h3 {
  margin: 0;
  font-size: 1rem;
}

.vr3-scope-note p {
  margin: 8px 0 0;
  color: var(--vr3-muted);
}

.vr3-fit-factors {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--vr3-border);
  border-left: 1px solid var(--vr3-border);
}

.vr3-fit-factors span {
  min-height: 92px;
  display: flex;
  align-items: center;
  padding: 22px 26px;
  border-right: 1px solid var(--vr3-border);
  border-bottom: 1px solid var(--vr3-border);
  font-weight: 600;
}

.vr3-stages {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--vr3-border);
  border-left: 1px solid var(--vr3-border);
}

.vr3-stage {
  min-height: 300px;
  padding: 30px;
  border-right: 1px solid var(--vr3-border);
  border-bottom: 1px solid var(--vr3-border);
}

.vr3-stage p {
  margin: 18px 0 0;
  color: var(--vr3-muted);
}

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

.vr3-responsibility {
  padding: 38px;
  background: var(--vr3-white);
}

.vr3-responsibility ul,
.vr3-article-body ul,
.vr3-context-panel ul {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.vr3-responsibility li,
.vr3-article-body li,
.vr3-context-panel li {
  position: relative;
  padding: 0 0 11px 20px;
  color: var(--vr3-muted);
}

.vr3-responsibility li::before,
.vr3-article-body li::before,
.vr3-context-panel li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 8px;
  height: 2px;
  background: var(--vr3-amber);
}

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

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

.vr3-faq summary {
  position: relative;
  padding: 26px 54px 26px 0;
  cursor: pointer;
  font-size: 1.08rem;
  font-weight: 650;
  list-style: none;
}

.vr3-faq summary::-webkit-details-marker {
  display: none;
}

.vr3-faq summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 4px;
  transform: translateY(-50%);
  color: #735124;
  font-family: "IBM Plex Mono", Consolas, monospace;
  font-size: 1.35rem;
}

.vr3-faq details[open] summary::after {
  content: "−";
}

.vr3-faq details p {
  max-width: 72ch;
  margin: -4px 0 28px;
  color: var(--vr3-muted);
}

.vr3-manifesto {
  padding-block: 98px;
  background: var(--vr3-graphite);
  color: var(--vr3-porcelain);
}

.vr3-manifesto p {
  max-width: 24ch;
  margin: 0;
  font-size: clamp(2rem, 4.2vw, 3.5rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.11;
}

.vr3-manifesto strong {
  color: var(--vr3-celadon);
  font-weight: 550;
}

.vr3-resource-feature {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  min-height: 360px;
  background: var(--vr3-graphite);
  color: var(--vr3-porcelain);
}

.vr3-resource-feature__label,
.vr3-resource-feature__copy {
  padding: 44px;
}

.vr3-resource-feature__label {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid var(--vr3-dark-border);
}

.vr3-resource-feature__label::after {
  content: "";
  position: absolute;
  right: 42px;
  bottom: 42px;
  left: 42px;
  height: 1px;
  background: var(--vr3-amber);
}

.vr3-resource-feature__label::before {
  content: "";
  position: absolute;
  right: 42px;
  bottom: 38px;
  width: 9px;
  height: 9px;
  background: var(--vr3-amber);
}

.vr3-resource-feature__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.vr3-resource-feature h2 {
  margin: 0;
  font-size: clamp(2rem, 3.3vw, 2.9rem);
  font-weight: 550;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.vr3-resource-feature p {
  margin: 22px 0 0;
  color: #cbd3d1;
}

.vr3-resource-feature .vr3-text-link {
  color: var(--vr3-celadon);
}

.vr3-disclaimer {
  margin-top: 34px;
  color: var(--vr3-muted);
  font-size: 0.88rem;
}

.vr3-article-layout {
  display: grid;
  grid-template-columns: minmax(180px, 0.28fr) minmax(0, 0.72fr);
  gap: 70px;
  align-items: start;
}

.vr3-article-meta {
  position: sticky;
  top: 28px;
  padding-top: 18px;
  border-top: 2px solid var(--vr3-amber);
}

.vr3-article-meta dl {
  margin: 0;
}

.vr3-article-meta div {
  padding: 15px 0;
  border-bottom: 1px solid var(--vr3-border);
}

.vr3-article-meta dt {
  color: var(--vr3-muted);
  font-family: "IBM Plex Mono", Consolas, monospace;
  font-size: 0.69rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.vr3-article-meta dd {
  margin: 5px 0 0;
  font-weight: 600;
}

.vr3-article-body {
  max-width: 760px;
}

.vr3-article-body h2 {
  margin: 56px 0 0;
  font-size: clamp(1.75rem, 2.6vw, 2.25rem);
  font-weight: 550;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.vr3-article-body h2:first-child {
  margin-top: 0;
}

.vr3-article-body p {
  margin: 20px 0 0;
  color: var(--vr3-muted);
}

.vr3-article-body .vr3-scope-note {
  margin-top: 40px;
}

.vr3-contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.63fr) minmax(300px, 0.37fr);
  gap: 34px;
  align-items: start;
}

.vr3-contact-form,
.vr3-context-panel {
  padding: 42px;
}

.vr3-contact-form {
  background: var(--vr3-white);
  border: 1px solid var(--vr3-border);
}

.vr3-contact-form > p {
  color: var(--vr3-muted);
}

.vr3-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 30px;
}

.vr3-field {
  display: grid;
  gap: 8px;
}

.vr3-field--wide {
  grid-column: 1 / -1;
}

.vr3-field label {
  font-size: 0.86rem;
  font-weight: 650;
}

.vr3-field input,
.vr3-field select,
.vr3-field textarea {
  width: 100%;
  min-height: 52px;
  padding: 12px 14px;
  border: 1px solid #879398;
  border-radius: 2px;
  background: var(--vr3-white);
  color: var(--vr3-ink);
}

.vr3-field textarea {
  min-height: 148px;
  resize: vertical;
}

.vr3-form-note {
  margin: 12px 0 0;
  padding: 14px 16px;
  border-left: 3px solid var(--vr3-amber);
  background: #f1eee7;
  color: #4f5b61;
  font-size: 0.88rem;
}

.vr3-form-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 24px;
}

.vr3-form-actions button {
  cursor: pointer;
}

.vr3-form-status {
  margin: 0;
  color: #3e5550;
  font-size: 0.88rem;
  font-weight: 600;
}

.vr3-context-panel {
  position: sticky;
  top: 28px;
  background: var(--vr3-graphite);
  color: var(--vr3-porcelain);
}

.vr3-context-panel p,
.vr3-context-panel li {
  color: #cbd3d1;
}

.vr3-context-panel hr {
  height: 1px;
  margin: 30px 0;
  border: 0;
  background: var(--vr3-dark-border);
}

.vr3-footer {
  padding-block: 66px 28px;
  background: var(--vr3-graphite);
  color: var(--vr3-porcelain);
}

.vr3-footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr 0.75fr;
  gap: 50px;
}

.vr3-footer h2 {
  margin: 0;
  font-size: 1.45rem;
  font-weight: 600;
}

.vr3-footer p {
  max-width: 52ch;
  margin: 15px 0 0;
  color: #bac5c2;
  font-size: 0.9rem;
}

.vr3-footer nav {
  display: grid;
  align-content: start;
  gap: 10px;
}

.vr3-footer a {
  color: #dbe2e0;
  font-size: 0.9rem;
  text-decoration: none;
}

.vr3-footer a:hover {
  color: var(--vr3-celadon);
}

.vr3-footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 52px;
  padding-top: 22px;
  border-top: 1px solid var(--vr3-dark-border);
  color: #aebbb8;
  font-size: 0.78rem;
}

.vector-r3 :focus-visible {
  outline: 3px solid var(--vr3-amber);
  outline-offset: 4px;
}

.vector-r3 .vr3-button--primary:focus-visible,
.vector-r3 .vr3-cta :focus-visible {
  outline-color: var(--vr3-graphite);
}

/* Premium r1: custom identity, Precision Relay artwork, Signal Atlas, and local brief. */
.vr3-brand {
  position: relative;
  align-items: center;
  min-height: 34px;
  padding-left: 44px;
}

.vr3-brand::before,
.vr3-brand::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.vr3-brand::before {
  left: 0;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(191, 220, 210, 0.5);
  background: rgba(255, 255, 255, 0.025);
}

.vr3-brand::after {
  left: 7px;
  width: 18px;
  height: 21px;
  background: var(--vr3-celadon);
  clip-path: polygon(0 0, 24% 0, 50% 72%, 76% 0, 100% 0, 62% 100%, 38% 100%);
}

.vr3-signal-plate {
  position: relative;
  grid-column: 8 / -1;
  align-self: stretch;
  min-height: 430px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(191, 220, 210, 0.3);
  background: #111719;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.24);
}

.vr3-signal-plate picture,
.vr3-signal-plate img {
  width: 100%;
  height: 100%;
}

.vr3-signal-plate picture {
  display: block;
}

.vr3-signal-plate img {
  object-fit: cover;
  object-position: 62% center;
}

.vr3-signal-plate::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(to bottom, rgba(18, 25, 29, 0.02) 35%, rgba(18, 25, 29, 0.92) 100%);
  pointer-events: none;
}

.vr3-signal-plate__mark {
  position: absolute;
  z-index: 2;
  top: 24px;
  right: 24px;
  width: 62px;
  height: 70px;
  border: 1px solid rgba(191, 220, 210, 0.42);
  background: rgba(17, 23, 25, 0.72);
  backdrop-filter: blur(8px);
}

.vr3-signal-plate__mark::after {
  content: "";
  position: absolute;
  inset: 13px 15px 12px;
  background: var(--vr3-celadon);
  clip-path: polygon(0 0, 22% 0, 50% 72%, 78% 0, 100% 0, 62% 100%, 38% 100%);
}

.vr3-signal-plate__caption {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  gap: 7px;
  padding: 28px;
  color: var(--vr3-porcelain);
}

.vr3-signal-plate__kicker,
.vr3-signal-plate__caption > span:last-child {
  font-family: "IBM Plex Mono", Consolas, monospace;
  font-size: 0.66rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.vr3-signal-plate__kicker {
  color: var(--vr3-amber);
}

.vr3-signal-plate__caption strong {
  max-width: 24ch;
  font-size: 1.18rem;
  font-weight: 600;
  line-height: 1.25;
}

.vr3-signal-plate__caption > span:last-child {
  color: #b8c7c3;
  letter-spacing: 0.04em;
  text-transform: none;
}

.vr3-atlas-section {
  overflow: hidden;
  background: #12191d;
  color: var(--vr3-porcelain);
}

.vr3-atlas-shell {
  display: grid;
  grid-template-columns: minmax(230px, 0.72fr) minmax(0, 1.65fr);
  gap: clamp(44px, 7vw, 96px);
  align-items: start;
}

.vr3-atlas-intro {
  position: sticky;
  top: 32px;
}

.vr3-atlas-intro h2 {
  max-width: 9ch;
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 3.45rem);
  font-weight: 550;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.vr3-atlas-intro > p:not(.vr3-eyebrow) {
  max-width: 36ch;
  margin: 24px 0 0;
  color: #c2cecb;
}

.vr3-atlas-intro .vr3-atlas-note {
  padding-top: 20px;
  border-top: 1px solid var(--vr3-dark-border);
  color: #9caaa7;
  font-size: 0.78rem;
}

.vr3-atlas {
  min-width: 0;
  border: 1px solid rgba(191, 220, 210, 0.26);
  background: #182125;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.22);
}

.vr3-atlas-tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-bottom: 1px solid rgba(191, 220, 210, 0.22);
}

.vr3-atlas-tabs button {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 10px;
  border: 0;
  border-right: 1px solid rgba(191, 220, 210, 0.16);
  background: transparent;
  color: #c6d0ce;
  cursor: pointer;
  font-size: 0.83rem;
  font-weight: 650;
}

.vr3-atlas-tabs button:last-child {
  border-right: 0;
}

.vr3-atlas-tabs button span {
  color: var(--vr3-amber);
  font-family: "IBM Plex Mono", Consolas, monospace;
  font-size: 0.65rem;
}

.vr3-atlas-tabs button:hover,
.vr3-atlas-tabs button[aria-selected="true"] {
  background: var(--vr3-celadon);
  color: var(--vr3-graphite);
}

.vr3-atlas-tabs button[aria-selected="true"] span {
  color: #725126;
}

.vr3-atlas-panels {
  min-height: 470px;
}

.vr3-atlas-panel {
  min-height: 470px;
  padding: clamp(30px, 5vw, 58px);
}

.vr3-js .vr3-atlas-panel[data-active="false"] {
  display: none;
}

.vr3-atlas-code {
  margin: 30px 0 0;
  color: var(--vr3-amber);
  font-family: "IBM Plex Mono", Consolas, monospace;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.vr3-atlas-panel h3 {
  max-width: 21ch;
  margin: 14px 0 0;
  font-size: clamp(1.85rem, 3vw, 2.7rem);
  font-weight: 550;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.vr3-atlas-panel > p:not(.vr3-atlas-code) {
  max-width: 62ch;
  margin: 22px 0 0;
  color: #c3cecb;
}

.vr3-atlas-panel dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 34px 0 0;
  background: rgba(191, 220, 210, 0.16);
}

.vr3-atlas-panel dl div {
  padding: 20px;
  background: #182125;
}

.vr3-atlas-panel dt {
  color: var(--vr3-celadon);
  font-family: "IBM Plex Mono", Consolas, monospace;
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.vr3-atlas-panel dd {
  margin: 9px 0 0;
  color: #d4dcda;
  font-size: 0.88rem;
  line-height: 1.55;
}

.vr3-atlas-map {
  position: relative;
  height: 38px;
  border-top: 1px solid rgba(191, 220, 210, 0.25);
}

.vr3-atlas-map::before {
  content: "";
  position: absolute;
  top: -1px;
  right: 6%;
  left: 4%;
  height: 1px;
  background: var(--vr3-celadon);
}

.vr3-atlas-map span {
  position: absolute;
  top: -5px;
  width: 9px;
  height: 9px;
  border: 2px solid #182125;
  background: var(--vr3-amber);
  box-shadow: 0 0 0 1px rgba(216, 164, 95, 0.55);
}

.vr3-atlas-map span:nth-child(1) { left: 4%; }
.vr3-atlas-map span:nth-child(2) { left: 34%; }
.vr3-atlas-map span:nth-child(3) { left: 66%; }
.vr3-atlas-map span:nth-child(4) { right: 6%; }
.vr3-atlas-map--move span:nth-child(2),
.vr3-atlas-map--recover span:nth-child(3),
.vr3-atlas-map--see span:nth-child(4) {
  width: 13px;
  height: 13px;
  top: -7px;
  background: var(--vr3-celadon);
}

.vr3-atlas-status {
  margin: 0;
  padding: 13px 18px;
  border-top: 1px solid rgba(191, 220, 210, 0.18);
  color: #aebbb8;
  font-family: "IBM Plex Mono", Consolas, monospace;
  font-size: 0.65rem;
}

.vr3-brief-panel {
  border-top: 3px solid var(--vr3-celadon);
}

.vr3-brief-intro {
  margin-bottom: 22px;
}

.vr3-brief {
  margin: 0;
  border-top: 1px solid var(--vr3-dark-border);
}

.vr3-brief div {
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr);
  gap: 16px;
  padding: 13px 0;
  border-bottom: 1px solid var(--vr3-dark-border);
}

.vr3-brief dt {
  color: var(--vr3-amber);
  font-family: "IBM Plex Mono", Consolas, monospace;
  font-size: 0.64rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.vr3-brief dd {
  margin: 0;
  color: var(--vr3-porcelain);
  font-size: 0.86rem;
  font-weight: 600;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.vr3-brief-status {
  min-height: 1.4em;
  margin: 14px 0 0;
  color: var(--vr3-celadon) !important;
  font-family: "IBM Plex Mono", Consolas, monospace;
  font-size: 0.66rem;
}

.vr3-brief-privacy {
  margin-top: 18px;
  padding: 14px 16px;
  border-left: 2px solid var(--vr3-amber);
  background: rgba(255, 255, 255, 0.035);
  font-size: 0.75rem;
}

.vr3-brief-privacy strong {
  color: var(--vr3-porcelain);
}

@media (max-width: 1080px) {
  .vr3-hero-copy {
    grid-column: 1 / span 6;
  }

  .vr3-header-inner {
    gap: 20px;
  }

  .vr3-nav {
    gap: 17px;
  }

  .vr3-nav > a {
    font-size: 0.78rem;
  }

  .vr3-directory-row {
    grid-template-columns: 54px minmax(0, 1fr);
  }

  .vr3-directory-row ul {
    grid-column: 2;
  }

  .vr3-signal-plate {
    grid-column: 7 / -1;
  }

  .vr3-atlas-shell {
    grid-template-columns: minmax(210px, 0.65fr) minmax(0, 1.5fr);
    gap: 42px;
  }
}

@media (max-width: 920px) {
  body.vr3-menu-open {
    overflow: hidden;
  }

  .vr3-container {
    width: min(calc(100% - 56px), var(--vr3-container));
  }

  .vr3-header-inner {
    min-height: 76px;
    flex-wrap: wrap;
    padding-block: 10px;
  }

  .vr3-menu-toggle {
    display: none;
  }

  .vr3-js .vr3-menu-toggle {
    display: flex;
  }

  .vr3-nav {
    width: 100%;
    margin: 0;
    padding: 10px 0 18px;
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .vr3-js .vr3-nav {
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .vr3-js .vr3-nav[data-open="true"] {
    display: flex;
  }

  .vr3-js .vr3-nav > a {
    min-height: 48px;
    display: flex;
    align-items: center;
    padding: 10px 4px;
    border-bottom: 1px solid var(--vr3-dark-border);
    font-size: 0.95rem;
  }

  .vr3-js .vr3-nav > a::after {
    display: none;
  }

  .vr3-js .vr3-nav-cta {
    justify-content: center;
    margin-top: 12px;
    padding-inline: 16px !important;
    border: 0 !important;
  }

  .vr3-hero-grid {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-block: 68px 56px;
  }

  .vr3-hero-copy,
  .vr3-hero-aside,
  .vr3-signal-plate {
    grid-column: 1;
  }

  .vr3-hero-aside {
    min-height: 0;
    margin-top: 30px;
  }

  .vr3-signal-plate {
    width: min(100%, 720px);
    min-height: 0;
    aspect-ratio: 3 / 2;
    margin-top: 34px;
  }

  .vr3-atlas-shell {
    grid-template-columns: 1fr;
  }

  .vr3-atlas-intro {
    position: static;
  }

  .vr3-atlas-intro h2 {
    max-width: none;
  }

  .vr3-section {
    padding-block: 82px;
  }

  .vr3-section-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .vr3-section-label,
  .vr3-section-content {
    grid-column: 1;
  }

  .vr3-section-label--sticky,
  .vr3-article-meta,
  .vr3-context-panel {
    position: static;
  }

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

  .vr3-fit-factors {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .vr3-article-layout {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .vr3-article-meta dl {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .vr3-article-meta div {
    padding-right: 20px;
  }

  .vr3-contact-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .vr3-container {
    width: min(calc(100% - 40px), var(--vr3-container));
  }

  .vr3-brand {
    gap: 8px;
    min-height: 30px;
    padding-left: 38px;
  }

  .vr3-brand::before {
    width: 28px;
    height: 28px;
  }

  .vr3-brand::after {
    left: 6px;
    width: 16px;
    height: 19px;
  }

  .vr3-wordmark {
    font-size: 1.13rem;
  }

  .vr3-brand-meta {
    font-size: 0.59rem;
  }

  .vr3-hero h1,
  .vr3-page-hero h1 {
    max-width: none;
    font-size: clamp(2.35rem, 11vw, 2.7rem);
    letter-spacing: -0.038em;
  }

  .vr3-hero-lede,
  .vr3-page-lede {
    font-size: 1rem;
  }

  .vr3-actions {
    display: grid;
  }

  .vr3-button {
    width: 100%;
  }

  .vr3-signal-plate__mark {
    top: 16px;
    right: 16px;
    width: 46px;
    height: 52px;
  }

  .vr3-signal-plate__mark::after {
    inset: 10px 11px 9px;
  }

  .vr3-signal-plate__caption {
    gap: 5px;
    padding: 18px;
  }

  .vr3-signal-plate__caption strong {
    font-size: 0.98rem;
  }

  .vr3-signal-plate__caption > span:last-child {
    font-size: 0.58rem;
  }

  .vr3-coverage-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding-block: 12px;
  }

  .vr3-coverage span {
    min-height: 50px;
    padding: 10px 14px 10px 0;
  }

  .vr3-coverage span::after {
    display: none;
  }

  .vr3-section {
    padding-block: 68px;
  }

  .vr3-directory-row {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 14px;
    padding-block: 26px;
  }

  .vr3-directory-row ul {
    grid-column: 1 / -1;
    padding-left: 56px;
  }

  .vr3-quadrant,
  .vr3-principles,
  .vr3-responsibilities,
  .vr3-stages,
  .vr3-fit-factors {
    grid-template-columns: 1fr;
  }

  .vr3-quadrant article,
  .vr3-stage {
    min-height: 0;
    padding: 26px 22px;
  }

  .vr3-principle,
  .vr3-principle + .vr3-principle {
    padding: 26px 0;
    border-left: 0;
    border-bottom: 1px solid var(--vr3-border);
  }

  .vr3-reading-row {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
  }

  .vr3-reading-row a {
    grid-column: 2;
    text-align: left;
  }

  .vr3-cta-inner {
    grid-template-columns: 1fr;
  }

  .vr3-page-hero {
    padding-block: 70px 78px;
  }

  .vr3-resource-feature {
    grid-template-columns: 1fr;
  }

  .vr3-resource-feature__label,
  .vr3-resource-feature__copy {
    padding: 30px 24px;
  }

  .vr3-resource-feature__label {
    min-height: 160px;
    border-right: 0;
    border-bottom: 1px solid var(--vr3-dark-border);
  }

  .vr3-resource-feature__label::after {
    right: 24px;
    bottom: 28px;
    left: 24px;
  }

  .vr3-resource-feature__label::before {
    right: 24px;
    bottom: 24px;
  }

  .vr3-article-meta dl {
    grid-template-columns: 1fr;
  }

  .vr3-contact-form,
  .vr3-context-panel {
    padding: 28px 22px;
  }

  .vr3-atlas-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .vr3-atlas-tabs button:nth-child(2) {
    border-right: 0;
  }

  .vr3-atlas-tabs button:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(191, 220, 210, 0.16);
  }

  .vr3-atlas-panels,
  .vr3-atlas-panel {
    min-height: 0;
  }

  .vr3-atlas-panel {
    padding: 28px 22px;
  }

  .vr3-atlas-panel dl {
    grid-template-columns: 1fr;
  }

  .vr3-brief div {
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 12px;
  }

  .vr3-form-grid {
    grid-template-columns: 1fr;
  }

  .vr3-field--wide {
    grid-column: 1;
  }

  .vr3-form-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .vr3-footer-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .vr3-footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

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

/* Premium r2: Precision Instrument. Engineered depth without dashboard styling. */
.vector-home .vr3-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(191, 220, 210, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(191, 220, 210, 0.055) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(90deg, transparent 3%, rgba(0, 0, 0, 0.18) 40%, #000 76%, transparent 100%);
  pointer-events: none;
}

.vector-home .vr3-hero::after {
  content: "";
  position: absolute;
  top: 0;
  right: clamp(28px, 6vw, 96px);
  bottom: 0;
  width: 1px;
  background: linear-gradient(transparent, rgba(216, 164, 95, 0.42) 34%, rgba(191, 220, 210, 0.24) 74%, transparent);
  pointer-events: none;
}

.vector-home .vr3-hero-grid {
  min-height: 624px;
  padding-block: 88px 82px;
}

.vector-home .vr3-signal-plate {
  min-height: 492px;
  border-color: rgba(191, 220, 210, 0.5);
  box-shadow:
    inset 0 0 0 1px rgba(245, 244, 240, 0.05),
    4px 4px 0 rgba(216, 164, 95, 0.68),
    0 34px 82px rgba(0, 0, 0, 0.3);
}

.vector-home .vr3-signal-plate__mark {
  border-color: rgba(191, 220, 210, 0.62);
  background: rgba(19, 28, 31, 0.92);
  box-shadow:
    inset 0 0 0 1px rgba(245, 244, 240, 0.04),
    3px 3px 0 rgba(216, 164, 95, 0.52);
  backdrop-filter: none;
}

.vr3-premium-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  max-width: 64ch;
  margin: 25px 0 0;
  padding-top: 18px;
  border-top: 1px solid rgba(191, 220, 210, 0.2);
  color: #b9c7c4;
  font-family: "IBM Plex Mono", Consolas, monospace;
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.045em;
  line-height: 1.5;
  text-transform: uppercase;
}

.vr3-premium-proof span {
  position: relative;
  padding-left: 14px;
}

.vr3-premium-proof span::before {
  content: "";
  position: absolute;
  top: 0.5em;
  left: 0;
  width: 6px;
  height: 6px;
  border: 1px solid rgba(216, 164, 95, 0.72);
  background: rgba(216, 164, 95, 0.2);
}

.vector-home .vr3-coverage {
  border-top-color: rgba(191, 220, 210, 0.28);
  background: #151e22;
}

.vector-home .vr3-coverage-inner {
  position: relative;
}

.vector-home .vr3-coverage-inner::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 10px;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--vr3-celadon), rgba(191, 220, 210, 0.28));
}

.vector-home .vr3-coverage span {
  min-height: 82px;
  padding-bottom: 25px;
}

.vector-home .vr3-coverage span::before {
  content: "";
  position: absolute;
  z-index: 1;
  bottom: 6px;
  left: 0;
  width: 9px;
  height: 9px;
  border: 2px solid #151e22;
  background: var(--vr3-amber);
  box-shadow: 0 0 0 1px rgba(216, 164, 95, 0.62);
}

.vector-home .vr3-coverage span:not(:last-child)::after {
  display: none;
}

.vector-home .vr3-directory {
  position: relative;
  border-top: 0;
}

.vector-home .vr3-directory::before {
  content: "";
  position: absolute;
  top: 16px;
  bottom: 16px;
  left: 18px;
  width: 1px;
  background: linear-gradient(var(--vr3-celadon), rgba(122, 169, 154, 0.18));
}

.vector-home .vr3-directory-row {
  position: relative;
  border-top: 1px solid var(--vr3-border);
  border-bottom: 0;
}

.vector-home .vr3-directory-row:last-child {
  border-bottom: 1px solid var(--vr3-border);
}

.vector-home .vr3-directory-row > .vr3-index {
  position: relative;
  z-index: 1;
  width: 38px;
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: -4px;
  border: 1px solid var(--vr3-celadon-deep);
  background: var(--vr3-white);
  box-shadow: 3px 3px 0 rgba(216, 164, 95, 0.34);
}

.vr3-atlas-section {
  background:
    linear-gradient(90deg, rgba(191, 220, 210, 0.035) 1px, transparent 1px) 0 0 / 64px 64px,
    #12191d;
}

.vector-home .vr3-atlas {
  border: 0;
  border-top: 2px solid var(--vr3-celadon);
  border-bottom: 1px solid rgba(191, 220, 210, 0.24);
  background: transparent;
  box-shadow: 4px 0 0 rgba(216, 164, 95, 0.5);
}

.vector-home .vr3-atlas-tabs {
  border-right: 1px solid rgba(191, 220, 210, 0.17);
  border-bottom-color: rgba(191, 220, 210, 0.24);
  border-left: 1px solid rgba(191, 220, 210, 0.17);
  background: rgba(255, 255, 255, 0.012);
}

.vector-home .vr3-atlas-tabs button {
  position: relative;
  justify-content: flex-start;
  min-height: 68px;
  padding-inline: 18px;
  border-right-color: rgba(191, 220, 210, 0.12);
  color: #c7d1cf;
}

.vector-home .vr3-atlas-tabs button:hover {
  background: rgba(191, 220, 210, 0.055);
  color: var(--vr3-porcelain);
}

.vector-home .vr3-atlas-tabs button[aria-selected="true"] {
  background: rgba(191, 220, 210, 0.075);
  color: var(--vr3-porcelain);
  box-shadow: inset 0 -3px 0 var(--vr3-celadon);
}

.vector-home .vr3-atlas-tabs button[aria-selected="true"] span {
  color: var(--vr3-amber);
}

.vector-home .vr3-atlas-panels {
  border-right: 1px solid rgba(191, 220, 210, 0.17);
  border-left: 1px solid rgba(191, 220, 210, 0.17);
  background: rgba(255, 255, 255, 0.014);
}

.vector-home .vr3-atlas-panel dl {
  gap: 0;
  border-top: 1px solid rgba(191, 220, 210, 0.2);
  border-bottom: 1px solid rgba(191, 220, 210, 0.2);
  background: transparent;
}

.vector-home .vr3-atlas-panel dl div {
  padding: 20px 24px 20px 0;
  background: transparent;
}

.vector-home .vr3-atlas-panel dl div + div {
  padding-right: 0;
  padding-left: 24px;
  border-left: 1px solid rgba(191, 220, 210, 0.16);
}

.vector-home .vr3-atlas-status {
  border-right: 1px solid rgba(191, 220, 210, 0.17);
  border-left: 1px solid rgba(191, 220, 210, 0.17);
  background: rgba(0, 0, 0, 0.08);
}

.vector-r3 .vr3-quadrant,
.vector-r3 .vr3-principles,
.vector-r3 .vr3-reading-index {
  position: relative;
  box-shadow: inset 0 3px 0 rgba(122, 169, 154, 0.55);
}

.vector-r3 .vr3-quadrant::before,
.vector-r3 .vr3-principles::before,
.vector-r3 .vr3-reading-index::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: min(18%, 150px);
  height: 3px;
  background: var(--vr3-amber);
  pointer-events: none;
}

.vector-r3 .vr3-quadrant article {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.34), transparent 48%);
}

.vector-r3 .vr3-cta {
  position: relative;
  border-top: 1px solid rgba(25, 33, 38, 0.25);
  border-bottom: 1px solid rgba(25, 33, 38, 0.24);
  background: linear-gradient(145deg, #cbe4dc 0%, var(--vr3-celadon) 48%, #a9cec2 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    inset 0 -4px 0 rgba(25, 33, 38, 0.12);
}

.vector-r3 .vr3-cta::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--vr3-amber) 0 18%, var(--vr3-graphite) 18% 19%, transparent 19% 100%);
}

.vector-r3 .vr3-button--primary,
.vector-r3 .vr3-nav-cta {
  box-shadow: 3px 3px 0 rgba(216, 164, 95, 0.42);
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.vector-r3 .vr3-button--primary:hover,
.vector-r3 .vr3-nav-cta:hover {
  transform: translate(-1px, -1px);
  box-shadow: 4px 4px 0 rgba(216, 164, 95, 0.5);
}

.vector-page {
  --vr3-route-line-width: min(37vw, 470px);
  --vr3-route-line-right: -4vw;
  --vr3-route-line-bottom: 38px;
  --vr3-route-node-right: min(9vw, 118px);
  --vr3-route-groove-x: 84%;
}

.vector-services {
  --vr3-route-line-width: min(42vw, 520px);
  --vr3-route-node-right: min(14vw, 170px);
  --vr3-route-groove-x: 77%;
}

.vector-who-we-help {
  --vr3-route-line-width: min(31vw, 390px);
  --vr3-route-line-right: 3vw;
  --vr3-route-node-right: min(7vw, 90px);
  --vr3-route-groove-x: 88%;
}

.vector-how-it-works {
  --vr3-route-line-width: min(46vw, 570px);
  --vr3-route-line-bottom: 52px;
  --vr3-route-node-right: min(24vw, 300px);
  --vr3-route-groove-x: 70%;
}

.vector-about {
  --vr3-route-line-width: min(35vw, 430px);
  --vr3-route-line-right: 7vw;
  --vr3-route-node-right: min(13vw, 160px);
  --vr3-route-groove-x: 81%;
}

.vector-resources {
  --vr3-route-line-width: min(48vw, 610px);
  --vr3-route-line-bottom: 46px;
  --vr3-route-node-right: min(31vw, 390px);
  --vr3-route-groove-x: 65%;
}

.vector-contact {
  --vr3-route-line-width: min(29vw, 360px);
  --vr3-route-line-right: 10vw;
  --vr3-route-node-right: min(12vw, 145px);
  --vr3-route-groove-x: 90%;
}

.vector-article-denials {
  --vr3-route-line-width: min(39vw, 490px);
  --vr3-route-node-right: min(20vw, 250px);
  --vr3-route-groove-x: 74%;
}

.vector-article-report {
  --vr3-route-line-width: min(27vw, 340px);
  --vr3-route-line-right: 9vw;
  --vr3-route-node-right: min(10vw, 125px);
  --vr3-route-groove-x: 87%;
}

.vector-article-outsourcing {
  --vr3-route-line-width: min(45vw, 560px);
  --vr3-route-line-bottom: 50px;
  --vr3-route-node-right: min(29vw, 360px);
  --vr3-route-groove-x: 68%;
}

.vector-r3.vector-page .vr3-page-hero {
  background-image:
    linear-gradient(90deg, transparent, rgba(122, 169, 154, 0.34), transparent),
    linear-gradient(rgba(216, 164, 95, 0.28), rgba(216, 164, 95, 0));
  background-repeat: no-repeat;
  background-position:
    var(--vr3-route-groove-x) 30px,
    var(--vr3-route-groove-x) 30px;
  background-size:
    clamp(150px, 22vw, 330px) 1px,
    1px 70px;
}

.vector-r3.vector-page .vr3-page-hero::after {
  right: var(--vr3-route-line-right);
  bottom: var(--vr3-route-line-bottom);
  width: var(--vr3-route-line-width);
  background: linear-gradient(90deg, rgba(216, 164, 95, 0), var(--vr3-amber) 18%, var(--vr3-celadon-deep));
}

.vector-r3.vector-page .vr3-page-hero::before {
  right: var(--vr3-route-node-right);
  bottom: calc(var(--vr3-route-line-bottom) - 4px);
  border: 2px solid var(--vr3-porcelain);
  background: var(--vr3-amber);
  box-shadow: 0 0 0 1px rgba(216, 164, 95, 0.58);
}

.vector-r3.vector-page .vr3-page-hero--dark::before {
  border-color: var(--vr3-graphite);
}

@media (min-width: 1101px) {
  .vector-home .vr3-hero-copy {
    grid-column: 1 / span 6;
    padding-right: 10px;
  }

  .vector-home .vr3-signal-plate {
    grid-column: 7 / -1;
  }
}

@media (max-width: 920px) {
  .vector-home .vr3-hero-grid {
    min-height: auto;
    padding-block: 72px 62px;
  }

  .vector-home .vr3-signal-plate {
    min-height: 0;
  }

  .vr3-premium-proof {
    max-width: 56ch;
  }

  .vector-r3.vector-page .vr3-page-hero {
    --vr3-route-line-width: min(48vw, 390px);
    --vr3-route-line-right: -8vw;
    --vr3-route-node-right: 14vw;
    --vr3-route-groove-x: 86%;
  }
}

@media (max-width: 680px) {
  .vector-home .vr3-hero::before {
    background-size: 38px 38px;
    mask-image: linear-gradient(180deg, transparent, #000 42%, transparent 100%);
  }

  .vector-home .vr3-hero-grid {
    padding-block: 58px 52px;
  }

  .vector-home .vr3-signal-plate {
    box-shadow:
      inset 0 0 0 1px rgba(245, 244, 240, 0.05),
      2px 2px 0 rgba(216, 164, 95, 0.55),
      0 20px 44px rgba(0, 0, 0, 0.24);
  }

  .vr3-premium-proof {
    gap: 10px 16px;
    margin-top: 22px;
    padding-top: 16px;
    font-size: 0.6rem;
    line-height: 1.7;
  }

  .vector-home .vr3-coverage-inner::before {
    display: none;
  }

  .vector-home .vr3-coverage span {
    min-height: 58px;
    padding: 10px 10px 10px 18px;
    border-left: 1px solid rgba(191, 220, 210, 0.24);
  }

  .vector-home .vr3-coverage span::before {
    top: calc(50% - 4px);
    bottom: auto;
    left: -5px;
  }

  .vector-home .vr3-directory::before {
    left: 15px;
  }

  .vector-home .vr3-directory-row > .vr3-index {
    width: 32px;
    min-height: 30px;
    box-shadow: 2px 2px 0 rgba(216, 164, 95, 0.32);
  }

  .vector-home .vr3-atlas {
    box-shadow: 2px 0 0 rgba(216, 164, 95, 0.44);
  }

  .vector-home .vr3-atlas-panel dl div,
  .vector-home .vr3-atlas-panel dl div + div {
    padding: 17px 0;
    border-left: 0;
  }

  .vector-home .vr3-atlas-panel dl div + div {
    border-top: 1px solid rgba(191, 220, 210, 0.16);
  }

  .vector-r3 .vr3-button--primary:hover,
  .vector-r3 .vr3-nav-cta:hover {
    transform: none;
  }

  .vector-r3.vector-page .vr3-page-hero {
    --vr3-route-line-width: min(62vw, 260px);
    --vr3-route-line-right: -12vw;
    --vr3-route-node-right: 16vw;
    --vr3-route-line-bottom: 34px;
    --vr3-route-groove-x: 92%;
    background-image: none;
  }
}
