:root {
  --bone: #f6f2eb;
  --stone: #d8d0c3;
  --sand: #eee7dc;
  --ink: #111417;
  --slate: #233038;
  --slate-soft: #46535b;
  --mineral: #165e68;
  --mineral-soft: rgba(31, 107, 106, 0.12);
  --oxide: #556b63;
  --copper: #9a734e;
  --line: rgba(17, 20, 23, 0.08);
  --line-strong: rgba(17, 20, 23, 0.14);
  --card: rgba(255, 255, 255, 0.66);
  --card-strong: rgba(255, 255, 255, 0.88);
  --shadow: 0 14px 36px rgba(17, 20, 23, 0.05);
  --shadow-soft: 0 10px 28px rgba(43, 33, 22, 0.035);
  --radius-xl: 8px;
  --radius-lg: 6px;
  --radius-md: 6px;
  --radius-sm: 4px;
  --max-width: 1420px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #faf7f1 0%, #f6f2eb 100%);
  min-height: 100vh;
}

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

img {
  max-width: 100%;
}

.site-shell {
  position: relative;
  overflow-x: clip;
}

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

.page-noise {
  opacity: 0.08;
  background-image:
    linear-gradient(rgba(17, 20, 23, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 20, 23, 0.04) 1px, transparent 1px);
  background-size: 128px 128px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.55), transparent 86%);
}

.page-noise::before {
  background: none;
  opacity: 0;
}

.page-noise::after {
  inset: 9% auto auto 71%;
  width: 20rem;
  height: 20rem;
  border: 1px solid rgba(31, 107, 106, 0.04);
  background:
    linear-gradient(135deg, rgba(31, 107, 106, 0.04), transparent 42%),
    linear-gradient(315deg, rgba(139, 107, 74, 0.03), transparent 42%);
  transform: rotate(8deg);
}

.container {
  width: min(calc(100% - 3.5rem), var(--max-width));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(12px);
  background: rgba(248, 245, 239, 0.78);
  border-bottom: 1px solid rgba(17, 20, 23, 0.06);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4.55rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.95rem;
  color: var(--ink);
}

.brand__logo {
  width: 2.8rem;
  height: 2.8rem;
  display: block;
  object-fit: contain;
  flex: 0 0 auto;
}

.brand__mark {
  position: relative;
  width: 2rem;
  height: 2rem;
  border-radius: 0.2rem;
  border: 1px solid rgba(17, 20, 23, 0.12);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0.2)),
    linear-gradient(135deg, rgba(31, 107, 106, 0.26), rgba(85, 107, 99, 0.08));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.brand__mark::before,
.brand__mark::after {
  content: "";
  position: absolute;
  inset: 0.44rem;
  border: 1px solid rgba(17, 20, 23, 0.2);
  border-radius: 0.08rem;
}

.brand__mark::after {
  inset: 0.76rem 0.58rem;
  border-left: 2px solid rgba(31, 107, 106, 0.68);
  border-right: 2px solid rgba(17, 20, 23, 0.12);
  border-top: 0;
  border-bottom: 0;
  border-radius: 0;
}

.nav-toggle {
  display: none;
  appearance: none;
  border: 1px solid rgba(17, 20, 23, 0.12);
  background: rgba(255, 255, 255, 0.66);
  color: var(--ink);
  border-radius: 4px;
  padding: 0.7rem 1rem;
  font: inherit;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex-wrap: wrap;
}

.site-nav a {
  padding: 0.65rem 0.06rem 0.63rem;
  margin: 0 0.78rem;
  font-size: 0.87rem;
  color: rgba(17, 20, 23, 0.78);
  border-bottom: 1px solid transparent;
  transition: color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.site-nav a:hover {
  color: var(--ink);
  border-color: rgba(17, 20, 23, 0.18);
}

.site-nav a.is-active {
  color: var(--ink);
  border-color: rgba(31, 107, 106, 0.44);
}

.site-nav__cta {
  margin-left: 1rem;
}

.site-nav a.button {
  margin-left: 1rem;
  padding: 0.78rem 1.08rem;
  color: #fff !important;
  border-bottom: 0;
}

.site-nav a.button:hover {
  color: #fff !important;
  border-color: transparent;
}

.button,
.button-secondary,
.button-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  border-radius: 4px;
  padding: 0.84rem 1.18rem;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.01em;
  text-transform: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button {
  color: #fff;
  background: linear-gradient(135deg, #1a5f69 0%, #164851 100%);
  box-shadow: 0 8px 18px rgba(17, 20, 23, 0.08);
}

.button:hover,
.button-secondary:hover,
.button-ghost:hover {
  transform: translateY(-2px);
}

.button-secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.46);
  box-shadow: inset 0 0 0 1px rgba(17, 20, 23, 0.12);
}

.button-ghost {
  color: var(--ink);
  background: transparent;
  box-shadow: inset 0 0 0 1px rgba(17, 20, 23, 0.14);
}

.page {
  padding-bottom: 5rem;
}

.hero {
  padding: 4.5rem 0 2.3rem;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 2.2rem;
  align-items: stretch;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.32rem 0.55rem 0.32rem 0.1rem;
  background: transparent;
  box-shadow: none;
  color: rgba(17, 20, 23, 0.78);
  font-size: 0.84rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 0.36rem;
  height: 0.36rem;
  border-radius: 50%;
  background: var(--mineral);
  box-shadow: 1.1rem 0 0 transparent;
}

.display {
  margin: 1.15rem 0 1.25rem;
  font-family: "Newsreader", serif;
  font-size: 4.6rem;
  line-height: 0.98;
  letter-spacing: 0;
  font-weight: 500;
  max-width: 10ch;
}

.hero--page .display {
  max-width: 12ch;
  font-size: 4.1rem;
}

.lead {
  font-size: 1.08rem;
  line-height: 1.72;
  color: rgba(17, 20, 23, 0.8);
  max-width: 38rem;
}

.hero__actions {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  margin-top: 1.6rem;
}

.hero-visual,
.diagram-card,
.info-card,
.panel,
.signal-card,
.contact-panel {
  position: relative;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.56)),
    var(--card);
  box-shadow: var(--shadow);
  border: 1px solid rgba(17, 20, 23, 0.08);
  overflow: hidden;
}

.hero-visual::after,
.diagram-card::after,
.panel::after,
.signal-card::after,
.contact-panel::after,
.card::after {
  content: "";
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  width: 1.15rem;
  height: 1.15rem;
  border-top: 1px solid rgba(17, 20, 23, 0.12);
  border-right: 1px solid rgba(17, 20, 23, 0.12);
  pointer-events: none;
}

.hero-visual {
  min-height: 24rem;
  padding: 1.25rem;
  isolation: isolate;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(17, 20, 23, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 20, 23, 0.03) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.32), transparent 38%);
  background-size: 92px 92px, 92px 92px, auto;
}

.hero-visual__grid {
  position: relative;
  z-index: 1;
  display: grid;
  height: 100%;
  gap: 0.9rem;
  grid-template-rows: auto 1fr auto;
}

.hero-visual__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
}

.hero-visual__header h3,
.diagram-card h3,
.panel h3,
.signal-card h3 {
  margin: 0;
  font-size: 0.86rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: rgba(17, 20, 23, 0.62);
}

.hero-visual__header p,
.diagram-card p,
.panel p,
.signal-card p {
  margin: 0.55rem 0 0;
  color: rgba(17, 20, 23, 0.72);
  line-height: 1.55;
}

.stack {
  display: grid;
  gap: 0.75rem;
  align-content: center;
}

.stack__item {
  position: relative;
  padding: 0.92rem 0.95rem 0.92rem 1.05rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.52);
  box-shadow: inset 0 0 0 1px rgba(17, 20, 23, 0.08);
}

.stack__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, rgba(31, 107, 106, 0.65), rgba(17, 20, 23, 0.12));
}

.stack__item strong {
  display: block;
  font-size: 0.76rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(17, 20, 23, 0.58);
  margin-bottom: 0.4rem;
}

.stack__item span {
  display: block;
  font-family: "Newsreader", serif;
  font-size: 1.12rem;
  line-height: 1.16;
}

.stack__item::after {
  content: "";
  position: absolute;
  left: 1.35rem;
  bottom: -0.9rem;
  width: 1px;
  height: 0.9rem;
  background: linear-gradient(180deg, rgba(31, 107, 106, 0.36), transparent);
}

.stack__item:last-child::after {
  display: none;
}

.hero-visual__footer {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.micro-stat {
  padding: 0.8rem 0.88rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.42);
  box-shadow: inset 0 0 0 1px rgba(17, 20, 23, 0.08);
}

.micro-stat strong {
  display: block;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(17, 20, 23, 0.55);
  margin-bottom: 0.45rem;
}

.micro-stat span {
  display: block;
  font-size: 0.9rem;
  line-height: 1.45;
  color: rgba(17, 20, 23, 0.8);
}

.section {
  padding: 1.7rem 0 2rem;
  position: relative;
}

.section--tight {
  padding-top: 0.6rem;
}

.section::before {
  content: "";
  position: absolute;
  left: min(1rem, calc(50% - 590px));
  right: min(1rem, calc(50% - 590px));
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(17, 20, 23, 0.08), transparent);
}

.section__header {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 1.3rem;
  max-width: 50rem;
}

.section__eyebrow {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(17, 20, 23, 0.54);
}

.section__title {
  margin: 0;
  font-family: "Newsreader", serif;
  font-size: 2.45rem;
  line-height: 1;
  letter-spacing: 0;
}

.section__body,
.section__header p {
  margin: 0;
  color: rgba(17, 20, 23, 0.78);
  line-height: 1.68;
  font-size: 0.99rem;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: 1.2rem;
  align-items: start;
}

.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 1rem;
}

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

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

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

.card {
  position: relative;
  padding: 1rem 1rem 1.05rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.5);
  box-shadow: inset 0 0 0 1px rgba(17, 20, 23, 0.08);
  overflow: hidden;
}

.card::before,
.panel::before,
.diagram-card::before,
.signal-card::before,
.contact-panel::before {
  content: "";
  position: absolute;
  left: 1rem;
  right: 1rem;
  top: 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(31, 107, 106, 0.8), rgba(31, 107, 106, 0.12));
}

.card h3,
.card h4 {
  margin: 0 0 0.65rem;
  font-size: 0.97rem;
}

.card p {
  margin: 0;
  color: rgba(17, 20, 23, 0.77);
  line-height: 1.66;
}

.signal-card {
  padding: 1.3rem;
}

.signal-list,
.bullet-list {
  display: grid;
  gap: 0.85rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.signal-list li,
.bullet-list li {
  padding-left: 1.15rem;
  position: relative;
  line-height: 1.62;
  color: rgba(17, 20, 23, 0.8);
}

.signal-list li::before,
.bullet-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72rem;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--mineral), var(--copper));
}

.diagram-card,
.panel,
.contact-panel {
  padding: 1.15rem;
}

.diagram {
  display: grid;
  gap: 0.9rem;
  margin-top: 1rem;
}

.diagram__row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  align-items: center;
}

.diagram__node {
  padding: 0.9rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.48);
  box-shadow: inset 0 0 0 1px rgba(17, 20, 23, 0.08);
}

.diagram__node strong {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(17, 20, 23, 0.54);
  margin-bottom: 0.35rem;
}

.diagram__node span {
  display: block;
  font-family: "Newsreader", serif;
  font-size: 1.08rem;
  line-height: 1.12;
}

.diagram__flow {
  display: grid;
  justify-items: center;
  gap: 0.6rem;
}

.diagram__line {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(31, 107, 106, 0.12), rgba(31, 107, 106, 0.68), rgba(139, 107, 74, 0.12));
}

.diagram__flow span {
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(17, 20, 23, 0.46);
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 1.15rem;
}

.proof-strip .card {
  min-height: 100%;
}

.proof-strip strong,
.mini-kicker {
  display: block;
  margin-bottom: 0.48rem;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(17, 20, 23, 0.52);
}

.callout {
  padding: 1.15rem 1.2rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(17, 20, 23, 0.96), rgba(31, 107, 106, 0.92));
  color: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 26px rgba(17, 20, 23, 0.12);
}

.callout p {
  margin: 0;
  line-height: 1.68;
  font-size: 1.02rem;
}

.callout strong {
  display: block;
  margin-bottom: 0.65rem;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.68);
}

.quote-block {
  padding: 1.35rem 1.45rem;
  border-left: 3px solid rgba(31, 107, 106, 0.72);
  background: rgba(255, 255, 255, 0.5);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.quote-block p {
  margin: 0;
  font-family: "Newsreader", serif;
  font-size: 1.35rem;
  line-height: 1.28;
  letter-spacing: 0;
}

.quote-block small {
  display: block;
  margin-top: 0.8rem;
  color: rgba(17, 20, 23, 0.56);
  font-size: 0.88rem;
}

.audience-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.tag-row {
  display: flex;
  gap: 0.55rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.tag {
  padding: 0.48rem 0.72rem;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.42);
  box-shadow: inset 0 0 0 1px rgba(17, 20, 23, 0.1);
  font-size: 0.86rem;
  color: rgba(17, 20, 23, 0.72);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.86fr);
  gap: 1.3rem;
}

.contact-form {
  display: grid;
  gap: 1rem;
}

.field {
  display: grid;
  gap: 0.42rem;
}

.field label {
  font-size: 0.88rem;
  font-weight: 700;
  color: rgba(17, 20, 23, 0.72);
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid rgba(17, 20, 23, 0.12);
  border-radius: 6px;
  padding: 0.9rem 0.95rem;
  font: inherit;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.74);
  resize: vertical;
  min-height: 3.25rem;
}

.field textarea {
  min-height: 8rem;
}

.field input:focus,
.field textarea:focus {
  outline: 2px solid rgba(31, 107, 106, 0.18);
  border-color: rgba(31, 107, 106, 0.4);
}

.form-note {
  font-size: 0.9rem;
  color: rgba(17, 20, 23, 0.6);
  line-height: 1.6;
}

.site-footer {
  padding: 0 0 2.4rem;
}

.site-footer__inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 1rem;
  align-items: end;
  border-top: 1px solid rgba(17, 20, 23, 0.08);
  padding-top: 1.2rem;
}

.site-footer__brand .brand {
  align-items: flex-start;
}

.site-footer__meta {
  display: grid;
  gap: 0.4rem;
  justify-items: start;
}

.site-footer__meta strong {
  font-size: 0.84rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(17, 20, 23, 0.56);
}

.site-footer__meta span,
.site-footer__meta p {
  margin: 0;
  color: rgba(17, 20, 23, 0.68);
  line-height: 1.5;
}

[data-reveal] {
  opacity: 1;
  transform: none;
  transition: opacity 320ms ease, transform 320ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .hero__grid,
  .split,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

  .grid-3,
  .audience-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(calc(100% - 1.2rem), var(--max-width));
  }

  .site-header__inner {
    min-height: 4.5rem;
  }

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

  .site-nav {
    position: absolute;
    left: 0.6rem;
    right: 0.6rem;
    top: calc(100% + 0.45rem);
    padding: 0.7rem;
    border-radius: 8px;
    background: rgba(244, 241, 234, 0.94);
    box-shadow: 0 20px 44px rgba(17, 20, 23, 0.1);
    border: 1px solid rgba(17, 20, 23, 0.08);
    display: none;
    flex-direction: column;
    align-items: stretch;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav__cta {
    margin-left: 0;
    margin-top: 0.35rem;
  }

  .site-nav a {
    margin: 0;
    padding: 0.75rem 0.4rem;
  }

  .display {
    max-width: none;
  }

  .hero {
    padding-top: 3.4rem;
  }

  .hero-visual {
    min-height: auto;
  }

  .hero-visual__footer,
  .diagram__row,
  .grid-2,
  .grid-4,
  .proof-strip {
    grid-template-columns: 1fr;
  }

  .site-footer__inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Reference-driven redesign */

.page--home,
.page--platform,
.page--governance,
.page--internal,
.page--contact,
.page--core {
  padding-bottom: 4rem;
}

.hero-panel {
  margin-top: 1.15rem;
}

.hero-panel__shell {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(17, 20, 23, 0.1);
  border-radius: 6px;
  background:
    linear-gradient(90deg, #10282e 0%, #11272d 47.5%, rgba(255, 255, 255, 0.78) 47.6%, rgba(255, 255, 255, 0.7) 100%);
  box-shadow: 0 18px 44px rgba(17, 20, 23, 0.055);
}

.hero-panel__shell--dark {
  background:
    radial-gradient(circle at 70% 30%, rgba(126, 170, 168, 0.18), transparent 20%),
    linear-gradient(135deg, #10282e 0%, #112227 58%, #0f1d22 100%);
  color: rgba(255, 252, 246, 0.94);
  border-color: rgba(255, 255, 255, 0.08);
}

.hero-panel__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(420px, 1.16fr);
  gap: 0;
  align-items: stretch;
}

.hero-panel__copy {
  position: relative;
  display: flex;
  min-height: var(--hero-copy-min-height, 20.4rem);
  flex-direction: column;
  justify-content: center;
  padding: 2.2rem 2rem 2rem;
  background:
    radial-gradient(circle at 15% 12%, rgba(126, 170, 168, 0.12), transparent 28%),
    linear-gradient(135deg, #10282e 0%, #112227 100%);
  color: rgba(255, 252, 246, 0.94);
}

.hero-panel__copy::after {
  content: "";
  position: absolute;
  inset: 0.8rem 0.8rem auto auto;
  width: 7.2rem;
  height: 7.2rem;
  border-top: 1px solid rgba(239, 228, 199, 0.12);
  border-right: 1px solid rgba(239, 228, 199, 0.12);
  pointer-events: none;
}

.hero-panel__copy > * {
  position: relative;
  z-index: 2;
}

.hero-panel__copy > .eyebrow {
  display: none;
}

.hero-panel__copy .display {
  max-width: 10.2ch;
  margin-top: 0;
  margin-bottom: 0.9rem;
  font-family: "Libre Caslon Display", "Newsreader", serif;
  font-weight: 400;
}

.hero-panel__copy .lead,
.hero-panel__copy p {
  color: rgba(255, 252, 246, 0.9);
}

.hero-panel__copy .button-secondary {
  color: rgba(255, 252, 246, 0.94);
  background: transparent;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.34);
}

.hero-panel__shell--dark .eyebrow,
.hero-panel__shell--dark .lead,
.hero-panel__shell--dark .hero-panel__copy p,
.hero-panel__shell--dark .display {
  color: rgba(255, 252, 246, 0.94);
}

.hero-panel__shell--dark .eyebrow {
  opacity: 0.82;
}

.hero-panel__shell--dark .eyebrow::before {
  background: #77c3c2;
}

.hero-panel__shell--dark .button-secondary {
  color: rgba(255, 252, 246, 0.94);
  background: transparent;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.34);
}

.hero-panel__art {
  position: relative;
  min-height: 22rem;
  padding: 1.05rem 1.2rem 1rem;
  border-left: 0;
  overflow: hidden;
}

.hero-panel__shell--dark .hero-panel__art {
  border-left-color: rgba(255, 255, 255, 0.08);
}

.hero-panel__art::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 2;
  width: min(4.8rem, 11%);
  background:
    linear-gradient(90deg, rgba(16, 34, 39, 0.92) 0%, rgba(16, 34, 39, 0.42) 45%, rgba(16, 34, 39, 0) 100%);
  pointer-events: none;
}

.hero-panel__art svg {
  width: 100%;
  height: 100%;
  display: block;
}

.hero-panel__art img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.hero-panel__art--asset {
  padding: 0;
  display: flex;
  align-items: stretch;
}

.hero-panel__art--asset-light {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.54), rgba(246, 241, 231, 0.72)),
    #f7f3ec;
}

.hero-panel__art--contain img {
  object-fit: contain;
}

.section-rail {
  padding: 1.25rem 0 0;
}

.section-rail__shell {
  border-top: 1px solid rgba(17, 20, 23, 0.1);
  padding-top: 1.15rem;
}

.section-head {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 1rem;
  align-items: start;
}

.section-head--narrow {
  grid-template-columns: 360px 1fr;
}

.section-head--intro {
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
}

.section-head__meta {
  display: grid;
  gap: 0.7rem;
}

.section-index {
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(17, 20, 23, 0.54);
}

.section-head h2,
.section-title-large {
  margin: 0;
  font-family: "Newsreader", serif;
  font-size: 2.35rem;
  line-height: 1.02;
  letter-spacing: 0;
  font-weight: 500;
}

.section-head p,
.section-copy,
.surface p,
.metric-chip p,
.tile p,
.list-item p {
  margin: 0;
  color: rgba(17, 20, 23, 0.76);
  line-height: 1.7;
}

.surface {
  position: relative;
  border: 1px solid rgba(17, 20, 23, 0.11);
  border-radius: 6px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.84), rgba(250, 246, 238, 0.62)),
    rgba(255, 255, 255, 0.72);
  padding: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-soft), inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.surface::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(17, 20, 23, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 20, 23, 0.028) 1px, transparent 1px);
  background-size: 120px 120px;
  opacity: 0.2;
  pointer-events: none;
}

.surface::after,
.panel-rule::before,
.asset-plate::before,
.orientation-panel::before,
.governance-operating-band::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 1rem;
  width: 5.5rem;
  height: 1px;
  background: linear-gradient(90deg, rgba(31, 107, 106, 0.34), rgba(154, 115, 78, 0.18), transparent);
  pointer-events: none;
}

.surface > * {
  position: relative;
  z-index: 1;
}

.surface--copy-block {
  padding: 1.15rem 1.1rem 1.05rem;
}

.surface__title {
  margin: 0 0 0.6rem;
  font-size: 0.83rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(17, 20, 23, 0.55);
}

.surface__headline {
  margin: 0 0 0.7rem;
  font-family: "Newsreader", serif;
  font-size: 1.38rem;
  line-height: 1.14;
  letter-spacing: 0;
  font-weight: 500;
}

.surface-grid-2,
.surface-grid-3,
.surface-grid-4 {
  display: grid;
  gap: 0.9rem;
}

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

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

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

.process-strip {
  display: grid;
  gap: 0.95rem;
}

.process-strip__label {
  text-align: center;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(17, 20, 23, 0.58);
}

.process-strip__steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  align-items: start;
}

.process-step {
  display: grid;
  gap: 0.35rem;
  align-content: start;
}

.process-step__num {
  font-family: "Newsreader", serif;
  font-size: 1.7rem;
  line-height: 1;
}

.process-step__title {
  font-weight: 700;
}

.list-stack {
  display: grid;
  gap: 0.7rem;
}

.list-stack--framed {
  padding-top: 0.35rem;
  border-top: 1px solid rgba(17, 20, 23, 0.08);
}

.list-item {
  display: grid;
  grid-template-columns: 2.05rem 1fr;
  gap: 0.72rem;
  align-items: start;
  padding: 0.62rem 0.68rem;
  border: 1px solid rgba(17, 20, 23, 0.075);
  border-radius: 6px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.64), rgba(250, 246, 238, 0.38)),
    rgba(255, 255, 255, 0.44);
}

.list-item__icon {
  width: 1.72rem;
  height: 1.72rem;
  border: 1px solid rgba(17, 20, 23, 0.14);
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--mineral);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  background:
    linear-gradient(135deg, rgba(31, 107, 106, 0.12), rgba(154, 115, 78, 0.06)),
    rgba(255, 255, 255, 0.82);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.list-item strong,
.metric-chip strong,
.tile strong,
.checklist li strong {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 0.22rem;
}

.diagram-flow {
  display: grid;
  gap: 0.8rem;
}

.diagram-flow__row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  align-items: center;
}

.diagram-box {
  border: 1px solid rgba(17, 20, 23, 0.12);
  border-radius: 4px;
  padding: 0.82rem 0.88rem;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.78), rgba(250, 246, 238, 0.5)),
    rgba(255, 255, 255, 0.74);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.66);
}

.diagram-box strong {
  display: block;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(17, 20, 23, 0.56);
  margin-bottom: 0.36rem;
}

.diagram-box span {
  display: block;
  line-height: 1.5;
}

.diagram-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: rgba(17, 20, 23, 0.48);
}

.trace-checklist,
.checklist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.trace-checklist li,
.checklist li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.7rem;
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(17, 20, 23, 0.08);
  line-height: 1.5;
}

.trace-checklist li:last-child,
.checklist li:last-child {
  border-bottom: 0;
}

.trace-checklist li::after,
.checklist li::after {
  content: "✓";
  color: var(--mineral);
  font-weight: 700;
}

.metric-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
}

.metric-chip {
  padding: 0.88rem 0.95rem;
  border-right: 1px solid rgba(17, 20, 23, 0.08);
}

.metric-chip:last-child {
  border-right: 0;
}

.metric-chip__label {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(17, 20, 23, 0.52);
  margin-bottom: 0.3rem;
}

.governance-operating-band {
  position: relative;
  border: 1px solid rgba(17, 20, 23, 0.1);
  border-radius: 6px;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.76), rgba(250, 246, 238, 0.44)),
    radial-gradient(circle at 52% 36%, rgba(120, 174, 173, 0.12), transparent 34%);
  overflow: hidden;
  box-shadow: var(--shadow-soft), inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.governance-operating-band__intro {
  display: grid;
  grid-template-columns: minmax(0, 0.58fr) minmax(0, 0.42fr);
  gap: 1.4rem;
  padding: 1.1rem 1.15rem 1rem;
  border-bottom: 1px solid rgba(17, 20, 23, 0.08);
  align-items: end;
}

.governance-operating-band__intro .surface__title {
  grid-column: 1 / -1;
}

.governance-operating-band__intro h2 {
  margin: 0;
  font-family: "Newsreader", serif;
  font-size: 2.1rem;
  line-height: 1.02;
  font-weight: 500;
}

.governance-operating-band__intro p:last-child {
  margin: 0;
  line-height: 1.65;
  color: rgba(17, 20, 23, 0.72);
}

.governance-operating-band__flow {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.18fr) minmax(0, 0.9fr);
  gap: 0;
  padding: 1.15rem;
  position: relative;
}

.governance-operating-band__flow::before {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  top: 50%;
  border-top: 1px solid rgba(31, 107, 106, 0.28);
}

.governance-node {
  position: relative;
  z-index: 1;
  min-height: 9.4rem;
  padding: 0.9rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid rgba(17, 20, 23, 0.1);
  background: rgba(255, 255, 255, 0.82);
}

.governance-node + .governance-node {
  border-left: 0;
}

.governance-node--core {
  background:
    radial-gradient(circle at 90% 18%, rgba(246, 231, 189, 0.12), transparent 28%),
    linear-gradient(135deg, #185763 0%, #102a31 100%);
  border-color: rgba(18, 49, 57, 0.9);
  color: rgba(255, 252, 246, 0.94);
  box-shadow: 0 12px 28px rgba(17, 20, 23, 0.1);
}

.governance-node span {
  display: inline-flex;
  width: 2rem;
  height: 2rem;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.72rem;
  border: 1px solid rgba(31, 107, 106, 0.2);
  border-radius: 50%;
  color: var(--mineral);
  background: rgba(255, 255, 255, 0.7);
  font-family: "Newsreader", serif;
}

.governance-node--core span {
  color: #f6e7bd;
  border-color: rgba(246, 231, 189, 0.32);
  background: rgba(255, 255, 255, 0.08);
}

.governance-node strong {
  font-size: 1rem;
  margin-bottom: 0.45rem;
}

.governance-node p {
  margin: 0;
  line-height: 1.52;
  color: rgba(17, 20, 23, 0.66);
}

.governance-node--core p {
  color: rgba(255, 252, 246, 0.74);
}

.governance-operating-band__detail {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(17, 20, 23, 0.08);
}

.governance-operating-band__detail article {
  padding: 0.95rem 1rem;
  border-right: 1px solid rgba(17, 20, 23, 0.08);
}

.governance-operating-band__detail article:last-child {
  border-right: 0;
}

.governance-operating-band__detail strong {
  display: block;
  margin-bottom: 0.32rem;
}

.governance-operating-band__detail p {
  margin: 0;
  color: rgba(17, 20, 23, 0.66);
  line-height: 1.55;
  font-size: 0.92rem;
}

.metric-band--quiet {
  margin-top: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid rgba(17, 20, 23, 0.08);
  background: rgba(255, 255, 255, 0.42);
}

.pillars {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.7rem;
}

.tile {
  border: 1px solid rgba(17, 20, 23, 0.1);
  border-radius: 6px;
  padding: 0.88rem 0.82rem;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.78), rgba(250, 246, 238, 0.52)),
    rgba(255, 255, 255, 0.64);
  min-height: 100%;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.64);
}

.tile__icon {
  width: 2rem;
  height: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(17, 20, 23, 0.12);
  border-radius: 50%;
  margin-bottom: 0.6rem;
  color: var(--mineral);
  background:
    radial-gradient(circle at 50% 48%, rgba(31, 107, 106, 0.08), transparent 58%),
    rgba(255, 255, 255, 0.78);
  box-shadow:
    inset 0 0 0 4px rgba(31, 107, 106, 0.035),
    0 1px 0 rgba(255, 255, 255, 0.8);
}

.tile__icon svg {
  width: 1rem;
  height: 1rem;
  stroke: var(--mineral);
  stroke-width: 1.6;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.band-cta {
  margin-top: 1.35rem;
  border-radius: 6px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(14, 39, 44, 0.98), rgba(18, 57, 64, 0.96));
  color: rgba(255, 252, 246, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.band-cta__grid {
  display: grid;
  grid-template-columns: 1.25fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1.1rem 1.3rem;
}

.band-cta__copy {
  display: grid;
  gap: 0.35rem;
}

.band-cta__copy h3 {
  margin: 0;
  font-family: "Newsreader", serif;
  font-size: 1.55rem;
  line-height: 1.06;
  font-weight: 500;
}

.band-cta__copy p {
  margin: 0;
  color: rgba(255, 252, 246, 0.76);
  line-height: 1.6;
}

.band-cta .button-secondary {
  color: rgba(255, 252, 246, 0.94);
  background: transparent;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.32);
}

.kicker-line {
  width: 1.5rem;
  height: 2px;
  background: linear-gradient(90deg, var(--copper), rgba(139, 107, 74, 0.2));
  margin: 0.3rem 0 0.8rem;
}

.compare-panels {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.compare-panel {
  border: 1px solid rgba(17, 20, 23, 0.1);
  border-radius: 6px;
  padding: 0.9rem;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.78), rgba(250, 246, 238, 0.52)),
    rgba(255, 255, 255, 0.64);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.68);
}

.compare-panel__title {
  margin: 0 0 0.8rem;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(17, 20, 23, 0.56);
}

.simple-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.simple-table th,
.simple-table td {
  padding: 0.6rem 0.7rem;
  border-bottom: 1px solid rgba(17, 20, 23, 0.08);
  text-align: left;
}

.simple-table th {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(17, 20, 23, 0.54);
}

.timeline-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.75rem;
  align-items: stretch;
}

.timeline-step {
  border: 1px solid rgba(17, 20, 23, 0.1);
  border-radius: 6px;
  padding: 0.8rem 0.82rem;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.78), rgba(250, 246, 238, 0.52)),
    rgba(255, 255, 255, 0.64);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.68);
}

.timeline-step__num {
  width: 1.9rem;
  height: 1.9rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(17, 20, 23, 0.12);
  color: var(--mineral);
  margin-bottom: 0.55rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: inset 0 0 0 4px rgba(31, 107, 106, 0.035);
}

.timeline-step strong {
  display: block;
  margin-bottom: 0.28rem;
}

.brand-lockup {
  display: inline-grid;
  gap: 0.08rem;
}

.brand-wordmark {
  font-family: "Newsreader", serif;
  font-size: 1.85rem;
  line-height: 0.92;
  letter-spacing: 0;
  font-weight: 500;
}

.brand-lockup small {
  font-size: 0.64rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(17, 20, 23, 0.46);
}

.nav-logo-with-sub .brand {
  align-items: start;
}

.contact-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.wave-shell {
  min-height: 10rem;
}

.diagram-annotation {
  font-size: 0.84rem;
  color: rgba(17, 20, 23, 0.58);
  line-height: 1.6;
}

.rule-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid rgba(17, 20, 23, 0.1);
  border-radius: 6px;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.8), rgba(250, 246, 238, 0.54)),
    rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow-soft), inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

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

.rule-item {
  padding: 1rem 1.05rem;
  border-right: 1px solid rgba(17, 20, 23, 0.08);
  min-height: 100%;
}

.rule-item:last-child {
  border-right: 0;
}

.rule-item__kicker {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(17, 20, 23, 0.46);
}

.rule-item strong {
  display: block;
  margin-bottom: 0.32rem;
  font-size: 0.96rem;
  line-height: 1.3;
}

.rule-item p {
  margin: 0;
  line-height: 1.58;
  color: rgba(17, 20, 23, 0.72);
}

.panel-rule {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid rgba(17, 20, 23, 0.11);
  border-radius: 6px;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.8), rgba(250, 246, 238, 0.54)),
    rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-soft), inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.panel-rule__section {
  padding: 1rem 1.1rem;
}

.panel-rule__section + .panel-rule__section {
  border-left: 1px solid rgba(17, 20, 23, 0.08);
}

.panel-rule--governance {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
}

.panel-rule--agentic-path {
  grid-template-columns: minmax(0, 0.34fr) minmax(0, 0.66fr);
  background:
    radial-gradient(circle at 84% 18%, rgba(31, 107, 106, 0.08), transparent 28%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.84), rgba(248, 243, 234, 0.58)),
    rgba(255, 255, 255, 0.72);
}

.panel-rule--deployment-path {
  grid-template-columns: minmax(0, 0.34fr) minmax(0, 0.66fr);
}

.panel-rule__section--asset {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.72rem;
  background:
    radial-gradient(circle at 50% 50%, rgba(31, 107, 106, 0.06), transparent 42%),
    rgba(255, 255, 255, 0.24);
}

.panel-rule--intro {
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  background:
    radial-gradient(circle at 8% 12%, rgba(31, 107, 106, 0.08), transparent 24%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.86), rgba(248, 243, 234, 0.6)),
    rgba(255, 255, 255, 0.72);
}

.panel-rule--intro .panel-rule__section {
  padding: 1.3rem 1.35rem;
}

.panel-rule--intro .surface__headline {
  max-width: 19ch;
  font-size: clamp(1.55rem, 2.1vw, 2rem);
  line-height: 1.04;
}

.intro-claims {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
}

.intro-claim {
  position: relative;
  min-height: 100%;
  border: 1px solid rgba(17, 20, 23, 0.09);
  border-radius: 6px;
  padding: 0.85rem 0.82rem 0.88rem;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.82), rgba(250, 246, 238, 0.54)),
    rgba(255, 255, 255, 0.66);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.intro-claim::before {
  content: "";
  display: block;
  width: 1.45rem;
  height: 1.45rem;
  margin-bottom: 0.55rem;
  border: 1px solid rgba(31, 107, 106, 0.2);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(31, 107, 106, 0.24) 0 18%, transparent 19%),
    rgba(255, 255, 255, 0.72);
}

.intro-claim strong {
  display: block;
  margin-bottom: 0.28rem;
  font-size: 0.9rem;
  line-height: 1.3;
}

.intro-claim p {
  margin: 0;
  font-size: 0.89rem;
  line-height: 1.58;
  color: rgba(17, 20, 23, 0.7);
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
}

.mini-tile {
  border: 1px solid rgba(17, 20, 23, 0.08);
  border-radius: 6px;
  padding: 0.85rem 0.8rem;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.76), rgba(250, 246, 238, 0.5)),
    rgba(255, 255, 255, 0.64);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.68);
}

.mini-tile strong {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 0.24rem;
}

.mini-tile p {
  margin: 0;
  color: rgba(17, 20, 23, 0.68);
  line-height: 1.52;
}

.govern-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
}

.govern-grid--compact {
  grid-template-columns: 1fr;
}

.govern-grid--value {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}

.govern-grid--value .govern-chip:last-child {
  grid-column: 1 / -1;
}

.govern-grid--value-even .govern-chip:last-child {
  grid-column: auto;
}

.govern-chip {
  display: grid;
  grid-template-columns: 2rem 1fr;
  gap: 0.65rem;
  align-items: start;
  border: 1px solid rgba(17, 20, 23, 0.08);
  border-radius: 6px;
  padding: 0.8rem 0.82rem;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.76), rgba(250, 246, 238, 0.48)),
    rgba(255, 255, 255, 0.58);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.68);
}

.govern-chip__icon {
  width: 1.7rem;
  height: 1.7rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(17, 20, 23, 0.11);
  border-radius: 50%;
  color: var(--mineral);
  font-size: 0.84rem;
  background:
    radial-gradient(circle at 50% 48%, rgba(31, 107, 106, 0.08), transparent 58%),
    rgba(255, 255, 255, 0.8);
  box-shadow: inset 0 0 0 4px rgba(31, 107, 106, 0.035);
}

.govern-chip strong {
  display: block;
  margin-bottom: 0.2rem;
  font-size: 0.88rem;
}

.govern-chip p {
  margin: 0;
  color: rgba(17, 20, 23, 0.68);
  line-height: 1.48;
}

.micro-rail {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
  margin-top: 0.95rem;
  padding-top: 0.82rem;
  border-top: 1px solid rgba(17, 20, 23, 0.08);
}

.micro-step {
  display: grid;
  grid-template-columns: 1.8rem 1fr;
  gap: 0.55rem;
  align-items: start;
  min-height: 100%;
}

.micro-step__num {
  width: 1.8rem;
  height: 1.8rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(17, 20, 23, 0.12);
  color: var(--mineral);
  font-family: "Newsreader", serif;
  font-size: 0.95rem;
  background: rgba(255, 255, 255, 0.75);
  box-shadow: inset 0 0 0 4px rgba(31, 107, 106, 0.035);
}

.micro-step strong {
  display: block;
  margin-bottom: 0.14rem;
  font-size: 0.84rem;
}

.micro-step p {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.45;
  color: rgba(17, 20, 23, 0.66);
}

.governance-home-stack {
  display: grid;
  gap: 0.8rem;
}

.platform-vision {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(17, 20, 23, 0.11);
  border-radius: 6px;
  background:
    radial-gradient(circle at 76% 26%, rgba(31, 107, 106, 0.14), transparent 28%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.84), rgba(250, 246, 238, 0.54)),
    rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-soft), inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.platform-vision::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 1rem;
  width: 6rem;
  height: 1px;
  background: linear-gradient(90deg, rgba(31, 107, 106, 0.34), rgba(154, 115, 78, 0.18), transparent);
}

.platform-vision__copy {
  padding: 1.35rem 1.45rem;
}

.platform-vision__copy h2 {
  max-width: 24ch;
  margin: 0 0 0.85rem;
  font-family: "Newsreader", serif;
  font-size: clamp(1.75rem, 2.18vw, 2.2rem);
  line-height: 1.06;
  font-weight: 500;
}

.platform-vision__copy p {
  margin: 0;
  color: rgba(17, 20, 23, 0.74);
  line-height: 1.68;
}

.platform-vision__copy p + p {
  margin-top: 0.85rem;
}

.platform-vision__stack {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-left: 1px solid rgba(17, 20, 23, 0.08);
}

.platform-vision__stack article {
  position: relative;
  min-height: 100%;
  padding: 1.3rem 1.05rem 1.2rem;
  border-right: 1px solid rgba(17, 20, 23, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(250, 246, 238, 0.42)),
    rgba(255, 255, 255, 0.4);
}

.platform-vision__stack article:last-child {
  border-right: 0;
}

.platform-vision__stack span {
  display: inline-flex;
  width: 2rem;
  height: 2rem;
  align-items: center;
  justify-content: center;
  margin-bottom: 4.2rem;
  border: 1px solid rgba(31, 107, 106, 0.18);
  border-radius: 50%;
  color: var(--mineral);
  font-family: "Newsreader", serif;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: inset 0 0 0 4px rgba(31, 107, 106, 0.035);
}

.platform-vision__stack article::after {
  content: "";
  position: absolute;
  left: 2.1rem;
  right: 1.2rem;
  top: 5.2rem;
  height: 1px;
  background: linear-gradient(90deg, rgba(31, 107, 106, 0.28), rgba(154, 115, 78, 0.22), transparent);
}

.platform-vision__stack strong {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 1rem;
  line-height: 1.25;
}

.platform-vision__stack p {
  margin: 0;
  color: rgba(17, 20, 23, 0.68);
  line-height: 1.55;
  font-size: 0.92rem;
}

.capability-map {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  padding: 1px;
  border: 1px solid rgba(17, 20, 23, 0.1);
  border-radius: 6px;
  overflow: hidden;
  counter-reset: capability;
  background:
    linear-gradient(135deg, rgba(31, 107, 106, 0.22), rgba(154, 115, 78, 0.12), rgba(17, 20, 23, 0.08)),
    rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-soft), inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.capability-map article {
  position: relative;
  min-height: 7.7rem;
  padding: 1rem 1rem 0.95rem 3.75rem;
  counter-increment: capability;
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.88), rgba(249, 244, 235, 0.64)),
    rgba(255, 255, 255, 0.7);
}

.capability-map article::before {
  content: counter(capability, decimal-leading-zero);
  position: absolute;
  left: 0.95rem;
  top: 1.05rem;
  width: 2rem;
  height: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(31, 107, 106, 0.2);
  border-radius: 50%;
  color: rgba(31, 107, 106, 0.92);
  font-family: "Newsreader", serif;
  font-size: 0.94rem;
  line-height: 1;
  background:
    radial-gradient(circle at 50% 50%, rgba(31, 107, 106, 0.12), transparent 62%),
    rgba(255, 255, 255, 0.72);
  box-shadow: inset 0 0 0 4px rgba(31, 107, 106, 0.035);
}

.capability-map article:first-child,
.capability-map article:last-child {
  grid-column: 1 / -1;
  min-height: 0;
  padding: 1.12rem 1.25rem 1.05rem 4.35rem;
}

.capability-map article:first-child {
  background:
    radial-gradient(circle at 88% 18%, rgba(119, 195, 194, 0.18), transparent 30%),
    linear-gradient(135deg, #10282e, #173f46);
  color: rgba(255, 252, 246, 0.95);
}

.capability-map article:last-child {
  background:
    linear-gradient(135deg, rgba(31, 107, 106, 0.13), rgba(255, 255, 255, 0.78)),
    rgba(249, 244, 235, 0.72);
}

.capability-map article:first-child::before {
  border-color: rgba(255, 255, 255, 0.28);
  color: rgba(255, 252, 246, 0.96);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 0 4px rgba(255, 255, 255, 0.04);
}

.capability-map article:first-child::after,
.capability-map article:last-child::after {
  position: absolute;
  right: 1rem;
  top: 1rem;
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
}

.capability-map article:first-child::after {
  content: "Foundation";
  color: rgba(239, 228, 199, 0.7);
}

.capability-map article:last-child::after {
  content: "Outcome";
  color: rgba(31, 107, 106, 0.68);
}

.capability-map strong {
  display: block;
  margin-bottom: 0.32rem;
  padding-right: 4.6rem;
  font-size: 0.96rem;
  line-height: 1.3;
}

.capability-map p {
  margin: 0;
  color: rgba(17, 20, 23, 0.68);
  line-height: 1.56;
  font-size: 0.92rem;
}

.capability-map article:first-child p {
  color: rgba(255, 252, 246, 0.76);
}

.capability-map article:nth-child(n + 2):nth-child(-n + 4) {
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.9), rgba(247, 241, 231, 0.7)),
    rgba(255, 255, 255, 0.72);
}

.capability-map article:nth-child(n + 5):nth-child(-n + 8) {
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.82), rgba(240, 247, 245, 0.56)),
    rgba(255, 255, 255, 0.7);
}

.surface-grid-2--editorial {
  gap: 1rem;
}

.surface--editorial {
  position: relative;
}

.surface--editorial::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.1rem;
  height: 1px;
  background: rgba(17, 20, 23, 0.08);
}

.fact-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
  margin-top: 1rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(17, 20, 23, 0.08);
}

.fact-pill {
  padding: 0.68rem 0.7rem;
  border: 1px solid rgba(17, 20, 23, 0.08);
  border-radius: 6px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.72), rgba(250, 246, 238, 0.48)),
    rgba(255, 255, 255, 0.5);
}

.fact-pill span {
  display: block;
  margin-bottom: 0.18rem;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(17, 20, 23, 0.48);
}

.fact-pill strong {
  display: block;
  font-size: 0.84rem;
  line-height: 1.3;
}

.rule-grid--editorial {
  position: relative;
}

.rule-grid--editorial::before {
  content: "";
  position: absolute;
  left: 1rem;
  right: 1rem;
  top: 0.95rem;
  height: 1px;
  background: linear-gradient(90deg, rgba(17, 20, 23, 0.06), rgba(31, 107, 106, 0.12), rgba(17, 20, 23, 0.06));
}

.rule-grid--editorial .rule-item {
  padding-top: 1.45rem;
}

.surface-grid-3--pillars {
  gap: 0.7rem;
}

.mini-tile--pillar {
  position: relative;
  padding-top: 0.72rem;
}

.mini-tile__glyph {
  width: 1.55rem;
  height: 1.55rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.42rem;
  border: 1px solid rgba(17, 20, 23, 0.11);
  border-radius: 50%;
  color: var(--mineral);
  font-size: 0.78rem;
  background: rgba(255, 255, 255, 0.72);
}

.pillars--connected {
  position: relative;
  align-items: start;
}

.pillars--connected::before {
  content: "";
  position: absolute;
  left: 2.2rem;
  right: 2.2rem;
  top: 1.35rem;
  height: 1px;
  background: linear-gradient(90deg, rgba(17, 20, 23, 0.04), rgba(31, 107, 106, 0.16), rgba(17, 20, 23, 0.04));
}

.tile--connected {
  position: relative;
  padding-top: 1rem;
}

.tile--connected .tile__icon {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.9);
}

.phase-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
}

.phase-step {
  display: grid;
  grid-template-columns: 1.9rem 1fr;
  gap: 0.65rem;
  align-items: start;
}

.phase-step__num {
  width: 1.9rem;
  height: 1.9rem;
  border: 1px solid rgba(17, 20, 23, 0.14);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Newsreader", serif;
  font-size: 1.05rem;
  color: rgba(17, 20, 23, 0.8);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: inset 0 0 0 4px rgba(31, 107, 106, 0.035);
}

.phase-step strong {
  display: block;
  margin-bottom: 0.2rem;
  font-size: 0.92rem;
}

.phase-step p {
  margin: 0;
  color: rgba(17, 20, 23, 0.7);
  line-height: 1.48;
}

.asset-plate {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(17, 20, 23, 0.1);
  border-radius: 6px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.84), rgba(250, 246, 238, 0.58)),
    rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow-soft), inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.asset-plate img {
  display: block;
  width: 100%;
  height: auto;
}

.asset-plate--nested {
  border-radius: 4px;
  box-shadow: none;
}

.asset-plate--diagram {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.88), rgba(247, 241, 231, 0.7)),
    rgba(255, 255, 255, 0.76);
  box-shadow: none;
}

.surface .asset-plate--diagram,
.panel-rule__section .asset-plate--diagram {
  margin-top: 0.15rem;
}

.asset-plate--diagram img {
  display: block;
  width: 100%;
}

.panel-rule__section:has(> .asset-plate--diagram) {
  display: flex;
  align-items: center;
}

.panel-rule__section > .asset-plate--diagram {
  width: 100%;
}

.orientation-panel {
  position: relative;
  border: 1px solid rgba(17, 20, 23, 0.1);
  border-radius: 6px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.8), rgba(250, 246, 238, 0.52)),
    rgba(255, 255, 255, 0.62);
  overflow: hidden;
  box-shadow: var(--shadow-soft), inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

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

.orientation-card {
  padding: 1rem 1.05rem;
  min-height: 100%;
  border-right: 1px solid rgba(17, 20, 23, 0.08);
  border-bottom: 1px solid rgba(17, 20, 23, 0.08);
  background: rgba(255, 255, 255, 0.2);
}

.orientation-card:nth-child(2n) {
  border-right: 0;
}

.orientation-card:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.orientation-card__kicker {
  display: block;
  margin-bottom: 0.42rem;
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(17, 20, 23, 0.48);
}

.orientation-card strong {
  display: block;
  margin-bottom: 0.26rem;
  font-size: 0.92rem;
  line-height: 1.35;
}

.orientation-card p {
  margin: 0;
  color: rgba(17, 20, 23, 0.7);
  line-height: 1.56;
}

.orientation-note {
  display: grid;
  gap: 0.22rem;
  padding: 0.9rem 1.05rem 0.95rem;
  border-top: 1px solid rgba(17, 20, 23, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.46), rgba(255, 255, 255, 0.24));
}

.orientation-note strong {
  font-size: 0.95rem;
}

.orientation-note span {
  color: rgba(17, 20, 23, 0.68);
  line-height: 1.55;
}

.home-manifesto {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  gap: 1.1rem;
  padding: 1.2rem;
  border: 1px solid rgba(17, 20, 23, 0.12);
  border-radius: 6px;
  overflow: hidden;
  color: rgba(255, 252, 246, 0.92);
  background:
    radial-gradient(circle at 82% 24%, rgba(120, 183, 177, 0.22), transparent 30%),
    linear-gradient(135deg, #11272d 0%, #0d1e24 58%, #173f46 100%);
  box-shadow: var(--shadow-soft);
}

.home-manifesto::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 92px 92px;
  opacity: 0.22;
  pointer-events: none;
}

.home-manifesto > *,
.home-horizon > * {
  position: relative;
  z-index: 1;
}

.home-manifesto .surface__title {
  color: rgba(246, 231, 189, 0.82);
}

.home-manifesto h2,
.home-horizon h2 {
  margin: 0;
  font-family: "Newsreader", serif;
  font-weight: 500;
  letter-spacing: 0;
}

.home-manifesto h2 {
  max-width: 13ch;
  font-size: clamp(2rem, 3vw, 3.1rem);
  line-height: 0.98;
}

.home-manifesto p {
  margin: 0.82rem 0 0;
  max-width: 42rem;
  line-height: 1.68;
  color: rgba(255, 252, 246, 0.76);
}

.home-manifesto__steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.68rem;
  align-items: stretch;
}

.home-manifesto__steps article {
  position: relative;
  min-height: 100%;
  padding: 0.95rem 0.95rem 1rem;
  border: 1px solid rgba(246, 231, 189, 0.16);
  border-radius: 6px;
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
    rgba(255, 255, 255, 0.035);
}

.home-manifesto__steps span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.9rem;
  height: 1.9rem;
  margin-bottom: 0.85rem;
  border: 1px solid rgba(246, 231, 189, 0.28);
  border-radius: 4px;
  color: #f6e7bd;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.home-manifesto__steps strong {
  display: block;
  margin-bottom: 0.48rem;
  color: rgba(255, 252, 246, 0.96);
  font-size: 0.96rem;
  line-height: 1.24;
}

.home-manifesto__steps p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.58;
}

.home-horizon {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 1rem;
  padding: 1.1rem;
  border: 1px solid rgba(17, 20, 23, 0.11);
  border-radius: 6px;
  background:
    radial-gradient(circle at 8% 18%, rgba(31, 107, 106, 0.12), transparent 28%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(250, 246, 238, 0.54)),
    rgba(255, 255, 255, 0.72);
  overflow: hidden;
}

.home-horizon::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(17, 20, 23, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 20, 23, 0.028) 1px, transparent 1px);
  background-size: 116px 116px;
  opacity: 0.26;
  pointer-events: none;
}

.home-horizon .surface__title {
  color: rgba(17, 20, 23, 0.55);
}

.home-horizon h2 {
  max-width: 16ch;
  font-size: clamp(1.75rem, 2.45vw, 2.45rem);
  line-height: 1.02;
}

.home-horizon__statement p {
  margin: 0.88rem 0 0;
  color: rgba(17, 20, 23, 0.74);
  line-height: 1.68;
}

.home-horizon__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.6rem;
}

.home-horizon__grid article {
  min-height: 100%;
  padding: 0.82rem 0.78rem;
  border: 1px solid rgba(17, 20, 23, 0.08);
  border-radius: 6px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.76), rgba(250, 246, 238, 0.46)),
    rgba(255, 255, 255, 0.56);
}

.home-horizon__grid strong {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.88rem;
  line-height: 1.28;
}

.home-horizon__grid p {
  margin: 0;
  color: rgba(17, 20, 23, 0.68);
  font-size: 0.88rem;
  line-height: 1.55;
}

.zoom-panel {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 0.9rem;
  align-items: start;
}

.zoom-card {
  border: 1px solid rgba(17, 20, 23, 0.1);
  border-radius: 6px;
  overflow: hidden;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.78), rgba(250, 246, 238, 0.52)),
    rgba(255, 255, 255, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.68);
}

.zoom-card--dark {
  background: linear-gradient(135deg, #123139 0%, #0f2228 100%);
  color: rgba(246, 241, 231, 0.94);
  border-color: rgba(255, 255, 255, 0.08);
}

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

.schema-col {
  padding: 0.8rem 0.75rem;
  border-right: 1px solid rgba(17, 20, 23, 0.08);
}

.schema-col:last-child {
  border-right: 0;
}

.schema-col__head {
  display: block;
  margin-bottom: 0.16rem;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(17, 20, 23, 0.5);
}

.schema-col__sub {
  display: block;
  margin-bottom: 0.55rem;
  font-size: 0.72rem;
  color: rgba(17, 20, 23, 0.52);
}

.schema-col ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.32rem;
}

.schema-col li {
  font-size: 0.86rem;
  color: rgba(17, 20, 23, 0.78);
  line-height: 1.45;
}

.page--home .hero-panel__grid,
.page--platform .hero-panel__grid,
.page--governance .hero-panel__grid,
.page--core .hero-panel__grid,
.page--internal .hero-panel__grid,
.page--contact .hero-panel__grid {
  grid-template-columns: minmax(0, 0.95fr) minmax(520px, 1.05fr);
}

.page--home .hero-panel__copy .display,
.page--platform .hero-panel__copy .display,
.page--core .hero-panel__copy .display,
.page--internal .hero-panel__copy .display,
.page--contact .hero-panel__copy .display {
  max-width: 11.25ch;
  font-size: 4rem;
  line-height: 0.9;
  letter-spacing: 0;
  font-weight: 400;
  font-family: "Libre Caslon Display", "Newsreader", serif;
}

.page--home .hero-panel__copy .display-nowrap {
  white-space: nowrap;
}

.page--home .hero-panel__art,
.page--platform .hero-panel__art,
.page--governance .hero-panel__art,
.page--core .hero-panel__art,
.page--internal .hero-panel__art,
.page--contact .hero-panel__art {
  min-height: 22.75rem;
}

.page--home .panel-rule__section {
  padding: 0.95rem 1rem;
}

.page--home .hero-panel__copy,
.page--platform .hero-panel__copy,
.page--governance .hero-panel__copy,
.page--core .hero-panel__copy,
.page--internal .hero-panel__copy,
.page--contact .hero-panel__copy {
  padding: 1.85rem 1.75rem 1.7rem;
  --hero-copy-min-height: 22.75rem;
}

.page--home .hero-panel__copy .lead,
.page--platform .hero-panel__copy .lead,
.page--governance .hero-panel__copy .lead,
.page--core .hero-panel__copy .lead,
.page--internal .hero-panel__copy .lead,
.page--contact .hero-panel__copy .lead {
  max-width: 30rem;
  font-size: 1rem;
  line-height: 1.62;
}

.page--home .hero__actions {
  margin-top: 1.3rem;
}

.page--home .button,
.page--home .button-secondary {
  padding: 0.78rem 1.08rem;
  font-size: 0.84rem;
}

.page--home .section-rail {
  padding: 1rem 0 0;
}

.page--home .section-rail__shell {
  padding-top: 0.9rem;
}

.page--home .section-head {
  gap: 0.85rem;
}

.page--home .section-head--narrow {
  grid-template-columns: 308px 1fr;
}

.page--home .section-head--platform-scope {
  grid-template-columns: minmax(380px, 0.86fr) minmax(0, 1fr);
  align-items: center;
}

.page--home .section-head--platform-scope .pillars {
  width: min(100%, 720px);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  justify-self: center;
  align-self: center;
}

.page--home .section-head--intro {
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
}

.page--home .section-head__meta {
  gap: 0.55rem;
}

.page--home .section-head h2,
.page--home .section-title-large {
  font-size: 2.12rem;
  line-height: 1.02;
}

.page--home .section-head p,
.page--home .section-copy,
.page--home .surface p,
.page--home .metric-chip p,
.page--home .tile p,
.page--home .list-item p,
.page--home .mini-tile p,
.page--home .rule-item p {
  font-size: 0.94rem;
  line-height: 1.62;
}

.page--home .surface__title,
.page--home .rule-item__kicker,
.page--home .metric-chip__label,
.page--home .section-index {
  font-size: 0.74rem;
  letter-spacing: 0.1em;
}

.page--home .surface__headline {
  font-size: 1.2rem;
  line-height: 1.15;
  margin-bottom: 0.55rem;
}

.page--home .surface,
.page--home .tile,
.page--home .mini-tile,
.page--home .rule-grid,
.page--home .panel-rule,
.page--home .asset-plate {
  box-shadow: none;
}

.page--home .surface,
.page--home .tile,
.page--home .mini-tile,
.page--home .rule-grid,
.page--home .panel-rule {
  background: rgba(255, 255, 255, 0.5);
}

.page--home .surface::before {
  opacity: 0.08;
}

.page--home .surface--copy-block {
  background: transparent;
  border-radius: 0;
  border-left: 0;
  border-right: 0;
  box-shadow: none;
  padding: 0.15rem 0.1rem 0.05rem;
}

.page--home .surface--copy-block::before {
  display: none;
}

.page--home .mini-grid {
  gap: 0.5rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.page--home .mini-tile {
  padding: 0.72rem 0.72rem;
}

.page--home .govern-grid {
  gap: 0.48rem;
}

.page--home .govern-grid--compact {
  grid-template-columns: 1fr;
}

.page--home .govern-chip {
  padding: 0.72rem 0.74rem;
}

.page--home .micro-rail {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
  margin-top: clamp(1.8rem, 4vw, 2.8rem);
  padding-top: 1.15rem;
}

.page--home .micro-step {
  padding: 0.72rem 0.76rem;
  border: 1px solid rgba(17, 20, 23, 0.08);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.58);
}

.page--home .panel-rule__section--lede {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.page--home .micro-step p {
  font-size: 0.8rem;
}

.page--home .mini-tile strong,
.page--home .list-item strong,
.page--home .tile strong,
.page--home .rule-item strong {
  font-size: 0.86rem;
}

.page--home .fact-row {
  gap: 0.48rem;
}

.page--home .fact-pill {
  padding: 0.62rem 0.66rem;
}

.page--home .pillars {
  gap: 0.55rem;
}

.page--home .tile {
  padding: 0.78rem 0.72rem;
}

.page--home .tile__icon {
  width: 1.8rem;
  height: 1.8rem;
  margin-bottom: 0.48rem;
}

.page--home .rule-item {
  padding: 0.8rem 0.85rem;
}

.page--home .checklist li {
  padding: 0.38rem 0;
  font-size: 0.95rem;
}

.page--home .band-cta {
  margin-top: 1.1rem;
}

.page--home .band-cta__grid {
  padding: 0.95rem 1.15rem;
}

.page--home .band-cta__copy h3 {
  font-size: 1.34rem;
}

.page--home .band-cta__copy p {
  font-size: 0.93rem;
  line-height: 1.55;
}

.page--home .orientation-card {
  padding: 0.9rem 0.95rem;
}

.page--home .orientation-note {
  padding: 0.82rem 0.95rem 0.88rem;
}

.page--home .orientation-note strong {
  font-size: 0.9rem;
}

.page--home .orientation-note span,
.page--home .orientation-card p {
  font-size: 0.9rem;
}

.page--home .panel-rule--proof {
  align-items: stretch;
  grid-template-columns: minmax(0, 0.62fr) minmax(0, 1.38fr);
}

.page--home .panel-rule--proof-reverse .panel-rule__section {
  min-height: 14.5rem;
}

.page--home .proof-visual-section {
  padding: 0;
  background: #0f2126;
}

.page--home .proof-visual-section .asset-plate {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 0;
  background: #0f2126;
}

.page--home .proof-visual-section img {
  width: 100%;
  height: 100%;
  min-height: 14.5rem;
  object-fit: cover;
  object-position: center;
}

.page--home .proof-copy-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.25rem;
  padding: 1.35rem 1.35rem;
}

.page--home .proof-signal-grid {
  margin-top: 0.75rem;
}

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

.asset-plate--dark-visual {
  background: #0f2126;
}

.asset-plate--deployment img {
  width: 100%;
}

.asset-plate--agentic {
  width: min(100%, 940px);
  background: rgba(255, 255, 255, 0.62);
}

.asset-plate--agentic img {
  width: 100%;
  display: block;
}

.page--governance .governance-deployment-asset {
  width: min(100%, 960px);
  padding: 0.34rem;
  background: rgba(255, 255, 255, 0.72);
}

.page--governance .governance-deployment-asset img {
  width: 100%;
  display: block;
}

.page--governance .panel-rule--agentic-path .panel-rule__section:first-child,
.page--governance .panel-rule--deployment-path .panel-rule__section:first-child {
  background:
    linear-gradient(135deg, rgba(31, 107, 106, 0.08), transparent 48%),
    rgba(255, 255, 255, 0.26);
  box-shadow: inset 3px 0 0 rgba(31, 107, 106, 0.38);
}

.page--governance .governance-operating-band {
  background:
    radial-gradient(circle at 83% 14%, rgba(31, 107, 106, 0.16), transparent 28%),
    linear-gradient(120deg, rgba(255, 255, 255, 0.78), rgba(247, 241, 231, 0.5)),
    rgba(255, 255, 255, 0.72);
}

.page--governance .governance-operating-band__detail article:nth-child(2),
.page--governance .governance-operating-band__detail article:nth-child(4) {
  background: rgba(31, 107, 106, 0.045);
}

.page--core .panel-rule--intro,
.page--internal .panel-rule--intro,
.page--contact .contact-columns .surface:first-child {
  background:
    radial-gradient(circle at 86% 16%, rgba(31, 107, 106, 0.13), transparent 30%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.84), rgba(248, 243, 234, 0.58)),
    rgba(255, 255, 255, 0.72);
}

.page--core .panel-rule--intro .panel-rule__section:first-child,
.page--internal .panel-rule--intro .panel-rule__section:first-child,
.page--contact .contact-columns .surface:first-child {
  box-shadow: inset 3px 0 0 rgba(31, 107, 106, 0.32);
}

.page--platform .platform-vision {
  background:
    radial-gradient(circle at 76% 26%, rgba(31, 107, 106, 0.18), transparent 28%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.84), rgba(250, 246, 238, 0.54)),
    rgba(255, 255, 255, 0.72);
}

.page--core .hero-panel__copy .display {
  max-width: 11.25ch;
}

.page--governance .hero-panel__copy .display {
  max-width: 16.6ch;
  font-size: clamp(2.95rem, 3.55vw, 3.35rem);
  line-height: 0.94;
}

.page--internal .hero-panel__copy .display {
  max-width: 15.2ch;
  font-size: clamp(3.08rem, 3.7vw, 3.5rem);
  line-height: 0.94;
}

.page--contact .hero-panel__copy .display {
  max-width: 18ch;
}

.page--governance .surface-grid-3 {
  grid-template-columns: 1.05fr 0.95fr 0.95fr;
}

@media (max-width: 1080px) {
  .hero-panel__grid,
  .section-head,
  .section-head--intro,
  .section-head--narrow,
  .home-manifesto,
  .home-horizon,
  .contact-columns,
  .compare-panels {
    grid-template-columns: 1fr;
  }

  .page--home .hero-panel__grid,
  .page--platform .hero-panel__grid,
  .page--governance .hero-panel__grid,
  .page--core .hero-panel__grid,
  .page--internal .hero-panel__grid,
  .page--contact .hero-panel__grid {
    grid-template-columns: 1fr;
  }

  .page--home .hero-panel__copy,
  .page--platform .hero-panel__copy,
  .page--governance .hero-panel__copy,
  .page--core .hero-panel__copy,
  .page--internal .hero-panel__copy,
  .page--contact .hero-panel__copy {
    min-height: auto;
    --hero-copy-min-height: auto;
  }

  .page--home .hero-panel__art,
  .page--platform .hero-panel__art,
  .page--governance .hero-panel__art,
  .page--core .hero-panel__art,
  .page--internal .hero-panel__art,
  .page--contact .hero-panel__art {
    min-height: 20rem;
  }

  .page--home .section-head--platform-scope {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .page--home .section-head--platform-scope .pillars {
    width: 100%;
    justify-self: stretch;
  }

  .surface-grid-4,
  .home-manifesto__steps,
  .home-horizon__grid,
  .pillars,
  .timeline-strip,
  .metric-band,
  .governance-operating-band__detail,
  .site-footer__inner,
  .rule-grid,
  .rule-grid--6,
  .phase-strip,
  .schema-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .panel-rule {
    grid-template-columns: 1fr;
  }

  .platform-vision {
    grid-template-columns: 1fr;
  }

  .platform-vision__stack {
    border-left: 0;
    border-top: 1px solid rgba(17, 20, 23, 0.08);
  }

  .zoom-panel {
    grid-template-columns: 1fr;
  }

  .orientation-grid {
    grid-template-columns: 1fr;
  }

  .governance-operating-band__intro,
  .governance-operating-band__flow {
    grid-template-columns: 1fr;
  }

  .governance-operating-band__flow::before {
    display: none;
  }

  .governance-node + .governance-node {
    border-left: 1px solid rgba(17, 20, 23, 0.1);
    border-top: 0;
  }

  .governance-operating-band__detail article {
    border-right: 0;
    border-bottom: 1px solid rgba(17, 20, 23, 0.08);
  }

  .governance-operating-band__detail article:last-child {
    border-bottom: 0;
  }

  .panel-rule__section + .panel-rule__section {
    border-left: 0;
    border-top: 1px solid rgba(17, 20, 23, 0.08);
  }

  .orientation-card {
    border-right: 0;
    border-bottom: 1px solid rgba(17, 20, 23, 0.08);
  }

  .orientation-card:nth-last-child(-n + 2) {
    border-bottom: 1px solid rgba(17, 20, 23, 0.08);
  }

  .orientation-card:last-child {
    border-bottom: 0;
  }

  .display,
  .hero--page .display,
  .page--home .hero-panel__copy .display,
  .page--platform .hero-panel__copy .display,
  .page--governance .hero-panel__copy .display,
  .page--core .hero-panel__copy .display,
  .page--internal .hero-panel__copy .display,
  .page--contact .hero-panel__copy .display {
    font-size: 3.35rem;
  }

  .section__title,
  .section-head h2,
  .section-title-large,
  .page--home .section-head h2,
  .page--home .section-title-large {
    font-size: 2rem;
  }

}

@media (max-width: 760px) {
  .hero-panel__copy {
    padding: 2rem 1.2rem 1.5rem;
  }

  .hero-panel__art {
    min-height: 18rem;
    padding: 1rem;
    border-left: 0;
    border-top: 1px solid rgba(17, 20, 23, 0.08);
  }

  .page--home .hero-panel__art,
  .page--platform .hero-panel__art,
  .page--governance .hero-panel__art,
  .page--core .hero-panel__art,
  .page--internal .hero-panel__art,
  .page--contact .hero-panel__art {
    min-height: 16.5rem;
  }

  .page--home .section-head--platform-scope .pillars {
    grid-template-columns: 1fr;
  }

  .hero-panel__shell--dark .hero-panel__art {
    border-top-color: rgba(255, 255, 255, 0.08);
  }

  .display,
  .hero--page .display,
  .page--home .hero-panel__copy .display,
  .page--platform .hero-panel__copy .display,
  .page--governance .hero-panel__copy .display,
  .page--core .hero-panel__copy .display,
  .page--internal .hero-panel__copy .display,
  .page--contact .hero-panel__copy .display {
    font-size: 2.7rem;
    line-height: 0.96;
  }

  .section__title,
  .section-head h2,
  .section-title-large,
  .page--home .section-head h2,
  .page--home .section-title-large {
    font-size: 1.72rem;
  }

  .process-strip__steps,
  .home-manifesto,
  .home-manifesto__steps,
  .home-horizon,
  .home-horizon__grid,
  .surface-grid-2,
  .surface-grid-3,
  .surface-grid-4,
  .intro-claims,
  .govern-grid--value,
  .platform-vision__stack,
  .capability-map,
  .pillars,
  .timeline-strip,
  .metric-band,
  .governance-operating-band__detail,
  .band-cta__grid,
  .diagram-flow__row,
  .contact-columns,
  .site-footer__inner,
  .mini-grid,
  .phase-strip,
  .rule-grid,
  .rule-grid--6,
  .schema-grid,
  .micro-rail,
  .fact-row,
  .orientation-grid {
    grid-template-columns: 1fr;
  }

  .metric-chip {
    border-right: 0;
    border-bottom: 1px solid rgba(17, 20, 23, 0.08);
  }

  .capability-map article,
  .capability-map article:nth-child(2n),
  .capability-map article:nth-last-child(-n + 2) {
    border: 0;
  }

  .capability-map article:first-child,
  .capability-map article:last-child {
    grid-column: auto;
  }

  .metric-chip:last-child {
    border-bottom: 0;
  }

  .page--home .hero-panel__copy .display-nowrap {
    white-space: normal;
  }
}
