/* ============================================================
   Lodestone editorial type system (self-hosted, no CDN).
   Newsreader = display serif, Archivo = body sans, Azeret Mono
   = data/tokens. Latin subset only. Paths are absolute from the
   site root so every page resolves them identically.
   ============================================================ */
@font-face {
  font-family: "Archivo";
  font-style: normal;
  font-weight: 100 900;
  font-stretch: 62% 125%;
  font-display: swap;
  src: url(/assets/fonts/Archivo-0.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Azeret Mono";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(/assets/fonts/AzeretMono-0.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Azeret Mono";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(/assets/fonts/AzeretMono-1.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Newsreader";
  font-style: normal;
  font-weight: 200 700;
  font-display: swap;
  src: url(/assets/fonts/Newsreader-0.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --ink: #07111b;
  --navy: #061722;
  --navy2: #0a2633;
  --teal: #2de1cb;
  --cyan: #69d9ff;
  --amber: #ffbb66;
  --paper: #f3f7f6;
  --white: #fff;
  --muted: #60707a;
  --line: #ccd9d8;
  --display: "Newsreader", Georgia, "Times New Roman", serif;
  --body: "Archivo", -apple-system, BlinkMacSystemFont, Helvetica, Arial,
    sans-serif;
  --mono: "Azeret Mono", ui-monospace, Menlo, monospace;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.5;
}
a {
  color: inherit;
}
img {
  max-width: 100%;
  display: block;
}
.shell {
  width: min(1180px, calc(100% - 44px));
  margin: auto;
}
.skip-link {
  position: fixed;
  left: 12px;
  top: -80px;
  background: #fff;
  padding: 10px 16px;
  z-index: 100;
  color: #000;
}
.skip-link:focus {
  top: 12px;
}
.site-header {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1240px, calc(100% - 44px));
  margin: auto;
  border-bottom: 1px solid #ffffff26;
  color: #fff;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.brand span:last-child {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.brand b {
  font: 700 16px/1 var(--display);
  letter-spacing: 0.12em;
}
.brand small {
  margin-top: 5px;
  font: 600 8px/1 var(--display);
  letter-spacing: 0.37em;
  color: #9fbac1;
}
.brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  transform: skewY(-12deg);
}
.brand-mark i {
  background: var(--teal);
  border-radius: 2px;
}
.brand-mark i:nth-child(2) {
  opacity: 0.63;
}
.brand-mark i:nth-child(3) {
  opacity: 0.26;
}
.site-header nav {
  display: flex;
  align-items: center;
  gap: 30px;
}
.site-header nav a {
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  color: #d9e7ea;
}
.site-header nav a:hover {
  color: var(--teal);
}
.site-header .nav-cta {
  border: 1px solid #75e8da80;
  padding: 9px 15px;
  border-radius: 4px;
}
.menu-button {
  display: none;
}
.hero {
  min-height: 780px;
  position: relative;
  background: #040b11;
  color: #fff;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(3, 12, 18, 0.98) 0%,
      rgba(3, 12, 18, 0.88) 34%,
      rgba(3, 12, 18, 0.28) 70%,
      rgba(3, 12, 18, 0.18)
    ),
    linear-gradient(0deg, #041018 0%, transparent 40%);
}
.hero-content {
  position: relative;
  padding-top: 110px;
}
.eyebrow {
  margin: 0 0 18px;
  font: 600 12px/1 var(--display);
  letter-spacing: 0.17em;
  color: #afcdd1;
  display: flex;
  align-items: center;
  gap: 10px;
}
.eyebrow span {
  width: 28px;
  height: 1px;
  background: var(--teal);
}
.eyebrow.dark {
  color: #3b5b63;
}
.hero h1,
.section h2 {
  font-family: var(--display);
  letter-spacing: -0.045em;
}
.hero h1 {
  font-size: clamp(38px, 4.6vw, 56px);
  line-height: 1.02;
  max-width: 810px;
  margin: 0 0 25px;
}
.hero-copy {
  font-size: 20px;
  line-height: 1.52;
  max-width: 660px;
  color: #c4d6da;
  margin: 0 0 34px;
}
.hero-actions {
  display: flex;
  gap: 13px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 17px;
  padding: 13px 20px;
  border: 0;
  border-radius: 3px;
  text-decoration: none;
  font-weight: 700;
  font-family: var(--body);
  cursor: pointer;
}
.button.primary {
  background: var(--teal);
  color: #03201e;
}
.button.primary:hover {
  background: #68f0df;
}
.button.ghost {
  border: 1px solid #ffffff4d;
  color: #fff;
  background: #07192480;
}
.button.ghost:hover {
  border-color: #fff;
}
.hero-facts {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 62px 0 0;
  gap: 0;
}
.hero-facts li {
  width: 220px;
  border-left: 1px solid #ffffff2e;
  padding-left: 18px;
  display: flex;
  flex-direction: column;
}
.hero-facts strong {
  font: 600 17px/1.2 var(--display);
  color: #fff;
}
.hero-facts span {
  font-size: 11px;
  margin-top: 6px;
  color: #8da7ad;
}
.signal-strip {
  background: #0a2530;
  color: #d2e2e4;
  padding: 34px 0 30px;
}
.signal-strip .shell {
  display: grid;
  gap: 21px;
}
.experience-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 28px;
}
.experience-heading span {
  font-size: 11px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: #8dafb5;
  white-space: nowrap;
}
.experience-heading p {
  font: 500 12px/1.5 var(--body);
  margin: 0;
  color: #789ba2;
  text-align: right;
}
.experience-tenure {
  width: fit-content;
  margin: -7px 0 0;
  padding: 7px 11px;
  border-left: 2px solid var(--teal);
  background: #ffffff08;
  color: #c7dcdf;
  font: 600 12px/1.3 var(--display);
  letter-spacing: 0.025em;
}
.experience-tenure i {
  margin: 0 7px;
  color: var(--teal);
  font-style: normal;
}
.experience-logos {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.experience-logos li {
  min-width: 0;
  min-height: 58px;
  padding: 9px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #ffffff0a;
  border: 1px solid #ffffff12;
  border-radius: 5px;
}
.experience-logos img {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  object-fit: contain;
  border-radius: 5px;
  background: #fff;
  padding: 4px;
}
.experience-logos b {
  min-width: 0;
  font: 600 12px/1.2 var(--display);
  color: #edf7f7;
}
.mark-note {
  color: #6f9198;
  font-size: 10px;
  line-height: 1.4;
}
.section {
  padding: 110px 0;
}
.section-heading {
  max-width: 780px;
  margin-bottom: 50px;
}
.section-heading.split {
  max-width: none;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 90px;
  align-items: end;
}
.section-heading h2 {
  font-size: clamp(28px, 3.2vw, 40px);
  line-height: 1.08;
  margin: 0;
}
.section-heading > p,
.section-heading.split > p {
  color: var(--muted);
  font-size: 17px;
  margin: 18px 0 0;
}
.capability-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.capability-grid article {
  padding: 38px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #f7faf9;
  position: relative;
}
.capability-grid article > b {
  font: 600 11px/1 var(--display);
  color: #219e90;
}
.capability-grid h3 {
  font: 600 25px/1.2 var(--display);
  margin: 28px 0 12px;
}
.capability-grid p {
  color: #52636b;
  margin: 0 0 26px;
}
.capability-grid article > span {
  font-size: 12px;
  font-weight: 700;
  color: #34555a;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.vertical-section {
  background: var(--navy);
  color: #fff;
}
.vertical-section .section-heading > p {
  color: #91aeb4;
}
.vertical-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.vertical-card {
  min-height: 420px;
  padding: 35px;
  background: linear-gradient(145deg, #0a2935, #081b25);
  border: 1px solid #ffffff17;
  position: relative;
  overflow: hidden;
}
.vertical-card:after {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  right: -100px;
  top: -100px;
  background: radial-gradient(circle, #28d9c32e, transparent 67%);
}
.vertical-icon {
  font-size: 38px;
  color: var(--teal);
  height: 55px;
}
.vertical-card > p {
  font-size: 11px;
  letter-spacing: 0.16em;
  color: #7fa8af;
  margin: 24px 0 8px;
}
.vertical-card h3 {
  font: 600 29px/1.15 var(--display);
  max-width: 390px;
  margin: 0 0 24px;
}
.vertical-card ul {
  padding-left: 18px;
  color: #bbced2;
  margin: 0;
}
.vertical-card li {
  margin: 8px 0;
}
.vertical-card > span {
  position: absolute;
  bottom: 28px;
  left: 35px;
  right: 35px;
  padding-top: 15px;
  border-top: 1px solid #ffffff1c;
  color: #76a8ae;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.proof-timeline {
  border-top: 1px solid var(--line);
}
.proof-timeline article {
  display: grid;
  grid-template-columns: 130px 1fr 1.3fr 0.8fr;
  gap: 30px;
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.proof-timeline article > span {
  font: 600 11px/1.4 var(--display);
  color: #258c81;
}
.proof-timeline h3 {
  font: 600 21px/1.25 var(--display);
  margin: 0;
}
.proof-timeline p {
  color: #596a71;
  margin: 0;
}
.proof-timeline b {
  font-size: 13px;
  color: #28494f;
}
.agentic {
  background: #071923;
  color: #fff;
}
.agentic-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}
.agentic h2 {
  font-size: clamp(28px, 3.2vw, 40px);
  line-height: 1.05;
  margin: 0 0 25px;
}
.agentic p {
  color: #a9c0c4;
  font-size: 17px;
}
.principles {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 30px;
}
.principles span {
  border: 1px solid #ffffff24;
  padding: 6px 10px;
  color: #9dd8d2;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.loop {
  position: relative;
  width: min(100%, 470px);
  aspect-ratio: 1;
  margin: auto;
}
.loop svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: #2de1cb55;
  stroke-width: 1;
}
.loop svg .pulse {
  stroke: #69d9ff24;
  stroke-dasharray: 3 9;
  animation: rotate 35s linear infinite;
  transform-origin: center;
}
.loop-core {
  position: absolute;
  inset: 35%;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: radial-gradient(circle, #16495a, #0b2b37);
  border: 1px solid #52dac9aa;
  box-shadow: 0 0 50px #2de1cb1c;
}
.loop-core span {
  font-size: 9px;
  letter-spacing: 0.16em;
  color: #74d8cd;
}
.loop-core strong {
  font: 600 15px/1.3 var(--display);
  margin-top: 6px;
}
.node {
  position: absolute;
  background: #0d303c;
  border: 1px solid #2de1cb55;
  padding: 9px 12px;
  min-width: 88px;
  box-shadow: 0 8px 25px #0007;
}
.node b {
  font-size: 9px;
  color: var(--teal);
  margin-right: 7px;
}
.node span {
  font-size: 12px;
}
.n1 {
  top: 3%;
  left: 38%;
}
.n2 {
  top: 25%;
  right: 0;
}
.n3 {
  bottom: 18%;
  right: 6%;
}
.n4 {
  bottom: 4%;
  left: 27%;
}
.n5 {
  top: 37%;
  left: 0;
}
@keyframes rotate {
  to {
    transform: rotate(360deg);
  }
}
.engagement-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.engagement-grid article {
  padding: 32px;
  background: #fff;
  border: 1px solid var(--line);
}
.engagement-grid article.featured {
  background: #0a2732;
  color: #fff;
  border-color: #0a2732;
  transform: translateY(-12px);
}
.engagement-grid article > span {
  font: 600 10px/1 var(--display);
  letter-spacing: 0.1em;
  color: #26978b;
}
.engagement-grid h3 {
  font: 600 24px/1.2 var(--display);
  margin: 26px 0 12px;
}
.engagement-grid p {
  color: #65747a;
}
.engagement-grid .featured p {
  color: #aec2c6;
}
.engagement-grid b {
  font-size: 12px;
}
.commercial-note {
  font-size: 12px;
  color: #67787e;
  max-width: 820px;
  margin: 24px 0 0;
}
.contact-section {
  background: #0b2a36;
  color: #fff;
}
.contact-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 100px;
}
.contact-layout h2 {
  font-size: clamp(28px, 3.2vw, 40px);
  line-height: 1.05;
  margin: 0 0 22px;
}
.contact-layout > div > p {
  color: #a9c2c6;
}
.contact-layout > div > a {
  display: inline-block;
  color: var(--teal);
  margin-top: 20px;
  font-weight: 700;
}
.contact-layout form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  background: #f4f8f7;
  color: var(--ink);
  padding: 32px;
}
.contact-layout label {
  font-size: 12px;
  font-weight: 700;
  color: #3f565d;
}
.contact-layout input,
.contact-layout select,
.contact-layout textarea {
  display: block;
  width: 100%;
  margin-top: 6px;
  border: 1px solid #bac9ca;
  border-radius: 2px;
  background: #fff;
  padding: 12px;
  font: 14px var(--body);
}
.contact-layout textarea {
  resize: vertical;
}
.contact-layout .wide {
  grid-column: 1/-1;
}
.contact-layout .consent {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-weight: 400;
}
.contact-layout .consent input {
  width: 24px;
  height: 24px;
  margin: 0;
  flex: 0 0 24px;
}
.hidden {
  display: none;
}
footer {
  background: #041017;
  color: #9cb1b6;
  padding: 55px 0;
}
footer .shell {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 20px;
}
footer p {
  text-align: right;
  font-size: 12px;
}
footer nav {
  display: flex;
  gap: 22px;
}
footer nav a {
  font-size: 12px;
}
footer > div > small {
  text-align: right;
  font-size: 10px;
}
@media (max-width: 900px) {
  .site-header nav {
    display: none;
    position: absolute;
    top: 75px;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: #071923;
    padding: 20px;
    width: 260px;
  }
  .site-header nav.open {
    display: flex;
  }
  .menu-button {
    display: block;
    background: transparent;
    border: 1px solid #ffffff66;
    color: #fff;
    padding: 8px 11px;
  }
  .hero {
    min-height: 760px;
  }
  .hero-image {
    object-position: 60% center;
  }
  .hero-shade {
    background: linear-gradient(
      90deg,
      rgba(3, 12, 18, 0.96),
      rgba(3, 12, 18, 0.68)
    );
  }
  .section-heading.split,
  .agentic-layout,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 45px;
  }
  .proof-timeline article {
    grid-template-columns: 100px 1fr;
  }
  .proof-timeline article p,
  .proof-timeline article b {
    grid-column: 2;
  }
  .engagement-grid {
    grid-template-columns: 1fr;
  }
  .engagement-grid article.featured {
    transform: none;
  }
  .contact-layout form {
    padding: 24px;
  }
}
@media (max-width: 620px) {
  .shell {
    width: min(100% - 28px, 1180px);
  }
  .site-header {
    width: calc(100% - 28px);
    height: 76px;
  }
  .hero {
    min-height: 790px;
  }
  .hero h1 {
    font-size: 46px;
  }
  .hero-copy {
    font-size: 17px;
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-facts {
    margin-top: 42px;
    flex-direction: column;
    gap: 15px;
  }
  .hero-facts li {
    width: 100%;
  }
  .signal-strip .shell {
    display: block;
  }
  .signal-strip p {
    margin-top: 9px;
  }
  .capability-grid,
  .vertical-grid {
    grid-template-columns: 1fr;
  }
  .capability-grid article {
    padding: 28px;
  }
  .section {
    padding: 76px 0;
  }
  .section-heading h2 {
    font-size: 39px;
  }
  .proof-timeline article {
    display: block;
  }
  .proof-timeline h3,
  .proof-timeline p,
  .proof-timeline b {
    display: block;
    margin-top: 12px;
  }
  .loop {
    transform: scale(0.9);
  }
  .contact-layout form {
    grid-template-columns: 1fr;
  }
  .contact-layout .wide {
    grid-column: auto;
  }
  footer .shell {
    grid-template-columns: 1fr;
  }
  footer p,
  footer > div > small {
    text-align: left;
  }
}

/* Representative-experience grid lives late in the cascade so the legacy
   signal-strip mobile rules cannot collapse it back into a text row. */
@media (max-width: 1000px) {
  .experience-logos {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
@media (max-width: 620px) {
  .signal-strip .shell {
    display: grid;
  }
  .experience-heading {
    display: grid;
    gap: 5px;
  }
  .experience-heading p {
    margin: 0;
    text-align: left;
  }
  .experience-logos {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .experience-logos li {
    padding: 8px;
  }
}
@media (max-width: 359px) {
  .experience-logos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .loop svg .pulse {
    animation: none;
  }
}
.site-header.solid {
  position: relative;
  width: 100%;
  max-width: none;
  padding: 0 max(22px, calc((100vw - 1240px) / 2));
  background: #05131c;
}
.library-hero {
  padding: 120px 0 95px;
  background: radial-gradient(circle at 80% 20%, #174251, #06141e 48%);
  color: #fff;
}
.library-hero h1 {
  font: 600 clamp(38px, 4.6vw, 56px) / 1.02 var(--display);
  letter-spacing: -0.05em;
  max-width: 900px;
  margin: 0 0 24px;
}
.library-hero > div > p:last-child {
  font-size: 19px;
  color: #b9cdd1;
  max-width: 820px;
}
.chart-card {
  display: grid;
  grid-template-columns: 1.5fr 0.5fr;
  border: 1px solid var(--line);
  background: #fff;
  padding: 34px;
  gap: 50px;
}
.bars {
  display: grid;
  gap: 13px;
}
.bars > div {
  display: grid;
  grid-template-columns: 110px 1fr 40px;
  gap: 14px;
  align-items: center;
}
.bars span {
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: 0.08em;
  color: #466168;
}
.bars i {
  display: block;
  height: 12px;
  background: linear-gradient(90deg, #1bbbaa var(--w), #e2ecea var(--w));
  border-radius: 1px;
}
.bars b {
  font: 600 13px var(--display);
  text-align: right;
}
.chart-note {
  border-left: 1px solid var(--line);
  padding-left: 32px;
}
.chart-note strong {
  font: 600 18px var(--display);
}
.chart-note p {
  font-size: 13px;
  color: var(--muted);
}
.pattern-section {
  padding: 95px 0;
}
.pattern-section.dark-panel {
  background: #071923;
  color: #fff;
}
.pattern-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 75px;
  align-items: center;
}
.pattern-layout.reverse > div:first-child {
  order: 2;
}
.pattern-layout h2 {
  font: 600 clamp(28px, 3.2vw, 40px) / 1.08 var(--display);
  letter-spacing: -0.045em;
  margin: 0 0 22px;
}
.pattern-layout > div > p {
  color: #63747a;
}
.dark-panel .pattern-layout > div > p {
  color: #a6bdc2;
}
.architecture-flow {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  margin: 30px 0;
}
.architecture-flow span {
  border: 1px solid #64dbcc66;
  background: #0d303c;
  padding: 7px 9px;
  font-size: 10px;
  text-transform: uppercase;
  color: #b9e2de;
}
.architecture-flow i {
  font-style: normal;
  color: var(--teal);
}
.architecture-flow.light span {
  background: #fff;
  border-color: #b8ceca;
  color: #315158;
}
.detail-list {
  padding-left: 18px;
}
.detail-list li {
  margin: 12px 0;
  color: #aec3c7;
}
.pattern-section:not(.dark-panel) .detail-list li {
  color: #53666c;
}
.detail-list b {
  color: var(--teal);
}
.pattern-section:not(.dark-panel) .detail-list b {
  color: #087d72;
}
.code-card {
  background: #031018;
  border: 1px solid #2de1cb33;
  box-shadow: 0 25px 60px #0005;
}
.code-card.pale {
  background: #0b202a;
}
.code-card header {
  display: flex;
  justify-content: space-between;
  padding: 13px 16px;
  border-bottom: 1px solid #ffffff16;
  font: 600 9px var(--display);
  letter-spacing: 0.08em;
  color: #60cfc3;
}
.code-card header b {
  color: #819ea4;
}
.code-card pre {
  margin: 0;
  padding: 25px;
  overflow: auto;
  color: #c9ecde;
  font:
    12px/1.7 ui-monospace,
    SFMono-Regular,
    Consolas,
    monospace;
}
.code-card > p {
  padding: 0 20px 20px;
  margin: 0;
  color: #809ca2;
  font-size: 11px;
}
.research-shelf .source-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.source-grid a {
  background: #fff;
  border: 1px solid var(--line);
  padding: 22px;
  text-decoration: none;
  font: 600 17px var(--display);
}
.source-grid a:hover {
  border-color: #1db8a8;
}
.source-grid small {
  display: block;
  font: 400 12px/1.5 var(--body);
  color: var(--muted);
  margin-top: 8px;
}
.library-cta {
  background: #0a2a36;
  color: #fff;
  padding: 65px 0;
}
.library-cta .shell {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
}
.library-cta h2 {
  font: 600 35px/1.16 var(--display);
  max-width: 780px;
  margin: 0;
}
.market-signals {
  background: #e8f0ee;
}
.market-kpis {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #071923;
  color: #fff;
}
.market-kpis div {
  padding: 27px;
  border-right: 1px solid #ffffff1c;
}
.market-kpis div:last-child {
  border: 0;
}
.market-kpis b {
  display: block;
  font: 600 34px/1 var(--display);
  color: var(--teal);
}
.market-kpis span {
  display: block;
  margin-top: 9px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #8eaaaf;
}
.market-panels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-top: 15px;
}
.market-panels article {
  background: #fff;
  border: 1px solid var(--line);
  padding: 28px;
}
.market-panels header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-bottom: 1px solid var(--line);
  padding-bottom: 17px;
}
.market-panels header p {
  margin: 0;
  font: 600 11px var(--display);
  letter-spacing: 0.1em;
  color: #1d6b65;
}
.market-panels header span {
  font-size: 10px;
  color: var(--muted);
}
.market-bars {
  margin-top: 22px;
  display: grid;
  gap: 14px;
}
.market-bars p {
  display: grid;
  grid-template-columns: 165px 1fr 38px;
  gap: 12px;
  align-items: center;
  margin: 0;
  font-size: 11px;
  color: #3f565d;
}
.market-bars i {
  height: 10px;
  background: linear-gradient(90deg, #13ad9d var(--w), #e1ebe9 var(--w));
  border-radius: 1px;
}
.market-bars b {
  text-align: right;
  font: 600 12px var(--display);
}
.market-method {
  font-size: 11px;
  color: #62757a;
  margin: 18px 0 0;
}
.market-method a {
  color: #087d72;
  font-weight: 700;
}
@media (max-width: 900px) {
  .pattern-layout {
    grid-template-columns: 1fr;
  }
  .pattern-layout.reverse > div:first-child {
    order: initial;
  }
  .chart-card {
    grid-template-columns: 1fr;
  }
  .chart-note {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding: 22px 0 0;
  }
  .research-shelf .source-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .library-cta .shell {
    align-items: start;
    flex-direction: column;
  }
  .market-kpis {
    grid-template-columns: 1fr 1fr;
  }
  .market-panels {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 620px) {
  .library-hero {
    padding: 85px 0 65px;
  }
  .library-hero h1 {
    font-size: 46px;
  }
  .bars > div {
    grid-template-columns: 78px 1fr 30px;
    gap: 8px;
  }
  .chart-card {
    padding: 22px;
  }
  .research-shelf .source-grid {
    grid-template-columns: 1fr;
  }
  .market-kpis {
    grid-template-columns: 1fr;
  }
  .market-kpis div {
    border-right: 0;
    border-bottom: 1px solid #ffffff1c;
  }
  .market-bars p {
    grid-template-columns: 120px 1fr 32px;
  }
}

/* 2026 evidence-led site system */
:where(a, button, input, select, textarea):focus-visible {
  outline: 3px solid #ffca75;
  outline-offset: 4px;
}
.site-header nav {
  gap: 22px;
}
.site-header nav a {
  font-size: 12px;
}
.section-heading.compact {
  max-width: 620px;
}
.risk-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.risk-grid article {
  background: #fff;
  padding: 32px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.risk-grid article > span,
.proof-feature article > span {
  font: 600 10px/1 var(--display);
  letter-spacing: 0.11em;
  color: #087d72;
}
.risk-grid h3 {
  font: 600 25px/1.2 var(--display);
  margin: 27px 0 12px;
}
.risk-grid p {
  color: var(--muted);
  margin: 0;
}
.method-section {
  background: #071923;
  color: #fff;
}
.method-section .section-heading > p {
  color: #aac0c5;
}
.thread-verticals {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 15px;
}
.thread-verticals button,
.thread-controls button {
  appearance: none;
  border: 1px solid #ffffff38;
  background: #0c2a35;
  color: #a9c3c7;
  padding: 10px 15px;
  min-height: 42px;
  font: 600 11px var(--display);
  letter-spacing: 0.04em;
  cursor: pointer;
}
.thread-verticals button[aria-selected="true"] {
  background: var(--teal);
  border-color: var(--teal);
  color: #04201d;
}
.evidence-thread {
  margin: 0;
  background: #0a2631;
  border: 1px solid #ffffff20;
  padding: 26px;
}
.thread-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 8px;
}
.thread-track:before {
  content: "";
  position: absolute;
  left: 4%;
  right: 4%;
  top: 20px;
  height: 1px;
  background: #62daca45;
}
.thread-track button {
  position: relative;
  appearance: none;
  min-width: 0;
  min-height: 94px;
  border: 1px solid #ffffff1b;
  background: #071923;
  color: #7f9da3;
  padding: 13px 8px;
  text-align: left;
  cursor: pointer;
  z-index: 1;
}
.thread-track button b {
  display: flex;
  width: 25px;
  height: 25px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #0a3541;
  border: 1px solid #2de1cb55;
  font: 600 9px var(--display);
}
.thread-track button span {
  display: block;
  margin-top: 15px;
  font: 600 10px/1.25 var(--display);
}
.thread-track button.active {
  color: #fff;
  border-color: #2de1cb88;
  background: linear-gradient(145deg, #104451, #0a2b36);
  transform: translateY(-4px);
  box-shadow: 0 12px 35px #0004;
}
.thread-track button.active b {
  background: var(--teal);
  color: #04201d;
}
.thread-focus {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 45px;
  margin-top: 18px;
  padding: 32px;
  background: #061720;
  border-left: 3px solid var(--teal);
}
.thread-focus > div > span {
  font: 600 10px var(--display);
  letter-spacing: 0.12em;
  color: #62d9cd;
}
.thread-focus h3 {
  font: 600 30px/1.16 var(--display);
  margin: 10px 0;
}
.thread-focus p {
  color: #a9bdc1;
  margin: 0;
  max-width: 720px;
}
.thread-focus dl {
  margin: 0;
  display: grid;
  gap: 14px;
}
.thread-focus dl div {
  border-bottom: 1px solid #ffffff1b;
  padding-bottom: 13px;
}
.thread-focus dt {
  font-size: 9px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: #6d959c;
}
.thread-focus dd {
  margin: 4px 0 0;
  font-size: 12px;
  color: #d6e2e4;
}
.thread-rails {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  margin-top: 8px;
}
.thread-rails span {
  background: #12313c;
  padding: 8px;
  text-align: center;
  font-size: 9px;
  letter-spacing: 0.04em;
  color: #79b7b5;
}
.thread-controls {
  display: flex;
  justify-content: flex-end;
  gap: 6px;
  margin-top: 13px;
}
.thread-controls button:hover {
  border-color: var(--teal);
  color: #fff;
}
.evidence-thread figcaption {
  color: #78949a;
  font-size: 11px;
  margin-top: 12px;
}
.text-link {
  display: inline-block;
  color: var(--teal);
  margin-top: 20px;
  font-weight: 700;
  text-decoration: none;
}
.text-link:hover {
  text-decoration: underline;
}
main a:not(.btn):not(.brand) {
  display: inline-flex;
  min-height: 24px;
  align-items: center;
}
.industries-home {
  background: #edf3f1;
}
.image-story-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.image-story {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  background: #06151e;
  color: #fff;
  text-decoration: none;
  border: 1px solid #163b45;
}
.image-story picture,
.image-story img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.image-story:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    0deg,
    #041219f7 0%,
    #0412197a 48%,
    transparent 76%
  );
}
.image-story > div {
  position: absolute;
  z-index: 2;
  left: 28px;
  right: 28px;
  bottom: 25px;
}
.image-story > div span {
  font: 600 9px var(--display);
  letter-spacing: 0.14em;
  color: var(--teal);
}
.image-story h3 {
  font: 600 28px/1.13 var(--display);
  margin: 8px 0;
}
.image-story p {
  font-size: 12px;
  color: #a9c4c8;
  margin: 0;
}
.image-story svg {
  position: absolute;
  z-index: 2;
  inset: 7% 5% auto;
  width: 90%;
  height: 48%;
  fill: none;
  stroke: #48ebda;
  stroke-width: 0.45;
  stroke-dasharray: 3 3;
  filter: drop-shadow(0 0 4px #30e1ce);
}
.image-story.in-view svg path {
  animation: signalFlow 2.4s linear 1;
}
.image-story img {
  transition: transform 0.7s ease;
}
.image-story:hover img {
  transform: scale(1.025);
}
@keyframes signalFlow {
  from {
    stroke-dashoffset: 32;
    opacity: 0.2;
  }
  30% {
    opacity: 1;
  }
  to {
    stroke-dashoffset: 0;
    opacity: 0.85;
  }
}
.illustration-note {
  font-size: 10px;
  color: #66797d;
  margin: 12px 0 0;
}
.proof-home {
  background: #fff;
}
.proof-feature {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.proof-feature article {
  padding: 30px;
  border: 1px solid var(--line);
  background: #f6f9f8;
}
.proof-feature h3 {
  font: 600 24px/1.2 var(--display);
  margin: 25px 0 13px;
}
.proof-feature p {
  color: #607177;
}
.proof-feature b {
  font-size: 12px;
  color: #274950;
}
.agentic-compact {
  background: #061720;
  color: #fff;
}
.agentic-compact > .shell {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 65px;
  align-items: start;
}
.agentic-compact h2 {
  font: 600 43px/1.08 var(--display);
  letter-spacing: -0.04em;
  margin: 0;
}
.agent-bands {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.agent-bands article {
  padding: 24px;
  border-left: 1px solid #ffffff20;
  border-bottom: 1px solid #ffffff20;
}
.agent-bands b {
  font: 600 18px var(--display);
  color: #fff;
}
.agent-bands p {
  font-size: 13px;
  color: #9bb3b8;
  margin: 8px 0 0;
}
.founder-strip {
  background: #0a2a36;
  color: #fff;
  padding: 62px 0;
}
.founder-strip .shell {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 50px;
}
.founder-strip span {
  font: 600 9px var(--display);
  letter-spacing: 0.14em;
  color: var(--teal);
}
.founder-strip h2 {
  font: 600 38px/1 var(--display);
  margin: 9px 0;
}
.founder-strip p {
  margin: 0;
  color: #9fb8bd;
  max-width: 690px;
}
.founder-strip .button {
  white-space: nowrap;
}
.page-hero {
  padding: 125px 0 80px;
  background: radial-gradient(circle at 80% 20%, #174251, #06141e 52%);
  color: #fff;
}
.page-hero h1 {
  font: 600 clamp(38px, 4.6vw, 56px) / 1.03 var(--display);
  letter-spacing: -0.05em;
  max-width: 950px;
  margin: 0 0 22px;
}
.page-hero .shell > p:not(.eyebrow) {
  font-size: 18px;
  color: #b4c9cd;
  max-width: 850px;
}
.page-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 30px;
}
.page-nav a {
  border: 1px solid #ffffff35;
  padding: 8px 12px;
  text-decoration: none;
  font-size: 11px;
  color: #c8dadd;
}
.service-section {
  padding: 88px 0;
  border-bottom: 1px solid var(--line);
}
.service-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 75px;
}
.service-layout h2 {
  font: 600 43px/1.08 var(--display);
  letter-spacing: -0.04em;
  margin: 0 0 18px;
}
.service-layout > div:first-child > p {
  color: var(--muted);
}
.service-number {
  font: 600 11px var(--display);
  color: #087d72;
  letter-spacing: 0.12em;
}
.service-panels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.service-panels article {
  padding: 23px;
  background: #fff;
  border: 1px solid var(--line);
}
.service-panels h3 {
  font: 600 18px var(--display);
  margin: 0 0 9px;
}
.service-panels p,
.service-panels li {
  font-size: 13px;
  color: #5d6e73;
}
.service-panels ul {
  padding-left: 17px;
  margin-bottom: 0;
}
.framework-links {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 17px;
}
.framework-links a {
  font-size: 10px;
  padding: 6px 8px;
  border: 1px solid #b8cac7;
  text-decoration: none;
  color: #176e66;
  background: #fff;
}
.framework-links a:hover {
  border-color: #087d72;
}
.acceptance-card {
  grid-column: 1/-1;
  background: #082631 !important;
  color: #fff !important;
  border: 0 !important;
}
.acceptance-card p {
  color: #bad0d3 !important;
}
.artifact-map {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.artifact-map article {
  background: #fff;
  border: 1px solid var(--line);
  padding: 22px;
}
.artifact-map b {
  display: block;
  font: 600 17px var(--display);
  margin-bottom: 8px;
}
.artifact-map span {
  font-size: 12px;
  color: var(--muted);
}
.article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 13px;
}
.article-card {
  display: flex;
  min-height: 250px;
  flex-direction: column;
  padding: 25px;
  background: #fff;
  border: 1px solid var(--line);
  text-decoration: none;
}
.article-card > span {
  font: 600 9px var(--display);
  letter-spacing: 0.12em;
  color: #087d72;
}
.article-card h2,
.article-card h3 {
  font: 600 24px/1.18 var(--display);
  margin: 23px 0 12px;
}
.article-card p {
  font-size: 13px;
  color: var(--muted);
}
.article-card b {
  margin-top: auto;
  font-size: 12px;
  color: #176e66;
}
.resource-groups {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}
.resource-group {
  background: #fff;
  border: 1px solid var(--line);
  padding: 27px;
}
.resource-group h2 {
  font: 600 23px var(--display);
  margin: 0 0 15px;
}
.resource-group a {
  display: block;
  border-top: 1px solid #e0e9e7;
  padding: 10px 0;
  text-decoration: none;
  font-size: 13px;
}
.resource-group a:hover {
  color: #087d72;
}
.resource-group small {
  display: block;
  color: #718085;
}
.about-grid {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: 75px;
}
.about-grid h2 {
  font: 600 42px/1.1 var(--display);
  margin: 0;
}
.about-grid .bio-lead {
  font-size: 22px;
  line-height: 1.45;
  color: #26474d;
}
.about-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 30px;
}
.about-facts div {
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
}
.about-facts b {
  display: block;
  font: 600 18px var(--display);
}
.about-facts span {
  font-size: 11px;
  color: var(--muted);
}
@media (max-width: 1000px) {
  .thread-track {
    grid-template-columns: repeat(4, 1fr);
  }
  .thread-track:before {
    display: none;
  }
  .service-layout,
  .agentic-compact > .shell,
  .about-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .article-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 900px) {
  .risk-grid,
  .proof-feature {
    grid-template-columns: 1fr;
  }
  .image-story-grid {
    grid-template-columns: 1fr;
  }
  .thread-focus {
    grid-template-columns: 1fr;
  }
  .thread-rails {
    grid-template-columns: 1fr 1fr;
  }
  .founder-strip .shell {
    align-items: flex-start;
    flex-direction: column;
  }
  .site-header nav {
    gap: 14px;
  }
}
@media (max-width: 620px) {
  .hero h1 {
    font-size: 43px;
  }
  .hero > picture .hero-image {
    object-position: 58% center;
  }
  .risk-grid {
    border-left: 0;
  }
  .thread-track {
    grid-template-columns: 1fr 1fr;
  }
  .thread-focus {
    padding: 23px;
  }
  .thread-focus h3 {
    font-size: 25px;
  }
  .thread-rails {
    grid-template-columns: 1fr;
  }
  .thread-controls {
    justify-content: stretch;
  }
  .thread-controls button {
    flex: 1;
  }
  .image-story {
    min-height: 330px;
  }
  .service-panels,
  .article-grid,
  .resource-groups,
  .artifact-map,
  .about-facts {
    grid-template-columns: 1fr;
  }
  .agent-bands {
    grid-template-columns: 1fr;
  }
  .page-hero {
    padding: 95px 0 60px;
  }
  .page-hero h1 {
    font-size: 44px;
  }
  .service-section {
    padding: 65px 0;
  }
  .founder-strip .button {
    white-space: normal;
  }
}
@media (prefers-reduced-motion: reduce) {
  .image-story.in-view svg path,
  .image-story img {
    animation: none !important;
    transition: none !important;
  }
  .thread-track button.active {
    transform: none;
  }
}

/* Industry stories, engagement products and editorial notes */
.commercial-note a {
  color: #087d72;
  font-weight: 700;
}
.vertical-detail {
  padding: 96px 0;
  border-bottom: 1px solid var(--line);
}
.vertical-detail.dark-panel {
  background: #071923;
  color: #fff;
}
.vertical-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 68px;
  align-items: center;
}
.vertical-detail-grid.reverse figure {
  order: 2;
}
.vertical-detail figure {
  margin: 0;
  min-width: 0;
  background: #06151e;
  border: 1px solid #ffffff1e;
}
.vertical-detail figure img {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
}
.vertical-detail figcaption {
  padding: 9px 12px;
  font-size: 9px;
  color: #7a999f;
  background: #06151e;
}
.vertical-detail h2 {
  font: 600 clamp(28px, 3.2vw, 40px) / 1.08 var(--display);
  letter-spacing: -0.045em;
  margin: 8px 0 18px;
}
.vertical-detail p {
  color: var(--muted);
}
.vertical-detail.dark-panel p {
  color: #a8bec2;
}
.system-flow {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  margin: 26px 0;
}
.system-flow span {
  position: relative;
  padding: 7px 9px;
  border: 1px solid #5cd6ca55;
  background: #0c303b;
  color: #c4dedf;
  font: 600 9px/1.3 var(--display);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.system-flow i {
  display: none;
}
.system-flow span:not(:last-of-type)::after {
  position: absolute;
  top: 50%;
  right: -17px;
  color: var(--teal);
  content: "→";
  transform: translateY(-50%);
}
.system-flow.light span {
  background: #fff;
  color: #2e5157;
  border-color: #b8ceca;
}
.system-flow.light span:not(:last-of-type)::after {
  color: #08756c;
}
.table-stakes {
  margin-top: 20px;
  border: 1px solid #31515a;
  background: #0a222c;
}
.table-stakes > span {
  display: block;
  padding: 9px 12px 8px;
  color: #55d4c8;
  font: 700 11px/1.3 var(--display);
  letter-spacing: 0.12em;
}
.table-stakes > div {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid #31515a;
}
.table-stakes article {
  padding: 13px 14px 14px;
}
.table-stakes article + article {
  border-left: 1px solid #31515a;
}
.table-stakes strong {
  display: block;
  color: #eff8f7;
  font: 600 13px/1.35 var(--display);
}
.vertical-detail .table-stakes article p,
.vertical-detail.dark-panel .table-stakes article p {
  margin: 6px 0 0;
  color: #afc5c8;
  font-size: 13px;
  line-height: 1.5;
}
.vertical-detail .table-stakes .framework-line,
.vertical-detail.dark-panel .table-stakes .framework-line {
  margin: 0;
  padding: 10px 12px 11px;
  border-top: 1px solid #31515a;
  color: #9fb9bd;
  font-size: 12px;
  line-height: 1.45;
}
.table-stakes .framework-line b {
  color: #d9e9e8;
  font-weight: 700;
}
.table-stakes.light {
  border-color: #cbd9d6;
  background: #f5f8f7;
}
.table-stakes.light > span {
  color: #087d72;
}
.table-stakes.light > div,
.table-stakes.light article + article,
.vertical-detail .table-stakes.light .framework-line {
  border-color: #cbd9d6;
}
.table-stakes.light strong {
  color: #183c43;
}
.vertical-detail .table-stakes.light article p {
  color: #53696e;
}
.vertical-detail .table-stakes.light .framework-line {
  color: #61777b;
}
.table-stakes.light .framework-line b {
  color: #234950;
}
.evidence-metrics {
  display: grid;
  gap: 0;
  margin: 24px 0 0;
  border-top: 1px solid currentColor;
}
.evidence-metrics div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 18px;
  padding: 12px 0;
  border-bottom: 1px solid #ffffff26;
}
.vertical-detail:not(.dark-panel) .evidence-metrics {
  border-color: #d2dfdc;
}
.vertical-detail:not(.dark-panel) .evidence-metrics div {
  border-color: #d2dfdc;
}
.evidence-metrics dt {
  font: 600 9px var(--display);
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: #168379;
}
.evidence-metrics dd {
  margin: 0;
  font-size: 12px;
  color: #bed0d3;
}
.vertical-detail:not(.dark-panel) .evidence-metrics dd {
  color: #53696e;
}
.vertical-detail.dark-panel .service-number,
.vertical-detail.dark-panel .evidence-metrics dt {
  color: #71ded3;
}
.vertical-detail:not(.dark-panel) .evidence-metrics dt {
  color: #08756c;
}
.risk-share-callout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 70px;
  align-items: center;
  padding: 44px;
  background: #082631;
  color: #fff;
}
.risk-share-callout > div > span {
  font: 600 9px var(--display);
  letter-spacing: 0.14em;
  color: var(--teal);
}
.risk-share-callout h2 {
  font: 600 40px/1.08 var(--display);
  margin: 8px 0 15px;
}
.risk-share-callout p {
  color: #abc2c6;
}
.fee-rail {
  display: grid;
  grid-template-columns: 1fr 26px 1fr 26px 1fr;
  align-items: center;
}
.fee-rail span {
  min-height: 105px;
  padding: 18px;
  border: 1px solid #ffffff29;
  background: #0c3440;
  font: 600 11px/1.35 var(--display);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.fee-rail span b {
  display: block;
  color: var(--teal);
  font-size: 20px;
  margin-bottom: 12px;
}
.fee-rail span.deferred {
  border-color: var(--teal);
  background: #14514f;
}
.fee-rail i {
  height: 1px;
  background: var(--teal);
}
.engagement-catalog {
  background: #edf3f1;
}
.model-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.model-grid article {
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
}
.model-grid article.featured {
  background: #092b36;
  color: #fff;
  border-color: #092b36;
}
.model-grid article > span {
  font: 600 10px var(--display);
  color: #087d72;
}
.model-grid .featured > span {
  color: var(--teal);
}
.model-grid h3 {
  font: 600 24px/1.18 var(--display);
  margin: 23px 0 16px;
}
.model-grid p {
  font-size: 13px;
  color: #607176;
}
.model-grid .featured p {
  color: #b1c7ca;
}
.guardrail-section {
  background: #071923;
  color: #fff;
}
.guardrail-section .section-heading > p {
  color: #a9bec2;
}
.guardrail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #ffffff20;
  border-left: 1px solid #ffffff20;
}
.guardrail-grid article {
  padding: 25px;
  border-right: 1px solid #ffffff20;
  border-bottom: 1px solid #ffffff20;
}
.guardrail-grid b {
  font: 600 18px var(--display);
}
.guardrail-grid p {
  font-size: 13px;
  color: #9fb6ba;
  margin-bottom: 0;
}
.gate-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.gate-list article {
  display: grid;
  grid-template-columns: 125px 1fr;
  gap: 20px;
  padding: 23px;
  background: #fff;
  border: 1px solid var(--line);
}
.gate-list span {
  font: 600 10px var(--display);
  letter-spacing: 0.08em;
  color: #087d72;
}
.gate-list p {
  margin: 0;
  font-size: 13px;
  color: #5c6e73;
}
.insight-note {
  padding: 78px 0;
  border-top: 1px solid var(--line);
}
.insight-note.dark-panel {
  background: #071923;
  color: #fff;
}
.note-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 85px;
}
.note-grid > div:first-child > span {
  font: 600 9px var(--display);
  letter-spacing: 0.13em;
  color: #118a7f;
}
.dark-panel .note-grid > div:first-child > span {
  color: var(--teal);
}
.note-grid h2 {
  font: 600 39px/1.1 var(--display);
  letter-spacing: -0.04em;
  margin: 10px 0;
}
.note-grid p {
  color: #5d7075;
}
.dark-panel .note-grid p {
  color: #aac0c4;
}
.note-grid a {
  color: #087d72;
  font-weight: 700;
}
.dark-panel .note-grid a {
  color: var(--teal);
}
.dsp-lineage {
  padding: 85px 0;
  background: linear-gradient(135deg, #071923, #0b3340);
  color: #fff;
}
.dsp-lineage-grid {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 80px;
  align-items: center;
}
.dsp-lineage h2 {
  font: 600 clamp(28px, 3.2vw, 40px) / 1.06 var(--display);
  letter-spacing: -0.045em;
  margin: 0 0 20px;
}
.dsp-lineage p {
  color: #abc1c5;
  max-width: 700px;
}
.signal-stack {
  display: grid;
  gap: 7px;
}
.signal-stack span {
  padding: 13px 16px;
  border: 1px solid #ffffff24;
  background: #0d3440;
  font: 600 11px var(--display);
  letter-spacing: 0.04em;
}
.signal-stack span:nth-of-type(4) {
  border-color: var(--teal);
  background: #14504e;
}
.signal-stack i {
  height: 8px;
  color: var(--teal);
  font-style: normal;
  text-align: center;
  line-height: 8px;
}
.profile-scorecard {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 25px 0;
}
.profile-scorecard span {
  padding: 13px;
  background: #fff;
  border: 1px solid var(--line);
  font-size: 11px;
  color: #4e666b;
}
.image-story-grid {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 1000px) {
  .image-story-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .vertical-detail-grid,
  .risk-share-callout,
  .dsp-lineage-grid {
    grid-template-columns: 1fr;
  }
  .vertical-detail-grid.reverse figure {
    order: initial;
  }
  .model-grid {
    grid-template-columns: 1fr 1fr;
  }
  .guardrail-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 700px) {
  .image-story-grid,
  .model-grid,
  .guardrail-grid,
  .gate-list,
  .note-grid {
    grid-template-columns: 1fr;
  }
  .vertical-detail {
    padding: 66px 0;
  }
  .vertical-detail-grid {
    gap: 35px;
  }
  .evidence-metrics div {
    grid-template-columns: 1fr;
    gap: 4px;
  }
  .risk-share-callout {
    padding: 26px;
    gap: 35px;
  }
  .fee-rail {
    grid-template-columns: 1fr;
  }
  .fee-rail i {
    height: 20px;
    width: 1px;
    margin: auto;
  }
  .fee-rail span {
    min-height: auto;
  }
  .gate-list article {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .note-grid {
    gap: 24px;
  }
  .profile-scorecard {
    grid-template-columns: 1fr;
  }
}

.service-explorer {
  background: #e8f0ee;
}
.service-tabs {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
}
.service-tabs button {
  appearance: none;
  border: 1px solid #aabfbd;
  background: #f9fbfa;
  color: #35545a;
  padding: 11px 17px;
  min-height: 44px;
  font: 600 11px var(--display);
  cursor: pointer;
}
.service-tabs button[aria-selected="true"] {
  background: #092b36;
  border-color: #092b36;
  color: #fff;
}
.service-tabpanels {
  margin-top: 10px;
}
.service-tabpanels > article {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 60px;
  padding: 34px;
  background: #fff;
  border: 1px solid var(--line);
}
.service-tabpanels > article[hidden] {
  display: none;
}
.service-tabpanels header > span {
  font: 600 9px var(--display);
  letter-spacing: 0.13em;
  color: #087d72;
}
.service-tabpanels h3 {
  font: 600 30px/1.15 var(--display);
  margin: 11px 0;
}
.service-tabpanels dl {
  margin: 0;
  display: grid;
  gap: 0;
}
.service-tabpanels dl div {
  display: grid;
  grid-template-columns: 125px 1fr;
  gap: 20px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.service-tabpanels dt {
  font: 600 9px var(--display);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #087d72;
}
.service-tabpanels dd {
  margin: 0;
  font-size: 13px;
  color: #536a6f;
}
.compliance-note {
  margin: 0;
  padding: 15px max(22px, calc((100vw - 1180px) / 2));
  background: #061720;
  color: #78949a;
  font-size: 10px;
  border-top: 1px solid #ffffff1a;
}
.outcome-offer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  width: min(760px, 100%);
  margin: 0 0 17px;
  padding: 11px 14px;
  background: #0b333dce;
  border: 1px solid #43ddcc8a;
  color: #fff;
  text-decoration: none;
}
.outcome-offer b {
  font: 700 10px var(--display);
  letter-spacing: 0.1em;
  color: var(--teal);
  white-space: nowrap;
}
.outcome-offer span {
  font-size: 12px;
  color: #c5d9dc;
}
.outcome-offer i {
  font: 600 10px var(--display);
  font-style: normal;
  white-space: nowrap;
}
.outcome-offer:hover {
  background: #10434b;
}
.hero-facts {
  margin-top: 42px;
}
.us-assurance {
  background: #0f3742;
  color: #c9dde0;
  border-top: 1px solid #ffffff17;
}
.us-assurance .shell {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding-top: 12px;
  padding-bottom: 12px;
  font-size: 10px;
  letter-spacing: 0.04em;
}
.us-assurance b {
  font: 700 9px var(--display);
  letter-spacing: 0.13em;
  color: var(--teal);
}
.us-assurance i {
  font-style: normal;
  color: #3c807c;
}
.compliance-note b {
  color: #b8d1d3;
}
.hire-alternative {
  background: #f4f7f6;
}
.cost-case {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 12px;
}
.cost-case article {
  padding: 31px;
  background: #fff;
  border: 1px solid var(--line);
}
.cost-case article > span {
  font: 600 9px var(--display);
  letter-spacing: 0.12em;
  color: #087d72;
}
.cost-case h3 {
  font: 600 27px/1.16 var(--display);
  margin: 22px 0 15px;
}
.cost-case li {
  margin: 9px 0;
  color: #52686d;
}
.cost-case p {
  font-size: 12px;
  color: #66797e;
}
.cost-case a,
.concern-grid a {
  color: #087d72;
  font-weight: 700;
}
.cost-case .decision-card {
  background: #092b36;
  color: #fff;
}
.cost-case .decision-card p {
  color: #b2c7ca;
  font-size: 14px;
}
.concern-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  margin-top: 12px;
}
.concern-grid article {
  padding: 23px;
  background: #fff;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.concern-grid b {
  font: 600 17px var(--display);
}
.concern-grid p {
  font-size: 12px;
  color: #607277;
  margin-bottom: 0;
}
.nav-dropdown {
  position: relative;
}
.site-header nav .nav-dropdown > button {
  appearance: none;
  border: 0;
  background: transparent;
  color: #d9e7ea;
  padding: 12px 0;
  font: 600 12px var(--body);
  cursor: pointer;
}
.site-header nav .nav-dropdown > button:hover,
.site-header nav .nav-dropdown > button[aria-expanded="true"] {
  color: var(--teal);
}
.nav-dropdown-menu {
  display: none;
  position: absolute;
  z-index: 30;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  width: 230px;
  padding: 8px;
  background: #071923;
  border: 1px solid #ffffff29;
  box-shadow: 0 18px 50px #0008;
}
.nav-dropdown-menu.open {
  display: grid;
}
.site-header nav .nav-dropdown-menu a {
  padding: 10px 12px;
  font-size: 11px;
  border-bottom: 1px solid #ffffff12;
}
.site-header nav .nav-dropdown-menu a:last-child {
  border-bottom: 0;
}
.site-header nav .nav-dropdown-menu a:hover {
  background: #0e3440;
  color: #fff;
}
.model-evidence {
  background: #071923;
  color: #fff;
}
.model-evidence .section-heading > p {
  color: #a8bdc1;
}
.model-view {
  display: grid;
  grid-template-columns: 0.62fr 1.38fr;
  gap: 38px;
  align-items: center;
  padding: 34px 0;
  border-top: 1px solid #ffffff20;
}
.model-view.reverse {
  grid-template-columns: 1.38fr 0.62fr;
}
.model-view.reverse .model-copy {
  order: 2;
}
.model-copy > span {
  font: 600 9px var(--display);
  letter-spacing: 0.13em;
  color: var(--teal);
}
.model-copy h3 {
  font: 600 29px/1.15 var(--display);
  margin: 10px 0 14px;
}
.model-copy p,
.model-copy li {
  color: #a9bec2;
  font-size: 13px;
}
.model-copy ul {
  padding-left: 17px;
}
.model-canvas {
  margin: 0;
  min-width: 0;
  padding: 15px;
  background: #092833;
  border: 1px solid #ffffff22;
}
.model-canvas svg {
  display: block;
  width: 100%;
  height: auto;
}
.model-canvas figcaption {
  font-size: 10px;
  color: #78969b;
  padding: 10px 5px 2px;
}
.model-canvas svg text {
  fill: #c6d9dc;
  font: 600 12px var(--body);
  text-anchor: middle;
}
.uml-participants rect,
.state-nodes rect,
.trace-nodes rect {
  fill: #0c3541;
  stroke: #4dd8c8;
  stroke-width: 1;
}
.uml-lifelines path {
  fill: none;
  stroke: #547881;
  stroke-width: 1;
  stroke-dasharray: 5 5;
}
.uml-messages path,
.state-arrows path,
.trace-links path {
  fill: none;
  stroke: #5ddacd;
  stroke-width: 1.4;
}
.uml-messages path:after {
  content: "";
}
.uml-messages text,
.state-labels text,
.trace-captions text {
  fill: #8fb1b5;
  font: 500 10px var(--body);
}
.uml-alt rect {
  fill: #071b24;
  stroke: #86aaa9;
  stroke-width: 1;
  stroke-dasharray: 5 4;
}
.uml-alt > text {
  fill: #a9c4c7;
  text-anchor: start;
  font-size: 10px;
}
.uml-alt path {
  fill: none;
  stroke: #5ddacd;
  stroke-width: 1.4;
}
.model-canvas .fault {
  stroke: #f3ae6e;
  stroke-dasharray: 5 4;
}
.model-canvas .fault-text {
  fill: #ffc48e;
}
.state-nodes circle {
  fill: #5ddacd;
}
.state-nodes .bounded {
  fill: #12534f;
  stroke: #75e7d9;
}
.state-nodes .fault-node,
.trace-nodes .fault-node {
  fill: #493226;
  stroke: #f3ae6e;
}
.state-nodes text,
.trace-nodes text {
  font-size: 11px;
}
.trace-captions text {
  text-anchor: middle;
}
.model-governance {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-left: 1px solid #ffffff20;
  border-top: 1px solid #ffffff20;
  margin-top: 20px;
}
.model-governance article {
  padding: 21px;
  border-right: 1px solid #ffffff20;
  border-bottom: 1px solid #ffffff20;
}
.model-governance b {
  font: 600 16px var(--display);
}
.model-governance p {
  font-size: 12px;
  color: #9eb6ba;
  margin-bottom: 0;
}
@media (max-width: 700px) {
  .service-tabpanels > article {
    grid-template-columns: 1fr;
    padding: 24px;
    gap: 24px;
  }
  .service-tabpanels dl div {
    grid-template-columns: 1fr;
    gap: 4px;
  }
  .service-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 800px) {
  .cost-case,
  .concern-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 900px) {
  .model-view,
  .model-view.reverse {
    grid-template-columns: 1fr;
  }
  .model-view.reverse .model-copy {
    order: initial;
  }
  .model-governance {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 900px) {
  .nav-dropdown-menu {
    position: static;
    transform: none;
    width: 100%;
    box-shadow: none;
    margin-top: 3px;
  }
  .site-header nav .nav-dropdown > button {
    width: 100%;
    text-align: left;
    padding: 8px 0;
  }
  .site-header nav .nav-dropdown-menu a {
    padding: 9px 11px;
  }
}
@media (max-width: 620px) {
  .outcome-offer {
    grid-template-columns: 1fr;
    gap: 4px;
  }
  .outcome-offer b,
  .outcome-offer i {
    white-space: normal;
  }
  .hero {
    min-height: 900px;
  }
  .hero-facts {
    margin-top: 28px;
  }
  .us-assurance .shell {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
    padding-top: 14px;
    padding-bottom: 14px;
  }
  .us-assurance i {
    display: none;
  }
}
@media (max-width: 620px) {
  .model-governance {
    grid-template-columns: 1fr;
  }
  .model-canvas {
    padding: 7px;
    overflow-x: auto;
  }
  .model-canvas svg {
    min-width: 650px;
  }
  .model-view {
    gap: 18px;
  }
  .model-copy h3 {
    font-size: 26px;
  }
}

/* Final hero hierarchy and mobile diagram affordance. */
.hero h1 {
  font-size: clamp(38px, 4.6vw, 56px);
  max-width: 900px;
}
@media (max-width: 620px) {
  .hero h1 {
    font-size: 43px;
  }
  .model-canvas:before {
    content: "Swipe to inspect the full model →";
    display: block;
    position: sticky;
    left: 0;
    width: max-content;
    margin: 2px 0 8px;
    padding: 4px 7px;
    background: #0f3b46;
    color: #8fe2d8;
    font: 600 9px var(--display);
    letter-spacing: 0.05em;
  }
}

/* Hardware-speed identity: a pinned device crossed by a fast signal path. */
.brand-mark {
  display: block;
  flex: 0 0 48px;
  width: 48px;
  height: 38px;
  background: url("/assets/magic-lens-mark.svg") center/contain no-repeat;
  transform: none;
}
.brand-mark i {
  display: none;
}
@media (max-width: 620px) {
  .brand-mark {
    flex-basis: 44px;
    width: 44px;
    height: 36px;
  }
}

/* Readability, proof hierarchy and non-overlapping technical labels. */
.brand small {
  font-size: 11px;
  letter-spacing: 0.24em;
}
.site-header nav a,
.site-header nav .nav-dropdown > button {
  font-size: 13px;
}
.site-header nav a {
  padding-block: 5px;
}
.site-header nav .nav-dropdown-menu a,
.site-header nav .nav-dropdown-menu a:last-child {
  font-size: 12px;
}
.outcome-offer b,
.outcome-offer i,
.us-assurance b,
.us-assurance .shell,
.risk-grid article > span,
.proof-feature article > span,
.thread-focus > div > span,
.thread-focus dt,
.thread-rails span,
.image-story > div span,
.article-card > span,
.note-grid > div:first-child > span,
.service-tabpanels header > span,
.service-tabpanels dt,
.risk-share-callout > div > span,
.cost-case article > span,
.model-copy > span,
.gate-list span,
.model-grid article > span,
.founder-strip span {
  font-size: 11px;
  line-height: 1.35;
}
.thread-track button b,
.thread-track button span,
.page-nav a,
.service-tabs button,
.framework-links a,
.model-canvas figcaption,
.illustration-note,
.vertical-detail figcaption {
  font-size: 11px;
  line-height: 1.45;
}
.hero-facts span,
.thread-focus dd,
.evidence-thread figcaption,
.image-story p,
.artifact-map span,
.model-governance p,
.cost-case p,
.concern-grid p,
.commercial-note {
  font-size: 13px;
  line-height: 1.5;
}
.vertical-detail {
  padding: 82px 0;
}
.vertical-detail figure img {
  height: auto;
}
.vertical-detail figcaption {
  padding: 10px 12px;
}
.system-flow {
  gap: 7px;
  margin: 23px 0;
}
.system-flow span {
  padding: 8px 10px;
  font-size: 11px;
  line-height: 1.35;
}
.system-flow i {
  flex: 0 0 auto;
  line-height: 1;
}
.evidence-metrics {
  margin-top: 20px;
}
.evidence-metrics div {
  grid-template-columns: 142px 1fr;
  align-items: start;
}
.evidence-metrics dt {
  font-size: 11px;
  line-height: 1.4;
}
.evidence-metrics dd {
  font-size: 14px;
  line-height: 1.5;
}
.program-proof {
  margin-top: 16px;
  padding: 18px 20px;
  border-left: 3px solid var(--teal);
  background: #0c303b;
}
.program-proof.light {
  background: #fff;
  border-top: 1px solid #cbd9d6;
  border-right: 1px solid #cbd9d6;
  border-bottom: 1px solid #cbd9d6;
}
.program-proof > span {
  display: block;
  margin-bottom: 7px;
  color: var(--teal);
  font: 700 11px/1.35 var(--display);
  letter-spacing: 0.1em;
}
.program-proof.light > span {
  color: #087d72;
}
.program-proof strong {
  display: block;
  font: 600 18px/1.3 var(--display);
}
.program-proof p,
.vertical-detail.dark-panel .program-proof p {
  margin: 7px 0 0;
  color: #b8cdd0;
  font-size: 13px;
  line-height: 1.5;
}
.vertical-detail .program-proof.light p {
  color: #53696e;
}
.profile-scorecard {
  display: table;
  table-layout: fixed;
  width: 100%;
  margin-top: 30px;
  border: 1px solid #ffffff26;
  border-collapse: collapse;
  border-spacing: 0;
}
.profile-scorecard th,
.profile-scorecard td {
  padding: 13px 15px;
  border-right: 1px solid #ffffff1f;
  border-bottom: 1px solid #ffffff1f;
  color: #b7c9cd;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.45;
  text-align: left;
  vertical-align: middle;
}
.profile-scorecard tr > *:last-child {
  border-right: 0;
}
.profile-scorecard tbody th {
  width: 150px;
  color: #fff;
  font-weight: 600;
  font-family: var(--display);
}
.profile-scorecard thead th {
  background: #0c303b;
  color: var(--teal);
  font: 700 11px/1.35 var(--display);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.model-canvas svg text {
  font-size: 14px;
  paint-order: stroke;
  stroke: #092833;
  stroke-width: 4px;
  stroke-linejoin: round;
}
.uml-messages text,
.state-labels text,
.trace-captions text,
.uml-alt > text {
  font-size: 12px;
}
.state-nodes text,
.trace-nodes text {
  font-size: 13px;
}
.model-canvas figcaption {
  color: #9ab1b5;
}

@media (max-width: 700px) {
  .vertical-detail {
    padding: 58px 0;
  }
  .evidence-metrics div {
    grid-template-columns: 1fr;
  }
  .profile-scorecard thead {
    display: none;
  }
  .profile-scorecard,
  .profile-scorecard tbody,
  .profile-scorecard tr,
  .profile-scorecard th,
  .profile-scorecard td {
    display: block;
    width: 100%;
  }
  .profile-scorecard tr {
    padding: 5px 0;
    border-bottom: 1px solid #ffffff2b;
  }
  .profile-scorecard th,
  .profile-scorecard td {
    border-right: 0;
    border-bottom: 0;
    padding: 9px 14px;
  }
  .profile-scorecard td::before {
    display: inline-block;
    width: 86px;
    color: var(--teal);
    font: 700 10px/1.35 var(--display);
    letter-spacing: 0.07em;
    text-transform: uppercase;
    content: attr(data-label);
  }
}

@media (max-width: 620px) {
  .hero h1 {
    font-size: 39px;
    line-height: 1.03;
  }
  .model-canvas svg {
    min-width: 900px;
  }
  .model-canvas::before {
    font-size: 11px;
  }
  .page-hero h1 {
    overflow-wrap: anywhere;
  }
}

.engagement-grid article > span,
.resource-group small,
.compliance-note,
footer > div > small {
  font-size: 11px;
  line-height: 1.5;
}
footer nav a {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
}
.image-story svg {
  display: none;
}

/* Restrained type scale: technical, quiet and pitch-ready. */
body {
  font-size: 16px;
}
.hero {
  min-height: 700px;
}
.hero-content {
  padding-top: 92px;
}
.hero h1 {
  max-width: 790px;
  margin-bottom: 20px;
  font-size: clamp(38px, 4.6vw, 56px);
  line-height: 1.04;
}
.hero-copy {
  max-width: 650px;
  margin-bottom: 25px;
  font-size: 18px;
  line-height: 1.5;
}
.hero-facts {
  margin-top: 30px;
}
.hero-facts strong {
  font-size: 15px;
}
.section {
  padding: 88px 0;
}
.section-heading {
  margin-bottom: 38px;
}
.section-heading h2 {
  font-size: clamp(28px, 3.2vw, 40px);
  line-height: 1.1;
}
.section-heading > p,
.section-heading.split > p {
  font-size: 16px;
}
.page-hero {
  padding: 105px 0 65px;
}
.page-hero h1,
.library-hero h1 {
  max-width: 860px;
  font-size: clamp(38px, 4.6vw, 56px);
  line-height: 1.05;
}
.page-hero .shell > p:not(.eyebrow),
.library-hero > div > p:last-child {
  font-size: 16.5px;
}
.risk-grid article,
.proof-feature article,
.engagement-grid article,
.model-grid article {
  padding: 26px;
}
.risk-grid h3,
.proof-feature h3,
.engagement-grid h3,
.model-grid h3 {
  font-size: 21px;
  line-height: 1.25;
  margin-top: 18px;
}
.dsp-lineage {
  padding: 72px 0;
}
.dsp-lineage h2 {
  font-size: clamp(28px, 3.2vw, 40px);
  line-height: 1.08;
}
.thread-focus {
  padding: 26px;
}
.thread-focus h3 {
  font-size: 26px;
}
.image-story {
  min-height: 330px;
}
.image-story h3 {
  font-size: 23px;
}
.agentic-compact h2 {
  font-size: 36px;
}
.agent-bands article {
  padding: 20px;
}
.agent-bands b {
  font-size: 16px;
}
.contact-layout h2 {
  font-size: clamp(28px, 3.2vw, 40px);
}
.vertical-detail h2 {
  font-size: clamp(28px, 3.2vw, 40px);
  line-height: 1.1;
}
.service-layout h2 {
  font-size: 36px;
}
.service-tabpanels h3 {
  font-size: 25px;
}
.risk-share-callout h2,
.note-grid h2 {
  font-size: 34px;
}
.model-copy h3 {
  font-size: 25px;
}
.library-cta {
  padding: 50px 0;
}
.library-cta h2 {
  font-size: 30px;
}
.about-grid h2 {
  font-size: 36px;
}
.about-grid .bio-lead {
  font-size: 19px;
}

@media (max-width: 620px) {
  .hero {
    min-height: 760px;
  }
  .hero-content {
    padding-top: 82px;
  }
  .hero h1 {
    font-size: 34px;
    line-height: 1.06;
  }
  .hero-copy {
    font-size: 16px;
  }
  .section {
    padding: 60px 0;
  }
  .section-heading {
    margin-bottom: 30px;
  }
  .section-heading h2 {
    font-size: 32px;
  }
  .page-hero {
    padding: 82px 0 48px;
  }
  .page-hero h1,
  .library-hero h1 {
    font-size: 36px;
  }
  .vertical-detail h2 {
    font-size: 31px;
  }
  .system-flow {
    align-items: flex-start;
    flex-direction: column;
    gap: 17px;
  }
  .system-flow span:not(:last-of-type)::after {
    top: auto;
    right: auto;
    bottom: -17px;
    left: 14px;
    transform: rotate(90deg);
  }
  .table-stakes > div {
    grid-template-columns: 1fr;
  }
  .table-stakes article + article {
    border-left: 0;
    border-top: 1px solid #31515a;
  }
  .table-stakes.light article + article {
    border-top-color: #cbd9d6;
  }
  .image-story {
    min-height: 280px;
  }
  .image-story h3 {
    font-size: 22px;
  }
  .agentic-compact h2,
  .contact-layout h2,
  .risk-share-callout h2,
  .note-grid h2,
  .about-grid h2 {
    font-size: 31px;
  }
  .service-layout h2 {
    font-size: 30px;
  }
}

/* Keep the vertical illustrations complete and keep labels off the artwork. */
main a.image-story {
  display: flex;
  min-height: 0;
  align-items: stretch;
  flex-direction: column;
}
.image-story picture {
  position: relative;
  inset: auto;
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  flex: 0 0 auto;
  overflow: hidden;
  background: #06151e;
}
.image-story picture img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: none;
}
.image-story:hover picture img {
  transform: none;
}
.image-story:after {
  display: none;
}
.image-story > div {
  position: relative;
  inset: auto;
  display: flex;
  min-height: 126px;
  padding: 18px 20px 20px;
  flex: 1 1 auto;
  flex-direction: column;
  justify-content: flex-start;
  background: #06151e;
}
.image-story > div span {
  line-height: 1.4;
}
.image-story h3 {
  margin: 7px 0 8px;
}

/* ============================================================
   Lodestone type treatment: serif display, light and tight.
   Placed last so it sets the shared weight, tracking and
   leading for every large display heading regardless of the
   per-component font shorthands above. Sizes and colours are
   left untouched; only weight, letter-spacing and line-height
   are normalised here. Newsreader is a serif, so headings sit
   at ~430 (never 700), with negative tracking eased to -0.02em.
   ============================================================ */
.hero h1,
.section h2,
.section-heading h2,
.library-hero h1,
.page-hero h1,
.pattern-layout h2,
.agentic h2,
.agentic-compact h2,
.contact-layout h2,
.service-layout h2,
.vertical-detail h2,
.dsp-lineage h2,
.risk-share-callout h2,
.note-grid h2,
.library-cta h2,
.founder-strip h2,
.about-grid h2,
.thread-focus h3,
.service-tabpanels h3,
.model-copy h3,
.vertical-card h3,
.image-story h3,
.capability-grid h3,
.risk-grid h3,
.engagement-grid h3,
.model-grid h3,
.proof-feature h3,
.proof-timeline h3,
.article-card h2,
.article-card h3,
.resource-group h2 {
  font-family: var(--display);
  font-weight: 430;
  letter-spacing: -0.02em;
  line-height: 1.12;
}

/* Numeric stats, KPIs and technical/code tokens read as data:
   set them in the mono face so figures and tokens stay legible
   and tabular against the serif display. */
.hero-facts strong,
.market-kpis b,
.service-number,
.fee-rail span b,
.thread-track button b,
.about-facts b,
.architecture-flow span,
.system-flow span,
.signal-stack span,
.code-card header,
.code-card header b,
.code-card pre,
.node b,
.node span {
  font-family: var(--mono);
}
