:root {
  --bg-top: #9fa8b0;
  --bg-bottom: #9fa8b0;
  --panel: #f7f7f5;
  --panel-soft: #eceef0;
  --ink: #17191b;
  --muted: #5f6468;
  --line: #c8cdd1;
  --line-strong: #aeb5ba;
  --accent: #262a2e;
  --accent-2: #737a80;
  --rise: #8d959b;
  --fall: #5a4d46;
  --gold: #d8bd6f;
  --gold-text: #cfa13a;
  --shadow: 0 22px 60px rgba(7, 8, 9, 0.14);
}

* {
  box-sizing: border-box;
}

html,
body,
a,
button {
  -webkit-tap-highlight-color: transparent;
}

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  overflow-x: clip;
  background: var(--bg-bottom);
  color: var(--ink);
  font-family: "Avenir Next", "Segoe UI", Arial, sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: -5vh -5vw;
  z-index: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 12px 18px, rgba(47, 53, 45, 0.11) 0 1px, transparent 1.45px),
    radial-gradient(circle at 54px 72px, rgba(247, 247, 245, 0.18) 0 1px, transparent 1.4px),
    url("assets/vanquish-background-pattern.svg?v=actual-v-2");
  background-position: 0 0, 18px 26px, center 82px;
  background-repeat: repeat, repeat, repeat-y;
  background-size: 96px 96px, 128px 128px, 100vw auto;
  opacity: 0.22;
  mix-blend-mode: normal;
  -webkit-mask-image:
    linear-gradient(to right, #000 0, #000 100%),
    linear-gradient(to bottom, transparent 0, transparent 160px, #000 260px, #000 calc(100% - 96px), transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(to right, #000 0, #000 100%),
    linear-gradient(to bottom, transparent 0, transparent 160px, #000 260px, #000 calc(100% - 96px), transparent 100%);
  mask-composite: intersect;
  transform: translate3d(-14px, -8px, 0);
  will-change: transform;
  animation: watermark-sway 38s cubic-bezier(0.45, 0, 0.55, 1) infinite;
}

a {
  color: inherit;
}

.top-anchor {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 1px;
}

.site-header {
  position: sticky;
  top: 16px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: calc(100% - 44px);
  max-width: 1196px;
  margin: 16px auto 0;
  padding: 12px 22px;
  background: linear-gradient(135deg, rgba(6, 7, 8, 0.98), rgba(20, 22, 23, 0.97));
  border: 2px solid #d8bd6f;
  border-radius: 14px;
  box-shadow:
    inset 0 0 0 1px rgba(245, 247, 248, 0.1),
    0 14px 34px rgba(7, 8, 9, 0.32);
  backdrop-filter: blur(18px);
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 310px;
}

.brand {
  --brand-travel-x: 0px;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  min-width: 62px;
  height: 58px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
  transform-origin: center;
  will-change: transform;
}

.brand img {
  position: relative;
  z-index: 1;
  display: block;
  width: 56px;
  height: 60px;
  object-fit: contain;
  border-radius: 0;
}

.brand.is-preintro {
  opacity: 0;
}

.brand.is-intro {
  animation: brand-smooth-rebound 4200ms both;
}

.brand-name {
  display: inline-block;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-6px);
  transition:
    opacity 1200ms ease,
    visibility 0s linear 1200ms,
    transform 1200ms cubic-bezier(0.22, 1, 0.36, 1);
}

.brand-wordmark {
  width: clamp(122px, 14vw, 158px);
  height: clamp(37px, 4.2vw, 46px);
  aspect-ratio: 686 / 209;
  background: url("assets/vanquish-nav-wordmark-white.png?v=centered-logo-1") center / contain no-repeat;
  max-height: 46px;
  filter: drop-shadow(0 1px 0 rgba(0, 0, 0, 0.16));
}

.brand-lockup.is-name-visible .brand-name {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  transition-delay: 0s;
}

html.is-loading .brand-name,
html.is-loading .brand-lockup.is-name-visible .brand-name {
  opacity: 0 !important;
  visibility: hidden !important;
}

html.is-loading .site-header a,
html.is-loading .main-nav a {
  border-color: transparent !important;
  box-shadow: none !important;
  outline: 0 !important;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 4px;
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.main-nav a {
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  position: relative;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 8px 10px;
  color: rgba(245, 247, 248, 0.88);
  text-decoration: none;
  transform: translateY(0);
  transition:
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
  will-change: transform;
}

.brand:focus,
.main-nav a:focus {
  outline: none;
}

.brand:focus-visible,
.main-nav a:focus-visible {
  outline: 2px solid rgba(213, 218, 222, 0.76);
  outline-offset: 3px;
}

.main-nav a.is-active {
  border-color: rgba(213, 218, 222, 0.88);
  background: #d7dce0;
  color: #070809;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.24);
}

.main-nav a:focus-visible {
  transform: translateY(-1px);
}

@media (hover: hover) and (pointer: fine) {
  .main-nav a:hover {
    border-color: rgba(213, 218, 222, 0.88);
    background: #d7dce0;
    color: #070809;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.24);
    transform: translateY(-1px);
  }

  .mobile-section-menu a:hover {
    border-color: rgba(213, 218, 222, 0.86);
    background: #d7dce0;
    color: #070809;
    outline: none;
  }
}

.mobile-menu-toggle,
.mobile-menu-backdrop,
.mobile-section-menu {
  display: none;
}

main {
  position: relative;
  z-index: 1;
  max-width: 1240px;
  margin: 0 auto;
}

.section-band,
.section-shell {
  margin: 18px 22px;
  scroll-margin-top: 118px;
}

.section-band {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(247, 247, 245, 0.97), rgba(231, 233, 235, 0.94));
  box-shadow: var(--shadow);
}

.section-shell {
  padding: 48px 0;
}

.hero {
  min-height: 640px;
  display: grid;
  grid-template-columns: minmax(360px, 0.82fr) minmax(0, 1.18fr);
  gap: 36px;
  align-items: center;
  padding: 48px;
}

.hero-brand-stack {
  display: grid;
  gap: 10px;
}

.hero-brand-panel {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(247, 247, 245, 0.97), rgba(236, 238, 240, 0.96)),
    var(--panel);
  box-shadow: 0 18px 44px rgba(7, 8, 9, 0.11);
}

.hero-logo-frame {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 68%;
  margin: 34px auto;
  background: transparent;
}

.hero-logo-frame img {
  display: block;
  width: 100%;
  height: auto;
  min-height: 0;
  object-fit: contain;
  border: 1px solid #111;
  mix-blend-mode: multiply;
}

.hero-logo-frame--inverse {
  width: 82%;
  min-height: 250px;
  margin: 28px auto;
}

.hero-logo-frame--inverse img {
  width: 100%;
  max-height: 140px;
  border: 0;
  border-radius: 8px;
  box-shadow: 0 16px 34px rgba(7, 8, 9, 0.16);
  mix-blend-mode: normal;
}

.hero-logo-frame--placeholder {
  width: 82%;
  min-height: 250px;
  margin: 28px auto;
  border: 1px dashed rgba(174, 181, 186, 0.72);
  border-radius: 10px;
  background: rgba(236, 238, 240, 0.54);
}

.hero-logo-frame--image {
  width: 82%;
  min-height: 250px;
  margin: 28px auto;
  overflow: hidden;
  border: 1px solid rgba(174, 181, 186, 0.62);
  border-radius: 10px;
  background: #070809;
  box-shadow: 0 16px 34px rgba(7, 8, 9, 0.14);
}

.hero-logo-frame--image img {
  width: 100%;
  height: 250px;
  min-height: 0;
  border: 0;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.9) contrast(1.02);
  mix-blend-mode: normal;
}

.hero-brand-caption {
  display: grid;
  gap: 8px;
  padding: 22px;
  border-top: 1px solid var(--line);
}

.hero-brand-caption span {
  color: var(--accent);
  font-size: 0.83rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-brand-caption strong {
  color: #17191b;
  font-family: "Palatino Linotype", "Book Antiqua", Georgia, serif;
  font-size: 1.35rem;
  line-height: 1.2;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 0.88rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: "Palatino Linotype", "Book Antiqua", Georgia, serif;
  color: #17191b;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(2.25rem, 3.9vw, 4.05rem);
  line-height: 1.04;
}

.hero-copy h1 {
  position: relative;
  max-width: 720px;
  min-height: 3.35em;
  margin-bottom: 16px;
  font-size: clamp(2rem, 2.8vw, 3.05rem);
  line-height: 1.08;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(1.55rem, 2.8vw, 2.75rem);
  line-height: 1.08;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.05rem;
  color: #2f352d;
}

.hero-sub,
.lead {
  max-width: 660px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.65;
}

.hero-copy .hero-sub {
  max-width: 620px;
  font-size: 1.35rem;
  line-height: 1.55;
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 2200ms ease,
    transform 2200ms cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-copy .hero-sub.is-reveal-pending {
  opacity: 0 !important;
  transform: translateY(10px) !important;
}

.hero-copy h1.is-typing.is-cursor-finishing + .hero-sub,
.hero-copy h1.is-typing.is-complete + .hero-sub,
.hero-copy h1.is-complete + .hero-sub {
  opacity: 1;
  transform: translateY(0);
}

#process .lead {
  color: #5a604f;
  font-size: 1.18rem;
}

#process .process-layout {
  align-items: stretch;
}

.process-intro {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 24px;
  min-height: 100%;
}

.process-intro .lead {
  margin-bottom: 0;
}

.process-visual {
  flex: 0 0 auto;
  min-height: 0;
  aspect-ratio: 1170 / 780;
  margin-top: auto;
  overflow: hidden;
  border-radius: 10px;
  background: transparent;
  box-shadow: 0 16px 34px rgba(17, 22, 20, 0.14);
}

.process-visual img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
  object-position: center;
  opacity: 0.94;
  filter: saturate(0.88) contrast(1.04);
}

.type-measure {
  display: block;
  width: 100%;
  visibility: hidden;
}

.type-output {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  pointer-events: none;
}

.type-line {
  display: block;
  position: relative;
  height: 1.08em;
  line-height: inherit;
}

.type-placeholder {
  display: block;
  visibility: hidden;
  white-space: pre;
}

.type-live {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  height: 1.08em;
  line-height: inherit;
  white-space: pre;
}

.type-cursor {
  position: absolute;
  top: 0.13em;
  left: 0;
  display: block;
  width: 0.08em;
  height: 0.86em;
  margin-left: 0;
  background: var(--accent);
  animation: type-cursor-blink 880ms steps(2, start) infinite;
}

.is-cursor-finishing .type-cursor {
  opacity: 1;
  animation: type-cursor-final-clicks 1800ms linear forwards;
}

.is-complete .type-cursor {
  opacity: 0;
  animation: none;
}

@keyframes type-cursor-blink {
  50% {
    opacity: 0;
  }
}

@keyframes type-cursor-final-clicks {
  0%,
  16.66% {
    opacity: 1;
  }

  16.67%,
  33.33% {
    opacity: 0;
  }

  33.34%,
  50% {
    opacity: 1;
  }

  50.01%,
  66.66% {
    opacity: 0;
  }

  66.67%,
  83.33% {
    opacity: 1;
  }

  83.34%,
  100% {
    opacity: 0;
  }
}

@keyframes brand-smooth-rebound {
  0% {
    opacity: 0;
    transform: translate3d(var(--brand-travel-x), 0, 0) scale(0.94);
    filter: drop-shadow(0 2px 6px rgba(7, 8, 9, 0.08));
    animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
  }

  12% {
    opacity: 1;
    transform: translate3d(var(--brand-travel-x), 0, 0) scale(1.06);
    filter: drop-shadow(0 6px 12px rgba(7, 8, 9, 0.12));
    animation-timing-function: cubic-bezier(0.36, 0, 0.18, 1);
  }

  65% {
    transform: translate3d(0, 0, 0) scale(1.01);
    filter: drop-shadow(0 5px 10px rgba(7, 8, 9, 0.1));
    animation-timing-function: cubic-bezier(0.24, 0, 0.18, 1);
  }

  82% {
    transform: translate3d(0, 0, 0) scale(1.11);
    filter: drop-shadow(0 14px 22px rgba(7, 8, 9, 0.18));
    animation-timing-function: cubic-bezier(0.24, 0, 0.18, 1);
  }

  100% {
    transform: translate3d(0, 0, 0) scale(1);
    filter: none;
  }
}

@keyframes watermark-sway {
  0% {
    transform: translate3d(-14px, -8px, 0);
  }

  25% {
    transform: translate3d(-3px, 11px, 0);
  }

  50% {
    transform: translate3d(14px, 6px, 0);
  }

  75% {
    transform: translate3d(5px, -13px, 0);
  }

  100% {
    transform: translate3d(-14px, -8px, 0);
  }
}

@keyframes workflow-scan {
  0%,
  100% {
    transform: translateX(0);
    opacity: 0.45;
  }

  50% {
    transform: translateX(46px);
    opacity: 0.95;
  }
}

@keyframes workflow-fill {
  0%,
  100% {
    transform: scaleX(0.7);
    opacity: 0.65;
  }

  45%,
  65% {
    transform: scaleX(1);
    opacity: 1;
  }
}

@keyframes workflow-node-sequence {
  0%,
  48%,
  100% {
    border-color: rgba(174, 181, 186, 0.9);
    background: #f7f7f5;
    color: var(--accent);
    box-shadow:
      0 8px 22px rgba(7, 8, 9, 0.11),
      0 0 0 0 rgba(174, 181, 186, 0),
      inset 0 0 0 6px #eceef0;
    transform: translateY(-50%) scale(1);
  }

  6%,
  42% {
    border-color: rgba(176, 184, 190, 0.68);
    background: #f3f4f5;
    color: var(--accent);
    box-shadow:
      0 8px 22px rgba(7, 8, 9, 0.09),
      0 0 0 1px rgba(174, 181, 186, 0.04),
      inset 0 0 0 6px rgba(236, 238, 240, 0.72);
    transform: translateY(-50%) scale(1);
  }

  10%,
  38% {
    border-color: rgba(158, 166, 173, 0.76);
    background: #edf0f1;
    color: #202428;
    box-shadow:
      0 9px 23px rgba(7, 8, 9, 0.11),
      0 0 0 2px rgba(174, 181, 186, 0.055),
      inset 0 0 0 6px rgba(247, 247, 245, 0.76);
    transform: translateY(-50%) scale(1);
  }

  14%,
  34% {
    border-color: rgba(144, 153, 160, 0.88);
    background: #e6eaec;
    color: #17191b;
    box-shadow:
      0 10px 24px rgba(7, 8, 9, 0.13),
      0 0 0 3px rgba(174, 181, 186, 0.07),
      inset 0 0 0 6px rgba(247, 247, 245, 0.8);
    transform: translateY(-50%) scale(1);
  }

  18%,
  30% {
    border-color: rgba(127, 137, 145, 0.96);
    background: #dde2e5;
    color: #111315;
    box-shadow:
      0 11px 25px rgba(7, 8, 9, 0.16),
      0 0 0 4px rgba(174, 181, 186, 0.085),
      inset 0 0 0 6px rgba(247, 247, 245, 0.84);
    transform: translateY(-50%) scale(1);
  }

  22%,
  26% {
    border-color: rgba(111, 121, 130, 1);
    background: #d3d9dd;
    color: #070809;
    box-shadow:
      0 13px 27px rgba(7, 8, 9, 0.19),
      0 0 0 5px rgba(174, 181, 186, 0.1),
      inset 0 0 0 6px rgba(247, 247, 245, 0.88);
    transform: translateY(-50%) scale(1);
  }
}

@keyframes workflow-draw {
  0%,
  100% {
    stroke-dashoffset: 108;
  }

  50% {
    stroke-dashoffset: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  body::before,
  .brand,
  .type-cursor,
  .process-stack article::before,
  .scan-sweep,
  .allocation-bar,
  .risk-curve {
    animation: none;
  }
}

.investor-note {
  margin: 0;
  color: #6f6757;
  font-size: 0.9rem;
  font-style: italic;
  line-height: 1.4;
}

.hero-investor-note {
  padding: 0 14px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.btn {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 900;
  text-decoration: none;
}

.btn.primary {
  background: linear-gradient(135deg, #111315, #3c4247);
  color: #f7f7f5;
  box-shadow: 0 10px 24px rgba(7, 8, 9, 0.22);
}

.btn.secondary {
  border: 1px solid var(--line-strong);
  background: var(--panel);
  color: var(--ink);
}

.strategy-row span,
.support-list span,
.contact-card span {
  display: block;
  color: var(--muted);
  font-size: 0.87rem;
  line-height: 1.4;
}

.section-heading {
  max-width: 850px;
  margin-bottom: 26px;
}

.section-heading.wide {
  max-width: 1000px;
}

.capability-grid,
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.capability,
.team-grid article,
.process-stack article,
.contact-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(247, 247, 245, 0.88);
  box-shadow: 0 8px 24px rgba(7, 8, 9, 0.08);
}

.capability {
  min-height: 230px;
  padding: 22px;
}

.capability span {
  display: block;
  margin-bottom: 44px;
  color: var(--accent-2);
  font-size: 1.12rem;
  font-weight: 900;
}

.capability h3 {
  font-size: 1.22rem;
  line-height: 1.2;
}

.capability p,
.team-grid p,
.process-stack p {
  color: var(--muted);
  font-size: 1.15rem;
  line-height: 1.42;
}

.compact {
  padding: 34px;
}

.strategy-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(260px, 0.55fr);
  gap: 20px;
  align-items: stretch;
}

.strategy-table {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--panel);
}

.strategy-row {
  display: grid;
  grid-template-columns: 1.05fr 1.45fr 1.25fr;
  align-items: stretch;
  border-bottom: 1px solid var(--line);
}

.strategy-row:last-child {
  border-bottom: 0;
}

.strategy-row > * {
  margin: 0;
  padding: 20px;
  border-right: 1px solid var(--line);
}

.strategy-row > *:last-child {
  border-right: 0;
}

.strategy-row.header {
  background: #e2e5e7;
  color: #1b1e21;
  font-size: 0.94rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.strategy-row strong {
  display: block;
  font-size: 1.24rem;
  line-height: 1.14;
}

.strategy-row p {
  color: var(--muted);
  font-size: 1.14rem;
  line-height: 1.42;
}

.strategy-row span {
  margin-top: 8px;
  font-size: 1rem;
}

.strategy-visual {
  position: relative;
  align-self: stretch;
  justify-self: end;
  width: 100%;
  min-height: 0;
  overflow: hidden;
  border: 0;
  border-radius: 10px;
  background: #111315;
  box-shadow: 0 16px 34px rgba(17, 22, 20, 0.14);
}

.strategy-visual img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center;
}

.principle-grid,
.risk-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

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

.principle-grid article,
.risk-grid article {
  min-height: 210px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(247, 247, 245, 0.88);
  box-shadow: 0 8px 24px rgba(7, 8, 9, 0.08);
}

.principle-grid h3,
.risk-grid h3 {
  padding-top: 12px;
  border-top: 2px solid #aeb5ba;
  font-size: 1.22rem;
  line-height: 1.2;
}

.principle-grid p,
.risk-grid p {
  color: var(--muted);
  font-size: 1.15rem;
  line-height: 1.42;
}

#philosophy .principle-grid {
  gap: 18px;
  align-items: stretch;
}

#philosophy .principle-grid article {
  position: relative;
  display: flex;
  min-height: 245px;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: 34px 30px;
  border-color: rgba(174, 181, 186, 0.78);
  border-radius: 999px;
  background: rgba(247, 247, 245, 0.88);
  box-shadow: 0 8px 24px rgba(7, 8, 9, 0.08);
  text-align: center;
}

#philosophy .principle-grid article::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 50%;
  width: 46px;
  height: 4px;
  border-radius: 999px;
  background: rgba(174, 181, 186, 0.74);
  transform: translateX(-50%);
}

#philosophy .principle-grid article::after {
  content: none;
}

#philosophy .principle-grid h3 {
  padding-top: 0;
  border-top: 0;
  color: var(--accent);
}

#philosophy .principle-grid p {
  max-width: 28ch;
  margin-right: auto;
  margin-left: auto;
}

@media screen and (min-width: 721px) {
  #philosophy .principle-grid article {
    justify-content: flex-start;
  }

  #philosophy .principle-grid h3 {
    display: flex;
    min-height: 2.4em;
    align-items: center;
    justify-content: center;
  }

  #philosophy .principle-grid p {
    transform: none;
  }
}

.process-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 34px;
  align-items: start;
}

.process-stack {
  --workflow-axis-x: 28px;
  --workflow-card-offset: 68px;
  --workflow-node-half: 27px;
  --workflow-node-size: 54px;
  counter-reset: workflow-step;
  display: grid;
  position: relative;
  min-width: 0;
  align-self: end;
  grid-auto-rows: max-content;
  align-content: start;
  gap: 24px;
  margin-top: 0;
  padding-left: var(--workflow-card-offset);
}

.process-mobile-status {
  display: none;
}

.mobile-rail-shell {
  display: contents;
}

.mobile-rail-cue,
.mobile-rail-pagination {
  display: none;
}

.process-stack::before {
  content: none;
}

.process-stack::after {
  content: none;
}

.process-stack article {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 126px;
  gap: 18px;
  align-items: center;
  min-height: 142px;
  overflow: visible;
  padding: 22px 24px;
  background:
    radial-gradient(circle at 92% 18%, rgba(165, 173, 179, 0.2), transparent 30%),
    linear-gradient(135deg, rgba(247, 247, 245, 0.95), rgba(229, 232, 234, 0.88));
  isolation: isolate;
}

.process-stack article::before {
  counter-increment: workflow-step;
  content: "0" counter(workflow-step);
  position: absolute;
  top: 50%;
  left: calc(var(--workflow-axis-x) - var(--workflow-card-offset) - var(--workflow-node-half));
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: var(--workflow-node-size);
  height: var(--workflow-node-size);
  border: 1px solid rgba(174, 181, 186, 0.95);
  border-radius: 999px;
  background: #f7f7f5;
  color: var(--accent);
  font-size: 0.98rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  box-shadow:
    0 8px 22px rgba(7, 8, 9, 0.12),
    inset 0 0 0 6px #eceef0;
  animation: workflow-node-sequence 8.4s linear infinite;
  transform: translateY(-50%);
}

.process-stack article:not(:last-child)::after {
  content: none;
}

.process-stack article:nth-child(2)::before {
  animation-delay: 2.8s;
}

.process-stack article:nth-child(3)::before {
  animation-delay: 5.6s;
}

.process-stack span {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--accent);
  font-size: 0.98rem;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.workflow-copy {
  min-width: 0;
}

.workflow-copy p {
  margin: 0;
}

.workflow-graphic {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 126px;
  height: 88px;
  justify-self: end;
  border-left: 1px solid rgba(174, 181, 186, 0.48);
}

.workflow-graphic::before {
  content: none;
}

.workflow-icon {
  display: block;
  width: 112px;
  height: 82px;
}

.workflow-icon * {
  vector-effect: non-scaling-stroke;
}

.workflow-frame {
  fill: rgba(247, 247, 245, 0.62);
  stroke: rgba(174, 181, 186, 0.72);
  stroke-width: 1.2;
}

.workflow-grid {
  fill: none;
  stroke: rgba(23, 25, 27, 0.08);
  stroke-width: 1;
}

.signal-line,
.allocation-link,
.risk-curve,
.risk-band,
.risk-shield,
.risk-check {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.signal-line {
  stroke: #7f8991;
  stroke-width: 3;
}

.signal-dot,
.allocation-node {
  fill: #7f8991;
}

.scan-sweep {
  fill: none;
  stroke: rgba(127, 137, 145, 0.78);
  stroke-width: 2;
  filter: drop-shadow(0 0 5px rgba(127, 137, 145, 0.34));
  animation: workflow-scan 4.8s ease-in-out infinite;
}

.allocation-bar {
  fill: #7f8991;
  opacity: 0.85;
  transform-box: fill-box;
  transform-origin: left center;
  animation: workflow-fill 5.6s ease-in-out infinite;
}

.allocation-bar:nth-of-type(3) {
  animation-delay: 220ms;
}

.allocation-bar:nth-of-type(4) {
  animation-delay: 440ms;
}

.allocation-link {
  stroke: rgba(23, 25, 27, 0.34);
  stroke-width: 2;
}

.allocation-node {
  opacity: 0.78;
}

.risk-band {
  stroke: rgba(23, 25, 27, 0.18);
  stroke-width: 2;
}

.risk-curve {
  stroke: #7f8991;
  stroke-width: 3;
  stroke-dasharray: 108;
  animation: workflow-draw 6.4s ease-in-out infinite;
}

.risk-shield {
  fill: rgba(236, 238, 240, 0.66);
  stroke: rgba(23, 25, 27, 0.32);
  stroke-width: 1.4;
}

.risk-check {
  stroke: #7f8991;
  stroke-width: 3;
}

.infrastructure-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: stretch;
}

.image-panel {
  align-self: stretch;
  width: 100%;
  height: 100%;
  min-height: 0;
  overflow: hidden;
  border: 0;
  border-radius: 10px;
  background: #070809;
  box-shadow: 0 16px 34px rgba(7, 8, 9, 0.16);
}

.image-panel img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center;
  opacity: 0.94;
  filter: saturate(0.9) contrast(1.04);
}

.support-list {
  display: grid;
  gap: 10px;
}

.support-list div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(247, 247, 245, 0.88);
}

.support-list strong {
  display: block;
  margin-bottom: 4px;
  color: #17191b;
  font-size: 1.2rem;
  line-height: 1.22;
}

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

.team-grid article {
  position: relative;
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr) 95px;
  grid-template-areas:
    "photo heading qr"
    "summary summary summary"
    "actions actions socials";
  gap: 14px 18px;
  align-items: start;
  min-height: 0;
  padding: 18px;
}

.team-media {
  display: contents;
}

.team-photo {
  grid-area: photo;
  display: block;
  width: 132px;
  height: 116px;
  object-fit: cover;
  object-position: center top;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #e2e5e7;
}

.team-qr,
.bio-qr {
  appearance: none;
  -webkit-appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(174, 181, 186, 0.78);
  border-radius: 8px;
  background: #f7f7f5;
  box-shadow: 0 8px 18px rgba(7, 8, 9, 0.08);
  cursor: pointer;
}

.team-qr {
  grid-area: qr;
  justify-self: end;
  align-self: start;
  position: static;
  width: 95px;
  height: 95px;
  padding: 5px;
}

.team-qr img,
.bio-qr img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.team-copy {
  display: contents;
}

.team-heading {
  grid-area: heading;
  align-self: center;
  min-width: 0;
}

.team-copy h3 {
  color: var(--accent);
  font-size: 1.22rem;
  line-height: 1.2;
  margin-bottom: 7px;
}

.team-grid .role {
  color: #111614;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.28;
  margin: 0;
}

.role-cofounder {
  display: block;
}

.team-summary {
  grid-area: summary;
  margin: 0;
}

.team-actions {
  grid-area: actions;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  align-items: center;
  margin-top: 2px;
}

.bio-trigger {
  display: inline-flex;
  width: max-content;
  border: 0;
  background: transparent;
  color: var(--accent);
  cursor: pointer;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.2;
  padding: 0;
  text-decoration: underline;
  text-decoration-color: rgba(38, 42, 46, 0.42);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
  text-transform: uppercase;
}

.bio-trigger:hover,
.bio-trigger:focus-visible {
  color: #111315;
  text-decoration-color: #111315;
}

.team-social-links {
  grid-area: socials;
  position: static;
  justify-self: end;
  align-self: end;
  display: inline-flex;
  gap: 8px;
  align-items: center;
}

.linkedin-link,
.email-icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  line-height: 1;
  text-decoration: none;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.linkedin-link {
  border: 1px solid rgba(10, 102, 194, 0.3);
  border-radius: 8px;
  background: rgba(10, 102, 194, 0.08);
  color: #0a66c2;
}

.email-icon-link {
  border: 1px solid rgba(38, 42, 46, 0.28);
  border-radius: 8px;
  background: rgba(38, 42, 46, 0.07);
  color: var(--accent);
}

.linkedin-link:hover,
.linkedin-link:focus-visible {
  background: #0a66c2;
  border-color: #0a66c2;
  color: #f7f7f5;
  transform: translateY(-1px);
}

.email-icon-link:hover,
.email-icon-link:focus-visible {
  background: var(--accent);
  border-color: var(--accent);
  color: #f7f7f5;
  transform: translateY(-1px);
}

.linkedin-link svg {
  display: block;
  width: 17px;
  height: 17px;
  fill: currentColor;
}

.email-icon-link svg {
  display: block;
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.bio-popover[hidden] {
  display: none;
}

.popover-backdrop[hidden] {
  display: none;
}

.popover-backdrop {
  position: fixed;
  inset: 0;
  z-index: 79;
  background: rgba(7, 8, 9, 0.52);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
}

html.popover-layer-open,
html.popover-layer-open body {
  overflow: hidden;
}

html.popover-layer-open .mobile-menu-toggle,
html.popover-layer-open .mobile-rail-cue {
  opacity: 0;
  pointer-events: none;
}

.bio-popover {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 80;
  width: min(760px, calc(100vw - 36px));
  max-height: min(78vh, 720px);
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  background: rgba(247, 247, 245, 0.98);
  box-shadow: 0 28px 76px rgba(7, 8, 9, 0.24);
  padding: 22px;
  transform: translate(-50%, -50%);
}

.bio-popover-header {
  display: grid;
  grid-template-columns: 164px minmax(0, 1fr) 110px;
  gap: 18px;
  align-items: center;
  padding-right: 54px;
}

.bio-popover-header img {
  display: block;
  width: 164px;
  height: 148px;
  object-fit: cover;
  object-position: center top;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #e2e5e7;
}

.bio-popover-header .bio-qr img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain;
}

.bio-qr {
  width: 110px;
  height: 110px;
  padding: 4px;
  justify-self: end;
}

.card-popover-inner {
  display: grid;
  grid-template-columns: 188px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  min-height: 350px;
}

.card-popover-photo {
  display: block;
  width: 188px;
  height: 172px;
  object-fit: cover;
  object-position: center top;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: #dfe4e7;
}

.card-popover .eyebrow {
  margin-bottom: 8px;
}

.card-popover h4 {
  margin: 0 0 6px;
  color: var(--gold-text);
  font-family: "Palatino Linotype", "Book Antiqua", Georgia, serif;
  font-size: 1.85rem;
  line-height: 1.04;
}

.card-popover-brand {
  margin: 18px 0 12px;
  color: #111315;
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  line-height: 1.2;
  text-transform: uppercase;
}

.card-popover-summary {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.48;
}

.card-popover-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.card-popover-actions a {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 8px 10px;
  background: #070809;
  color: rgba(245, 247, 248, 0.92);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
  transform: translateY(0);
  transition:
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.card-popover-actions a:hover,
.card-popover-actions a:focus-visible {
  border-color: rgba(213, 218, 222, 0.88);
  background: #d7dce0;
  color: #070809;
  transform: translateY(-1px);
}

.bio-popover h4 {
  margin: 0 0 6px;
  color: var(--accent);
  font-family: "Palatino Linotype", "Book Antiqua", Georgia, serif;
  font-size: 1.6rem;
  line-height: 1.05;
}

.bio-popover .bio-title {
  margin: 0;
  color: #111614;
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.3;
  white-space: pre-line;
}

.bio-text {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.62;
}

.bio-close {
  position: absolute;
  top: 12px;
  right: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--panel-soft);
  color: var(--ink);
  cursor: pointer;
  font-size: 1.2rem;
  font-weight: 900;
  line-height: 1;
}

.bio-close:hover,
.bio-close:focus-visible {
  border-color: #aeb5ba;
  background: #eceef0;
  color: #111315;
}

.contact {
  display: grid;
  grid-template-columns: 1fr minmax(300px, 0.65fr);
  gap: 26px;
  align-items: center;
}

.contact-card {
  display: grid;
  gap: 6px;
  padding: 22px;
}

.contact-card a {
  color: #111315;
  font-size: 1.15rem;
  line-height: 1.25;
  font-weight: 900;
  text-decoration: none;
}

.support-list span,
.contact-card span {
  font-size: 1.09rem;
  line-height: 1.35;
}

.contact > div > p:not(.eyebrow) {
  font-size: 1.2rem;
  line-height: 1.5;
}

footer {
  position: relative;
  z-index: 1;
  max-width: 1240px;
  margin: 0 auto;
  padding: 8px 22px 34px;
  color: var(--ink);
  font-size: 0.84rem;
  line-height: 1.5;
}

footer > p {
  margin: 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  align-items: center;
  margin-top: 8px;
}

.disclosure-trigger {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  padding: 0;
  text-decoration: underline;
  text-decoration-color: rgba(23, 25, 27, 0.5);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition:
    color 180ms ease,
    text-decoration-color 180ms ease;
}

.disclosure-trigger:hover,
.disclosure-trigger:focus-visible {
  color: var(--ink);
  text-decoration-color: var(--ink);
}

.disclosure-trigger:focus-visible {
  border-radius: 2px;
  outline: 2px solid var(--line-strong);
  outline-offset: 3px;
}

.disclosure-dialog {
  position: fixed;
  inset: 0;
  width: min(880px, calc(100vw - 32px));
  max-width: none;
  max-height: min(82vh, 780px);
  margin: auto;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(247, 247, 245, 0.99), rgba(224, 229, 232, 0.98));
  color: var(--ink);
  box-shadow: 0 30px 90px rgba(7, 8, 9, 0.42);
}

.disclosure-dialog:not([open]) {
  display: none;
}

.disclosure-dialog::backdrop {
  background: rgba(7, 8, 9, 0.68);
  backdrop-filter: blur(3px);
}

.disclosure-dialog-header {
  position: relative;
  padding: 24px 68px 19px 28px;
  border-bottom: 1px solid var(--line);
  background: rgba(247, 247, 245, 0.86);
}

.disclosure-dialog-header h2 {
  margin: 0;
  color: var(--ink);
  font-family: "Palatino Linotype", "Book Antiqua", Georgia, serif;
  font-size: 2rem;
  line-height: 1.08;
}

.disclosure-dialog-body {
  max-height: calc(min(82vh, 780px) - 88px);
  padding: 22px 28px 30px;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-color: var(--line-strong) transparent;
  scrollbar-width: thin;
}

.disclosure-dialog-body::-webkit-scrollbar {
  width: 9px;
}

.disclosure-dialog-body::-webkit-scrollbar-track {
  background: transparent;
}

.disclosure-dialog-body::-webkit-scrollbar-thumb {
  border: 2px solid transparent;
  border-radius: 999px;
  background: var(--line-strong);
  background-clip: padding-box;
}

.disclosure-dialog-body p,
.disclosure-dialog-body address {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.62;
}

.disclosure-section {
  margin-top: 24px;
}

.disclosure-section h3 {
  margin: 0 0 9px;
  color: var(--gold-text);
  font-family: "Avenir Next", "Segoe UI", Arial, sans-serif;
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.3;
  text-transform: uppercase;
}

.disclosure-section address {
  font-style: normal;
}

.disclosure-close {
  top: 20px;
  right: 24px;
}

/* Local black/silver theme pass. Keep content and structure unchanged. */
body::before {
  background-image:
    radial-gradient(circle at 12px 18px, rgba(23, 25, 27, 0.12) 0 1px, transparent 1.45px),
    radial-gradient(circle at 54px 72px, rgba(247, 247, 245, 0.18) 0 1px, transparent 1.4px),
    url("assets/vanquish-background-pattern.svg?v=actual-v-2");
}

.section-band {
  background: linear-gradient(145deg, rgba(247, 247, 245, 0.97), rgba(231, 233, 235, 0.94));
}

.hero-brand-panel {
  background:
    linear-gradient(180deg, rgba(247, 247, 245, 0.97), rgba(236, 238, 240, 0.96)),
    var(--panel);
  box-shadow: 0 18px 44px rgba(7, 8, 9, 0.11);
}

.hero-brand-caption strong,
h1,
h2,
h3,
.support-list strong {
  color: #17191b;
}

.hero-brand-caption span,
.eyebrow,
.capability span,
.team-copy h3,
.bio-popover h4,
#philosophy .principle-grid h3,
.process-stack span {
  color: var(--accent);
}

.hero-sub,
.lead,
#process .lead,
.investor-note,
.strategy-row p,
.capability p,
.team-grid p,
.process-stack p,
.principle-grid p,
.risk-grid p,
.support-list span,
.contact-card span,
.bio-text {
  color: var(--muted);
}

.type-cursor {
  background: var(--accent);
}

.btn.primary {
  background: linear-gradient(135deg, #111315, #3c4247);
  color: #f7f7f5;
  box-shadow: 0 10px 24px rgba(7, 8, 9, 0.22);
}

.btn.secondary {
  background: var(--panel);
  color: var(--ink);
}

.capability,
.team-grid article,
.process-stack article,
.contact-card,
.principle-grid article,
.risk-grid article,
.support-list div {
  background: rgba(247, 247, 245, 0.88);
  box-shadow: 0 8px 24px rgba(7, 8, 9, 0.08);
}

.strategy-table {
  background: var(--panel);
}

.strategy-row.header {
  background: #e2e5e7;
  color: #1b1e21;
}

.principle-grid h3,
.risk-grid h3 {
  border-top-color: #aeb5ba;
}

#philosophy .principle-grid article {
  border-color: rgba(174, 181, 186, 0.78);
  background: rgba(247, 247, 245, 0.88);
  box-shadow: 0 8px 24px rgba(7, 8, 9, 0.08);
}

#philosophy .principle-grid article::before {
  background: rgba(174, 181, 186, 0.74);
}

.process-stack article {
  background:
    radial-gradient(circle at 92% 18%, rgba(165, 173, 179, 0.2), transparent 30%),
    linear-gradient(135deg, rgba(247, 247, 245, 0.95), rgba(229, 232, 234, 0.88));
}

.process-stack article::before {
  border-color: rgba(174, 181, 186, 0.95);
  background: #f7f7f5;
  color: var(--accent);
  box-shadow:
    0 8px 22px rgba(7, 8, 9, 0.12),
    inset 0 0 0 6px #eceef0;
}

@keyframes workflow-node-sequence {
  0%,
  48%,
  100% {
    border-color: rgba(174, 181, 186, 0.9);
    background: #f7f7f5;
    color: var(--accent);
    box-shadow:
      0 8px 22px rgba(7, 8, 9, 0.11),
      0 0 0 0 rgba(174, 181, 186, 0),
      inset 0 0 0 6px #eceef0;
    transform: translateY(-50%) scale(1);
  }

  6%,
  42% {
    border-color: rgba(176, 184, 190, 0.68);
    background: #f3f4f5;
    color: var(--accent);
    box-shadow:
      0 8px 22px rgba(7, 8, 9, 0.09),
      0 0 0 1px rgba(174, 181, 186, 0.04),
      inset 0 0 0 6px rgba(236, 238, 240, 0.72);
    transform: translateY(-50%) scale(1);
  }

  10%,
  38% {
    border-color: rgba(158, 166, 173, 0.76);
    background: #edf0f1;
    color: #202428;
    box-shadow:
      0 9px 23px rgba(7, 8, 9, 0.11),
      0 0 0 2px rgba(174, 181, 186, 0.055),
      inset 0 0 0 6px rgba(247, 247, 245, 0.76);
    transform: translateY(-50%) scale(1);
  }

  14%,
  34% {
    border-color: rgba(144, 153, 160, 0.88);
    background: #e6eaec;
    color: #17191b;
    box-shadow:
      0 10px 24px rgba(7, 8, 9, 0.13),
      0 0 0 3px rgba(174, 181, 186, 0.07),
      inset 0 0 0 6px rgba(247, 247, 245, 0.8);
    transform: translateY(-50%) scale(1);
  }

  18%,
  30% {
    border-color: rgba(127, 137, 145, 0.96);
    background: #dde2e5;
    color: #111315;
    box-shadow:
      0 11px 25px rgba(7, 8, 9, 0.16),
      0 0 0 4px rgba(174, 181, 186, 0.085),
      inset 0 0 0 6px rgba(247, 247, 245, 0.84);
    transform: translateY(-50%) scale(1);
  }

  22%,
  26% {
    border-color: rgba(111, 121, 130, 1);
    background: #d3d9dd;
    color: #070809;
    box-shadow:
      0 13px 27px rgba(7, 8, 9, 0.19),
      0 0 0 5px rgba(174, 181, 186, 0.1),
      inset 0 0 0 6px rgba(247, 247, 245, 0.88);
    transform: translateY(-50%) scale(1);
  }
}

.workflow-graphic {
  border-left-color: rgba(174, 181, 186, 0.48);
}

.workflow-frame {
  fill: rgba(247, 247, 245, 0.62);
  stroke: rgba(174, 181, 186, 0.72);
}

.workflow-grid {
  stroke: rgba(23, 25, 27, 0.08);
}

.signal-line,
.risk-curve,
.risk-check {
  stroke: #7f8991;
}

.signal-dot,
.allocation-node,
.allocation-bar {
  fill: #7f8991;
}

.scan-sweep {
  stroke: rgba(127, 137, 145, 0.78);
  filter: drop-shadow(0 0 5px rgba(127, 137, 145, 0.34));
}

.allocation-link {
  stroke: rgba(23, 25, 27, 0.34);
}

.risk-band {
  stroke: rgba(23, 25, 27, 0.18);
}

.risk-shield {
  fill: rgba(236, 238, 240, 0.66);
  stroke: rgba(23, 25, 27, 0.32);
}

.strategy-visual,
.image-panel {
  background: #070809;
}

.team-photo,
.bio-popover-header img {
  background: #e2e5e7;
}

#overview .capability span,
#overview .capability h3,
#philosophy .principle-grid h3,
#strategies .strategy-row.header,
#process .process-stack span,
#risk .risk-grid h3 {
  color: var(--gold-text);
}

.bio-trigger {
  color: var(--accent);
  text-decoration-color: rgba(38, 42, 46, 0.42);
}

.bio-trigger:hover,
.bio-trigger:focus-visible,
.contact-card a {
  color: #111315;
}

.bio-trigger:hover,
.bio-trigger:focus-visible {
  text-decoration-color: #111315;
}

.email-icon-link {
  border-color: rgba(38, 42, 46, 0.28);
  background: rgba(38, 42, 46, 0.07);
  color: var(--accent);
}

.email-icon-link:hover,
.email-icon-link:focus-visible {
  background: var(--accent);
  border-color: var(--accent);
  color: #f7f7f5;
}

.bio-popover {
  background: linear-gradient(145deg, rgba(243, 244, 245, 0.98), rgba(224, 229, 232, 0.96));
  box-shadow: 0 28px 76px rgba(7, 8, 9, 0.24);
}

.bio-close:hover,
.bio-close:focus-visible {
  border-color: #aeb5ba;
  background: #eceef0;
  color: #111315;
}

@media screen and (max-width: 980px) {
  .site-header {
    position: sticky;
    top: 14px;
    top: max(14px, env(safe-area-inset-top));
    z-index: 60;
    align-items: flex-start;
    flex-direction: column;
    width: calc(100% - 28px);
    margin-top: 14px;
  }

  .main-nav {
    justify-content: flex-start;
  }

  .hero,
  .process-layout,
  .infrastructure-grid,
  .strategy-layout,
  .contact {
    grid-template-columns: 1fr;
  }

  .image-panel,
  .process-visual {
    height: auto;
    aspect-ratio: 1400 / 661;
  }

  .strategy-visual {
    height: auto;
    aspect-ratio: 659 / 1066;
  }

  .process-intro {
    min-height: 0;
  }

  .process-stack {
    align-self: stretch;
    margin-top: 0;
  }

  .process-visual {
    flex: none;
    min-height: 0;
    aspect-ratio: 1170 / 780;
  }

  .hero {
    min-height: auto;
    padding: 30px;
  }

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

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

@media screen and (min-width: 721px) and (max-width: 1180px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    width: calc(100% - 28px);
    margin-top: 14px;
    gap: 12px;
    padding: 12px 16px;
  }

  .main-nav {
    width: 100%;
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 2px;
    font-size: 0.66rem;
    letter-spacing: 0.03em;
  }

  .main-nav a {
    min-height: 32px;
    justify-content: center;
    padding: 7px 6px;
    white-space: nowrap;
  }

  #process .process-layout {
    gap: 24px;
  }

  #process .process-stack {
    --workflow-card-offset: 58px;
    --workflow-node-half: 25px;
    --workflow-node-size: 50px;
    gap: 18px;
    padding-left: var(--workflow-card-offset);
  }

  #process .process-stack article {
    grid-template-columns: minmax(0, 1fr) 108px;
    gap: 14px;
    min-height: 134px;
    padding: 20px;
  }

  #process .workflow-graphic {
    width: 108px;
    height: 80px;
  }

  #process .workflow-icon {
    width: 100px;
    height: 76px;
  }
}

@media screen and (min-width: 981px) and (max-width: 1180px) and (orientation: portrait) {
  #process .process-layout {
    grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
    grid-template-rows: auto auto;
    align-items: stretch;
  }

  #process .process-intro {
    display: contents;
  }

  #process .process-intro .lead {
    grid-row: 1;
    grid-column: 1 / -1;
  }

  #process .process-visual {
    position: relative;
    grid-row: 2;
    grid-column: 1;
    align-self: stretch;
    width: 100%;
    height: auto;
    aspect-ratio: auto;
    margin: 0;
  }

  #process .process-visual img {
    position: absolute;
    inset: 0;
    object-fit: cover;
  }

  #process .process-stack {
    grid-row: 2;
    grid-column: 2;
    align-self: start;
  }
}

@media screen and (min-width: 721px) and (max-width: 980px) {
  .section-band,
  .section-shell {
    scroll-margin-top: 136px;
  }

  #philosophy .principle-grid > article:last-child {
    grid-column: 1 / -1;
    width: calc((100% - 18px) / 2);
    min-width: 0;
    justify-self: center;
  }

  #team .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 1fr;
    align-items: stretch;
  }

  #team .team-grid article {
    grid-template-columns: 84px minmax(0, 1fr) 60px;
    grid-template-rows: auto minmax(0, 1fr) auto;
    gap: 12px 10px;
    align-content: stretch;
    min-width: 0;
    height: 100%;
    padding: 16px;
  }

  #team .team-photo {
    width: 84px;
    height: 80px;
  }

  #team .team-qr {
    width: 60px;
    height: 60px;
    padding: 4px;
  }

  #team .team-heading {
    align-self: start;
    min-width: 0;
  }

  #team .team-copy h3 {
    margin-bottom: 6px;
    font-size: 1.08rem;
    line-height: 1.18;
  }

  #team .team-grid .role {
    font-size: 0.9rem;
    line-height: 1.24;
  }

  #team .team-summary {
    align-self: start;
    min-width: 0;
    font-size: 1rem;
    line-height: 1.46;
    overflow-wrap: break-word;
  }

  #team .team-actions,
  #team .team-social-links {
    align-self: end;
  }
}

@media screen and (max-width: 720px) {
  .site-header {
    position: sticky;
    top: 8px;
    top: max(8px, env(safe-area-inset-top));
    z-index: 60;
    align-items: center;
    justify-content: center;
    width: calc(100% - 28px);
    gap: 0;
    padding: 10px 16px;
    border-radius: 12px;
    transition:
      width 260ms ease,
      padding 260ms ease,
      border-radius 260ms ease,
      box-shadow 260ms ease;
  }

  .site-header.is-mobile-compact {
    width: calc(100% - 36px);
    padding: 6px 12px;
    border-radius: 11px;
    box-shadow:
      inset 0 0 0 1px rgba(245, 247, 248, 0.08),
      0 10px 24px rgba(7, 8, 9, 0.34);
  }

  .brand-lockup {
    width: 100%;
    min-width: 0;
    gap: 10px;
    justify-content: center;
    transition: gap 260ms ease;
  }

  .brand {
    width: 60px;
    min-width: 60px;
    height: 56px;
    transition:
      width 260ms ease,
      min-width 260ms ease,
      height 260ms ease;
  }

  .brand img {
    width: 54px;
    height: 58px;
    transition:
      width 260ms ease,
      height 260ms ease;
  }

  .brand-name {
    max-width: 250px;
    font-size: 1.02rem;
    line-height: 1.06;
    transition:
      width 260ms ease,
      height 260ms ease,
      opacity 1200ms ease,
      transform 1200ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  .site-header.is-mobile-compact .brand-lockup {
    gap: 8px;
  }

  .site-header.is-mobile-compact .brand {
    width: 46px;
    min-width: 46px;
    height: 43px;
  }

  .site-header.is-mobile-compact .brand img {
    width: 42px;
    height: 45px;
  }

  .site-header.is-mobile-compact .brand-wordmark {
    width: 112px;
    height: 34px;
  }

  .main-nav {
    display: none;
  }

  .mobile-menu-backdrop {
    position: fixed;
    inset: 0;
    z-index: 65;
    display: block;
    background: rgba(7, 8, 9, 0.46);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
    transition:
      opacity 220ms ease,
      visibility 0s linear 220ms;
  }

  .mobile-section-menu {
    position: fixed;
    right: 14px;
    bottom: calc(86px + env(safe-area-inset-bottom));
    z-index: 71;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(320px, calc(100vw - 28px));
    max-height: calc(100vh - 118px);
    max-height: calc(100dvh - 118px - env(safe-area-inset-bottom));
    gap: 7px;
    overflow-y: auto;
    padding: 12px;
    border: 2px solid #d8bd6f;
    border-radius: 12px;
    background: linear-gradient(145deg, rgba(6, 7, 8, 0.99), rgba(24, 26, 28, 0.99));
    box-shadow:
      inset 0 0 0 1px rgba(245, 247, 248, 0.08),
      0 20px 52px rgba(7, 8, 9, 0.38);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(12px) scale(0.98);
    transform-origin: bottom right;
    transition:
      opacity 220ms ease,
      visibility 0s linear 220ms,
      transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  .mobile-section-menu a {
    display: inline-flex;
    min-width: 0;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(213, 218, 222, 0.18);
    border-radius: 8px;
    padding: 10px 8px;
    color: rgba(245, 247, 248, 0.92);
    font-size: 0.73rem;
    font-weight: 900;
    letter-spacing: 0.04em;
    line-height: 1.15;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    transition:
      background 180ms ease,
      border-color 180ms ease,
      color 180ms ease;
  }

  .mobile-section-menu a:last-child {
    grid-column: 1 / -1;
  }

  .mobile-section-menu a:focus-visible,
  .mobile-section-menu a.is-active {
    border-color: rgba(213, 218, 222, 0.86);
    background: #d7dce0;
    color: #070809;
    outline: none;
  }

  .mobile-menu-toggle {
    position: fixed;
    right: 16px;
    bottom: calc(18px + env(safe-area-inset-bottom));
    z-index: 72;
    display: inline-flex;
    width: 54px;
    height: 54px;
    align-items: center;
    justify-content: center;
    border: 2px solid #d8bd6f;
    border-radius: 999px;
    padding: 0;
    background: linear-gradient(145deg, #08090a, #24272a);
    box-shadow:
      inset 0 0 0 1px rgba(245, 247, 248, 0.1),
      0 12px 28px rgba(7, 8, 9, 0.34);
    cursor: pointer;
  }

  .mobile-menu-toggle span {
    position: absolute;
    display: block;
    width: 21px;
    height: 2px;
    border-radius: 999px;
    background: #f2f3f3;
    transition:
      opacity 220ms ease,
      transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  .mobile-menu-toggle span:nth-child(1) {
    transform: translateY(-7px);
  }

  .mobile-menu-toggle span:nth-child(3) {
    transform: translateY(7px);
  }

  .mobile-menu-toggle:focus-visible {
    outline: 3px solid rgba(215, 220, 224, 0.88);
    outline-offset: 3px;
  }

  html.mobile-menu-open,
  html.mobile-menu-open body {
    overflow: hidden;
  }

  html.mobile-menu-open .mobile-menu-backdrop,
  html.mobile-menu-open .mobile-section-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition-delay: 0s;
  }

  html.mobile-menu-open .mobile-section-menu {
    transform: none;
  }

  html.mobile-menu-open .mobile-menu-toggle span:nth-child(1) {
    transform: rotate(45deg);
  }

  html.mobile-menu-open .mobile-menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  html.mobile-menu-open .mobile-menu-toggle span:nth-child(3) {
    transform: rotate(-45deg);
  }

  .section-band,
  .section-shell {
    margin: 0;
    scroll-margin-top: 72px;
    border-right: 0;
    border-left: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .section-shell {
    padding: 42px 20px;
    border-top: 1px solid rgba(174, 181, 186, 0.66);
    border-bottom: 1px solid rgba(174, 181, 186, 0.66);
    background: rgba(229, 232, 234, 0.96);
  }

  .hero,
  .compact {
    padding: 42px 20px;
  }

  .hero {
    padding-top: 24px;
    padding-bottom: 38px;
    gap: 28px;
  }

  .section-heading {
    margin-bottom: 20px;
  }

  main,
  main > section,
  .section-heading,
  .hero-copy,
  .process-intro,
  .workflow-copy,
  .strategy-row > *,
  .support-list > div,
  .team-heading,
  .team-summary,
  .contact-card {
    min-width: 0;
    max-width: 100%;
  }

  .hero-copy h1,
  .section-heading h2,
  .capability h3,
  .principle-grid h3,
  .risk-grid h3,
  .support-list strong,
  .process-stack span,
  .team-copy h3,
  .team-grid .role {
    max-width: 100%;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
  }

  .hero-copy .hero-sub,
  .lead,
  .capability p,
  .principle-grid p,
  .risk-grid p,
  .process-stack p,
  .support-list span,
  .team-summary,
  .contact-card a,
  .contact-card span,
  footer p {
    overflow-wrap: break-word;
    word-break: normal;
  }

  .contact-card a {
    overflow-wrap: anywhere;
  }

  #home .hero-logo-frame--image {
    width: 100%;
    min-height: 200px;
    margin: 0;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  #home .hero-logo-frame--image img {
    height: 200px;
  }

  .hero-logo-frame {
    margin: 24px auto;
  }

  .hero-logo-frame--inverse,
  .hero-logo-frame--placeholder,
  .hero-logo-frame--image {
    min-height: 180px;
  }

  .hero-logo-frame--image img {
    height: 180px;
  }

  .hero-logo-frame img {
    min-height: 0;
  }

  .hero-brand-caption {
    padding: 18px;
  }

  .hero-brand-caption strong {
    font-size: 1.25rem;
  }

  .hero-copy h1 {
    min-height: 3.4em;
    font-size: 2.08rem;
  }

  .hero-copy .hero-sub {
    font-size: 1.12rem;
    line-height: 1.55;
  }

  .process-stack {
    --workflow-node-size: 46px;
    align-self: auto;
    margin-top: 0;
    padding-left: 20px;
  }

  .process-stack article {
    grid-template-rows: auto auto minmax(112px, 1fr);
    grid-template-columns: 1fr;
    gap: 12px;
    min-height: 310px;
    overflow: hidden;
    padding: 20px;
    align-content: start;
  }

  .process-stack article::before {
    position: static;
    top: auto;
    left: auto;
    width: var(--workflow-node-size);
    height: var(--workflow-node-size);
    margin-bottom: 2px;
    justify-self: start;
    font-size: 1.05rem;
    box-shadow:
      0 6px 18px rgba(7, 8, 9, 0.1),
      inset 0 0 0 5px #eceef0;
    transform: none !important;
  }

  .process-stack .workflow-copy {
    grid-row: 2;
  }

  .workflow-graphic {
    grid-row: 3;
    width: 100%;
    height: 112px;
    align-self: end;
    justify-content: center;
    justify-self: stretch;
    border-top: 1px solid rgba(174, 181, 186, 0.34);
    border-left: 0;
  }

  .workflow-icon {
    width: 154px;
    height: 104px;
  }

  h1 {
    font-size: 2.25rem;
    line-height: 1.06;
  }

  h2 {
    font-size: 1.7rem;
  }

  .main-nav a {
    min-height: 34px;
    justify-content: center;
    padding: 7px 6px;
    text-align: center;
  }

  .capability-grid,
  .principle-grid,
  .risk-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .capability,
  .principle-grid article,
  .risk-grid article {
    min-height: 0;
    padding: 18px;
  }

  #philosophy .principle-grid article {
    min-height: 190px;
    padding: 30px 26px;
  }

  .capability span {
    margin-bottom: 18px;
  }

  .support-list div,
  .contact-card {
    padding: 18px;
  }

  .team-grid article {
    grid-template-columns: 104px minmax(0, 1fr) 76px;
    grid-template-areas:
      "photo heading qr"
      "summary summary summary"
      "actions actions socials";
    gap: 12px 14px;
    min-height: 0;
    padding: 16px;
  }

  .team-photo {
    width: 104px;
    height: 96px;
  }

  .team-qr {
    width: 76px;
    height: 76px;
  }

  .bio-popover {
    width: calc(100vw - 28px);
    max-height: 82vh;
    max-height: 82dvh;
    padding: 18px;
  }

  .bio-popover-header {
    grid-template-columns: 124px minmax(0, 1fr) 86px;
    gap: 14px;
  }

  .bio-popover-header img {
    width: 124px;
    height: 116px;
  }

  .bio-qr {
    width: 86px;
    height: 86px;
    padding: 4px;
  }

  .card-popover-inner {
    grid-template-columns: 128px minmax(0, 1fr);
    gap: 16px;
    min-height: 0;
  }

  .card-popover-photo {
    width: 128px;
    height: 118px;
  }

  .bio-popover h4 {
    font-size: 1.35rem;
  }

  .bio-title {
    font-size: 0.96rem;
  }

  .bio-text {
    font-size: 0.96rem;
    line-height: 1.56;
  }

  .strategy-row {
    grid-template-columns: 1fr;
  }

  .strategy-table {
    display: grid;
    gap: 12px;
    border: 0;
    background: transparent;
  }

  .strategy-row:not(.header) {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(247, 247, 245, 0.9);
  }

  .strategy-row > * {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .strategy-row > *:last-child {
    border-bottom: 0;
  }

  .strategy-row.header {
    display: none;
  }

  .mobile-swipe-rail {
    display: flex;
    width: calc(100% + 40px);
    margin-right: -20px;
    margin-left: -20px;
    gap: 14px;
    align-items: stretch;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 3px 20px 16px;
    scroll-padding-inline: 20px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    overscroll-behavior-inline: contain;
    -webkit-overflow-scrolling: touch;
  }

  .mobile-swipe-rail:focus {
    outline: none;
  }

  .mobile-swipe-rail:focus-visible {
    border-radius: 8px;
    outline: 2px solid rgba(174, 181, 186, 0.82);
    outline-offset: -2px;
  }

  .mobile-swipe-rail::-webkit-scrollbar {
    display: none;
  }

  .mobile-swipe-rail > * {
    scroll-snap-align: start;
    scroll-snap-stop: normal;
  }

  .mobile-rail-shell {
    position: relative;
    display: block;
    min-width: 0;
  }

  .mobile-rail-cue {
    appearance: none;
    -webkit-appearance: none;
    position: absolute;
    top: calc(50% - 31px);
    z-index: 4;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border: 1px solid rgba(216, 189, 111, 0.76);
    border-radius: 999px;
    padding: 0;
    background: rgba(7, 8, 9, 0.86);
    box-shadow: 0 8px 20px rgba(7, 8, 9, 0.24);
    opacity: 1;
    cursor: pointer;
    pointer-events: auto;
    transition:
      opacity 180ms ease,
      transform 180ms ease;
  }

  .mobile-rail-cue::before {
    content: "";
    width: 8px;
    height: 8px;
    border-top: 2px solid #f7f7f5;
    border-right: 2px solid #f7f7f5;
    transform: translateX(-2px) rotate(45deg);
  }

  .mobile-rail-cue--next {
    right: -7px;
  }

  .mobile-rail-cue--previous {
    left: -7px;
  }

  .mobile-rail-cue--previous::before {
    transform: translateX(2px) rotate(-135deg);
  }

  .mobile-rail-cue.is-hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateX(5px);
  }

  .mobile-rail-cue--previous.is-hidden {
    transform: translateX(-5px);
  }

  .mobile-rail-cue:focus-visible {
    outline: 3px solid rgba(215, 220, 224, 0.9);
    outline-offset: 3px;
  }

  .mobile-rail-pagination {
    display: flex;
    min-height: 10px;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: -7px;
  }

  .mobile-rail-pagination i {
    display: block;
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: rgba(95, 100, 104, 0.36);
    transition:
      width 220ms ease,
      background 220ms ease;
  }

  .mobile-rail-pagination i.is-active {
    width: 20px;
    background: var(--gold-text);
  }

  .capability-grid > .capability,
  .risk-grid > article,
  .support-list > div,
  .strategy-table > .strategy-row:not(.header) {
    flex: 0 0 min(82vw, 340px);
  }

  #philosophy .principle-grid > article {
    flex: 0 0 min(86vw, 354px);
    min-height: 236px;
  }

  .process-stack > article {
    flex: 0 0 min(calc(100vw - 32px), 360px);
  }

  .team-grid > article {
    flex: 0 0 min(calc(100vw - 32px), 380px);
  }

  .strategy-table {
    border: 0;
    background: transparent;
  }

  .strategy-table > .strategy-row:not(.header) {
    display: grid;
    grid-template-columns: 1fr;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(247, 247, 245, 0.92);
  }

  .process-layout {
    gap: 20px;
  }

  .process-mobile-status {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: -4px 0 -8px;
  }

  .process-mobile-count {
    display: inline-flex;
    gap: 5px;
    align-items: baseline;
    color: var(--muted);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.08em;
  }

  .process-mobile-count strong {
    color: var(--ink);
    font-size: 1rem;
  }

  .process-mobile-dots {
    display: inline-flex;
    gap: 6px;
  }

  .process-mobile-dots i {
    display: block;
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: rgba(95, 100, 104, 0.34);
    transition:
      width 220ms ease,
      background 220ms ease;
  }

  .process-mobile-dots i.is-active {
    width: 20px;
    background: var(--gold-text);
  }

  .strategy-visual,
  .process-visual,
  .image-panel {
    width: calc(100% + 40px);
    margin-right: -20px;
    margin-left: -20px;
    border-radius: 0;
    box-shadow: none;
  }

  .strategy-visual {
    aspect-ratio: 16 / 10;
  }

  .process-visual {
    aspect-ratio: 3 / 2;
  }

  .image-panel {
    aspect-ratio: 1400 / 661;
  }

  .contact-card {
    border-radius: 10px;
  }

  footer {
    padding-bottom: calc(100px + env(safe-area-inset-bottom));
  }

  html.mobile-app-mode main > section.mobile-reveal {
    opacity: 0;
    transform: translateY(18px);
    transition:
      opacity 560ms ease,
      transform 560ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  html.mobile-app-mode main > section.mobile-reveal.is-visible {
    opacity: 1;
    transform: none;
  }
}

@media screen and (max-width: 430px) {
  .brand-name {
    max-width: 220px;
    font-size: 0.96rem;
  }

  .main-nav {
    gap: 5px;
    font-size: 0.64rem;
  }

  .hero-logo-frame {
    margin: 18px auto;
  }

  .hero-logo-frame--inverse,
  .hero-logo-frame--placeholder,
  .hero-logo-frame--image {
    width: 88%;
    min-height: 142px;
  }

  .hero-logo-frame--image img {
    height: 142px;
  }

  .hero-logo-frame img {
    min-height: 0;
  }

  .hero-copy h1 {
    font-size: 1.95rem;
  }

  .team-grid article {
    grid-template-columns: 84px minmax(0, 1fr) 64px;
    grid-template-areas:
      "photo heading qr"
      "summary summary summary"
      "actions actions socials";
    gap: 12px 8px;
    min-height: 0;
    padding: 16px;
  }

  #philosophy .principle-grid h3 {
    font-size: 1.08rem;
  }

  .team-social-links {
    justify-self: end;
    align-self: center;
  }

  .team-photo {
    width: 84px;
    height: 80px;
  }

  .team-copy h3 {
    font-size: 1.08rem;
  }

  .team-grid .role {
    font-size: 0.9rem;
    line-height: 1.24;
  }

  .team-summary {
    font-size: 1rem;
    line-height: 1.46;
  }

  .bio-popover-header {
    grid-template-columns: 132px 1fr;
  }

  .bio-popover-header img {
    width: 132px;
    height: 120px;
  }

  .bio-qr {
    justify-self: start;
  }

  .team-qr {
    width: 64px;
    height: 64px;
  }

  .card-popover-inner {
    grid-template-columns: 1fr;
  }

  .card-popover-photo {
    width: 132px;
    height: 120px;
  }

  .disclosure-dialog {
    width: calc(100vw - 20px);
    max-height: 88vh;
    max-height: 88dvh;
  }

  .disclosure-dialog-header {
    padding: 20px 58px 16px 20px;
  }

  .disclosure-dialog-header h2 {
    font-size: 1.55rem;
  }

  .disclosure-dialog-body {
    max-height: calc(88vh - 76px);
    max-height: calc(88dvh - 76px);
    padding: 18px 20px 24px;
  }

  .disclosure-dialog-body p,
  .disclosure-dialog-body address {
    font-size: 0.91rem;
    line-height: 1.58;
  }

  .disclosure-close {
    top: 15px;
    right: 16px;
  }
}

@page {
  size: Letter portrait;
  margin: 0.45in;
}

@media print {
  * {
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }

  html {
    scroll-behavior: auto;
  }

  body {
    background: #fff;
    color: var(--ink);
    font-size: 9.5pt;
  }

  body::before {
    display: none;
  }

  .top-anchor,
  .site-header {
    display: none;
  }

  main,
  footer {
    max-width: none;
    width: 100%;
    margin: 0;
  }

  main > section {
    min-height: auto !important;
    margin: 0 !important;
    padding: 0.25in !important;
    break-before: page;
    page-break-before: always;
    break-inside: avoid;
    page-break-inside: avoid;
    box-shadow: none !important;
  }

  main > section:first-child {
    break-before: auto;
    page-break-before: auto;
  }

  .section-band,
  .section-shell {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #f7f7f5;
  }

  .hero,
  .process-layout,
  .infrastructure-grid,
  .strategy-layout,
  .team-grid,
  .contact {
    grid-template-columns: 1fr 1fr;
    gap: 0.18in;
    align-items: start;
  }

  #strategies .strategy-layout {
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.56fr);
    align-items: stretch;
  }

  #strategies .strategy-layout > * {
    min-width: 0;
  }

  #strategies .strategy-visual {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .hero {
    align-items: center;
  }

  #process .process-layout {
    align-items: stretch;
  }

  #process .process-visual {
    display: block !important;
    width: 100%;
    max-width: 100%;
    visibility: visible !important;
  }

  #process .process-visual img {
    display: block !important;
    visibility: visible !important;
  }

  .hero-brand-panel,
  .capability,
  .principle-grid article,
  .risk-grid article,
  .process-stack article,
  .team-grid article,
  .team-photo,
  .contact-card,
  .support-list div,
  .image-panel,
  .strategy-visual,
  .process-visual {
    box-shadow: none !important;
    break-inside: avoid;
    page-break-inside: avoid;
  }

  .hero-logo-frame {
    margin: 0.16in auto;
  }

  .hero-logo-frame img {
    min-height: auto;
    max-height: 2.35in;
  }

  .hero-logo-frame--image img {
    height: auto;
  }

  .hero-brand-caption,
  .capability,
  .principle-grid article,
  .risk-grid article,
  .process-stack article,
  .team-grid article,
  .contact-card,
  .support-list div {
    padding: 0.14in;
  }

  .team-grid article {
    padding-right: 0.9in;
  }

  .team-social-links {
    right: 0.14in;
    bottom: 0.14in;
  }

  h1 {
    max-width: none;
    font-size: 28pt;
    line-height: 1.05;
  }

  .type-measure {
    visibility: visible;
  }

  .type-output {
    display: none;
  }

  .hero-copy .hero-sub {
    opacity: 1 !important;
    transform: none !important;
  }

  .bio-trigger,
  .bio-popover,
  .footer-links,
  .disclosure-trigger,
  .disclosure-dialog {
    display: none !important;
  }

  h2 {
    font-size: 20pt;
    line-height: 1.08;
  }

  h3 {
    font-size: 10.5pt;
  }

  .eyebrow,
  .hero-brand-caption span {
    font-size: 8.4pt;
  }

  .process-stack span {
    font-size: 7.5pt;
  }

  .hero-sub,
  .lead,
  .capability p,
  .principle-grid p,
  .risk-grid p,
  .team-grid p,
  .process-stack p,
  .strategy-row p {
    font-size: 9pt;
    line-height: 1.35;
  }

  .investor-note,
  .strategy-row span,
  .support-list span,
  .contact-card span {
    font-size: 8pt;
  }

  .capability-grid,
  .principle-grid,
  .risk-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.12in;
  }

  .capability {
    min-height: 0;
  }

  .capability span {
    margin-bottom: 0.2in;
  }

  #strategies .strategy-row {
    grid-template-columns: 1.05fr 1.25fr 1.2fr;
  }

  #strategies .strategy-row > * {
    min-width: 0;
    padding: 0.075in;
    overflow-wrap: anywhere;
    word-break: normal;
    hyphens: auto;
  }

  #strategies .strategy-row strong {
    font-size: 8.8pt;
    line-height: 1.08;
  }

  #strategies .strategy-row p {
    font-size: 7.4pt;
    line-height: 1.24;
  }

  #strategies .strategy-row span {
    font-size: 6.8pt;
    line-height: 1.2;
  }

  .process-stack,
  .support-list {
    gap: 0.1in;
  }

  #philosophy .principle-grid article {
    min-height: 0;
    border-radius: 0.5in;
  }

  #philosophy .principle-grid article::before,
  #philosophy .principle-grid article::after {
    display: none;
  }

  .process-stack {
    align-self: start;
    margin-top: 0;
    padding-left: 0;
  }

  .process-stack::before,
  .process-stack::after,
  .process-stack article::before,
  .process-stack article::after,
  .workflow-graphic {
    display: none !important;
  }

  .process-stack article {
    display: block;
    min-height: 0;
  }

  .image-panel img,
  .strategy-visual img,
  .process-visual img {
    min-height: 0;
    max-height: none;
  }

  .team-photo {
    width: 1.05in;
    height: 0.92in;
    max-height: 0.92in;
    object-fit: cover;
  }

  .team-qr,
  .bio-qr {
    display: none;
  }

  #team .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.12in;
  }

  #team .team-grid article {
    grid-template-columns: 0.72in 1fr;
    grid-template-areas: "photo copy";
    gap: 0.11in;
    align-items: start;
    min-height: 1.18in;
    padding: 0.1in;
  }

  #team .team-photo {
    width: 0.72in;
    height: 0.64in;
    max-height: 0.64in;
  }

  #team .team-copy {
    grid-area: copy;
    display: block;
  }

  #team .team-copy h3 {
    margin: 0 0 0.03in;
    font-size: 10.5pt;
    line-height: 1.08;
  }

  #team .team-grid .role {
    margin: 0 0 0.04in;
    font-size: 7.2pt;
    line-height: 1.2;
  }

  #team .team-copy > p:not(.role) {
    margin: 0;
    font-size: 7.4pt;
    line-height: 1.25;
  }

  #team .team-actions,
  #team .team-social-links {
    display: none;
  }

  footer {
    padding: 0.18in 0 0;
    font-size: 8pt;
    line-height: 1.35;
  }

  a {
    text-decoration: none;
  }
}

/* Final local theme accents. Keep this after responsive/print rules so the gold is visible everywhere. */
.eyebrow,
.hero-brand-caption span {
  color: var(--gold-text) !important;
}

.eyebrow--black {
  color: var(--ink) !important;
}

#overview .capability h3,
#philosophy .principle-grid h3,
#strategies .strategy-row.header,
#strategies .strategy-row.header > *,
#process .process-stack span,
#risk .risk-grid h3,
#infrastructure .support-list strong,
#team .team-copy h3,
.bio-popover h4,
#contact .contact-card a {
  color: var(--gold-text) !important;
}

#overview .capability span {
  color: var(--ink) !important;
}

.workflow-frame {
  fill: rgba(247, 247, 245, 0.72) !important;
  stroke: rgba(7, 8, 9, 0.58) !important;
}

.workflow-grid {
  stroke: rgba(7, 8, 9, 0.14) !important;
}

.signal-line,
.allocation-link,
.risk-curve,
.risk-band,
.risk-shield,
.risk-check,
.scan-sweep {
  stroke: #070809 !important;
}

.signal-dot,
.allocation-node,
.allocation-bar {
  fill: #070809 !important;
}

.scan-sweep {
  filter: drop-shadow(0 0 5px rgba(7, 8, 9, 0.3)) !important;
}

.risk-shield {
  fill: rgba(7, 8, 9, 0.08) !important;
}
