:root {
  color-scheme: dark;
  --bg: #000000;
  --panel: #000000;
  --panel-2: #050505;
  --line: rgba(218, 210, 188, 0.18);
  --line-strong: rgba(218, 210, 188, 0.34);
  --text: #f6f1e7;
  --muted: #bbb3a3;
  --soft: #8f887c;
  --field: #73d6c7;
  --pressure: #d6a85f;
  --proof: #a4b778;
  --danger: #c17664;
  --surface: #030303;
  --surface-2: #070707;
  --surface-3: #0b0b0b;
  --card-shadow: 0 16px 44px rgba(0, 0, 0, 0.34);
  --inset-line: inset 0 1px 0 rgba(246, 241, 231, 0.045);
  --page-gutter: 40px;
  --content-width: min(1380px, calc(100% - var(--page-gutter)));
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: clip;
  scroll-behavior: auto;
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  background: #000000;
  color: var(--text);
  overflow-x: clip;
}

body.page-transition-ready .site-header,
body.page-transition-ready main,
body.page-transition-ready .site-footer {
  transition:
    opacity 260ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 300ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 300ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, filter, transform;
}

body.page-transition-ready::after {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.9)),
    linear-gradient(90deg, rgba(115, 214, 199, 0.12), transparent 18%, transparent 82%, rgba(214, 168, 95, 0.1)),
    radial-gradient(circle at 50% 40%, rgba(115, 214, 199, 0.16), transparent 34%),
    radial-gradient(circle at 50% 62%, rgba(214, 168, 95, 0.11), transparent 39%),
    repeating-linear-gradient(0deg, rgba(246, 241, 231, 0.035) 0 1px, transparent 1px 7px),
    radial-gradient(circle at 1px 1px, rgba(246, 241, 231, 0.16) 1px, transparent 1.7px) 0 0 / 12px 12px,
    #000;
  content: "";
  opacity: 0;
  pointer-events: none;
  transition: opacity 300ms cubic-bezier(0.22, 1, 0.36, 1);
}

body.page-is-arriving .site-header,
body.page-is-arriving main,
body.page-is-arriving .site-footer {
  opacity: 0.5;
  filter: blur(5px);
  transform: translateY(10px) scale(0.992);
}

body.page-is-leaving .site-header,
body.page-is-leaving main,
body.page-is-leaving .site-footer {
  opacity: 0.04;
  filter: blur(9px) saturate(0.7);
  transform: translateY(-9px) scale(0.986);
}

body.page-is-leaving::after {
  opacity: 0.92;
}

@supports not (overflow: clip) {
  html,
  body {
    overflow-x: hidden;
  }
}

body::before {
  display: none;
  position: fixed;
  inset: 0;
  z-index: -1;
  background: none;
  content: "";
  pointer-events: none;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  border: 0;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 20;
  padding: 10px 12px;
  background: var(--text);
  color: var(--bg);
  font-weight: 800;
  transform: translateY(-160%);
}

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

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 10;
  min-height: 72px;
  padding: 0;
  border-bottom: 1px solid rgba(218, 210, 188, 0.12);
  background: rgba(0, 0, 0, 0.86);
  backdrop-filter: blur(16px);
}

.site-header-inner {
  display: flex;
  width: var(--content-width);
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  min-width: 96px;
  align-items: center;
  gap: 8px;
  color: var(--text);
  font-size: 1.96rem;
  font-weight: 800;
}

.brand-mark {
  display: inline-grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
}

.brand-mark::before {
  width: 12px;
  height: 12px;
  border: 2px solid var(--pressure);
  border-left-color: var(--field);
  border-radius: 50%;
  content: "";
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(10px, 1.5vw, 22px);
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  white-space: nowrap;
}

.nav-links a {
  position: relative;
  order: 1;
  transition: color 160ms ease;
}

.nav-links a:hover,
.nav-links a:focus {
  color: var(--text);
}

.nav-links > a[aria-current="page"] {
  color: var(--pressure);
}

.nav-group {
  position: relative;
  order: 1;
}

.nav-group summary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  cursor: pointer;
  list-style: none;
  transition: color 160ms ease;
}

.nav-group summary::-webkit-details-marker {
  display: none;
}

.nav-group summary:hover,
.nav-group summary:focus,
.nav-group.is-active summary {
  color: var(--pressure);
}

.nav-chevron {
  width: 6px;
  height: 6px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  opacity: 0.72;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 160ms ease;
}

.nav-group[open] .nav-chevron {
  transform: translateY(1px) rotate(225deg);
}

.nav-submenu {
  display: grid;
}

@media (min-width: 981px) {
  .nav-links > a[aria-current="page"]::after,
  .nav-group.is-active > summary::after {
    position: absolute;
    right: 0;
    bottom: -12px;
    left: 0;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--pressure), var(--field));
    content: "";
  }

  .nav-group > summary {
    position: relative;
  }

  .nav-group::after {
    position: absolute;
    top: 100%;
    right: -18px;
    left: -18px;
    height: 44px;
    content: "";
  }

  .nav-submenu {
    position: absolute;
    top: calc(100% + 34px);
    right: 0;
    width: min(560px, calc(100vw - 48px));
    gap: 0;
    padding: 14px;
    border: 1px solid rgba(218, 210, 188, 0.16);
    border-radius: 8px;
    background:
      linear-gradient(135deg, rgba(115, 214, 199, 0.065), transparent 38%),
      linear-gradient(180deg, rgba(246, 241, 231, 0.052), rgba(0, 0, 0, 0) 54%),
      #020202;
    box-shadow:
      0 24px 72px rgba(0, 0, 0, 0.62),
      inset 0 1px 0 rgba(246, 241, 231, 0.05);
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    visibility: hidden;
    transition:
      opacity 150ms ease,
      transform 150ms ease,
      visibility 150ms ease;
  }

  .nav-submenu::before {
    position: absolute;
    top: -1px;
    right: 14px;
    left: 14px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(214, 168, 95, 0.9), rgba(115, 214, 199, 0.46), rgba(164, 183, 120, 0.22));
    content: "";
  }

  .nav-group.is-compact .nav-submenu {
    width: min(404px, calc(100vw - 48px));
  }

  .nav-group:hover .nav-submenu,
  .nav-group:focus-within .nav-submenu,
  .nav-group[open] .nav-submenu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
  }

  .nav-submenu-head {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 10px 18px;
    align-items: center;
    padding: 4px 4px 14px;
    border-bottom: 1px solid rgba(218, 210, 188, 0.1);
  }

  .nav-submenu-head span {
    color: var(--text);
    font-size: 0.74rem;
    font-weight: 880;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }

  .nav-submenu-head p {
    color: rgba(246, 241, 231, 0.52);
    font-size: 0.72rem;
    line-height: 1.45;
    text-align: right;
    white-space: normal;
  }

  .nav-submenu-grid {
    display: grid;
    gap: 6px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding-top: 10px;
  }

  .nav-group.is-compact .nav-submenu-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .nav-submenu-link {
    display: grid;
    grid-template-columns: 28px minmax(0, 1fr);
    gap: 10px;
    min-height: 64px;
    align-items: center;
    padding: 10px;
    border: 1px solid rgba(218, 210, 188, 0.08);
    border-radius: 6px;
    background: rgba(246, 241, 231, 0.018);
    color: rgba(246, 241, 231, 0.76);
    white-space: normal;
    transition:
      border-color 150ms ease,
      background 150ms ease,
      transform 150ms ease;
  }

  .nav-submenu-link:hover,
  .nav-submenu-link:focus,
  .nav-submenu-link[aria-current="page"] {
    border-color: rgba(214, 168, 95, 0.28);
    background:
      linear-gradient(90deg, rgba(214, 168, 95, 0.09), rgba(115, 214, 199, 0.035)),
      rgba(246, 241, 231, 0.026);
    color: var(--pressure);
    transform: translateY(-1px);
  }

  .nav-submenu-index {
    display: inline-grid;
    width: 28px;
    height: 28px;
    place-items: center;
    border: 1px solid rgba(218, 210, 188, 0.16);
    border-radius: 50%;
    color: rgba(214, 168, 95, 0.9);
    font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
    font-size: 0.58rem;
    font-weight: 850;
  }

  .nav-submenu-copy {
    display: grid;
    gap: 4px;
    min-width: 0;
  }

  .nav-submenu-copy strong,
  .nav-submenu-copy small {
    display: block;
  }

  .nav-submenu-copy strong {
    color: var(--text);
    font-size: 0.78rem;
    font-weight: 850;
    line-height: 1.2;
  }

  .nav-submenu-copy small {
    color: rgba(246, 241, 231, 0.5);
    font-size: 0.68rem;
    font-weight: 650;
    line-height: 1.35;
  }
}

.nav-links::before {
  display: none;
}

.mobile-legal-nav {
  display: none;
  order: 3;
}

.nav-toggle {
  display: none;
  position: relative;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid rgba(218, 210, 188, 0.16);
  border-radius: 8px;
  background: rgba(246, 241, 231, 0.025);
  color: var(--text);
  cursor: pointer;
  touch-action: manipulation;
}

.nav-toggle span {
  position: absolute;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition:
    opacity 160ms ease,
    transform 180ms ease;
}

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

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

.language-button {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(246, 241, 231, 0.7);
  font: inherit;
  font-size: 0.72rem;
  font-weight: 820;
  letter-spacing: 0;
  line-height: 1;
  cursor: pointer;
  transition:
    color 160ms ease,
    opacity 160ms ease;
}

.language-button:hover,
.language-button:focus {
  color: var(--text);
}

.language-button-nav {
  position: relative;
  order: 2;
  margin-left: clamp(2px, 0.6vw, 8px);
  padding-left: clamp(14px, 1.2vw, 18px);
}

.language-button-nav::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 1px;
  height: 17px;
  background: rgba(218, 210, 188, 0.24);
  content: "";
  transform: translateY(-50%);
}

.language-button:focus-visible {
  outline: 2px solid rgba(115, 214, 199, 0.72);
  outline-offset: 4px;
}

.language-button-label {
  display: none;
}

.language-button-current {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.language-icon {
  position: relative;
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 1px solid currentColor;
  border-radius: 50%;
  opacity: 0.9;
}

.language-icon::before,
.language-icon::after {
  position: absolute;
  content: "";
}

.language-icon::before {
  top: 50%;
  right: 2px;
  left: 2px;
  height: 1px;
  background: currentColor;
  transform: translateY(-50%);
}

.language-icon::after {
  top: 2px;
  bottom: 2px;
  left: 50%;
  width: 5px;
  border-right: 1px solid currentColor;
  border-left: 1px solid currentColor;
  border-radius: 50%;
  transform: translateX(-50%);
}

.language-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 24px;
}

.language-modal[hidden] {
  display: none;
}

.language-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.74);
  backdrop-filter: blur(8px);
}

.language-dialog {
  position: relative;
  z-index: 1;
  width: min(430px, 100%);
  padding: 24px;
  border: 1px solid rgba(218, 210, 188, 0.18);
  border-radius: 8px;
  background: #020202;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.58);
}

.language-dialog:focus {
  outline: none;
}

.language-dialog-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.language-dialog h2 {
  font-size: clamp(1.85rem, 4vw, 2.4rem);
  line-height: 0.98;
}

.language-close {
  position: relative;
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(218, 210, 188, 0.16);
  border-radius: 8px;
  background: rgba(246, 241, 231, 0.02);
  color: var(--text);
  cursor: pointer;
}

.language-close span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.language-close span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}

.language-close span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.language-dialog-intro {
  margin-top: 16px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.language-options {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.language-option {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 14px;
  min-height: 64px;
  padding: 12px 14px;
  border: 1px solid rgba(218, 210, 188, 0.14);
  border-radius: 8px;
  background: rgba(246, 241, 231, 0.025);
  color: var(--text);
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.language-option:hover,
.language-option:focus,
.language-option.is-active {
  border-color: rgba(214, 168, 95, 0.48);
  background: rgba(214, 168, 95, 0.08);
}

.language-option:focus-visible {
  outline: 2px solid rgba(115, 214, 199, 0.72);
  outline-offset: 3px;
}

.language-option-code {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(218, 210, 188, 0.18);
  border-radius: 50%;
  color: var(--pressure);
  font-size: 0.72rem;
  font-weight: 860;
}

.language-option strong,
.language-option small {
  display: block;
}

.language-option strong {
  font-size: 0.95rem;
  line-height: 1.2;
}

.language-option small {
  margin-top: 3px;
  color: var(--soft);
  font-size: 0.72rem;
}

body.language-modal-open {
  overflow: hidden;
}

.hero,
.page-hero,
.section,
.site-footer {
  width: var(--content-width);
  margin: 0 auto;
}

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  align-items: center;
  column-gap: clamp(22px, 3.2vw, 54px);
  row-gap: 0;
  grid-template-areas:
    "left arrow card";
  grid-template-columns: minmax(0, 0.94fr) minmax(42px, 56px) minmax(520px, 0.78fr);
  padding: 118px 0 64px;
}

.page-main {
  padding-top: 72px;
}

.page-header {
  position: relative;
  z-index: 0;
  isolation: isolate;
  width: var(--content-width);
  margin: 0 auto;
  padding: clamp(58px, 7vw, 92px) 0 clamp(42px, 5vw, 62px);
}

.page-header::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  z-index: -1;
  width: 100vw;
  border-bottom: 1px solid rgba(218, 210, 188, 0.12);
  background:
    radial-gradient(circle at 1px 1px, rgba(218, 210, 188, 0.072) 1px, transparent 1.45px) 0 0 / 18px 18px,
    linear-gradient(90deg, rgba(115, 214, 199, 0.008) 1px, transparent 1px) 0 0 / 72px 100%,
    linear-gradient(180deg, rgba(246, 241, 231, 0.012), transparent 78%),
    #010101;
  content: "";
  transform: translateX(-50%);
}

.page-header h1 {
  max-width: 880px;
  font-size: clamp(3.15rem, 6vw, 4.85rem);
  line-height: 0.96;
  text-transform: uppercase;
}

.page-header h1::after {
  display: block;
  width: min(180px, 32vw);
  height: 2px;
  margin-top: 24px;
  background: linear-gradient(90deg, rgba(214, 168, 95, 0.9), rgba(115, 214, 199, 0.22));
  content: "";
}

.page-hero {
  display: grid;
  align-items: end;
  gap: clamp(28px, 5vw, 72px);
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 0.48fr);
  padding: clamp(86px, 10vw, 132px) 0 clamp(56px, 7vw, 84px);
  border-bottom: 1px solid rgba(218, 210, 188, 0.12);
}

.page-hero-copy {
  max-width: 850px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 22px;
  color: var(--soft);
  font-size: 0.76rem;
  font-weight: 760;
  line-height: 1.4;
}

.breadcrumb a {
  color: var(--muted);
}

.breadcrumb a:hover,
.breadcrumb a:focus {
  color: var(--text);
}

.breadcrumb span + span::before,
.breadcrumb a + a::before,
.breadcrumb a + span::before {
  margin-right: 8px;
  color: rgba(218, 210, 188, 0.32);
  content: "/";
}

.page-kicker {
  display: block;
  margin-bottom: 14px;
  color: var(--pressure);
  font-size: 0.78rem;
  font-weight: 850;
  line-height: 1.3;
  text-transform: uppercase;
}

.page-hero h1 {
  max-width: 880px;
  font-size: clamp(3.1rem, 6vw, 5rem);
  line-height: 0.98;
}

.page-subtitle {
  max-width: 790px;
  margin-top: 24px;
  color: var(--text);
  font-size: clamp(1.08rem, 1.45vw, 1.34rem);
  font-weight: 650;
  line-height: 1.48;
}

.page-text {
  max-width: 790px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.8;
}

.route-visual {
  display: grid;
  align-content: center;
  gap: 10px;
  min-height: 238px;
  padding: 18px;
  border: 1px solid rgba(218, 210, 188, 0.11);
  border-radius: 8px;
  background: #030303;
}

.route-visual span {
  position: relative;
  display: block;
  min-height: 46px;
  padding: 14px 16px 14px 38px;
  border: 1px solid rgba(218, 210, 188, 0.12);
  border-radius: 8px;
  color: var(--text);
  font-size: 0.8rem;
  font-weight: 850;
}

.route-visual span::before {
  position: absolute;
  top: 18px;
  left: 16px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--field);
  content: "";
}

.route-visual span:nth-child(2)::before,
.route-visual span:nth-child(5)::before {
  background: var(--pressure);
}

.route-visual span:nth-child(3)::before,
.route-visual span:nth-child(6)::before {
  background: var(--proof);
}

.route-visual span + span::after {
  position: absolute;
  top: -11px;
  left: 19px;
  width: 1px;
  height: 10px;
  background: var(--line);
  content: "";
}

.hero-left {
  position: relative;
  z-index: 2;
  grid-area: left;
  max-width: 760px;
  text-shadow:
    0 2px 18px rgba(0, 0, 0, 0.98),
    0 8px 38px rgba(0, 0, 0, 0.76);
}

.hero-copy {
  position: relative;
  z-index: 2;
  grid-area: copy;
  text-shadow:
    0 2px 18px rgba(0, 0, 0, 0.98),
    0 8px 38px rgba(0, 0, 0, 0.76);
}

.hero-support {
  position: relative;
  z-index: 2;
  grid-area: support;
  max-width: 720px;
  margin-top: 28px;
  text-shadow:
    0 2px 18px rgba(0, 0, 0, 0.98),
    0 8px 38px rgba(0, 0, 0, 0.76);
}

.hero-flow-arrow {
  position: relative;
  z-index: 2;
  display: grid;
  grid-area: arrow;
  width: 52px;
  height: 52px;
  align-self: center;
  justify-self: center;
  place-items: center;
  border: 1px solid rgba(115, 214, 199, 0.26);
  border-radius: 50%;
  background: rgba(3, 3, 3, 0.72);
  box-shadow:
    0 0 0 1px rgba(214, 168, 95, 0.06) inset,
    0 18px 40px rgba(0, 0, 0, 0.28),
    0 0 28px rgba(115, 214, 199, 0.08);
  color: var(--field);
}

.hero-flow-arrow svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.eyebrow,
.section-kicker {
  color: var(--pressure);
  font-size: 0.78rem;
  font-weight: 850;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow {
  margin-bottom: 18px;
}

h1 {
  max-width: 780px;
  font-size: 5.72rem;
  font-weight: 850;
  line-height: 0.94;
  overflow-wrap: break-word;
  text-wrap: balance;
}

.hero-subtitle {
  max-width: 720px;
  margin-top: 0;
  color: var(--text);
  font-size: 1.36rem;
  font-weight: 650;
  line-height: 1.45;
}

.hero-text {
  max-width: 680px;
  margin-top: 20px;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.8;
}

.hero-mbo-wrap {
  position: relative;
  z-index: 2;
  grid-area: card;
  width: min(620px, 100%);
  justify-self: end;
}

.hero-mbo-panel {
  position: relative;
  display: flex;
  min-height: clamp(520px, 42vw, 640px);
  flex-direction: column;
  width: 100%;
  padding: 18px 20px;
  border: 1px solid rgba(218, 210, 188, 0.09);
  border-radius: 8px;
  background: #030303;
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.42);
  overflow: hidden;
}

.hero-mbo-panel::before {
  display: none;
}

.mbo-panel-header {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  gap: 10px;
  grid-template-columns: auto 1fr auto;
  padding-bottom: 12px;
  color: var(--text);
  font-size: 1rem;
  font-weight: 850;
  white-space: nowrap;
}

.mbo-glyph {
  color: var(--field);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.94rem;
}

.mbo-panel-header small {
  color: var(--pressure);
  font-size: 0.62rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.mbo-code {
  position: relative;
  z-index: 1;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  color: #f0e9dc;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: clamp(0.7rem, 0.68vw, 0.84rem);
  line-height: 1.55;
  white-space: pre;
}

.mbo-code code {
  display: block;
  min-width: 620px;
  white-space: pre;
}

.terminal-stream code {
  min-width: 0;
}

.terminal-stream {
  flex: 1 1 auto;
  height: clamp(450px, 35vw, 560px);
  min-height: clamp(450px, 35vw, 560px);
  max-height: clamp(450px, 35vw, 560px);
  outline: none;
  overflow: hidden;
  user-select: text;
}

.terminal-stream:focus {
  color: #ffffff;
}

.mbo-code span {
  color: #8be7d9;
  text-shadow: 0 0 14px rgba(115, 214, 199, 0.22);
  transition: color 90ms ease;
}

.mbo-code span[data-intel-field="confidence"],
.mbo-code span[data-intel-field="reviewWindowSeconds"],
.mbo-code span[data-intel-field="intelligenceId"],
.mbo-code span[data-intel-field="researchProfileId"] {
  color: #e1b478;
  text-shadow: 0 0 14px rgba(214, 168, 95, 0.18);
}

.mbo-code span[data-intel-field="signatureFamily"],
.mbo-code span[data-intel-field="researchStatus"],
.mbo-code span[data-intel-field="reactionContext"] {
  color: #a4b778;
  text-shadow: 0 0 14px rgba(164, 183, 120, 0.18);
}

.mbo-disclaimer {
  position: relative;
  z-index: 1;
  margin: 7px 1px 0 0;
  color: rgb(59 58 57 / 66%);
  font-size: 0.66rem;
  font-style: italic;
  line-height: 1.4;
  text-align: right;
}

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

.home-sector-intro,
.home-sector-band {
  position: relative;
  isolation: isolate;
  width: 100%;
  margin: 0;
  border-top: 1px solid rgba(218, 210, 188, 0.1);
  border-bottom: 1px solid rgba(218, 210, 188, 0.07);
}

.home-sector-intro {
  padding: clamp(66px, 7vw, 112px) 0 clamp(44px, 5vw, 70px);
}

.home-sector-band {
  padding: clamp(48px, 6vw, 82px) 0 clamp(52px, 6vw, 88px);
}

.home-sector-intro::before,
.home-sector-band::before {
  position: absolute;
  inset: 0 50%;
  z-index: -1;
  width: 100vw;
  background: #000000;
  content: "";
  transform: translateX(-50%);
}

.home-sector-band.is-gray::before {
  background: #070707;
}

.home-sector-band.is-black::before {
  background: #000000;
}

.home-sector-inner {
  width: var(--content-width);
  margin: 0 auto;
}

.home-sector-header {
  display: grid;
  align-items: end;
  gap: clamp(28px, 4vw, 70px);
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 0.42fr);
}

.home-sector-lead {
  max-width: 920px;
}

.home-sector-text {
  max-width: 510px;
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.72;
}

.home-sector-band-head {
  position: relative;
  display: block;
  margin: 0 0 clamp(24px, 3vw, 38px);
}

.home-sector-band-head::before {
  position: absolute;
  top: -18px;
  left: 0;
  width: 86px;
  height: 2px;
  background: linear-gradient(90deg, var(--pressure), rgba(115, 214, 199, 0.76));
  content: "";
}

.home-sector-band-copy {
  display: block;
  max-width: 900px;
}

.home-sector-band-copy h2,
.home-sector-band-copy h3 {
  color: var(--text);
  font-size: clamp(1.55rem, 2.3vw, 2.25rem);
  font-weight: 900;
  line-height: 1.04;
  text-transform: uppercase;
}

.home-sector-band-copy .section-kicker {
  margin-bottom: 16px;
}

.home-sector-band-copy p {
  max-width: 850px;
  margin-top: 14px;
  color: var(--muted);
  font-size: clamp(0.94rem, 1.05vw, 1.02rem);
  line-height: 1.72;
}

.home-sector-carousel {
  display: grid;
  gap: 14px;
  margin-top: 0;
}

.home-sector-carousel-toolbar {
  display: flex;
  justify-content: flex-end;
}

.home-sector-controls {
  display: flex;
  gap: 8px;
  align-items: center;
}

.home-sector-arrow {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(214, 168, 95, 0.34);
  border-radius: 999px;
  background: rgba(246, 241, 231, 0.02);
  color: var(--text);
  cursor: pointer;
  transition: border-color 160ms ease, color 160ms ease, background 160ms ease, opacity 160ms ease;
}

.home-sector-arrow:hover,
.home-sector-arrow:focus-visible {
  border-color: rgba(115, 214, 199, 0.62);
  background: rgba(115, 214, 199, 0.07);
  color: var(--accent);
}

.home-sector-arrow:disabled {
  cursor: default;
  opacity: 0.35;
}

.home-sector-arrow svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.1;
}

.home-sector-track {
  display: grid;
  grid-auto-columns: minmax(280px, calc((100% - 36px) / 3.28));
  grid-auto-flow: column;
  gap: 12px;
  padding: 1px 0 6px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-padding-inline: 0;
  scroll-snap-type: inline mandatory;
  scrollbar-width: none;
}

.home-sector-track::-webkit-scrollbar {
  display: none;
}

.home-sector-track:focus-visible {
  outline: 1px solid rgba(115, 214, 199, 0.72);
  outline-offset: 6px;
}

.home-sector-progress {
  position: relative;
  height: 2px;
  background: rgba(218, 210, 188, 0.1);
  overflow: hidden;
}

.home-sector-progress span {
  display: block;
  width: 14%;
  height: 100%;
  background: linear-gradient(90deg, rgba(214, 168, 95, 0.9), rgba(115, 214, 199, 0.88));
  transform-origin: left center;
  transition: width 160ms ease, transform 160ms ease;
}

.home-sector-card {
  position: relative;
  display: grid;
  min-height: 188px;
  align-content: start;
  padding: 24px;
  border: 1px solid rgba(246, 241, 231, 0.16);
  border-radius: 6px;
  background:
    linear-gradient(180deg, rgba(246, 241, 231, 0.026), rgba(0, 0, 0, 0) 58%),
    #020202;
  overflow: hidden;
}

.home-sector-slide {
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.home-sector-card::before {
  position: absolute;
  top: 0;
  right: 18px;
  left: 18px;
  height: 1px;
  background: linear-gradient(90deg, rgba(115, 214, 199, 0.9), rgba(214, 168, 95, 0.22));
  content: "";
}

.home-sector-card:nth-child(3n + 2)::before {
  background: linear-gradient(90deg, rgba(214, 168, 95, 0.9), rgba(164, 183, 120, 0.22));
}

.home-sector-card:nth-child(3n)::before {
  background: linear-gradient(90deg, rgba(164, 183, 120, 0.86), rgba(115, 214, 199, 0.2));
}

.home-sector-card small {
  color: rgba(246, 241, 231, 0.44);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.66rem;
  font-weight: 850;
  line-height: 1;
}

.home-sector-card strong {
  margin-top: 26px;
  color: var(--text);
  font-size: clamp(1.08rem, 1.18vw, 1.24rem);
  font-weight: 900;
  line-height: 1.18;
  text-transform: uppercase;
}

.home-sector-card p {
  margin-top: 12px;
  color: var(--muted);
  font-size: clamp(0.94rem, 0.98vw, 1rem);
  line-height: 1.66;
}

.home-delivery-section {
  position: relative;
  isolation: isolate;
  width: 100%;
  padding: clamp(58px, 7vw, 104px) 0 clamp(62px, 7vw, 108px);
  border-top: 1px solid rgba(218, 210, 188, 0.1);
  border-bottom: 1px solid rgba(218, 210, 188, 0.08);
}

.home-delivery-section::before {
  position: absolute;
  inset: 0 50%;
  z-index: -1;
  width: 100vw;
  background: #070707;
  content: "";
  transform: translateX(-50%);
}

.home-delivery-inner {
  display: block;
}

.home-delivery-tabs {
  display: grid;
  align-items: stretch;
  gap: clamp(22px, 4vw, 54px);
  grid-template-columns: minmax(260px, 0.36fr) minmax(0, 0.64fr);
}

.home-delivery-list {
  display: grid;
  border-top: 1px solid rgba(218, 210, 188, 0.1);
}

.home-delivery-row {
  display: grid;
  gap: 14px;
  grid-template-columns: 34px minmax(0, 1fr);
  align-items: center;
  width: 100%;
  min-height: 45px;
  padding: 0 14px 0 0;
  border: 0;
  border-bottom: 1px solid rgba(218, 210, 188, 0.08);
  border-left: 2px solid transparent;
  background: transparent;
  color: rgba(246, 241, 231, 0.62);
  text-align: left;
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.home-delivery-row:hover,
.home-delivery-row:focus-visible,
.home-delivery-row.is-active {
  border-left-color: var(--pressure);
  background: linear-gradient(90deg, rgba(214, 168, 95, 0.075), rgba(115, 214, 199, 0.035), rgba(0, 0, 0, 0));
  color: var(--text);
}

.home-delivery-row span {
  color: var(--pressure);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.62rem;
  font-weight: 850;
  line-height: 1;
  text-align: center;
}

.home-delivery-row strong {
  display: block;
  min-width: 0;
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0;
  line-height: 1.18;
  overflow-wrap: anywhere;
  text-transform: uppercase;
}

.home-delivery-panel {
  display: grid;
  gap: 20px;
  grid-template-columns: 54px minmax(0, 1fr);
  height: 100%;
  min-height: 100%;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(218, 210, 188, 0.13);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(115, 214, 199, 0.055), rgba(214, 168, 95, 0.03) 44%, rgba(0, 0, 0, 0) 100%),
    #020202;
  box-shadow: var(--inset-line);
}

.home-delivery-panel-index {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(214, 168, 95, 0.42);
  border-radius: 999px;
  color: var(--pressure);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.7rem;
  font-weight: 850;
  line-height: 1;
}

.home-delivery-panel strong {
  display: block;
  color: var(--text);
  font-size: clamp(1.18rem, 1.8vw, 1.62rem);
  font-weight: 900;
  line-height: 1.12;
  text-transform: uppercase;
}

.home-delivery-panel p {
  max-width: 900px;
  margin-top: 14px;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.18vw, 1.22rem);
  line-height: 1.76;
  white-space: pre-line;
}

.home-delivery-mobile-cards {
  display: none;
}

.method-hero-section {
  padding-top: clamp(34px, 4.5vw, 68px);
  padding-bottom: clamp(54px, 6vw, 82px);
}

.method-hero-document {
  display: grid;
  align-items: start;
  gap: clamp(34px, 5vw, 72px);
  grid-template-columns: minmax(0, 0.86fr) minmax(380px, 0.46fr);
}

.method-hero-copy {
  max-width: 980px;
}

.method-brief {
  position: relative;
  padding: 28px;
  border: 1px solid rgba(218, 210, 188, 0.13);
  border-radius: 8px;
  background: rgba(246, 241, 231, 0.018);
  box-shadow: var(--inset-line);
}

.method-brief h3 {
  margin-top: 14px;
  color: var(--text);
  font-size: clamp(1.22rem, 1.5vw, 1.44rem);
  font-weight: 820;
  line-height: 1.22;
}

.method-brief p:not(.section-kicker) {
  margin-top: 14px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.72;
}

.method-brief-list {
  display: grid;
  gap: 0;
  margin: 24px 0 0;
}

.method-brief-list div {
  padding: 15px 0;
  border-top: 1px solid rgba(218, 210, 188, 0.1);
}

.method-brief-list dt {
  color: rgba(246, 241, 231, 0.58);
  font-size: 0.68rem;
  font-weight: 820;
  line-height: 1.2;
  text-transform: uppercase;
}

.method-brief-list dd {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.68;
}

.method-process-section {
  padding-top: clamp(60px, 7vw, 100px);
}

.method-process-layout {
  display: grid;
  width: 100%;
  align-items: start;
  gap: clamp(32px, 5vw, 72px);
  grid-template-columns: minmax(150px, 178px) minmax(0, 1fr);
}

.method-step-index {
  position: sticky;
  top: 108px;
  padding-top: 5px;
  color: var(--soft);
}

.method-step-index p {
  margin-bottom: 18px;
  color: var(--pressure);
  font-size: 0.72rem;
  font-weight: 850;
  line-height: 1.3;
  text-transform: uppercase;
}

.method-step-index nav {
  display: grid;
  gap: 3px;
}

.method-step-index a {
  display: grid;
  min-height: 46px;
  align-items: center;
  gap: 8px;
  grid-template-columns: 28px minmax(0, 1fr);
  padding: 9px 0 9px 13px;
  border-left: 1px solid rgba(218, 210, 188, 0.16);
  color: var(--soft);
  font-size: 0.76rem;
  font-weight: 760;
  line-height: 1.35;
}

.method-step-index a:hover,
.method-step-index a:focus,
.method-step-index a.is-active,
.method-step-index a[aria-current="true"] {
  border-left-color: var(--pressure);
  color: var(--text);
}

.method-step-index a.is-active,
.method-step-index a[aria-current="true"] {
  background: linear-gradient(90deg, rgba(214, 168, 95, 0.08), transparent);
}

.method-step-index a span {
  color: rgba(214, 168, 95, 0.78);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.68rem;
  font-weight: 850;
}

.method-step-index a small {
  font: inherit;
}

.method-process-content {
  max-width: none;
}

.method-step-stack {
  display: grid;
  gap: 14px;
  margin-top: 36px;
}

.method-step-card {
  position: relative;
  isolation: isolate;
  min-height: 0;
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid rgba(218, 210, 188, 0.12);
  border-radius: 8px;
  background: rgba(246, 241, 231, 0.018);
  box-shadow: var(--inset-line);
  overflow: hidden;
}

.method-step-card::before {
  position: absolute;
  top: 0;
  right: 22px;
  left: 22px;
  height: 2px;
  background: linear-gradient(90deg, rgba(214, 168, 95, 0.72), rgba(115, 214, 199, 0.14));
  content: "";
}

.method-step-card::after {
  display: none;
}

.method-step-card:nth-child(3n + 2)::before {
  background: linear-gradient(90deg, rgba(115, 214, 199, 0.62), rgba(214, 168, 95, 0.12));
}

.method-step-card:nth-child(3n)::before {
  background: linear-gradient(90deg, rgba(164, 183, 120, 0.64), rgba(115, 214, 199, 0.12));
}

.method-step-header {
  display: grid;
  align-items: start;
  gap: 16px;
  grid-template-columns: auto minmax(0, 1fr);
}

.method-step-number {
  display: inline-flex;
  min-width: 43px;
  height: 32px;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  border: 1px solid rgba(214, 168, 95, 0.24);
  border-radius: 999px;
  background: rgba(214, 168, 95, 0.045);
  color: rgba(214, 168, 95, 0.9);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.72rem;
  font-weight: 850;
  line-height: 1;
}

.method-step-copy {
  max-width: none;
}

.method-step-copy .section-kicker {
  margin-bottom: 10px;
}

.method-step-copy h2 {
  max-width: 800px;
  color: var(--text);
  font-size: clamp(1.55rem, 2.35vw, 2.25rem);
  line-height: 1.06;
}

.method-step-lede {
  max-width: 830px;
  margin-top: 20px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.78;
}

.method-step-notes {
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 1.35fr) minmax(220px, 0.65fr);
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(218, 210, 188, 0.1);
}

.method-step-note {
  display: grid;
  gap: 8px;
  align-content: start;
  min-width: 0;
}

.method-step-note span {
  color: rgba(246, 241, 231, 0.48);
  font-size: 0.66rem;
  font-weight: 820;
  line-height: 1.2;
  text-transform: uppercase;
}

.method-step-note p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.7;
  overflow-wrap: break-word;
}

.method-step-output strong {
  color: var(--field);
  font-size: 0.92rem;
  font-weight: 850;
  line-height: 1.35;
  overflow-wrap: break-word;
  text-transform: uppercase;
}

.method-controls-section {
  padding-top: clamp(68px, 7vw, 112px);
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 12px 17px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 850;
  transition:
    border-color 160ms ease,
    background 160ms ease,
    transform 160ms ease;
}

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

.button.primary {
  background: rgba(115, 214, 199, 0.14);
  color: #eafffb;
}

.button.secondary {
  background: rgba(246, 241, 231, 0.04);
  color: var(--text);
}

.hero-video,
.hero-market,
.hero-pattern,
.hero-visual {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  overflow: hidden;
  pointer-events: none;
}

.hero-video {
  z-index: 0;
  background: var(--panel);
}

.hero-market {
  z-index: 0;
  background: #000000;
}

.hero-pattern {
  z-index: 0;
  background: #000000;
}

.hero-pattern::before,
.hero-pattern::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
}

.hero-pattern::before {
  display: none;
}

.hero-pattern::after {
  display: none;
}

.hero-order-flow {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  filter: contrast(1.12) saturate(1.08);
}

.hero-video iframe,
.hero-video video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: max(100vw, 177.78vh);
  height: max(100vh, 56.25vw);
  border: 0;
  filter: brightness(1.08) contrast(1.08) saturate(1.04);
  object-fit: cover;
  transform: translate(-50%, -50%);
}

.hero-visual {
  margin: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.96), rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.92)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.96)),
    var(--panel);
}

#liquidity-field {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-visual figcaption {
  position: absolute;
  right: clamp(20px, 4vw, 56px);
  bottom: 20px;
  left: auto;
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(4, auto);
  align-items: center;
  color: var(--soft);
  font-size: 0.72rem;
  font-weight: 750;
  text-transform: uppercase;
}

.hero-visual figcaption span:not(:first-child)::before {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 7px;
  border-radius: 50%;
  background: var(--field);
  content: "";
}

.hero-visual figcaption span:nth-child(3)::before {
  background: var(--pressure);
}

.hero-visual figcaption span:nth-child(4)::before {
  background: var(--proof);
}

.section {
  position: relative;
  z-index: 0;
  isolation: isolate;
  padding: clamp(88px, 10vw, 140px) 0;
  border-top: 1px solid rgba(218, 210, 188, 0.12);
}

.section::before {
  position: absolute;
  inset: 0 auto 0 50%;
  z-index: -1;
  width: 100vw;
  background: #000000;
  content: "";
  transform: translateX(-50%);
}

.section:nth-of-type(even)::before {
  background: #000000;
}

.split-section {
  display: grid;
  align-items: center;
  gap: clamp(28px, 6vw, 78px);
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
}

.split-section.reverse {
  grid-template-columns: minmax(320px, 1.05fr) minmax(0, 0.95fr);
}

.section-heading {
  position: relative;
  max-width: 880px;
  padding-top: 18px;
}

.section-heading.narrow {
  max-width: 760px;
}

.section-heading::before,
.section-lead::before,
.section-copy::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 46px;
  height: 2px;
  background: linear-gradient(90deg, var(--pressure), rgba(115, 214, 199, 0.64));
  content: "";
}

.page-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 38px;
}

.page-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.page-grid.one {
  grid-template-columns: minmax(0, 1fr);
}

.page-grid article,
.disclosure-list article {
  position: relative;
  isolation: isolate;
  min-height: 168px;
  padding: 24px;
  border: 1px solid rgba(218, 210, 188, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(246, 241, 231, 0.042), rgba(0, 0, 0, 0) 52%),
    var(--surface);
  box-shadow: var(--card-shadow), var(--inset-line);
  overflow: hidden;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.page-grid article::before,
.disclosure-list article::before,
.concept-matrix div::before,
.signature-table div::before,
.system-bands article::before,
.sidebar-card::before {
  position: absolute;
  top: 0;
  right: 18px;
  left: 18px;
  height: 2px;
  background: linear-gradient(90deg, rgba(115, 214, 199, 0.85), rgba(214, 168, 95, 0.12));
  content: "";
}

.page-grid article:nth-child(3n + 2)::before,
.concept-matrix div:nth-child(3n + 2)::before,
.signature-table div:nth-child(3n + 2)::before,
.system-bands article:nth-child(3n + 2)::before,
.disclosure-list article:nth-child(3n + 2)::before {
  background: linear-gradient(90deg, rgba(214, 168, 95, 0.9), rgba(164, 183, 120, 0.12));
}

.page-grid article:nth-child(3n)::before,
.concept-matrix div:nth-child(3n)::before,
.signature-table div:nth-child(3n)::before,
.system-bands article:nth-child(3n)::before,
.disclosure-list article:nth-child(3n)::before {
  background: linear-gradient(90deg, rgba(164, 183, 120, 0.9), rgba(115, 214, 199, 0.12));
}

.page-grid article:hover,
.page-grid article:focus-within,
.disclosure-list article:hover,
.disclosure-list article:focus-within {
  border-color: rgba(218, 210, 188, 0.24);
  background:
    linear-gradient(180deg, rgba(246, 241, 231, 0.056), rgba(0, 0, 0, 0) 56%),
    var(--surface-2);
  transform: translateY(-2px);
}

.page-grid strong,
.disclosure-list strong {
  display: block;
  color: var(--text);
  font-size: 0.8rem;
  font-weight: 850;
  line-height: 1.3;
  text-transform: uppercase;
}

.page-grid p,
.disclosure-list p {
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.65;
}

.page-grid h3,
.disclosure-list h3 {
  margin-top: 14px;
  font-size: 1.16rem;
}

.landing-section .section-lead {
  max-width: 940px;
}

.landing-card {
  display: flex;
  flex-direction: column;
}

.landing-card-index {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 26px;
  color: rgba(246, 241, 231, 0.38);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.68rem;
  font-weight: 850;
}

.landing-card .program-link {
  align-self: flex-start;
  margin-top: auto;
  padding-top: 22px;
}

.partner-grid {
  align-items: stretch;
}

.partner-card {
  display: flex;
  flex-direction: column;
  min-height: 290px;
}

.venture-lifecycle-tag {
  position: absolute;
  top: 22px;
  right: 22px;
  display: inline-flex;
  min-width: 54px;
  min-height: 24px;
  align-items: center;
  justify-content: center;
  padding: 0 9px;
  border: 1px solid rgba(218, 210, 188, 0.14);
  border-radius: 999px;
  background: rgba(246, 241, 231, 0.035);
  color: rgba(246, 241, 231, 0.72);
  font-size: 0.62rem;
  font-weight: 860;
  letter-spacing: 0.06em;
  line-height: 1;
  text-transform: uppercase;
}

.venture-lifecycle-tag.is-live {
  border-color: rgba(115, 214, 199, 0.42);
  background: rgba(115, 214, 199, 0.09);
  color: rgba(130, 232, 217, 0.94);
}

.venture-lifecycle-tag.is-build {
  border-color: rgba(239, 180, 84, 0.28);
  background: rgba(239, 180, 84, 0.07);
  color: rgba(239, 180, 84, 0.9);
}

.partner-index {
  margin-bottom: 22px;
  color: rgba(246, 241, 231, 0.42);
  font-size: 0.68rem;
  font-weight: 760;
  line-height: 1;
}

.partner-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.partner-tags li {
  padding: 5px 8px;
  border: 1px solid rgba(218, 210, 188, 0.1);
  border-radius: 999px;
  background: rgba(246, 241, 231, 0.025);
  color: rgba(246, 241, 231, 0.68);
  font-size: 0.7rem;
  font-weight: 720;
  line-height: 1;
  text-transform: uppercase;
}

.partner-card-link {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-top: auto;
  padding-top: 22px;
  color: var(--field);
  font-size: 0.72rem;
  font-weight: 780;
  text-transform: uppercase;
}

.partner-card-link:hover,
.partner-card-link:focus {
  color: var(--pressure);
}

.partner-profile-summary {
  display: grid;
  gap: 12px;
  margin-top: 26px;
  padding: 0;
  list-style: none;
}

.partner-profile-summary li {
  display: grid;
  gap: 5px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(218, 210, 188, 0.1);
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.62;
}

.partner-profile-summary li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.partner-profile-summary span {
  color: rgba(246, 241, 231, 0.58);
  font-size: 0.72rem;
  font-weight: 780;
  line-height: 1.2;
  text-transform: uppercase;
}

.partner-profile-summary p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.62;
}

.partner-detail-section {
  display: grid;
  align-items: start;
  gap: clamp(40px, 5vw, 80px);
  grid-template-columns: minmax(0, 0.68fr) minmax(320px, 0.32fr);
  padding-top: clamp(68px, 7vw, 104px);
}

.partner-detail-article {
  max-width: 980px;
}

.partner-detail-article .section-kicker {
  margin-bottom: 16px;
}

.partner-access-line {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 24px;
}

.partner-access-line span {
  padding: 5px 8px;
  border: 1px solid rgba(218, 210, 188, 0.1);
  border-radius: 999px;
  background: rgba(246, 241, 231, 0.024);
  color: rgba(246, 241, 231, 0.64);
  font-size: 0.72rem;
  line-height: 1;
}

.partner-detail-lede {
  max-width: 900px;
  margin-top: 0;
  color: var(--text);
  font-size: clamp(1.34rem, 1.85vw, 1.72rem);
  font-weight: 690;
  line-height: 1.48;
}

.partner-detail-article p:not(.section-kicker, .partner-detail-lede) {
  max-width: 920px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.82;
}

.partner-detail-article h3 {
  margin-top: 36px;
  color: var(--text);
  font-size: clamp(1.24rem, 1.55vw, 1.44rem);
  font-weight: 780;
  line-height: 1.25;
}

.partner-detail-article .partner-tags {
  margin-top: 14px;
}

.partner-detail-list {
  display: grid;
  gap: 14px;
  max-width: 920px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.partner-detail-list li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.76;
}

.partner-detail-list li::before {
  position: absolute;
  top: 0.82em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(201, 151, 72, 0.8);
  content: "";
}

.partner-detail-panel {
  position: sticky;
  top: calc(var(--header-height) + 34px);
  padding: 26px;
  border: 1px solid rgba(218, 210, 188, 0.13);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(246, 241, 231, 0.035), rgba(0, 0, 0, 0) 58%),
    var(--surface);
  box-shadow: var(--card-shadow), var(--inset-line);
}

.partner-detail-panel::before {
  display: block;
  width: 46px;
  height: 2px;
  margin-bottom: 22px;
  background: linear-gradient(90deg, var(--pressure), rgba(115, 214, 199, 0.58));
  content: "";
}

.partner-detail-panel .margin-note-label {
  color: var(--pressure);
  font-size: 0.72rem;
  font-weight: 850;
  line-height: 1.2;
  text-transform: uppercase;
}

.partner-detail-nav {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 42px;
  padding-top: 24px;
  border-top: 1px solid rgba(218, 210, 188, 0.12);
}

.partner-nav-link {
  position: relative;
  display: flex;
  min-height: 86px;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  padding: 16px 18px 17px;
  border: 1px solid rgba(218, 210, 188, 0.14);
  border-radius: 8px;
  background: rgba(246, 241, 231, 0.018);
  box-shadow: var(--inset-line);
  color: var(--text);
  transition:
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.partner-nav-link::before {
  display: block;
  width: 18px;
  height: 1px;
  margin-bottom: 3px;
  background: rgba(201, 151, 72, 0.82);
  content: "";
}

.partner-nav-next,
.partner-nav-link:last-child {
  align-items: flex-end;
  text-align: right;
}

.partner-nav-link span {
  color: var(--soft);
  font-size: 0.62rem;
  font-weight: 850;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.partner-nav-link strong {
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 850;
  line-height: 1.22;
}

.partner-nav-link:hover,
.partner-nav-link:focus {
  border-color: rgba(201, 151, 72, 0.42);
  background: #060606;
  transform: translateY(-1px);
}

.partner-nav-link:hover strong,
.partner-nav-link:focus strong {
  color: var(--pressure);
}

.section-lead {
  position: relative;
  max-width: 880px;
  padding-top: 18px;
}

.section-lead p {
  margin-top: 20px;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.82;
}

.section-note {
  position: relative;
  max-width: 860px;
  margin-top: 34px;
  padding: 22px 24px 22px 28px;
  border: 1px solid rgba(115, 214, 199, 0.18);
  border-left: 3px solid var(--field);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(115, 214, 199, 0.075), rgba(115, 214, 199, 0.018) 46%, transparent),
    var(--surface);
  box-shadow: var(--inset-line);
  color: var(--muted);
  line-height: 1.75;
}

.definition-panel {
  display: grid;
  gap: 14px;
  margin-top: 38px;
  grid-template-columns: minmax(0, 0.72fr) minmax(280px, 0.42fr);
}

.definition-panel > div,
.definition-panel > aside {
  position: relative;
  isolation: isolate;
  padding: 28px;
  border: 1px solid rgba(218, 210, 188, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(246, 241, 231, 0.042), rgba(0, 0, 0, 0) 52%),
    var(--surface);
  box-shadow: var(--card-shadow), var(--inset-line);
  overflow: hidden;
}

.definition-panel > div::before,
.definition-panel > aside::before {
  position: absolute;
  top: 0;
  right: 22px;
  left: 22px;
  height: 2px;
  background: linear-gradient(90deg, rgba(214, 168, 95, 0.92), rgba(115, 214, 199, 0.16));
  content: "";
}

.definition-panel > aside {
  background:
    linear-gradient(180deg, rgba(115, 214, 199, 0.042), rgba(0, 0, 0, 0) 58%),
    var(--surface);
}

.definition-panel > aside::before {
  background: linear-gradient(90deg, rgba(115, 214, 199, 0.9), rgba(164, 183, 120, 0.16));
}

.definition-panel p,
.definition-panel li {
  color: var(--muted);
  line-height: 1.76;
}

.definition-panel ul,
.plain-list {
  display: grid;
  gap: 0;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.definition-panel li {
  position: relative;
  padding: 12px 0 12px 18px;
  border-top: 1px solid rgba(218, 210, 188, 0.09);
}

.definition-panel li::before {
  position: absolute;
  top: 22px;
  left: 0;
  width: 6px;
  height: 6px;
  border: 1px solid rgba(115, 214, 199, 0.72);
  border-radius: 50%;
  content: "";
}

.api-service {
  padding-top: clamp(72px, 8vw, 112px);
}

.api-offer {
  display: grid;
  align-items: start;
  gap: clamp(38px, 6vw, 92px);
  grid-template-columns: minmax(0, 0.68fr) minmax(400px, 0.42fr);
}

.api-offer .section-lead {
  max-width: 850px;
}

.api-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.api-sample {
  position: relative;
  isolation: isolate;
  border: 1px solid rgba(218, 210, 188, 0.13);
  border-radius: 8px;
  background: #020202;
  box-shadow: var(--inset-line);
  overflow: hidden;
}

.api-sample::before {
  position: absolute;
  top: 0;
  right: 24px;
  left: 24px;
  height: 2px;
  background: linear-gradient(90deg, rgba(115, 214, 199, 0.86), rgba(214, 168, 95, 0.16));
  content: "";
}

.api-sample-header {
  display: flex;
  min-height: 52px;
  align-items: center;
  justify-content: space-between;
  padding: 16px 22px;
  border-bottom: 1px solid rgba(218, 210, 188, 0.1);
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
}

.api-sample-header small {
  color: var(--soft);
  font-size: 0.68rem;
  font-weight: 850;
  text-transform: uppercase;
}

.api-sample pre {
  margin: 0;
  padding: 22px;
  overflow-x: auto;
  color: var(--muted);
  font-family: "SFMono-Regular", "Cascadia Code", "Liberation Mono", Menlo, monospace;
  font-size: clamp(0.72rem, 0.84vw, 0.88rem);
  line-height: 1.72;
}

.api-sample code {
  white-space: pre;
}

.api-sample p {
  margin: 0;
  padding: 0 22px 20px;
  color: rgb(59 58 57 / 66%);
  font-size: 0.78rem;
  font-style: italic;
  line-height: 1.5;
}

.api-offer-strip {
  display: grid;
  gap: 0;
  margin-top: 42px;
  border-top: 1px solid rgba(218, 210, 188, 0.12);
  border-bottom: 1px solid rgba(218, 210, 188, 0.12);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.api-offer-strip article {
  padding: 24px 28px 26px 0;
}

.api-offer-strip article + article {
  padding-left: 28px;
  border-left: 1px solid rgba(218, 210, 188, 0.1);
}

.api-offer-strip strong {
  display: block;
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 850;
  line-height: 1.25;
  text-transform: uppercase;
}

.api-offer-strip p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.68;
}

.api-table-wrap {
  width: 100%;
  margin-top: 40px;
  border: 1px solid rgba(218, 210, 188, 0.13);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--card-shadow), var(--inset-line);
  overflow-x: auto;
}

.api-table {
  width: 100%;
  border-collapse: collapse;
  color: var(--muted);
  font-size: 0.94rem;
}

.api-table caption {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.api-table th,
.api-table td {
  padding: 18px;
  border-bottom: 1px solid rgba(218, 210, 188, 0.12);
  text-align: left;
  vertical-align: top;
}

.api-table th {
  background: rgba(246, 241, 231, 0.035);
  color: var(--soft);
  font-size: 0.72rem;
  font-weight: 850;
  line-height: 1.3;
  text-transform: uppercase;
}

.api-table td:first-child,
.api-table th:first-child {
  width: 22%;
}

.api-table td:nth-child(2),
.api-table th:nth-child(2) {
  width: 52%;
}

.api-table code {
  color: var(--text);
  font-family: "SFMono-Regular", "Cascadia Code", "Liberation Mono", Menlo, monospace;
  font-size: 0.9em;
}

.api-technical-section {
  align-items: start;
}

.api-tech-ledger {
  display: grid;
  gap: 0;
  margin: 0;
  border-top: 1px solid rgba(218, 210, 188, 0.14);
}

.api-tech-ledger section {
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(128px, 0.28fr) minmax(0, 1fr);
  align-items: start;
  padding: 22px 0;
  border-bottom: 1px solid rgba(218, 210, 188, 0.12);
}

.api-tech-ledger strong {
  color: var(--text);
  font-size: 0.8rem;
  font-weight: 850;
  line-height: 1.35;
  text-transform: uppercase;
}

.api-tech-ledger p {
  color: var(--muted);
  line-height: 1.72;
}

.api-access-band {
  display: grid;
  align-items: center;
  gap: clamp(24px, 5vw, 54px);
  grid-template-columns: minmax(0, 0.42fr) minmax(0, 0.42fr) auto;
  margin-top: 40px;
  padding: 30px 0;
  border-top: 1px solid rgba(218, 210, 188, 0.14);
  border-bottom: 1px solid rgba(218, 210, 188, 0.14);
}

.api-access-band strong {
  display: block;
  color: var(--text);
  font-size: 0.8rem;
  font-weight: 850;
  line-height: 1.35;
  text-transform: uppercase;
}

.api-access-band p {
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.72;
}

.platform-program {
  padding-top: 34px;
  border-top: 0;
}

.program-profile {
  position: relative;
  display: grid;
  gap: clamp(22px, 3vw, 42px);
  grid-template-columns: minmax(74px, 0.12fr) minmax(0, 0.9fr) minmax(300px, 0.42fr);
  align-items: start;
  padding: clamp(24px, 3vw, 38px);
  border: 1px solid rgba(218, 210, 188, 0.15);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(246, 241, 231, 0.035), rgba(0, 0, 0, 0) 58%),
    var(--surface);
  box-shadow: var(--inset-line);
  overflow: hidden;
}

.program-index {
  position: relative;
  color: var(--soft);
}

.program-index span {
  display: block;
  color: rgba(246, 241, 231, 0.66);
  font-size: clamp(1.9rem, 3.1vw, 3.1rem);
  font-weight: 720;
  line-height: 0.9;
}

.program-index small {
  display: block;
  max-width: 92px;
  margin-top: 12px;
  color: var(--soft);
  font-size: 0.62rem;
  font-weight: 850;
  line-height: 1.35;
  text-transform: uppercase;
}

.program-main {
  max-width: 920px;
}

.program-main h2 {
  font-size: clamp(2.55rem, 4.5vw, 4.4rem);
  line-height: 0.94;
}

.program-main h3 {
  max-width: 780px;
  margin-top: 14px;
  color: var(--text);
  font-size: clamp(1.28rem, 1.75vw, 1.82rem);
  font-weight: 780;
  line-height: 1.18;
}

.program-main p {
  max-width: 840px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.78;
}

.program-link {
  display: inline-flex;
  width: fit-content;
  margin-top: 4px;
  padding-top: 16px;
  border-top: 1px solid rgba(218, 210, 188, 0.14);
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 850;
  text-transform: uppercase;
}

.program-link:hover,
.program-link:focus {
  color: var(--field);
}

.program-meta {
  display: grid;
  gap: 0;
  padding: 0;
  border-left: 1px solid rgba(218, 210, 188, 0.1);
  padding-left: clamp(18px, 2vw, 28px);
}

.program-fact {
  padding: 0 0 20px;
  border-bottom: 1px solid rgba(218, 210, 188, 0.1);
}

.program-fact + .program-fact {
  padding-top: 20px;
}

.program-fact strong {
  display: block;
  color: var(--soft);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.program-fact p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.62;
}

.program-fact ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.program-fact li {
  padding: 8px 10px;
  border: 1px solid rgba(218, 210, 188, 0.14);
  border-radius: 999px;
  background: rgba(246, 241, 231, 0.035);
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 760;
  line-height: 1;
}

.research-document {
  padding-top: clamp(70px, 8vw, 110px);
}

.research-layout {
  display: grid;
  width: 100%;
  align-items: start;
  gap: clamp(34px, 5vw, 72px);
  grid-template-columns: minmax(150px, 178px) minmax(0, 1fr);
  max-width: none;
  margin: 0;
}

.research-index {
  position: sticky;
  top: 108px;
  padding-top: 5px;
  color: var(--soft);
}

.research-index p {
  margin-bottom: 18px;
  color: var(--pressure);
  font-size: 0.72rem;
  font-weight: 850;
  line-height: 1.3;
  text-transform: uppercase;
}

.research-index nav {
  display: grid;
  gap: 2px;
}

.research-index a {
  padding: 8px 0 8px 13px;
  border-left: 1px solid rgba(218, 210, 188, 0.16);
  color: var(--soft);
  font-size: 0.74rem;
  font-weight: 760;
  line-height: 1.35;
}

.research-index a:hover,
.research-index a:focus,
.research-index a.is-active {
  border-left-color: var(--pressure);
  color: var(--text);
}

.research-index a.is-active {
  background: linear-gradient(90deg, rgba(214, 168, 95, 0.08), transparent);
}

.mobile-section-picker {
  display: none;
}

.mobile-section-picker-label {
  color: var(--pressure);
  font-size: 0.72rem;
  font-weight: 850;
  line-height: 1.3;
  text-transform: uppercase;
}

.mobile-section-select {
  position: relative;
  z-index: 4;
  margin-top: 10px;
}

.mobile-section-trigger {
  display: flex;
  width: 100%;
  min-height: 50px;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 0 16px;
  border: 1px solid rgba(218, 210, 188, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(246, 241, 231, 0.045), rgba(246, 241, 231, 0.012)),
    #020202;
  color: var(--text);
  font: inherit;
  font-size: 0.88rem;
  font-weight: 780;
  line-height: 1.2;
  text-align: left;
}

.mobile-section-trigger:focus {
  border-color: rgba(214, 168, 95, 0.46);
  outline: 2px solid rgba(115, 214, 199, 0.34);
  outline-offset: 3px;
}

.mobile-section-picker.is-open .select-chevron {
  transform: rotate(225deg) translate(-2px, -1px);
}

.mobile-section-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  left: 0;
  z-index: 20;
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(218, 210, 188, 0.18);
  border-radius: 8px;
  background: #050505;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.58), var(--inset-line);
}

.mobile-section-menu[hidden] {
  display: none;
}

.mobile-section-menu button {
  display: flex;
  min-height: 42px;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 12px;
  border: 0;
  border-bottom: 1px solid rgba(218, 210, 188, 0.08);
  background: transparent;
  color: rgba(246, 241, 231, 0.82);
  font: inherit;
  font-size: 0.88rem;
  font-weight: 720;
  line-height: 1.35;
  text-align: left;
}

.mobile-section-menu button:last-child {
  border-bottom: 0;
}

.mobile-section-menu button:hover,
.mobile-section-menu button:focus,
.mobile-section-menu button[aria-selected="true"] {
  background: rgba(115, 214, 199, 0.075);
  color: var(--text);
  outline: 0;
}

.mobile-section-menu button[aria-selected="true"]::after {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--field);
  content: "";
}

.research-flow {
  max-width: none;
}

.research-block {
  position: relative;
  isolation: isolate;
  padding: clamp(72px, 8vw, 112px) 0;
  border-top: 1px solid rgba(218, 210, 188, 0.12);
}

.research-block::after {
  position: absolute;
  top: clamp(64px, 7vw, 112px);
  right: clamp(-18px, 1vw, 18px);
  z-index: -1;
  width: clamp(300px, 30vw, 520px);
  aspect-ratio: 1;
  border: 1px solid rgba(218, 210, 188, 0.038);
  border-radius: 50%;
  background:
    radial-gradient(circle, transparent 0 23%, rgba(218, 210, 188, 0.052) 23.35% 25.15%, transparent 25.55%),
    radial-gradient(circle, transparent 0 46.5%, rgba(218, 210, 188, 0.036) 46.85% 47.45%, transparent 47.85%);
  content: "";
  opacity: 0.72;
  pointer-events: none;
}

.research-block::before {
  position: absolute;
  top: clamp(64px, 7vw, 112px);
  right: clamp(-18px, 1vw, 18px);
  z-index: -1;
  width: clamp(300px, 30vw, 520px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: linear-gradient(90deg, transparent 0 69%, rgba(0, 0, 0, 0.92) 69% 73%, transparent 73%);
  content: "";
  opacity: 0.7;
  pointer-events: none;
  transform: rotate(-34deg);
}

.research-block:first-child {
  padding-top: 0;
  border-top: 0;
}

.research-block:last-child {
  padding-bottom: 0;
}

.research-block h2 {
  max-width: 880px;
  font-size: clamp(2.45rem, 4.6vw, 4.1rem);
  line-height: 1.02;
}

.research-block h3 {
  max-width: 760px;
  margin-top: 42px;
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  line-height: 1.18;
}

.research-block p {
  max-width: 860px;
  margin-top: 20px;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.82;
}

.research-block .research-lede {
  margin-top: 24px;
  color: var(--muted);
}

.research-callout {
  position: relative;
  isolation: isolate;
  margin-top: 36px;
  padding: 24px;
  border: 1px solid rgba(218, 210, 188, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(115, 214, 199, 0.042), rgba(0, 0, 0, 0) 58%),
    var(--surface);
  box-shadow: var(--inset-line);
  overflow: hidden;
}

.research-callout::before {
  position: absolute;
  top: 0;
  right: 22px;
  left: 22px;
  height: 2px;
  background: linear-gradient(90deg, rgba(115, 214, 199, 0.9), rgba(164, 183, 120, 0.16));
  content: "";
}

.research-callout h3 {
  margin-top: 0;
  font-size: 1.08rem;
}

.research-callout ul {
  display: grid;
  gap: 0;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.research-callout li {
  position: relative;
  padding: 12px 0 12px 18px;
  border-top: 1px solid rgba(218, 210, 188, 0.09);
  color: var(--muted);
  line-height: 1.68;
}

.research-callout li::before {
  position: absolute;
  top: 22px;
  left: 0;
  width: 6px;
  height: 6px;
  border: 1px solid rgba(115, 214, 199, 0.72);
  border-radius: 50%;
  content: "";
}

.research-ledger,
.research-checklist {
  display: grid;
  gap: 0 42px;
  margin-top: 36px;
  border-top: 1px solid rgba(218, 210, 188, 0.14);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.research-ledger section,
.research-checklist section {
  padding: 22px 0;
  border-bottom: 1px solid rgba(218, 210, 188, 0.1);
}

.research-ledger strong,
.research-checklist strong {
  display: block;
  color: var(--text);
  font-size: 0.8rem;
  font-weight: 850;
  line-height: 1.3;
  text-transform: uppercase;
}

.research-ledger p,
.research-checklist p {
  max-width: none;
  margin-top: 10px;
  font-size: 0.98rem;
  line-height: 1.68;
}

.market-relation-map {
  position: relative;
  isolation: isolate;
  display: grid;
  margin: 38px 0 42px;
  padding: 18px;
  border: 1px solid rgba(218, 210, 188, 0.14);
  border-radius: 8px;
  background: #000000;
  box-shadow: var(--inset-line);
  gap: 12px;
  grid-template-areas:
    "equity rates fx"
    "metals core energy"
    "agriculture volatility session";
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
}

.market-relation-map::before {
  position: absolute;
  inset: 18px;
  z-index: 0;
  background:
    linear-gradient(90deg, transparent calc(50% - 1px), rgba(115, 214, 199, 0.18) calc(50% - 1px), rgba(115, 214, 199, 0.18) calc(50% + 1px), transparent calc(50% + 1px)),
    linear-gradient(0deg, transparent calc(50% - 1px), rgba(214, 168, 95, 0.12) calc(50% - 1px), rgba(214, 168, 95, 0.12) calc(50% + 1px), transparent calc(50% + 1px)),
    linear-gradient(28deg, transparent 49.5%, rgba(115, 214, 199, 0.09) 49.7%, rgba(115, 214, 199, 0.09) 50.1%, transparent 50.3%),
    linear-gradient(152deg, transparent 49.5%, rgba(214, 168, 95, 0.08) 49.7%, rgba(214, 168, 95, 0.08) 50.1%, transparent 50.3%);
  content: "";
  mask-image: radial-gradient(circle at 50% 50%, #000 0, #000 42%, transparent 78%);
  pointer-events: none;
}

.market-map-node,
.market-map-core {
  position: relative;
  z-index: 1;
  min-height: 148px;
  padding: 18px;
  border: 1px solid rgba(218, 210, 188, 0.12);
  border-radius: 6px;
  background: rgba(5, 5, 5, 0.9);
  box-shadow: var(--inset-line);
}

.market-map-node::before {
  position: absolute;
  top: 0;
  right: 16px;
  left: 16px;
  height: 1px;
  background: linear-gradient(90deg, rgba(115, 214, 199, 0.62), rgba(214, 168, 95, 0.1));
  content: "";
}

.market-map-node::after {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 7px;
  height: 7px;
  border: 1px solid rgba(115, 214, 199, 0.62);
  border-radius: 50%;
  content: "";
}

.market-map-core {
  display: grid;
  min-height: 178px;
  align-content: center;
  border-color: rgba(115, 214, 199, 0.34);
  background: #000000;
  text-align: center;
}

.market-map-core::before {
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(115, 214, 199, 0.12);
  border-radius: 4px;
  content: "";
  pointer-events: none;
}

.market-map-core span,
.market-map-node span {
  display: block;
  color: var(--soft);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.66rem;
  font-weight: 850;
  letter-spacing: 0;
  line-height: 1.3;
  text-transform: uppercase;
}

.market-map-core strong,
.market-map-node strong {
  display: block;
  margin-top: 10px;
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 850;
  line-height: 1.2;
  text-transform: uppercase;
}

.market-map-core strong {
  color: var(--field);
  font-size: 1.05rem;
}

.market-relation-map p {
  max-width: none;
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.56;
}

.market-map-equity {
  grid-area: equity;
}

.market-map-rates {
  grid-area: rates;
}

.market-map-fx {
  grid-area: fx;
}

.market-map-metals {
  grid-area: metals;
}

.market-map-core {
  grid-area: core;
}

.market-map-energy {
  grid-area: energy;
}

.market-map-agriculture {
  grid-area: agriculture;
}

.market-map-volatility {
  grid-area: volatility;
}

.market-map-session {
  grid-area: session;
}

.market-map-rates::before,
.market-map-energy::before,
.market-map-session::before {
  background: linear-gradient(90deg, rgba(214, 168, 95, 0.66), rgba(115, 214, 199, 0.1));
}

.market-map-metals::before,
.market-map-agriculture::before,
.market-map-volatility::before {
  background: linear-gradient(90deg, rgba(164, 183, 120, 0.62), rgba(115, 214, 199, 0.1));
}

.research-steps {
  display: grid;
  gap: 0;
  margin: 36px 0 0;
  padding: 0;
  border-top: 1px solid rgba(218, 210, 188, 0.14);
  list-style: none;
}

.research-steps li {
  display: grid;
  gap: 4px 18px;
  grid-template-columns: 52px minmax(0, 1fr);
  padding: 18px 0;
  border-bottom: 1px solid rgba(218, 210, 188, 0.1);
}

.research-steps span {
  grid-row: 1 / span 2;
  color: var(--pressure);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.74rem;
  font-weight: 850;
  line-height: 1.35;
}

.research-steps strong {
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 850;
  line-height: 1.3;
}

.research-steps p {
  max-width: 720px;
  margin-top: 0;
  font-size: 0.98rem;
  line-height: 1.66;
}

.research-status-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 36px;
}

.research-status-grid article {
  position: relative;
  isolation: isolate;
  min-height: 156px;
  padding: 24px;
  border: 1px solid rgba(218, 210, 188, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(246, 241, 231, 0.042), rgba(0, 0, 0, 0) 52%),
    var(--surface);
  box-shadow: var(--inset-line);
  overflow: hidden;
}

.research-status-grid article::before {
  position: absolute;
  top: 0;
  right: 18px;
  left: 18px;
  height: 2px;
  background: linear-gradient(90deg, rgba(115, 214, 199, 0.85), rgba(214, 168, 95, 0.12));
  content: "";
}

.research-status-grid article:nth-child(2)::before {
  background: linear-gradient(90deg, rgba(214, 168, 95, 0.9), rgba(164, 183, 120, 0.12));
}

.research-status-grid article:nth-child(3)::before {
  background: linear-gradient(90deg, rgba(164, 183, 120, 0.9), rgba(115, 214, 199, 0.12));
}

.research-status-grid article:nth-child(4)::before {
  background: linear-gradient(90deg, rgba(193, 118, 100, 0.82), rgba(214, 168, 95, 0.1));
}

.research-status-grid strong {
  display: block;
  color: var(--text);
  font-size: 0.8rem;
  font-weight: 850;
  line-height: 1.3;
  text-transform: uppercase;
}

.research-status-grid p {
  max-width: none;
  margin-top: 14px;
  font-size: 0.98rem;
  line-height: 1.68;
}

.plain-list li {
  padding: 14px 0;
  border-top: 1px solid rgba(218, 210, 188, 0.1);
  color: var(--muted);
  line-height: 1.7;
}

.plain-list strong {
  color: var(--text);
}

.article-section {
  padding: clamp(70px, 7vw, 104px) 0 clamp(88px, 9vw, 124px);
  border-top: 0;
}

.article-layout {
  display: grid;
  align-items: start;
  gap: clamp(34px, 5vw, 72px);
  grid-template-columns: minmax(0, 0.72fr) minmax(300px, 0.36fr);
}

.article-layout-single {
  display: block;
}

.article-layout-editorial {
  grid-template-columns: minmax(0, 0.75fr) minmax(260px, 0.25fr);
}

.article-body {
  max-width: 820px;
}

.article-body-presentation {
  max-width: 980px;
}

.article-body h2 {
  max-width: 960px;
  margin-bottom: 26px;
  font-size: clamp(2.55rem, 4.2vw, 3.75rem);
}

.article-body-presentation h2 {
  max-width: 920px;
  margin-bottom: 20px;
}

.article-body h3 {
  margin-top: 38px;
  font-size: 1.34rem;
}

.article-body p {
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.72;
}

.article-body-presentation p {
  max-width: 940px;
}

.article-subtitle {
  max-width: 900px;
  margin-bottom: 30px;
  color: var(--text);
  font-size: clamp(1.15rem, 1.5vw, 1.45rem);
  font-weight: 650;
  line-height: 1.52;
}

.article-body p + p {
  margin-top: 20px;
}

.legal-document {
  max-width: 980px;
  color: var(--muted);
}

.legal-page-section {
  padding-top: clamp(60px, 7vw, 96px);
}

.legal-layout .legal-document {
  max-width: none;
}

.legal-document .legal-effective {
  margin-bottom: 34px;
  color: var(--soft);
  font-size: 0.82rem;
  font-weight: 650;
  line-height: 1.5;
  text-transform: uppercase;
}

.legal-block {
  max-width: 980px;
}

.legal-document section + section {
  margin-top: 34px;
  padding-top: 28px;
  border-top: 1px solid rgba(218, 210, 188, 0.1);
}

.legal-document h2 {
  color: var(--text);
  font-size: clamp(1.25rem, 2vw, 1.72rem);
  font-weight: 760;
  line-height: 1.2;
}

.legal-document h3 {
  margin-top: 22px;
  color: rgba(246, 241, 231, 0.88);
  font-size: 1rem;
  font-weight: 740;
  line-height: 1.35;
}

.legal-document p,
.legal-document li {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.76;
}

.legal-document p {
  margin-top: 14px;
}

.legal-document ul,
.legal-document ol {
  margin: 14px 0 0;
  padding-left: 20px;
}

.legal-document li + li {
  margin-top: 8px;
}

.legal-document a {
  color: var(--field);
  text-decoration: underline;
  text-decoration-color: rgba(115, 214, 199, 0.42);
  text-underline-offset: 4px;
}

.latest-releases {
  position: relative;
  z-index: 0;
  isolation: isolate;
  display: grid;
  align-content: start;
  margin-top: clamp(18px, 4vw, 52px);
  padding: 8px 0 8px 26px;
  color: var(--muted);
}

.latest-releases::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 1px;
  background: rgba(218, 210, 188, 0.2);
  content: "";
}

.latest-releases::after {
  position: absolute;
  right: 0;
  bottom: -28px;
  z-index: -1;
  color: rgba(246, 241, 231, 0.025);
  content: var(--sidebar-word, "NOTES");
  font-size: clamp(4rem, 7vw, 7.5rem);
  font-weight: 900;
  line-height: 1;
  pointer-events: none;
}

.latest-releases .margin-note-label {
  margin-bottom: 8px;
  color: var(--pressure);
  font-size: 0.74rem;
  font-weight: 850;
  line-height: 1.3;
  text-transform: uppercase;
}

.latest-release {
  display: block;
  max-width: 340px;
  padding: 16px 0;
  border-top: 1px solid rgba(218, 210, 188, 0.12);
}

.latest-release time,
.release-list-item time,
.release-article time {
  display: block;
  color: var(--soft);
  font-size: 0.72rem;
  font-weight: 760;
  line-height: 1.3;
  text-transform: uppercase;
}

.latest-release strong {
  display: block;
  margin-top: 7px;
  color: var(--text);
  font-size: 1rem;
  font-weight: 850;
  line-height: 1.28;
}

.latest-release span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.55;
}

.latest-release-empty {
  max-width: 340px;
  margin: 14px 0 0;
  padding: 16px 0;
  border-top: 1px solid rgba(218, 210, 188, 0.12);
  color: rgba(187, 179, 163, 0.72);
  font-size: 0.86rem;
  font-style: italic;
  line-height: 1.55;
}

.latest-release:hover strong,
.latest-release:focus strong,
.latest-release-link:hover,
.latest-release-link:focus {
  color: var(--pressure);
}

.latest-release-link {
  width: fit-content;
  margin-top: 10px;
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 850;
}

.release-section {
  padding-top: clamp(70px, 8vw, 108px);
}

.release-layout {
  display: grid;
  align-items: start;
  gap: clamp(42px, 6vw, 86px);
  grid-template-columns: minmax(0, 0.7fr) minmax(270px, 0.3fr);
}

.release-list {
  display: grid;
  max-width: 1080px;
  margin-top: 42px;
  border-top: 1px solid rgba(218, 210, 188, 0.14);
}

.release-list-item {
  display: grid;
  gap: clamp(18px, 3vw, 52px);
  grid-template-columns: minmax(160px, 0.22fr) minmax(0, 1fr);
  padding: 28px 0;
  border-bottom: 1px solid rgba(218, 210, 188, 0.14);
}

.release-list-item h3 {
  margin: 0;
  font-size: clamp(1.55rem, 2.8vw, 2.4rem);
  line-height: 1.04;
}

.release-list-item p {
  max-width: 720px;
  margin-top: 10px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
}

.release-list-item a:hover,
.release-list-item a:focus {
  color: var(--pressure);
}

.release-table-wrap {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  margin-top: 42px;
  border: 1px solid rgba(218, 210, 188, 0.12);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--card-shadow), var(--inset-line);
  overflow-x: auto;
}

.release-table {
  width: 100%;
  border-collapse: collapse;
  color: var(--muted);
  font-size: 0.92rem;
}

.release-table caption {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.release-table th,
.release-table td {
  padding: 18px;
  border-bottom: 1px solid rgba(218, 210, 188, 0.13);
  text-align: left;
  vertical-align: top;
}

.release-table th {
  background: rgba(246, 241, 231, 0.035);
  color: var(--soft);
  font-size: 0.72rem;
  font-weight: 850;
  line-height: 1.3;
  text-transform: uppercase;
}

.release-table tbody tr {
  transition:
    background 160ms ease,
    color 160ms ease;
}

.release-table tbody tr:hover {
  background: rgba(246, 241, 231, 0.026);
}

.release-table td:first-child,
.release-table th:first-child {
  width: 15%;
}

.release-table td:nth-child(2),
.release-table th:nth-child(2) {
  width: 18%;
}

.release-table td:nth-child(3),
.release-table th:nth-child(3) {
  width: 36%;
}

.release-table td:nth-child(4),
.release-table th:nth-child(4),
.release-table td:nth-child(5),
.release-table th:nth-child(5) {
  width: 15%;
}

.release-table a {
  color: var(--text);
  font-size: 1.04rem;
  font-weight: 850;
  line-height: 1.28;
}

.release-table a:hover,
.release-table a:focus {
  color: var(--pressure);
}

.release-index-table-wrap {
  margin-top: 34px;
  border-color: rgba(218, 210, 188, 0.08);
  background: #020202;
  box-shadow: none;
}

.release-index-table {
  min-width: 900px;
  table-layout: fixed;
  font-size: 0.78rem;
}

.release-index-table th,
.release-index-table td {
  overflow: hidden;
  padding: 12px 14px;
  border-bottom-color: rgba(218, 210, 188, 0.075);
  font-weight: 500;
  line-height: 1.25;
  text-overflow: ellipsis;
  vertical-align: middle;
  white-space: nowrap;
}

.release-index-table th {
  background: rgba(246, 241, 231, 0.018);
  color: rgba(246, 241, 231, 0.56);
  font-size: 0.62rem;
  font-weight: 680;
  letter-spacing: 0;
}

.release-index-table tbody tr:hover {
  background: rgba(246, 241, 231, 0.018);
}

.release-index-table a {
  display: block;
  overflow: hidden;
  color: rgba(246, 241, 231, 0.86);
  font-size: 0.82rem;
  font-weight: 620;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.release-index-table td:first-child,
.release-index-table th:first-child {
  width: 16%;
}

.release-index-table td:nth-child(2),
.release-index-table th:nth-child(2) {
  width: 18%;
}

.release-index-table td:nth-child(3),
.release-index-table th:nth-child(3) {
  width: 34%;
}

.release-index-table td:nth-child(4),
.release-index-table th:nth-child(4) {
  width: 18%;
}

.release-index-table td:nth-child(5),
.release-index-table th:nth-child(5) {
  width: 14%;
}

.release-table .table-empty-row td {
  padding: 22px 18px;
  color: rgba(187, 179, 163, 0.72);
  font-size: 0.82rem;
  font-style: italic;
  line-height: 1.45;
  text-align: left;
  white-space: normal;
}

.release-table .table-empty-row:hover {
  background: transparent;
}

.release-status {
  display: inline-block;
  box-sizing: border-box;
  max-width: 100%;
  overflow: hidden;
  padding: 4px 7px;
  border: 1px solid rgba(115, 214, 199, 0.18);
  border-radius: 999px;
  background: rgba(115, 214, 199, 0.035);
  color: rgba(115, 214, 199, 0.78);
  font-size: 0.6rem;
  font-weight: 680;
  line-height: 1;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.signature-library-section {
  padding-top: clamp(70px, 8vw, 108px);
}

.signature-filter-bar {
  display: grid;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  align-items: end;
  gap: 12px;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 320px);
  margin-top: 34px;
  padding: 14px;
  border: 1px solid rgba(218, 210, 188, 0.1);
  border-radius: 8px;
  background: #020202;
  box-shadow: var(--inset-line);
}

.signature-filter-group {
  display: grid;
  min-width: 0;
  gap: 10px;
  grid-template-columns: repeat(5, minmax(120px, 1fr));
}

.signature-filter-bar label {
  display: grid;
  min-width: 0;
  gap: 7px;
}

.signature-filter-bar span {
  color: rgba(187, 179, 163, 0.7);
  font-size: 0.58rem;
  font-weight: 760;
  line-height: 1.2;
  text-transform: uppercase;
}

.signature-filter-bar select,
.signature-filter-bar input {
  width: 100%;
  min-height: 38px;
  border: 1px solid rgba(218, 210, 188, 0.12);
  border-radius: 6px;
  background-color: #000000;
  color: rgba(246, 241, 231, 0.84);
  font: inherit;
  font-size: 0.78rem;
  line-height: 1.3;
}

.signature-filter-bar select {
  appearance: none;
  padding: 8px 30px 8px 10px;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(246, 241, 231, 0.62) 50%),
    linear-gradient(135deg, rgba(246, 241, 231, 0.62) 50%, transparent 50%);
  background-position:
    calc(100% - 15px) 52%,
    calc(100% - 10px) 52%;
  background-repeat: no-repeat;
  background-size: 5px 5px, 5px 5px;
}

.signature-filter-bar input {
  padding: 8px 11px;
}

.signature-filter-bar select:focus,
.signature-filter-bar input:focus {
  border-color: rgba(115, 214, 199, 0.42);
  outline: 0;
  box-shadow: 0 0 0 3px rgba(115, 214, 199, 0.07);
}

.signature-filter-bar input::placeholder {
  color: rgba(187, 179, 163, 0.42);
}

.signature-table-wrap {
  margin-top: 14px;
  border-color: rgba(218, 210, 188, 0.08);
  background: #020202;
  box-shadow: none;
}

.signature-library-table {
  min-width: 1280px;
  table-layout: fixed;
  font-size: 0.78rem;
}

.signature-library-table th,
.signature-library-table td {
  overflow: hidden;
  padding: 12px 14px;
  border-bottom-color: rgba(218, 210, 188, 0.075);
  font-weight: 500;
  line-height: 1.25;
  text-overflow: ellipsis;
  vertical-align: middle;
  white-space: nowrap;
}

.signature-library-table th {
  background: rgba(246, 241, 231, 0.018);
  color: rgba(246, 241, 231, 0.56);
  font-size: 0.62rem;
  font-weight: 680;
  letter-spacing: 0;
}

.signature-library-table tbody tr:hover {
  background: rgba(246, 241, 231, 0.018);
}

.signature-library-table a {
  display: block;
  overflow: hidden;
  color: rgba(246, 241, 231, 0.86);
  font-size: 0.82rem;
  font-weight: 620;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.signature-library-table .signature-title {
  display: block;
  overflow: hidden;
  color: rgba(246, 241, 231, 0.72);
  font-size: 0.82rem;
  font-weight: 560;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.signature-library-table tr.is-hidden {
  display: none !important;
}

.signature-library-table td:first-child,
.signature-library-table th:first-child {
  width: 9%;
}

.signature-library-table td:nth-child(2),
.signature-library-table th:nth-child(2) {
  width: 28%;
}

.signature-library-table td:nth-child(3),
.signature-library-table th:nth-child(3) {
  width: 10%;
}

.signature-library-table td:nth-child(4),
.signature-library-table th:nth-child(4),
.signature-library-table td:nth-child(5),
.signature-library-table th:nth-child(5) {
  width: 10%;
}

.signature-library-table td:nth-child(6),
.signature-library-table th:nth-child(6) {
  width: 8%;
}

.signature-library-table td:nth-child(7),
.signature-library-table th:nth-child(7) {
  width: 11%;
}

.signature-library-table td:nth-child(8),
.signature-library-table th:nth-child(8) {
  width: 8%;
}

.signature-library-table td:nth-child(9),
.signature-library-table th:nth-child(9) {
  width: 6%;
}

.signature-status {
  display: inline-block;
  box-sizing: border-box;
  max-width: 100%;
  overflow: hidden;
  padding: 4px 7px;
  border: 1px solid rgba(218, 210, 188, 0.1);
  border-radius: 999px;
  background: rgba(246, 241, 231, 0.018);
  color: var(--muted);
  font-size: 0.6rem;
  font-weight: 680;
  line-height: 1;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.signature-status.active {
  border-color: rgba(83, 194, 121, 0.28);
  color: #74d68d;
}

.signature-status.validation {
  border-color: rgba(214, 168, 95, 0.2);
  color: var(--pressure);
}

.signature-status.conditional {
  border-color: rgba(164, 183, 120, 0.22);
  color: var(--proof);
}

.signature-status.candidate {
  border-color: rgba(115, 214, 199, 0.2);
  color: var(--field);
}

.signature-status.monitoring {
  border-color: rgba(129, 165, 211, 0.24);
  color: #90b2dc;
}

.signature-status.study {
  border-color: rgba(202, 166, 218, 0.22);
  color: #c6a7d7;
}

.signature-status.suspended {
  border-color: rgba(210, 139, 87, 0.22);
  color: #d28b57;
}

.signature-status.retired {
  border-color: rgba(193, 118, 100, 0.18);
  color: var(--danger);
}

.signature-status-legend {
  display: grid;
  gap: 7px;
  width: min(360px, 100%);
  margin-top: 18px;
  color: rgba(187, 179, 163, 0.68);
  font-size: 0.68rem;
  line-height: 1.35;
}

.signature-status-legend .legend-title {
  color: rgba(246, 241, 231, 0.78);
  font-size: 0.66rem;
  font-weight: 720;
  line-height: 1.2;
  text-transform: uppercase;
}

.signature-status-legend .legend-copy {
  max-width: 340px;
  margin-bottom: 4px;
  color: rgba(187, 179, 163, 0.64);
  font-size: 0.68rem;
  line-height: 1.5;
}

.signature-status-legend > span {
  display: grid;
  align-items: center;
  gap: 8px;
  grid-template-columns: 96px minmax(0, 1fr);
  min-width: 0;
}

.signature-status-legend .signature-status {
  width: 96px;
  font-size: 0.56rem;
}

.signature-load-controls {
  display: grid;
  width: 100%;
  justify-items: center;
  gap: 10px;
  margin-top: 22px;
  color: rgba(187, 179, 163, 0.68);
  font-size: 0.68rem;
  line-height: 1.35;
  text-align: center;
}

.signature-load-controls[hidden] {
  display: none !important;
}

.signature-load-more {
  min-height: 34px;
  padding: 7px 14px;
  border-color: rgba(115, 214, 199, 0.3);
  border-radius: 6px;
  background: rgba(115, 214, 199, 0.075);
  color: #d8fffa;
  font-size: 0.66rem;
  font-weight: 720;
  white-space: nowrap;
}

.signature-load-more:hover,
.signature-load-more:focus {
  border-color: rgba(115, 214, 199, 0.52);
  background: rgba(115, 214, 199, 0.12);
}

.signature-load-more[hidden] {
  display: none !important;
}

.signature-detail-meta {
  display: grid;
  gap: 0;
  margin-top: 24px;
  border-top: 1px solid rgba(218, 210, 188, 0.12);
}

.signature-detail-meta div {
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(120px, 0.22fr) minmax(0, 1fr);
  padding: 14px 0;
  border-bottom: 1px solid rgba(218, 210, 188, 0.1);
}

.signature-detail-meta dt {
  color: var(--soft);
  font-size: 0.72rem;
  font-weight: 850;
  text-transform: uppercase;
}

.signature-detail-meta dd {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.signature-detail-note {
  margin-top: 28px;
  color: var(--soft);
  font-size: 0.9rem;
  line-height: 1.7;
}

.signature-sidebar {
  --sidebar-word: "SIGNATURE";
}

.release-article {
  max-width: none;
}

.release-article .section-kicker {
  margin-bottom: 14px;
}

.release-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  align-items: center;
  color: var(--soft);
}

.release-meta span {
  color: var(--soft);
  font-size: 0.72rem;
  font-weight: 760;
  line-height: 1.3;
  text-transform: uppercase;
}

.release-meta span::before {
  margin-right: 16px;
  color: rgba(218, 210, 188, 0.32);
  content: "/";
}

.release-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.release-tags li {
  padding: 7px 9px;
  border: 1px solid rgba(218, 210, 188, 0.12);
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.release-deck {
  margin-top: 26px;
  color: var(--text);
  font-size: clamp(1.2rem, 1.7vw, 1.5rem);
  font-weight: 650;
  line-height: 1.5;
}

.release-article p:not(.section-kicker, .release-deck) {
  max-width: 980px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.78;
}

.release-nav {
  display: flex;
  gap: 14px;
  justify-content: space-between;
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid rgba(218, 210, 188, 0.14);
}

.release-nav-link {
  position: relative;
  display: flex;
  flex: 1 1 0;
  min-height: 88px;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  padding: 16px 18px 17px;
  border: 1px solid rgba(218, 210, 188, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(246, 241, 231, 0.04), rgba(0, 0, 0, 0) 58%),
    var(--surface);
  box-shadow: var(--inset-line);
  color: var(--text);
  transition:
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.release-nav-link::before {
  display: block;
  width: 18px;
  height: 1px;
  margin-bottom: 3px;
  background: rgba(201, 151, 72, 0.82);
  content: "";
}

.release-nav-next,
.release-nav-link:last-child {
  align-items: flex-end;
  text-align: right;
}

.release-nav-link span {
  color: var(--soft);
  font-size: 0.67rem;
  font-weight: 850;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.release-nav-link strong {
  color: var(--text);
  font-size: 0.96rem;
  font-weight: 850;
  line-height: 1.22;
}

.release-nav-link:hover,
.release-nav-link:focus {
  border-color: rgba(201, 151, 72, 0.46);
  background: #060606;
  transform: translateY(-1px);
}

.release-nav-link:hover strong,
.release-nav-link:focus strong {
  color: var(--pressure);
}

.release-sidebar {
  margin-top: 0;
}

.article-sidebar {
  display: grid;
  gap: 22px;
}

.sidebar-card {
  position: relative;
  isolation: isolate;
  border: 1px solid rgba(218, 210, 188, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(246, 241, 231, 0.04), rgba(0, 0, 0, 0) 54%),
    var(--surface);
  box-shadow: var(--inset-line);
  overflow: hidden;
}

.sidebar-card strong {
  display: block;
  padding: 16px 18px;
  background: rgba(246, 241, 231, 0.035);
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 850;
  line-height: 1.3;
  text-transform: uppercase;
}

.sidebar-card h3 {
  padding: 18px 18px 0;
  font-size: 1.16rem;
}

.sidebar-card p,
.sidebar-card li {
  color: var(--muted);
  line-height: 1.68;
}

.sidebar-card p {
  padding: 12px 18px 20px;
}

.sidebar-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 12px 18px 20px;
  list-style: none;
}

.sidebar-card li span {
  color: var(--text);
  font-weight: 820;
}

.process-chain {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 38px 0 0;
  padding: 0;
  list-style: none;
}

.route-note {
  max-width: 760px;
  margin-top: 34px;
  padding: 22px 24px;
  border: 1px solid rgba(164, 183, 120, 0.22);
  border-left: 3px solid var(--proof);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(164, 183, 120, 0.08), rgba(164, 183, 120, 0.018) 48%, transparent),
    var(--surface);
  color: var(--muted);
  line-height: 1.75;
}

.contact-section {
  padding-top: clamp(64px, 8vw, 102px);
  padding-bottom: clamp(70px, 9vw, 118px);
}

.contact-layout {
  display: grid;
  width: 100%;
  align-items: start;
  gap: clamp(28px, 5vw, 74px);
  grid-template-columns: minmax(0, 0.62fr) minmax(320px, 0.38fr);
}

.contact-form-card {
  display: grid;
  gap: 18px;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(218, 210, 188, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(246, 241, 231, 0.035), rgba(0, 0, 0, 0) 54%),
    var(--surface);
  box-shadow: var(--card-shadow), var(--inset-line);
}

.contact-form-head h2,
.contact-info-panel h2 {
  margin-top: 10px;
  font-size: clamp(1.85rem, 3vw, 3.2rem);
  line-height: 1.02;
}

.contact-form-head p:not(.section-kicker),
.contact-info-panel p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.68;
}

.form-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-form-card label,
.form-field {
  display: grid;
  gap: 8px;
}

.contact-form-card label span,
.field-label {
  display: block;
  color: var(--soft);
  font-size: 0.68rem;
  font-weight: 760;
  line-height: 1.3;
  text-transform: uppercase;
}

.contact-form-card input,
.contact-form-card textarea {
  width: 100%;
  border: 1px solid rgba(218, 210, 188, 0.14);
  border-radius: 6px;
  background: #000000;
  color: var(--text);
  font: inherit;
  font-size: 0.94rem;
  line-height: 1.4;
}

.contact-form-card input,
.inquiry-select-trigger {
  min-height: 42px;
  padding: 9px 11px;
}

.contact-form-card textarea {
  resize: vertical;
  min-height: 142px;
  padding: 11px;
}

.contact-form-card input:focus,
.contact-form-card textarea:focus {
  border-color: rgba(115, 214, 199, 0.52);
  outline: 0;
  box-shadow: 0 0 0 3px rgba(115, 214, 199, 0.08);
}

.inquiry-select {
  position: relative;
  z-index: 3;
}

.inquiry-select-trigger {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border: 1px solid rgba(218, 210, 188, 0.14);
  border-radius: 6px;
  background: #000000;
  color: var(--text);
  font: inherit;
  font-size: 0.94rem;
  line-height: 1.4;
  text-align: left;
}

.inquiry-select-trigger:focus {
  border-color: rgba(115, 214, 199, 0.52);
  outline: 0;
  box-shadow: 0 0 0 3px rgba(115, 214, 199, 0.08);
}

.select-chevron {
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  border-right: 2px solid rgba(246, 241, 231, 0.76);
  border-bottom: 2px solid rgba(246, 241, 231, 0.76);
  transform: rotate(45deg) translateY(-2px);
  transition: transform 150ms ease;
}

.inquiry-select.is-open .select-chevron {
  transform: rotate(225deg) translate(-2px, -1px);
}

.inquiry-select-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  left: 0;
  z-index: 10;
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(218, 210, 188, 0.18);
  border-radius: 8px;
  background: #050505;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.58), var(--inset-line);
}

.inquiry-select-menu[hidden] {
  display: none;
}

.inquiry-select-menu button {
  display: flex;
  min-height: 42px;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  border: 0;
  border-bottom: 1px solid rgba(218, 210, 188, 0.08);
  background: transparent;
  color: rgba(246, 241, 231, 0.82);
  font: inherit;
  font-size: 0.88rem;
  text-align: left;
}

.inquiry-select-menu button:last-child {
  border-bottom: 0;
}

.inquiry-select-menu button:hover,
.inquiry-select-menu button:focus,
.inquiry-select-menu button[aria-selected="true"] {
  background: rgba(115, 214, 199, 0.075);
  color: var(--text);
  outline: 0;
}

.inquiry-select-menu button[aria-selected="true"]::after {
  color: var(--field);
  content: "Selected";
  font-size: 0.62rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.form-error {
  margin-top: 7px;
  color: #d97c62;
  font-size: 0.76rem;
  line-height: 1.4;
}

.form-status {
  width: fit-content;
  margin: 0;
  padding: 10px 12px;
  border: 1px solid rgba(218, 210, 188, 0.16);
  border-radius: 6px;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.4;
}

.form-status.is-success {
  border-color: rgba(164, 183, 120, 0.38);
  color: #d4dfb3;
}

.form-status.is-error {
  border-color: rgba(217, 124, 98, 0.48);
  color: #e1a08e;
}

.inquiry-select.has-error .inquiry-select-trigger {
  border-color: rgba(217, 124, 98, 0.72);
  box-shadow: 0 0 0 3px rgba(217, 124, 98, 0.1);
}

.contact-submit {
  width: fit-content;
  margin-top: 4px;
}

.contact-submit:disabled {
  cursor: wait;
  opacity: 0.62;
}

.contact-info-panel {
  align-self: start;
  padding-top: 8px;
}

.contact-info-panel dl {
  display: grid;
  gap: 0;
  margin: 26px 0 0;
}

.contact-info-panel dl div {
  display: grid;
  gap: 12px;
  grid-template-columns: 92px minmax(0, 1fr);
  padding: 18px 0;
  border-top: 1px solid rgba(218, 210, 188, 0.12);
}

.contact-info-panel dl div:last-child {
  border-bottom: 1px solid rgba(218, 210, 188, 0.12);
}

.contact-info-panel dt {
  color: var(--soft);
  font-size: 0.68rem;
  font-weight: 760;
  line-height: 1.3;
  text-transform: uppercase;
}

.contact-info-panel dd {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.55;
}

.contact-info-panel a {
  color: var(--text);
  font-weight: 760;
}

.contact-info-panel a:hover,
.contact-info-panel a:focus {
  color: var(--field);
}

.disclosure-list {
  display: grid;
  gap: 14px;
  margin-top: 38px;
}

.section-copy {
  position: relative;
  max-width: 640px;
  padding-top: 18px;
}

.section-kicker {
  margin-bottom: 13px;
}

h2 {
  color: var(--text);
  font-size: 3.6rem;
  font-weight: 830;
  line-height: 1;
}

h3 {
  color: var(--text);
  font-size: 1.3rem;
  line-height: 1.25;
}

.section-copy > p:last-child,
.section-heading > p,
.closing-section > p {
  margin-top: 20px;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.8;
}

.concept-matrix,
.signature-table,
.system-bands {
  display: grid;
  gap: 14px;
}

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

.concept-matrix div,
.signature-table div,
.system-bands article {
  position: relative;
  isolation: isolate;
  min-height: 148px;
  padding: 24px;
  border: 1px solid rgba(218, 210, 188, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(246, 241, 231, 0.042), rgba(0, 0, 0, 0) 52%),
    var(--surface);
  box-shadow: var(--card-shadow), var(--inset-line);
  overflow: hidden;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.concept-matrix div:hover,
.signature-table div:hover,
.system-bands article:hover {
  border-color: rgba(218, 210, 188, 0.24);
  background:
    linear-gradient(180deg, rgba(246, 241, 231, 0.056), rgba(0, 0, 0, 0) 56%),
    var(--surface-2);
  transform: translateY(-2px);
}

.concept-matrix span,
.signature-table span,
.system-bands article > p {
  color: var(--text);
  font-size: 0.8rem;
  font-weight: 850;
  line-height: 1.3;
  text-transform: uppercase;
}

.concept-matrix p,
.signature-table p,
.system-bands span {
  display: block;
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.65;
}

.method-chain,
.pilot-track {
  display: grid;
  gap: 10px;
  margin: 38px 0 0;
  padding: 0;
  list-style: none;
}

.method-chain {
  counter-reset: method;
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.process-chain {
  counter-reset: process;
}

.method-chain li,
.pilot-track li,
.process-chain li,
.evidence-stack div {
  position: relative;
  min-height: 72px;
  padding: 42px 16px 18px;
  border: 1px solid rgba(218, 210, 188, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(246, 241, 231, 0.04), rgba(0, 0, 0, 0) 52%),
    var(--surface);
  box-shadow: var(--inset-line);
  color: var(--text);
  font-size: 0.86rem;
  font-weight: 850;
  overflow: hidden;
}

.method-chain li,
.process-chain li {
  counter-increment: process;
}

.method-chain li {
  counter-increment: method;
}

.method-chain li::before,
.process-chain li::before {
  position: absolute;
  top: 14px;
  left: 16px;
  color: var(--pressure);
  content: counter(process, decimal-leading-zero);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.7rem;
  font-weight: 850;
}

.method-chain li::before {
  content: counter(method, decimal-leading-zero);
}

.method-chain li span {
  display: block;
}

.method-chain li::after {
  position: absolute;
  top: 50%;
  right: -11px;
  width: 11px;
  height: 1px;
  background: var(--line-strong);
  content: "";
}

.method-chain li:last-child::after {
  display: none;
}

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

.evidence-stack {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 38px;
}

.evidence-stack div {
  min-height: 86px;
  border-left: 3px solid var(--proof);
  color: var(--text);
}

.pilot-track {
  counter-reset: pilot;
}

.pilot-track li {
  min-height: 58px;
  padding: 18px 16px 18px 54px;
  counter-increment: pilot;
}

.pilot-track li::before {
  position: absolute;
  top: 16px;
  left: 16px;
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--pressure);
  content: counter(pilot);
  font-size: 0.72rem;
}

.system-bands {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  margin-top: 38px;
}

.system-bands article {
  min-height: 190px;
}

.system-bands h3 {
  margin-top: 16px;
}

.closing-section {
  text-align: left;
}

.closing-section > * {
  max-width: 780px;
}

.closing-section .button {
  margin-top: 28px;
}

.site-footer {
  position: relative;
  z-index: 0;
  isolation: isolate;
  display: flex;
  flex-wrap: wrap;
  min-height: 200px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px 0;
  color: var(--soft);
  font-size: 0.82rem;
}

.site-footer::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  z-index: -1;
  width: 100vw;
  border-top: 1px solid rgba(218, 210, 188, 0.12);
  background: #000000;
  content: "";
  transform: translateX(-50%);
}

.footer-brand {
  display: grid;
  gap: 20px;
  order: 1;
}

.footer-wordmark {
  display: inline-flex;
  align-items: center;
  gap: clamp(7px, 0.8vw, 11px);
  color: var(--text);
  font-size: clamp(2.2rem, 4.1vw, 4rem);
  font-weight: 800;
  line-height: 0.9;
}

.footer-wordmark:hover,
.footer-wordmark:focus {
  color: var(--text);
}

.footer-wordmark:focus-visible {
  outline: 2px solid rgba(115, 214, 199, 0.72);
  outline-offset: 7px;
}

.footer-wordmark .brand-mark {
  width: clamp(34px, 3.8vw, 56px);
  height: clamp(34px, 3.8vw, 56px);
}

.footer-wordmark .brand-mark::before {
  width: 45%;
  height: 45%;
}

.footer-brand small {
  color: var(--soft);
  font-size: 0.76rem;
  line-height: 1.5;
}

.language-button-footer {
  order: 2;
}

.footer-legal-note {
  position: relative;
  order: 3;
  flex: 0 0 100%;
  width: 100%;
  max-width: none;
  margin: 4px 0 0;
  padding: 13px 0 0;
  border-top: 1px solid rgba(218, 210, 188, 0.1);
  color: rgba(246, 241, 231, 0.56);
  font-size: 0.72rem;
  line-height: 1.4;
  text-align: center;
}

.footer-legal-bar {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 10;
  padding: 12px var(--page-gutter);
  border-top: 1px solid rgba(218, 210, 188, 0.1);
  background: #000000;
}

.footer-legal-bar .footer-legal-note {
  width: min(100%, var(--content-width));
  margin: 0 auto;
  padding: 0;
  border-top: 0;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: flex-end;
  order: 2;
}

.error-page {
  display: grid;
  min-height: 100vh;
  place-items: center;
}

.error-page .coming-soon {
  width: min(520px, calc(100% - 32px));
  text-align: center;
}

.error-page .lede {
  margin-top: 18px;
  color: var(--muted);
  line-height: 1.7;
}

.error-page .button {
  margin-top: 28px;
}

@media (max-width: 980px) {
  .site-header {
    --mobile-header-safe-fill: 72px;

    position: fixed;
    top: calc(var(--mobile-header-safe-fill) * -1);
    z-index: 120;
    box-sizing: border-box;
    min-height: calc(68px + var(--mobile-header-safe-fill));
    padding-top: var(--mobile-header-safe-fill);
    background: #000000;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .site-header-inner {
    width: 100%;
    min-height: 68px;
    padding-right: var(--page-gutter);
    padding-left: var(--page-gutter);
  }

  .brand,
  .nav-toggle {
    z-index: 31;
  }

  .brand {
    min-width: 0;
    font-size: 1.72rem;
  }

  .brand-mark {
    width: 28px;
    height: 28px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: fixed;
    inset: 0;
    width: 100vw;
    max-width: 100vw;
    min-height: 100dvh;
    z-index: 25;
    display: flex;
    flex-direction: column;
    gap: 0;
    align-content: start;
    align-items: stretch;
    justify-content: stretch;
    padding:
      max(92px, calc(72px + env(safe-area-inset-top)))
      var(--page-gutter)
      max(34px, calc(28px + env(safe-area-inset-bottom)));
    background:
      linear-gradient(180deg, rgba(246, 241, 231, 0.025), rgba(0, 0, 0, 0) 34%),
      #000000;
    opacity: 0;
    overflow-y: auto;
    overscroll-behavior: contain;
    pointer-events: none;
    transform: none;
    transition: none;
    visibility: hidden;
    white-space: normal;
  }

  .nav-links a {
    display: flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid rgba(218, 210, 188, 0.09);
    color: rgba(246, 241, 231, 0.84);
    font-size: clamp(0.98rem, 4vw, 1.16rem);
    font-weight: 720;
    letter-spacing: 0.01em;
    line-height: 1.1;
    text-align: center;
  }

  .nav-group {
    width: 100%;
    border-bottom: 1px solid rgba(218, 210, 188, 0.09);
  }

  .nav-group summary {
    display: flex;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    color: rgba(246, 241, 231, 0.84);
    font-size: clamp(0.98rem, 4vw, 1.16rem);
    font-weight: 720;
    letter-spacing: 0.01em;
    line-height: 1.1;
    text-align: center;
  }

  .nav-group.is-active summary {
    color: var(--pressure);
  }

  .nav-submenu {
    gap: 0;
    width: 100%;
    margin: 0 0 10px;
    padding: 0 0 7px;
    border: 0;
    border-radius: 0;
    background: transparent;
  }

  .nav-submenu-head {
    display: none;
  }

  .nav-submenu-grid {
    display: grid;
    gap: 0;
    border-top: 1px solid rgba(218, 210, 188, 0.08);
  }

  .nav-group:not([open]) .nav-submenu {
    display: none;
  }

  .nav-links .nav-submenu a {
    display: grid;
    grid-template-columns: 32px minmax(0, 1fr);
    gap: 14px;
    min-height: 62px;
    justify-content: stretch;
    padding: 12px clamp(18px, 6vw, 40px);
    border: 0;
    border-bottom: 1px solid rgba(218, 210, 188, 0.08);
    background: transparent;
    color: rgba(246, 241, 231, 0.62);
    font-size: 0.78rem;
    font-weight: 720;
    text-align: left;
  }

  .nav-links .nav-submenu a:first-child {
    margin-top: 0;
    border-top: 0;
  }

  .nav-links .nav-submenu a:hover,
  .nav-links .nav-submenu a:focus,
  .nav-links .nav-submenu a[aria-current="page"] {
    background: rgba(214, 168, 95, 0.045);
    color: var(--pressure);
  }

  .nav-submenu-index {
    display: inline-grid;
    width: 30px;
    height: 30px;
    place-items: center;
    align-self: center;
    border: 1px solid rgba(218, 210, 188, 0.14);
    border-radius: 50%;
    color: rgba(214, 168, 95, 0.88);
    font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
    font-size: 0.58rem;
    font-weight: 850;
  }

  .nav-submenu-copy {
    display: grid;
    gap: 4px;
    min-width: 0;
  }

  .nav-submenu-copy strong {
    color: rgba(246, 241, 231, 0.84);
    font-size: 0.88rem;
    line-height: 1.2;
  }

  .nav-submenu-copy small {
    color: rgba(246, 241, 231, 0.46);
    font-size: 0.68rem;
    font-weight: 650;
    line-height: 1.25;
  }

  body.nav-open .nav-links a {
    display: flex !important;
    position: relative;
    opacity: 1 !important;
    visibility: visible !important;
  }

  body.nav-open .nav-links .nav-submenu a {
    display: grid !important;
  }

  body.nav-open .nav-links summary {
    display: flex !important;
    opacity: 1 !important;
    visibility: visible !important;
  }

  .nav-links a:first-child {
    margin-top: 10px;
    border-top: 1px solid rgba(218, 210, 188, 0.09);
  }

  .nav-links a[aria-current="page"] {
    color: var(--pressure);
  }

  .nav-links .language-button {
    order: -1;
    width: 100%;
    min-height: 58px;
    justify-content: space-between;
    margin: 0 0 18px;
    padding: 0 0 18px;
    border: 0;
    border-bottom: 1px solid rgba(218, 210, 188, 0.12);
    border-radius: 0;
    background: transparent;
    color: rgba(246, 241, 231, 0.82);
    font-size: 0.78rem;
  }

  .nav-links .language-button-label {
    display: inline-flex;
    align-items: center;
    color: rgba(246, 241, 231, 0.48);
    font-size: 0.66rem;
    font-weight: 850;
    letter-spacing: 0.08em;
    line-height: 1;
    text-transform: uppercase;
  }

  .nav-links .language-button-current {
    min-height: 34px;
    padding: 0 2px;
    color: rgba(246, 241, 231, 0.88);
    font-size: 0.78rem;
  }

  .nav-links .language-button::before {
    display: none;
  }

  .mobile-legal-nav {
    display: flex;
    flex-wrap: wrap;
    width: min(100%, 340px);
    align-items: center;
    justify-content: center;
    gap: 8px 15px;
    margin: auto auto 0;
    padding-top: 20px;
    border-top: 1px solid rgba(218, 210, 188, 0.12);
  }

  .mobile-legal-label {
    flex: 0 0 100%;
    margin-bottom: 2px;
    color: rgba(246, 241, 231, 0.46);
    font-size: 0.62rem;
    font-weight: 850;
    letter-spacing: 0.08em;
    line-height: 1;
    text-align: center;
    text-transform: uppercase;
  }

  .nav-links .mobile-legal-nav a {
    min-height: 0;
    justify-content: center;
    padding: 2px 0;
    border: 0;
    background: transparent;
    color: rgba(246, 241, 231, 0.62);
    font-size: 0.74rem;
    font-weight: 720;
    letter-spacing: 0;
    line-height: 1.35;
    text-transform: none;
  }

  .nav-links .mobile-legal-nav a:last-child {
    color: rgba(201, 151, 72, 0.9);
  }

  .nav-links .mobile-legal-nav a:hover,
  .nav-links .mobile-legal-nav a:focus {
    color: var(--pressure);
  }

  .nav-toggle:focus-visible,
  .nav-links a:focus-visible,
  .nav-links summary:focus-visible,
  .nav-links .language-button:focus-visible {
    outline: 2px solid rgba(115, 214, 199, 0.72);
    outline-offset: 4px;
  }

  body.nav-open {
    overflow: hidden;
  }

  body.nav-open main,
  body.nav-open .site-footer {
    display: none;
    pointer-events: none;
  }

  body.nav-open .nav-links {
    opacity: 1;
    pointer-events: auto;
    transform: none;
    visibility: visible;
  }

  body.nav-open .brand {
    position: fixed;
    top: max(18px, calc(14px + env(safe-area-inset-top)));
    left: var(--page-gutter);
    z-index: 40;
  }

  body.nav-open .nav-toggle {
    position: fixed;
    top: max(18px, calc(14px + env(safe-area-inset-top)));
    right: var(--page-gutter);
    z-index: 41;
    border-color: rgba(214, 168, 95, 0.38);
    background: rgba(214, 168, 95, 0.07);
  }

  body.nav-open .nav-toggle span:nth-child(1) {
    transform: rotate(45deg);
  }

  body.nav-open .nav-toggle span:nth-child(2) {
    opacity: 0;
  }

  body.nav-open .nav-toggle span:nth-child(3) {
    transform: rotate(-45deg);
  }

  .split-section,
  .split-section.reverse,
  .page-hero {
    grid-template-columns: 1fr;
  }

  .hero {
    width: 100%;
    grid-template-areas:
      "copy"
      "card"
      "support";
    grid-template-columns: 1fr;
    min-height: auto;
    align-items: start;
    row-gap: 34px;
    column-gap: 0;
    padding-right: var(--page-gutter);
    padding-left: var(--page-gutter);
    padding-top: clamp(110px, 18vw, 136px);
    padding-bottom: 72px;
    text-align: center;
  }

  .hero-flow-arrow {
    display: none;
  }

  .hero-left {
    display: contents;
  }

  .hero-copy {
    width: min(100%, calc(100vw - (var(--page-gutter) * 2)));
    max-width: min(760px, calc(100vw - (var(--page-gutter) * 2)));
    min-width: 0;
    margin: 0 auto;
  }

  .hero-support {
    width: min(100%, calc(100vw - (var(--page-gutter) * 2)));
    max-width: min(760px, calc(100vw - (var(--page-gutter) * 2)));
    min-width: 0;
    margin: 0 auto;
  }

  .hero-copy h1,
  .hero-subtitle,
  .hero-text {
    margin-right: auto;
    margin-left: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-mbo-wrap {
    width: min(100%, calc(100vw - (var(--page-gutter) * 2)));
    max-width: min(680px, calc(100vw - (var(--page-gutter) * 2)));
    min-width: 0;
    justify-self: center;
  }

  .hero-mbo-panel {
    min-height: 460px;
  }

  .mbo-code {
    min-height: 0;
    max-width: 100%;
  }

  .terminal-stream {
    height: 380px;
    min-height: 380px;
    max-height: 380px;
  }

  .hero-visual {
    top: 0;
  }

  h1 {
    font-size: 4.4rem;
  }

  .page-hero h1 {
    font-size: 3.55rem;
  }

  h2 {
    font-size: 3rem;
  }

  .hero-subtitle {
    font-size: 1.24rem;
  }

  .method-chain,
  .process-chain,
  .evidence-stack,
  .system-bands,
  .page-grid,
  .page-grid.three,
  .page-grid.two,
  .api-offer,
  .api-access-band,
  .contact-layout,
  .definition-panel,
  .program-profile,
  .research-split,
  .article-layout,
  .partner-detail-section,
  .release-layout,
  .release-list-item {
    grid-template-columns: 1fr;
  }

  .signature-filter-bar {
    grid-template-columns: 1fr;
  }

  .signature-filter-group {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .partner-detail-panel {
    position: relative;
    top: auto;
  }

  .research-layout {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .research-block::after {
    display: none;
  }

  .research-block::before {
    display: none;
  }

  .research-index {
    position: static;
    top: auto;
    padding: 0 0 22px;
    border-bottom: 1px solid rgba(218, 210, 188, 0.12);
  }

  .research-index nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }

  .research-index a {
    padding: 8px 10px;
    border: 1px solid rgba(218, 210, 188, 0.13);
    border-radius: 999px;
  }

  .research-index a.is-active {
    border-color: rgba(214, 168, 95, 0.42);
    background: rgba(214, 168, 95, 0.08);
  }

  .research-index.has-section-picker > p,
  .research-index.has-section-picker nav {
    display: none;
  }

  .research-index.has-section-picker .mobile-section-picker {
    display: block;
  }

  .program-meta {
    padding-left: 0;
    border-left: 0;
  }

  .api-access-band .button {
    width: fit-content;
  }

  .contact-info-panel {
    padding-top: 0;
  }

  .market-relation-map {
    grid-template-areas:
      "core core"
      "equity rates"
      "fx metals"
      "energy agriculture"
      "volatility session";
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .method-chain li::after {
    top: auto;
    right: auto;
    bottom: -11px;
    left: 24px;
    width: 1px;
    height: 11px;
  }

  .home-sector-header {
    grid-template-columns: 1fr;
  }

  .home-sector-text {
    max-width: 760px;
  }

  .home-sector-band-copy {
    max-width: 760px;
  }
}

@media (max-width: 640px) {
  :root {
    --page-gutter: 22px;
    --mobile-menu-frame: min(100vw, 390px);
    --content-width: calc(var(--mobile-menu-frame) - (var(--page-gutter) * 2));
    --mobile-safe-width: var(--content-width);
    --mobile-panel-width: min(calc(100vw - 20px), calc(var(--mobile-menu-frame) - 20px));
  }

  .hero,
  .page-hero,
  .section,
  .site-footer {
    width: var(--content-width);
  }

  .signature-library-section {
    width: var(--mobile-menu-frame);
    max-width: 100vw;
    margin-right: 0;
    margin-left: 0;
    padding-right: var(--page-gutter);
    padding-left: var(--page-gutter);
  }

  .site-header,
  .site-header-inner {
    min-height: 64px;
  }

  .site-header {
    min-height: calc(64px + var(--mobile-header-safe-fill));
  }

  .site-header-inner {
    width: var(--mobile-menu-frame);
    margin-right: 0;
    margin-left: 0;
  }

  .brand {
    font-size: 1.48rem;
  }

  .brand-mark {
    width: 26px;
    height: 26px;
  }

  .brand-mark::before {
    width: 10px;
    height: 10px;
  }

  .nav-toggle {
    width: 42px;
    height: 42px;
  }

  .nav-links {
    width: var(--mobile-menu-frame);
    max-width: var(--mobile-menu-frame);
    padding:
      max(84px, calc(66px + env(safe-area-inset-top)))
      var(--page-gutter)
      max(30px, calc(24px + env(safe-area-inset-bottom)));
  }

  body.nav-open .nav-toggle {
    right: auto;
    left: min(calc(100vw - 64px), calc(390px - 64px));
  }

  .nav-links a {
    min-height: 46px;
    font-size: clamp(0.98rem, 4.2vw, 1.12rem);
  }

  .hero {
    width: var(--mobile-menu-frame);
    max-width: 100vw;
    margin-right: 0;
    margin-left: 0;
    row-gap: 26px;
    column-gap: 0;
    padding-right: var(--page-gutter);
    padding-left: var(--page-gutter);
    padding-top: 102px;
    padding-bottom: 58px;
  }

  .hero-copy {
    width: var(--mobile-safe-width);
    max-width: var(--mobile-safe-width);
    justify-self: center;
    margin-right: auto;
    margin-left: auto;
  }

  .hero-support {
    width: var(--mobile-safe-width);
    max-width: var(--mobile-safe-width);
    justify-self: center;
    margin-right: auto;
    margin-left: auto;
  }

  .hero-mbo-wrap {
    width: var(--mobile-panel-width);
    max-width: var(--mobile-panel-width);
    justify-self: start;
    margin-right: calc((var(--mobile-safe-width) - var(--mobile-panel-width)) / 2);
    margin-left: calc((var(--mobile-safe-width) - var(--mobile-panel-width)) / 2);
  }

  .eyebrow {
    max-width: var(--mobile-safe-width);
    margin-right: auto;
    margin-left: auto;
    font-size: 0.66rem;
    line-height: 1.45;
    overflow-wrap: anywhere;
  }

  h1 {
    max-width: var(--mobile-safe-width);
    margin-right: auto;
    margin-left: auto;
    font-size: clamp(2.18rem, 9vw, 2.42rem);
    line-height: 0.96;
  }

  .hero h1 span {
    display: block;
  }

  .page-hero h1 {
    font-size: 2.82rem;
  }

  html[lang="es"] .page-header h1 {
    font-size: clamp(2.3rem, 9.4vw, 2.72rem);
    line-height: 1;
    overflow-wrap: normal;
    word-break: normal;
  }

  h2 {
    font-size: 2.3rem;
  }

  .signature-library-section .section-lead h2 {
    max-width: var(--mobile-safe-width);
    font-size: 2.05rem;
    overflow-wrap: break-word;
  }

  .hero-subtitle {
    max-width: min(var(--mobile-safe-width), 326px);
    font-size: 0.96rem;
    line-height: 1.5;
  }

  .hero-text {
    max-width: min(var(--mobile-safe-width), 326px);
    font-size: 0.92rem;
    line-height: 1.68;
  }

  .hero-actions {
    width: var(--mobile-safe-width);
    margin-right: auto;
    margin-left: auto;
  }

  .hero-actions .button {
    flex: 1 1 100%;
  }

  .home-sector-intro {
    padding: 54px 0 38px;
  }

  .home-sector-band {
    padding: 42px 0 50px;
  }

  .home-sector-inner {
    width: var(--content-width);
  }

  .home-sector-header {
    gap: 18px;
    padding-bottom: 24px;
  }

  .home-sector-text {
    font-size: 0.88rem;
    line-height: 1.66;
  }

  .home-sector-band-head {
    margin-bottom: 26px;
    padding-top: 22px;
  }

  .home-sector-band-head::before {
    top: 0;
  }

  .home-sector-band-copy h2,
  .home-sector-band-copy h3 {
    font-size: clamp(1.35rem, 6vw, 1.82rem);
  }

  .home-sector-band-copy p {
    font-size: 0.88rem;
    line-height: 1.66;
  }

  .home-sector-carousel {
    gap: 12px;
  }

  .home-sector-carousel-toolbar {
    justify-content: flex-start;
  }

  .home-sector-arrow {
    width: 44px;
    height: 44px;
  }

  .home-sector-track {
    display: flex;
    gap: 10px;
    width: 100%;
    padding-bottom: 4px;
    overflow-x: auto;
    scroll-snap-type: inline mandatory;
  }

  .home-sector-card {
    flex: 0 0 min(82vw, 320px);
    width: min(82vw, 320px);
    max-width: min(82vw, 320px);
    min-height: 180px;
    padding: 20px 18px;
  }

  .home-sector-card strong {
    margin-top: 22px;
    font-size: 1rem;
    overflow-wrap: normal;
    word-break: normal;
  }

  .home-sector-card p {
    font-size: 0.9rem;
    line-height: 1.64;
    overflow-wrap: normal;
    word-break: normal;
  }

  .home-delivery-section {
    padding: 48px 0 54px;
  }

  .home-delivery-tabs {
    display: none;
  }

  .home-delivery-mobile-cards {
    display: block;
    margin-right: calc(var(--page-gutter) * -1);
  }

  .home-delivery-mobile-track {
    display: flex;
    gap: 12px;
    padding: 1px var(--page-gutter) 7px 0;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline mandatory;
    scrollbar-width: none;
  }

  .home-delivery-mobile-track::-webkit-scrollbar {
    display: none;
  }

  .home-delivery-mobile-card {
    flex: 0 0 min(84vw, 330px);
    width: min(84vw, 330px);
    max-width: min(84vw, 330px);
    min-height: 520px;
    padding: 24px 20px 26px;
    border: 1px solid rgba(218, 210, 188, 0.13);
    border-radius: 8px;
    background:
      linear-gradient(180deg, rgba(115, 214, 199, 0.055), rgba(214, 168, 95, 0.025) 46%, rgba(0, 0, 0, 0) 100%),
      #020202;
    box-shadow: var(--inset-line);
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  .home-delivery-mobile-card-head {
    display: grid;
    gap: 18px;
    grid-template-columns: 34px minmax(0, 1fr);
    align-items: start;
  }

  .home-delivery-mobile-card-head span {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border: 1px solid rgba(214, 168, 95, 0.42);
    border-radius: 50%;
    color: var(--pressure);
    font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
    font-size: 0.64rem;
    font-weight: 850;
    line-height: 1;
  }

  .home-delivery-mobile-card-head strong {
    color: var(--text);
    font-size: clamp(1.08rem, 5.2vw, 1.42rem);
    font-weight: 900;
    line-height: 1.08;
    text-transform: uppercase;
  }

  .home-delivery-mobile-card p {
    margin-top: 22px;
    color: var(--muted);
    font-size: 0.94rem;
    line-height: 1.62;
    white-space: pre-line;
  }

  .hero-visual {
    top: 0;
  }

  .hero-mbo-panel {
    min-height: 402px;
    padding: 15px 12px;
    overflow: hidden;
  }

  .mbo-panel-header {
    grid-template-columns: auto 1fr;
    column-gap: 9px;
    font-size: 0.94rem;
    text-align: left;
  }

  .mbo-panel-header span:nth-child(2) {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .mbo-panel-header small {
    grid-column: 2;
  }

  .mbo-code {
    min-height: 0;
    max-width: 100%;
    font-size: clamp(0.56rem, 2.62vw, 0.68rem);
    line-height: 1.5;
    overflow: hidden;
    text-align: left;
    width: 100%;
    min-width: 100%;
  }

  .mbo-code code {
    min-width: 0;
  }

  .terminal-stream {
    height: 334px;
    min-height: 334px;
    max-height: 334px;
  }

  .mbo-disclaimer {
    text-align: center;
  }

  .hero-visual figcaption {
    grid-template-columns: 1fr;
  }

  .concept-matrix,
  .signature-table,
  .research-ledger,
  .research-checklist,
  .research-status-grid,
  .api-offer-strip {
    grid-template-columns: 1fr;
  }

  .api-offer-strip article,
  .api-offer-strip article + article {
    padding: 20px 0;
    border-left: 0;
    border-top: 1px solid rgba(218, 210, 188, 0.1);
  }

  .api-offer-strip article:first-child {
    border-top: 0;
  }

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

  .contact-form-card {
    padding: 20px;
  }

  .contact-info-panel dl div {
    grid-template-columns: 1fr;
  }

  .api-sample pre {
    padding: 18px;
    font-size: 0.72rem;
    line-height: 1.58;
  }

  .api-tech-ledger section {
    grid-template-columns: 1fr;
  }

  .api-table th,
  .api-table td {
    padding: 12px;
  }

  .api-table-wrap,
  .release-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-color: rgba(218, 210, 188, 0.28) transparent;
    scrollbar-width: thin;
  }

  .api-table {
    min-width: 720px;
    table-layout: fixed;
    font-size: 0.76rem;
  }

  .api-table th {
    font-size: 0.58rem;
  }

  .api-table code {
    white-space: normal;
  }

  .signature-detail-meta div {
    grid-template-columns: 1fr;
  }

  .market-relation-map {
    padding: 14px;
    grid-template-areas:
      "core"
      "equity"
      "rates"
      "fx"
      "metals"
      "energy"
      "agriculture"
      "volatility"
      "session";
    grid-template-columns: 1fr;
  }

  .market-relation-map::before {
    inset: 14px;
    opacity: 0.5;
  }

  .release-nav {
    flex-direction: column;
  }

  .partner-detail-nav {
    grid-template-columns: 1fr;
  }

  .release-nav-link,
  .partner-nav-link {
    min-height: 76px;
    align-items: flex-start;
    padding: 15px 16px;
    text-align: left;
  }

  .release-nav-next,
  .release-nav-link:last-child,
  .partner-nav-next,
  .partner-nav-link:last-child {
    align-items: flex-start;
    text-align: left;
  }

  .release-table,
  .release-table thead,
  .release-table tbody,
  .release-table tr,
  .release-table th,
  .release-table td {
    width: auto;
  }

  .release-table {
    display: table;
  }

  .release-table thead {
    display: table-header-group;
  }

  .release-table tbody {
    display: table-row-group;
  }

  .release-table tr {
    display: table-row;
  }

  .release-table th,
  .release-table td {
    display: table-cell;
  }

  .release-table tr {
    padding: 0;
  }

  .release-table th,
  .release-table td {
    padding: 10px 12px;
    line-height: 1.25;
  }

  .release-table td::before {
    display: none;
    content: none;
  }

  .release-table a {
    font-size: 0.78rem;
    line-height: 1.22;
  }

  .release-index-table {
    min-width: 760px;
    table-layout: fixed;
  }

  .signature-library-table {
    min-width: 1120px;
    table-layout: fixed;
  }

  .release-index-table th,
  .release-index-table td,
  .release-index-table a,
  .release-status,
  .signature-library-table th,
  .signature-library-table td,
  .signature-library-table a,
  .signature-library-table .signature-title,
  .signature-status {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .release-status,
  .signature-status {
    max-width: 100%;
  }

  .site-footer {
    min-height: auto;
    align-items: center;
    flex-direction: column;
    gap: 22px;
    padding: 30px 0 34px;
    text-align: center;
  }

  .footer-brand {
    justify-items: center;
    gap: 12px;
  }

  .footer-wordmark {
    gap: 8px;
    font-size: 2.25rem;
  }

  .footer-wordmark .brand-mark {
    width: 34px;
    height: 34px;
  }

  .footer-brand small {
    max-width: 300px;
    font-size: 0.68rem;
  }

  .footer-legal-note {
    max-width: none;
    font-size: 0.68rem;
    line-height: 1.45;
  }

  .language-button-footer {
    min-height: 40px;
  }

  .site-footer nav {
    max-width: 320px;
    justify-content: center;
    gap: 10px 14px;
    font-size: 0.72rem;
    line-height: 1.4;
  }

  .signature-filter-bar {
    padding: 12px;
  }

  .signature-filter-group {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 390px) {
  h1 {
    font-size: 2.34rem;
  }

  .page-hero h1 {
    font-size: 2.42rem;
  }

  h2 {
    font-size: 2.05rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  body.page-transition-ready .site-header,
  body.page-transition-ready main,
  body.page-transition-ready .site-footer,
  body.page-transition-ready::after {
    transition: none !important;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}

/* OCO-Web-V2 brand and navigation overrides on top of the LDRG static theme. */
.brand {
  --oco-mark-muted: #565f68;
  --oco-mark-accent: #9f8cff;
  --oco-mark-secondary: #73d6c7;
  min-width: 96px;
  gap: 8px;
  font-size: 1.96rem;
  font-weight: 800;
}

.brand-mark {
  border-color: var(--oco-mark-muted);
  box-shadow: 0 0 18px color-mix(in srgb, var(--oco-mark-accent) 18%, transparent);
}

.brand-mark::before {
  border-color: var(--oco-mark-accent);
  border-left-color: var(--oco-mark-secondary);
}

.brand-wordmark {
  color: var(--text);
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: 0;
  line-height: inherit;
}

.nav-links {
  gap: clamp(10px, 1.5vw, 22px);
  font-size: 0.72rem;
}

.footer-wordmark {
  --oco-mark-muted: #565f68;
  --oco-mark-accent: #9f8cff;
  --oco-mark-secondary: #73d6c7;
  gap: clamp(7px, 0.8vw, 11px);
  font-size: clamp(2.2rem, 4.1vw, 4rem);
  font-weight: 800;
  line-height: 0.9;
}

.footer-wordmark .brand-mark {
  width: clamp(34px, 3.8vw, 56px);
  height: clamp(34px, 3.8vw, 56px);
}

.footer-wordmark .brand-mark::before {
  width: 45%;
  height: 45%;
}

.page-grid article p {
  overflow-wrap: anywhere;
}

.venture-category-section {
  position: relative;
  isolation: isolate;
  margin-top: 0;
  padding: clamp(48px, 6vw, 82px) 0 clamp(52px, 6vw, 88px);
  border-top: 1px solid rgba(218, 210, 188, 0.1);
  border-bottom: 1px solid rgba(218, 210, 188, 0.07);
}

.venture-category-section::before {
  position: absolute;
  inset: 0 50%;
  z-index: -1;
  width: 100vw;
  background: #000000;
  content: "";
  transform: translateX(-50%);
}

.venture-category-section.is-gray::before {
  background: #070707;
}

.venture-category-section.is-black::before {
  background: #000000;
}

.venture-category-section + .venture-category-section {
  margin-top: 0;
}

.venture-category-head {
  position: relative;
  display: block;
  margin: 0 0 clamp(24px, 3vw, 38px);
  padding-top: 0;
}

.venture-category-head::before {
  position: absolute;
  top: -18px;
  left: 0;
  width: 86px;
  height: 2px;
  background: linear-gradient(90deg, var(--pressure), rgba(115, 214, 199, 0.76));
  content: "";
}

.venture-category-copy {
  display: block;
  max-width: 920px;
}

.venture-category-copy h2 {
  color: var(--text);
  font-size: clamp(1.65rem, 2.6vw, 2.45rem);
  font-weight: 900;
  line-height: 1.02;
  text-transform: uppercase;
}

.venture-category-copy p {
  max-width: 860px;
  margin-top: 14px;
  color: var(--muted);
  font-size: clamp(0.96rem, 1.1vw, 1.04rem);
  line-height: 1.72;
}

.venture-category-section .venture-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 0;
}

@media (max-width: 760px) {
  .venture-category-section {
    padding: 42px 0 50px;
  }

  .venture-category-head {
    margin-bottom: 22px;
  }

  .venture-category-copy h2 {
    font-size: clamp(1.45rem, 7vw, 2rem);
  }
}

.venture-card {
  gap: 0;
}

.venture-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
  color: var(--text);
}

.venture-icon {
  --venture-icon-muted: #5f594f;
  --venture-icon-accent: #d6a85f;
  --venture-icon-secondary: #73d6c7;
  display: inline-grid;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--venture-icon-muted);
  border-radius: 50%;
  background: transparent;
  box-shadow: 0 0 18px color-mix(in srgb, var(--venture-icon-accent) 16%, transparent);
}

.venture-icon::before {
  width: 12px;
  height: 12px;
  border: 2px solid var(--venture-icon-accent);
  border-left-color: var(--venture-icon-secondary);
  border-radius: 50%;
  content: "";
}

.venture-wordmark {
  color: var(--text);
  font-size: 1.96rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
}

.venture-category-label {
  margin: 0 0 10px;
  color: var(--field);
  font-size: 0.68rem;
  font-weight: 820;
  line-height: 1.35;
  text-transform: uppercase;
}

.venture-protocol-name {
  display: grid;
  gap: 4px;
  margin: 12px 0 0;
  padding-top: 12px;
  border-top: 1px solid rgba(218, 210, 188, 0.1);
  color: rgba(246, 241, 231, 0.76);
  font-size: 0.76rem;
  line-height: 1.45;
}

.venture-protocol-name span {
  color: rgba(246, 241, 231, 0.44);
  font-size: 0.62rem;
  font-weight: 820;
  letter-spacing: 0.06em;
  line-height: 1;
  text-transform: uppercase;
}

.venture-protocol-name strong {
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 760;
  line-height: 1.42;
}

.partner-detail-article > .venture-brand {
  margin: 12px 0 28px;
}

.logo-lab-section {
  padding-top: 72px;
}

.logo-direction-stage {
  display: grid;
  align-items: stretch;
  gap: 18px;
  grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.7fr);
  margin-top: 46px;
}

.logo-direction-hero,
.logo-system-rules,
.logo-direction-card,
.logo-family-panel {
  --logo-accent: var(--field);
  position: relative;
  border: 1px solid rgba(218, 210, 188, 0.14);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--card-shadow), var(--inset-line);
  overflow: hidden;
}

.logo-direction-hero::before,
.logo-system-rules::before,
.logo-direction-card::before,
.logo-family-panel::before {
  position: absolute;
  top: 0;
  right: 22px;
  left: 22px;
  height: 2px;
  background: linear-gradient(90deg, var(--logo-accent), rgba(214, 168, 95, 0.08));
  content: "";
}

.logo-direction-hero {
  display: grid;
  min-height: 330px;
  align-content: center;
  gap: 28px;
  padding: clamp(30px, 5vw, 58px);
  background:
    radial-gradient(circle at 82% 14%, rgba(115, 214, 199, 0.11), transparent 34%),
    linear-gradient(180deg, rgba(246, 241, 231, 0.04), rgba(0, 0, 0, 0) 62%),
    var(--surface);
}

.logo-direction-hero p {
  max-width: 700px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  line-height: 1.75;
}

.logo-system-rules {
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 28px;
}

.logo-system-rules strong {
  color: var(--pressure);
  font-size: 0.72rem;
  font-weight: 860;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.logo-system-rules ul {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.logo-system-rules li {
  padding: 18px 0;
  border-top: 1px solid rgba(218, 210, 188, 0.12);
  color: var(--soft);
  font-size: 0.94rem;
  line-height: 1.58;
}

.logo-direction-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 18px;
}

.logo-direction-card {
  display: grid;
  min-height: 360px;
  align-content: start;
  gap: 22px;
  padding: 28px;
}

.logo-direction-card[data-variant="pure"] {
  --logo-accent: var(--pressure);
}

.logo-direction-card[data-variant="seal"] {
  --logo-accent: var(--proof);
}

.logo-direction-head {
  display: grid;
  gap: 12px;
}

.logo-direction-head span {
  color: rgba(246, 241, 231, 0.42);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.72rem;
  font-weight: 850;
  line-height: 1;
}

.logo-direction-head h3 {
  margin: 0;
  color: var(--text);
  font-size: clamp(1.45rem, 2vw, 2rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.02;
}

.logo-direction-card p {
  max-width: none;
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.66;
}

.logo-direction-lockups {
  display: grid;
  gap: 12px;
  margin-top: auto;
  padding-top: 6px;
}

.logo-lockup {
  --logo-accent: var(--field);
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  min-height: 42px;
  align-items: center;
  gap: 12px;
  color: var(--text);
}

.logo-lockup[data-tone="pressure"] {
  --logo-accent: var(--pressure);
}

.logo-lockup[data-tone="proof"] {
  --logo-accent: var(--proof);
}

.logo-lockup[data-tone="core"] {
  --logo-accent: var(--text);
}

.logo-lockup strong {
  display: block;
  font-size: clamp(1.1rem, 1.6vw, 1.36rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
  overflow-wrap: anywhere;
}

.logo-lockup-wordmark-img {
  display: block;
  width: auto;
  height: 38px;
  object-fit: contain;
}

.logo-lockup.is-master {
  gap: clamp(16px, 2vw, 22px);
}

.logo-lockup.is-master strong {
  font-size: clamp(4rem, 10vw, 8rem);
  letter-spacing: 0;
}

.logo-lockup.is-master .logo-lockup-wordmark-img {
  height: clamp(90px, 12vw, 148px);
  max-width: min(620px, 100%);
}

.logo-lockup.is-specimen {
  gap: 18px;
}

.logo-lockup.is-specimen strong {
  font-size: clamp(2rem, 3.4vw, 3.55rem);
  line-height: 0.94;
}

.logo-lockup.is-specimen .logo-lockup-wordmark-img {
  height: clamp(58px, 7vw, 92px);
  max-width: min(360px, 100%);
}

.logo-signature-svg {
  display: block;
  width: 34px;
  height: 34px;
}

.logo-signature-img {
  display: block;
  width: 34px;
  height: 34px;
  border-radius: 8px;
}

.logo-lockup.is-master .logo-signature-svg {
  width: clamp(58px, 8vw, 88px);
  height: clamp(58px, 8vw, 88px);
}

.logo-lockup.is-specimen .logo-signature-svg,
.logo-lockup.is-specimen .logo-signature-img {
  width: clamp(62px, 7vw, 86px);
  height: clamp(62px, 7vw, 86px);
}

.logo-signature-svg * {
  fill: none;
  stroke: var(--logo-accent);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
  vector-effect: non-scaling-stroke;
}

.logo-signature-svg .mark-fill {
  fill: var(--logo-accent);
  stroke: none;
}

.logo-signature-svg .mark-thin {
  opacity: 0.58;
  stroke-width: 1.45;
}

.logo-monogram-mark,
.logo-seal-mark,
.logo-type-bar-mark,
.logo-compact-mark {
  display: inline-grid;
  flex: 0 0 auto;
  place-items: center;
  color: var(--logo-accent);
}

.logo-monogram-mark {
  width: 54px;
  height: 54px;
  border: 1px solid rgba(246, 241, 231, 0.18);
  border-radius: 50%;
  font-size: 1rem;
  font-weight: 930;
  letter-spacing: 0;
}

.logo-seal-mark {
  width: 54px;
  height: 54px;
  border: 1px solid color-mix(in srgb, var(--logo-accent) 58%, transparent);
  border-radius: 12px;
}

.logo-seal-mark span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid rgba(246, 241, 231, 0.2);
  border-radius: 50%;
  color: var(--text);
  font-size: 0.96rem;
  font-weight: 930;
}

.logo-type-bar-mark {
  width: 42px;
  height: 2px;
  background: linear-gradient(90deg, var(--logo-accent), rgba(246, 241, 231, 0.28));
}

.logo-compact-mark {
  min-width: 54px;
  height: 54px;
  padding: 0 8px;
  border-radius: 8px;
  background: var(--logo-accent);
  color: var(--black);
  font-size: 0.78rem;
  font-weight: 930;
  letter-spacing: 0;
}

.logo-matrix-panel {
  display: grid;
  gap: 30px;
  margin-top: 18px;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid rgba(218, 210, 188, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(246, 241, 231, 0.035), rgba(0, 0, 0, 0) 52%),
    var(--surface-2);
  box-shadow: var(--card-shadow), var(--inset-line);
}

.logo-matrix-panel h3 {
  max-width: 720px;
  margin: 0 0 12px;
  color: var(--text);
  font-size: clamp(1.55rem, 3vw, 2.6rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.04;
}

.logo-matrix-panel p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.logo-entity-section {
  --logo-accent: var(--field);
  display: grid;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid rgba(218, 210, 188, 0.12);
}

.logo-entity-section[data-tone="pressure"],
.logo-version-card[data-tone="pressure"] {
  --logo-accent: var(--pressure);
}

.logo-entity-section[data-tone="proof"],
.logo-version-card[data-tone="proof"] {
  --logo-accent: var(--proof);
}

.logo-entity-section[data-tone="core"],
.logo-version-card[data-tone="core"] {
  --logo-accent: var(--text);
}

.logo-entity-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
}

.logo-entity-head span {
  color: var(--logo-accent);
  font-size: 0.68rem;
  font-weight: 860;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.logo-entity-head h3 {
  margin: 8px 0 0;
  color: var(--text);
  font-size: clamp(1.7rem, 3vw, 3rem);
  font-weight: 920;
  letter-spacing: 0;
  line-height: 0.98;
}

.logo-entity-head code {
  color: rgba(246, 241, 231, 0.36);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.72rem;
  font-weight: 850;
}

.logo-version-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.logo-version-card {
  --logo-accent: var(--field);
  display: grid;
  min-height: 248px;
  align-content: space-between;
  gap: 18px;
  padding: 18px;
  border: 1px solid rgba(218, 210, 188, 0.13);
  border-radius: 8px;
  background:
    radial-gradient(circle at 92% 10%, color-mix(in srgb, var(--logo-accent, var(--field)) 11%, transparent), transparent 34%),
    linear-gradient(180deg, rgba(246, 241, 231, 0.034), rgba(0, 0, 0, 0) 56%),
    var(--surface);
}

.logo-version-card[data-version="seal"] {
  background:
    radial-gradient(circle at 50% 0%, color-mix(in srgb, var(--logo-accent) 12%, transparent), transparent 38%),
    var(--surface);
}

.logo-version-card[data-version="compact"] {
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--logo-accent) 10%, transparent), transparent 42%),
    var(--surface);
}

.logo-option-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.logo-option-meta code {
  color: var(--logo-accent);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0;
}

.logo-option-meta span {
  color: rgba(246, 241, 231, 0.42);
  font-size: 0.64rem;
  font-weight: 820;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
}

.logo-lockup.is-option {
  min-height: 78px;
  gap: 12px;
}

.logo-lockup.is-option strong {
  font-size: clamp(1.22rem, 1.7vw, 1.72rem);
  line-height: 0.96;
}

.logo-lockup.is-option .logo-lockup-wordmark-img {
  max-width: min(100%, 210px);
  height: clamp(42px, 4.5vw, 56px);
}

.logo-lockup.is-option .logo-signature-svg,
.logo-lockup.is-option .logo-signature-img,
.logo-lockup.is-option .logo-monogram-mark,
.logo-lockup.is-option .logo-seal-mark,
.logo-lockup.is-option .logo-type-bar-mark,
.logo-lockup.is-option .logo-compact-mark {
  flex: 0 0 auto;
}

.logo-option-purpose {
  display: grid;
  gap: 7px;
  max-width: none;
  margin: 0;
  padding-top: 14px;
  border-top: 1px solid rgba(218, 210, 188, 0.1);
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.52;
}

.logo-option-purpose span {
  color: rgba(246, 241, 231, 0.44);
  font-size: 0.6rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.service-document {
  padding-top: clamp(58px, 7vw, 104px);
}

.service-layout {
  display: grid;
  width: 100%;
  align-items: start;
  gap: clamp(32px, 5vw, 72px);
  grid-template-columns: minmax(150px, 178px) minmax(0, 1fr);
}

.service-index {
  position: sticky;
  top: 108px;
  padding-top: 5px;
  color: var(--soft);
}

.service-index p {
  margin-bottom: 18px;
  color: var(--pressure);
  font-size: 0.72rem;
  font-weight: 850;
  line-height: 1.3;
  text-transform: uppercase;
}

.service-index nav {
  display: grid;
  gap: 2px;
}

.service-index a {
  display: grid;
  align-items: baseline;
  gap: 8px;
  grid-template-columns: 24px minmax(0, 1fr);
  padding: 8px 0 8px 13px;
  border-left: 1px solid rgba(218, 210, 188, 0.16);
  color: var(--soft);
  font-size: 0.74rem;
  font-weight: 760;
  line-height: 1.35;
}

.service-index a:hover,
.service-index a:focus,
.service-index a.is-active,
.service-index a[aria-current="true"] {
  border-left-color: var(--pressure);
  color: var(--text);
}

.service-index a.is-active,
.service-index a[aria-current="true"] {
  background: linear-gradient(90deg, rgba(214, 168, 95, 0.08), transparent);
}

.service-index a span {
  color: rgba(214, 168, 95, 0.78);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.68rem;
  font-weight: 850;
}

.service-index a small {
  font: inherit;
}

.service-flow {
  max-width: none;
}

.service-block {
  position: relative;
  isolation: isolate;
  padding: clamp(68px, 7.5vw, 104px) 0;
  border-top: 1px solid rgba(218, 210, 188, 0.11);
}

.service-block:first-child {
  padding-top: 0;
  border-top: 0;
}

.service-block:last-child {
  padding-bottom: 0;
}

.service-block h2 {
  max-width: 900px;
  font-size: clamp(2.28rem, 4.2vw, 3.85rem);
  line-height: 1.03;
}

.service-block p {
  max-width: 860px;
  margin-top: 20px;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.8;
}

.service-block .service-lede {
  margin-top: 24px;
}

.service-components {
  margin-top: 42px;
}

.service-components-label {
  margin: 0 0 14px;
  color: var(--pressure);
  font-size: 0.72rem;
  font-weight: 850;
  line-height: 1.3;
  text-transform: uppercase;
}

.service-ledger {
  display: grid;
  gap: 0 42px;
  border-top: 1px solid rgba(218, 210, 188, 0.14);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-ledger-one {
  max-width: 720px;
  grid-template-columns: 1fr;
}

.service-ledger section {
  padding: 22px 0;
  border-bottom: 1px solid rgba(218, 210, 188, 0.1);
}

.service-ledger strong {
  display: block;
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 860;
  line-height: 1.3;
  text-transform: uppercase;
}

.service-ledger p {
  max-width: none;
  margin-top: 10px;
  font-size: 0.95rem;
  line-height: 1.68;
}

.service-component-link {
  display: inline-flex;
  margin-top: 13px;
  color: var(--field);
  font-size: 0.72rem;
  font-weight: 850;
  line-height: 1.3;
  text-transform: uppercase;
}

.service-component-link:hover,
.service-component-link:focus {
  color: var(--pressure);
}

.service-callout {
  position: relative;
  isolation: isolate;
  max-width: 880px;
  margin-top: 28px;
  padding: 24px;
  border: 1px solid rgba(218, 210, 188, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(115, 214, 199, 0.042), rgba(0, 0, 0, 0) 58%),
    var(--surface);
  box-shadow: var(--inset-line);
  overflow: hidden;
}

.service-callout::before {
  position: absolute;
  top: 0;
  right: 22px;
  left: 22px;
  height: 2px;
  background: linear-gradient(90deg, rgba(115, 214, 199, 0.9), rgba(214, 168, 95, 0.16));
  content: "";
}

.service-callout p {
  max-width: none;
  margin-top: 0;
  font-size: 0.98rem;
  line-height: 1.72;
}

.devops-layout {
  gap: clamp(36px, 5.4vw, 82px);
}

.devops-index a {
  min-height: 42px;
  align-items: center;
}

.service-flow-context {
  max-width: 920px;
}

.delivery-flow-heading {
  position: relative;
  max-width: 980px;
  margin-top: clamp(38px, 5vw, 72px);
  padding-top: clamp(22px, 3vw, 34px);
  border-top: 1px solid rgba(218, 210, 188, 0.16);
}

.delivery-flow-heading::before {
  position: absolute;
  top: -1px;
  left: 0;
  width: min(150px, 38vw);
  height: 2px;
  background: linear-gradient(90deg, rgba(214, 168, 95, 0.86), rgba(115, 214, 199, 0.72));
  content: "";
}

.delivery-flow-heading h3 {
  max-width: 820px;
  margin: 0;
  color: var(--text);
  font-size: clamp(1.78rem, 3.1vw, 2.85rem);
  line-height: 1.04;
}

.delivery-flow-heading .section-kicker {
  margin-bottom: 12px;
}

.devops-flow-stack {
  display: grid;
  gap: 16px;
  margin-top: clamp(24px, 3.2vw, 42px);
}

.devops-flow-step {
  scroll-margin-top: 116px;
}

.devops-flow-step .method-step-notes {
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr);
}

.devops-flow-step .method-step-output strong {
  text-transform: none;
}

.devops-step-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--field);
  font-size: 0.72rem;
  font-weight: 850;
  line-height: 1.3;
  text-transform: uppercase;
}

.devops-step-link:hover,
.devops-step-link:focus {
  color: var(--pressure);
}

.delivery-layout {
  gap: clamp(36px, 5.4vw, 82px);
}

.delivery-index a {
  min-height: 42px;
  align-items: center;
}

.security-service-lines {
  max-width: 1060px;
  margin-top: clamp(40px, 5vw, 72px);
  padding-top: clamp(26px, 3vw, 36px);
  border-top: 1px solid rgba(218, 210, 188, 0.14);
}

.security-service-lines h3 {
  max-width: 820px;
  margin: 0;
  color: var(--text);
  font-size: clamp(1.65rem, 3vw, 2.6rem);
  line-height: 1.06;
}

.security-service-lines > p:not(.section-kicker) {
  max-width: 880px;
  margin-top: 16px;
  font-size: 1rem;
  line-height: 1.78;
}

.security-service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: clamp(24px, 3vw, 34px);
}

.security-service-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 16px;
  min-height: 100%;
  padding: clamp(18px, 2.2vw, 24px);
  border: 1px solid rgba(218, 210, 188, 0.15);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(246, 241, 231, 0.038), rgba(0, 0, 0, 0) 58%),
    rgba(246, 241, 231, 0.018);
  box-shadow: var(--inset-line);
}

.security-service-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(214, 168, 95, 0.38);
  border-radius: 999px;
  color: var(--pressure);
  font-size: 0.67rem;
  font-weight: 850;
  line-height: 1;
}

.security-service-copy {
  min-width: 0;
}

.security-service-copy h4 {
  margin: 4px 0 0;
  color: var(--text);
  font-size: clamp(1.05rem, 1.3vw, 1.28rem);
  line-height: 1.12;
}

.security-service-copy > p {
  margin-top: 16px;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.72;
}

.security-service-scope,
.security-service-output {
  display: grid;
  gap: 6px;
  padding-top: 14px;
  border-top: 1px solid rgba(218, 210, 188, 0.1);
}

.security-service-scope span,
.security-service-output span {
  color: var(--muted-2);
  font-size: 0.66rem;
  font-weight: 850;
  letter-spacing: 0.04em;
  line-height: 1.25;
  text-transform: uppercase;
}

.security-service-scope strong,
.security-service-output strong {
  color: var(--text);
  font-size: 0.84rem;
  line-height: 1.55;
}

.security-service-scope strong {
  color: var(--field);
}

.delivery-flow-stack {
  display: grid;
  gap: 16px;
  margin-top: clamp(24px, 3.2vw, 42px);
}

.delivery-flow-step {
  scroll-margin-top: 116px;
}

.delivery-flow-step .method-step-notes {
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr);
}

.delivery-flow-step .method-step-output strong {
  text-transform: none;
}

.delivery-step-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--field);
  font-size: 0.72rem;
  font-weight: 850;
  line-height: 1.3;
  text-transform: uppercase;
}

.delivery-step-link:hover,
.delivery-step-link:focus {
  color: var(--pressure);
}

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

@media (max-width: 1180px) and (min-width: 981px) {
  .site-header-inner {
    width: min(1480px, calc(100% - 28px));
  }

  .nav-links {
    gap: clamp(10px, 1.1vw, 14px);
    font-size: 0.66rem;
  }

  .hero {
    gap: 20px;
    grid-template-columns: minmax(0, 0.94fr) 42px minmax(480px, 0.78fr);
  }

  .hero-flow-arrow {
    width: 42px;
    height: 42px;
  }

  .hero-flow-arrow svg {
    width: 21px;
    height: 21px;
  }

  .logo-version-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .method-hero-document,
  .method-process-layout {
    grid-template-columns: 1fr;
  }

  .method-step-index {
    position: relative;
    top: auto;
    padding-bottom: 8px;
  }

  .method-step-index nav {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .method-step-index.has-section-picker > p,
  .method-step-index.has-section-picker nav {
    display: none;
  }

  .method-step-index.has-section-picker .mobile-section-picker {
    display: block;
  }

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

  .devops-flow-step .method-step-notes,
  .delivery-flow-step .method-step-notes {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .devops-flow-step .method-step-output strong,
  .delivery-flow-step .method-step-output strong {
    font-size: 0.98rem;
    line-height: 1.48;
  }

  .service-index {
    position: relative;
    top: auto;
    padding-bottom: 8px;
  }

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

  .service-index.has-section-picker > p,
  .service-index.has-section-picker nav {
    display: none;
  }

  .service-index.has-section-picker .mobile-section-picker {
    display: block;
  }

  .service-ledger {
    grid-template-columns: 1fr;
  }

  .security-service-grid {
    grid-template-columns: 1fr;
  }

  .security-service-card {
    max-width: 820px;
  }

  .logo-direction-stage,
  .logo-direction-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 640px) {
  .legal-page-section .page-grid {
    grid-template-columns: 1fr;
  }

  .method-step-index nav {
    grid-template-columns: 1fr;
  }

  .method-step-index a {
    min-height: 54px;
  }

  .method-step-card {
    padding: 24px 18px;
  }

  .method-step-header {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .method-step-notes,
  .devops-flow-step .method-step-notes,
  .delivery-flow-step .method-step-notes {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 22px;
    padding-top: 16px;
  }

  .method-step-copy h2 {
    font-size: clamp(1.6rem, 10vw, 2.25rem);
  }

  .method-step-lede {
    margin-top: 18px;
    font-size: 1.02rem;
    line-height: 1.72;
  }

  .method-step-note span {
    font-size: 0.68rem;
    letter-spacing: 0.02em;
  }

  .method-step-note p {
    font-size: 0.98rem;
    line-height: 1.68;
  }

  .method-step-output strong,
  .devops-flow-step .method-step-output strong,
  .delivery-flow-step .method-step-output strong {
    display: block;
    font-size: 1rem;
    line-height: 1.48;
  }

  .service-index nav {
    grid-template-columns: 1fr;
  }

  .service-block h2 {
    font-size: clamp(2rem, 12vw, 2.7rem);
  }

  .security-service-lines {
    margin-top: 34px;
    padding-top: 24px;
  }

  .security-service-lines h3 {
    font-size: clamp(1.7rem, 9vw, 2.25rem);
  }

  .security-service-card {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 20px;
  }

  .security-service-copy h4 {
    font-size: 1.2rem;
  }

  .security-service-copy > p {
    font-size: 0.98rem;
  }

  .logo-lab-section {
    padding-top: 46px;
  }

  .logo-direction-hero,
  .logo-system-rules,
  .logo-direction-card,
  .logo-matrix-panel {
    padding: 20px;
  }

  .logo-direction-grid {
    gap: 12px;
  }

  .logo-version-grid {
    grid-template-columns: 1fr;
  }

  .logo-version-card {
    min-height: 224px;
    padding: 18px;
  }

  .logo-entity-head {
    align-items: start;
    flex-direction: column;
  }

  .logo-lockup.is-master {
    align-items: flex-start;
    flex-direction: column;
  }
}
