:root {
  --ink: #102f29;
  --forest: #063d30;
  --green: #18c963;
  --mint: #dff7e9;
  --lime: #c9f16b;
  --paper: #f7f5ef;
  --sky: #dceef5;
  --line: #cfd8d3;
  --white: #fff;
  --muted: #53645f;
}

.concept-chain-section,
.aggregation-comparison-section {
  padding: 110px clamp(20px, 7vw, 116px);
}
.concept-chain-section {
  background: var(--paper);
}
.concept-chain-section .section-intro,
.aggregation-comparison-section .section-intro {
  max-width: none;
}
.concept-chain-section .section-intro > div > p,
.aggregation-comparison-section .section-intro > div > p {
  max-width: 760px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}
.concept-chain {
  margin-top: 52px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line);
}
.concept-chain article {
  position: relative;
  min-height: 285px;
  padding: 30px 26px;
  border-right: 1px solid var(--line);
  background: white;
}
.concept-chain article:last-child {
  border-right: 0;
  background: var(--forest);
  color: white;
  border-top: 5px solid var(--lime);
}
.concept-chain article:not(:last-child)::after {
  content: "→";
  position: absolute;
  z-index: 1;
  top: 50%;
  right: -13px;
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--paper);
  color: #0f8a4d;
  font-size: 13px;
  font-weight: 800;
}
.concept-chain article > span {
  color: #0f8a4d;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
}
.concept-chain article:last-child > span {
  color: var(--lime);
}
.concept-chain h3 {
  margin: 65px 0 16px;
  font-size: 22px;
}
.concept-chain p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}
.concept-chain article:last-child p {
  color: #bad0c7;
}
.aggregation-comparison-section {
  background: white;
}
.comparison-table-wrap {
  margin-top: 48px;
  overflow-x: auto;
  border: 1px solid var(--line);
}
.comparison-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  text-align: left;
}
.comparison-table th,
.comparison-table td {
  padding: 20px 22px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  vertical-align: top;
  line-height: 1.5;
}
.comparison-table tr > *:last-child {
  border-right: 0;
}
.comparison-table tbody tr:last-child > * {
  border-bottom: 0;
}
.comparison-table thead th {
  background: var(--forest);
  color: white;
  font-size: 15px;
}
.comparison-table thead th:last-child {
  color: var(--lime);
}
.comparison-table tbody th {
  width: 18%;
  color: #0f8a4d;
  font-size: 13px;
}
.comparison-table tbody td {
  width: 41%;
  color: var(--muted);
}
.comparison-table tbody td:last-child {
  background: var(--sky);
  color: var(--ink);
}
.comparison-bridge {
  margin-top: 28px;
  padding: 26px 28px;
  display: grid;
  grid-template-columns: minmax(180px, 0.35fr) minmax(0, 1fr);
  gap: 30px;
  align-items: start;
  border-left: 5px solid var(--lime);
  background: var(--forest);
  color: white;
}
.comparison-bridge strong {
  color: var(--lime);
}
.comparison-bridge p {
  margin: 0;
  color: #bad0c7;
  line-height: 1.6;
}
@media (max-width: 900px) {
  .concept-chain {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .concept-chain article:nth-child(2) {
    border-right: 0;
  }
  .concept-chain article:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }
  .concept-chain article:nth-child(2)::after {
    display: none;
  }
}
@media (max-width: 520px) {
  .concept-chain-section,
  .aggregation-comparison-section {
    padding: 75px 20px;
  }
  .concept-chain {
    grid-template-columns: 1fr;
  }
  .concept-chain article {
    min-height: 230px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .concept-chain article:not(:last-child)::after {
    top: auto;
    right: 50%;
    bottom: -13px;
    transform: translateX(50%) rotate(90deg);
  }
  .concept-chain article:nth-child(2)::after {
    display: grid;
  }
  .comparison-bridge {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

.inline-yuma-link {
  color: inherit;
  text-decoration-line: underline;
  text-decoration-thickness: 1px;
  text-decoration-color: color-mix(in srgb, currentColor 52%, transparent);
  text-underline-offset: 0.18em;
  transition: color 160ms ease, text-decoration-color 160ms ease;
}

.inline-yuma-link:hover,
.inline-yuma-link:focus-visible {
  color: var(--green, #087f47);
  text-decoration-color: currentColor;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
}

body.admin-bar .site-header {
  top: 32px;
}

[hidden] {
  display: none !important;
}

.search-field input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: inherit;
  font: inherit;
}

.search-field input::placeholder {
  color: inherit;
  opacity: 0.72;
}

@media (max-width: 782px) {
  body.admin-bar .site-header {
    top: 46px;
  }
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
  color: inherit;
}
.prototype-bar {
  height: 38px;
  padding: 0 clamp(20px, 4vw, 64px);
  display: flex;
  align-items: center;
  gap: 18px;
  background: #14201d;
  color: white;
  font:
    600 11px/1 Arial,
    sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.prototype-bar .prototype-note {
  margin-right: auto;
  color: #aab8b3;
  font-weight: 400;
}
.prototype-bar button {
  display: flex;
  align-items: center;
  gap: 7px;
  border: 1px solid #46534f;
  border-radius: 99px;
  background: transparent;
  padding: 6px 11px;
}
.prototype-tabs nav {
  display: flex;
  gap: 4px;
  margin-left: auto;
  align-items: center;
}
.prototype-tabs nav a {
  padding: 7px 10px;
  color: #aab8b3;
  border-radius: 99px;
}
.prototype-tabs nav a.active,
.prototype-tabs nav a:hover {
  background: #35433f;
  color: white;
}
.site-header {
  min-height: 82px;
  padding: 0 clamp(20px, 4vw, 64px);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 34px;
  background: rgb(247 245 239/0.94);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(10px);
}
.endorsed-brand-lockup {
  display: flex;
  align-items: center;
  gap: 11px;
  flex: 0 0 auto;
  min-width: max-content;
}
.endorsed-brand-lockup a:focus-visible {
  outline: 2px solid #087f47;
  outline-offset: 3px;
}
.endorsed-brand-informationgrid {
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--forest);
  font-size: 20px;
  font-weight: 750;
  letter-spacing: -0.035em;
}
.endorsed-brand-informationgrid img {
  display: block;
  width: 31px;
  height: 31px;
  object-fit: contain;
}
.endorsed-brand-yuma {
  display: block;
  width: auto;
  height: 31px;
  line-height: 0;
}
.endorsed-brand-yuma img {
  display: block;
  width: auto;
  height: 100%;
}
.endorsed-brand-lockup-footer .endorsed-brand-informationgrid {
  color: white;
}
.endorsed-brand-lockup-footer img {
  filter: brightness(0) invert(1);
}
.main-nav {
  justify-self: center;
  display: flex;
  gap: clamp(16px, 2.2vw, 34px);
  font-size: 14px;
}
.main-nav a {
  padding: 12px 0;
}
.main-nav a:hover {
  color: #087f47;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.language {
  display: flex;
  align-items: center;
  gap: 4px;
  border: 0;
  background: transparent;
  font-weight: 700;
  font-size: 12px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 20px;
  background: var(--forest);
  color: white;
  border-radius: 3px;
  font-weight: 700;
  font-size: 14px;
}
.button:hover {
  background: #0b5945;
}
.button-small {
  padding: 11px 15px;
}
.menu-button {
  display: none;
  border: 0;
  background: transparent;
}
.hero {
  min-height: 660px;
  padding: 86px clamp(20px, 7vw, 116px) 90px;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(420px, 0.96fr);
  gap: clamp(48px, 7vw, 112px);
  align-items: center;
  background: linear-gradient(90deg, var(--paper) 0 66%, #edf0e7 66%);
  overflow: hidden;
}
.hero-copy {
  max-width: 720px;
}
.eyebrow {
  margin: 0 0 20px;
  color: #0f8a4d;
  font-size: 14px;
  line-height: 1.3;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1 {
  margin-bottom: 28px;
  font-size: clamp(48px, 5.4vw, 82px);
  line-height: 0.98;
  letter-spacing: -0.055em;
  font-weight: 650;
  max-width: 800px;
}
h2 {
  margin-bottom: 24px;
  font-size: clamp(34px, 3.5vw, 54px);
  line-height: 1.04;
  letter-spacing: -0.045em;
  font-weight: 640;
}
h3 {
  font-size: 30px;
  line-height: 1.05;
  letter-spacing: -0.035em;
}
.lede {
  max-width: 680px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.55;
}
.button-row {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-top: 34px;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 14px;
  font-weight: 800;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 4px;
}
.trust-map {
  position: relative;
  aspect-ratio: 1;
  max-width: 540px;
  width: 100%;
  justify-self: center;
}
.trust-map:before {
  content: '';
  position: absolute;
  inset: 2%;
  background-image:
    linear-gradient(#cbd8d2 1px, transparent 1px),
    linear-gradient(90deg, #cbd8d2 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: 0.5;
}
.context-boundary {
  position: absolute;
  z-index: 1;
  inset: 7%;
  border: 2px solid #527d6c;
  border-radius: 50%;
  background: rgb(223 247 233/0.42);
  box-shadow: inset 0 0 0 12px rgb(255 255 255/0.25);
}
.context-boundary > span {
  position: absolute;
  left: 50%;
  top: -15px;
  transform: translateX(-50%);
  white-space: nowrap;
  padding: 8px 13px;
  border: 1px solid #527d6c;
  border-radius: 99px;
  background: var(--paper);
  font: 800 10px/1 Arial;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.exchange-axis {
  position: absolute;
  z-index: 1;
  left: 12%;
  right: 12%;
  top: 50%;
  border-top: 1px dashed #527d6c;
}
.exchange-axis:before,
.exchange-axis:after {
  content: '';
  position: absolute;
  top: -4px;
  width: 7px;
  height: 7px;
  border-top: 1px solid #527d6c;
  border-right: 1px solid #527d6c;
}
.exchange-axis:before {
  left: 1px;
  transform: rotate(-135deg);
}
.exchange-axis:after {
  right: 1px;
  transform: rotate(45deg);
}
.exchange-axis > span {
  position: absolute;
  left: 50%;
  top: 70px;
  transform: translateX(-50%);
  white-space: nowrap;
  color: var(--muted);
  font: 700 9px/1 Arial;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.actor-node,
.exchange-core,
.mechanism {
  position: absolute;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 50%;
  line-height: 1.15;
}
.actor-node {
  width: 112px;
  height: 112px;
  top: calc(50% - 56px);
  background: white;
  border: 1px solid #6d9284;
  box-shadow: 0 12px 30px rgb(6 61 48/0.12);
  gap: 8px;
  font-size: 11px;
}
.actor-node svg {
  color: #0f8a4d;
}
.actor-holder {
  left: 0;
}
.actor-consumer {
  right: 0;
}
.exchange-core {
  width: 108px;
  height: 108px;
  left: calc(50% - 54px);
  top: calc(50% - 54px);
  gap: 8px;
  background: var(--forest);
  color: white;
  font-size: 11px;
  box-shadow: 0 10px 28px rgb(6 61 48/0.18);
}
.mechanism {
  width: 84px;
  height: 84px;
  gap: 6px;
  background: var(--lime);
  border: 1px solid #84a848;
  font-size: 10px;
  font-weight: 800;
}
.mechanism-policy {
  left: 22%;
  top: 20%;
}
.mechanism-evidence {
  right: 22%;
  top: 20%;
}
.mechanism-authority {
  left: calc(50% - 42px);
  bottom: 13%;
}
.credibility-band {
  min-height: 78px;
  padding: 18px clamp(20px, 4vw, 64px);
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 24px;
  background: var(--forest);
  color: white;
  font-size: 12px;
}
.credibility-band p {
  margin: 0;
}
.credibility-band > div {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
}
.credibility-band span {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #d6eee4;
}
.yuma-lockup {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 5px;
  text-align: right;
}
.yuma-lockup strong {
  letter-spacing: 0.14em;
}
.split-section {
  padding: 110px clamp(20px, 7vw, 116px);
}
.contact-hero {
  align-items: center;
}
.contact-context-card {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgb(255 255 255 / 0.62);
}
.contact-context-card span,
.contact-context-card strong {
  display: block;
}
.contact-context-card span {
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.contact-context-card strong {
  color: var(--forest);
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.25;
}
.contact-context-card p {
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.65;
}
.contact-form-section {
  padding: 96px clamp(20px, 7vw, 116px);
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1.2fr);
  gap: clamp(40px, 7vw, 100px);
  align-items: start;
}
.contact-form-card {
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: 18px;
  background: white;
  box-shadow: 0 18px 50px rgb(16 47 41 / 0.08);
}
.contact-form-card .ff-el-form-control {
  min-height: 48px;
  border-color: var(--line);
  border-radius: 8px;
}
.contact-form-card textarea.ff-el-form-control {
  min-height: 150px;
}
.contact-form-card .ff-btn-submit {
  min-height: 48px;
  padding: 0 22px;
  border: 0;
  border-radius: 8px;
  background: var(--green);
  color: var(--forest);
  font-weight: 700;
}
.contact-form-unavailable {
  margin: 0;
  color: var(--muted);
}
.section-intro {
  display: grid;
  grid-template-columns: 0.55fr 1.45fr;
  gap: 40px;
  margin-bottom: 66px;
}
.section-intro h2 {
  max-width: 850px;
}
.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--line);
}
.product-card {
  min-height: 550px;
  padding: clamp(28px, 4vw, 58px);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.product-card + .product-card {
  border-left: 1px solid var(--line);
}
.product-igds {
  background: var(--sky);
}
.product-card .card-index {
  position: absolute;
  top: 22px;
  right: 24px;
  font: 700 11px/1 Arial;
}
.card-label {
  margin: 20px 0 28px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.product-card p:not(.card-label) {
  color: var(--muted);
  line-height: 1.55;
}
.product-card ul {
  padding-left: 20px;
  line-height: 1.9;
  margin-bottom: 34px;
}
.product-card a {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 14px;
}
.case-feature {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  min-height: 620px;
  background: white;
}
.case-visual {
  position: relative;
  overflow: hidden;
  min-height: 500px;
  background: var(--lime);
  display: flex;
  align-items: flex-end;
  padding: clamp(34px, 5vw, 76px);
}
.case-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgb(6 61 48/0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgb(6 61 48/0.18) 1px, transparent 1px);
  background-size: 54px 54px;
  transform: perspective(500px) rotateX(58deg) scale(1.55);
  transform-origin: bottom;
}
.case-pill {
  position: absolute;
  top: 34px;
  left: 38px;
  padding: 8px 12px;
  background: white;
  border-radius: 99px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.case-number {
  position: relative;
  font-size: clamp(100px, 14vw, 220px);
  line-height: 0.75;
  letter-spacing: -0.09em;
  font-weight: 750;
  color: var(--forest);
}
.case-copy {
  padding: clamp(52px, 7vw, 110px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.case-copy h2 {
  font-size: clamp(38px, 4.2vw, 60px);
}
.case-copy > p:not(.eyebrow) {
  max-width: 640px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}
.case-copy dl {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin: 34px 0;
}
.case-copy dl div {
  border-top: 1px solid var(--line);
  padding-top: 17px;
}
.case-copy dt {
  font-size: 24px;
  font-weight: 750;
}
.case-copy dd {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 12px;
}
.case-showcase {
  padding: 110px clamp(20px, 7vw, 116px);
  background: white;
}
.case-showcase .section-intro > div > p {
  max-width: 720px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}
.case-card-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  grid-template-rows: repeat(2, minmax(300px, 1fr));
  gap: 18px;
}
.visual-case-card {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  background: var(--forest);
  color: white;
}
.case-card-dmi {
  grid-row: 1/3;
  min-height: 650px;
}
.case-card-image {
  position: absolute;
  inset: 0;
  background: #e9efe7;
}
.case-card-image:after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgb(6 35 29/0.06) 25%,
    rgb(6 35 29/0.88) 100%
  );
}
.case-card-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.case-card-dmi .case-card-image img {
  object-fit: contain;
  transform: scale(1.08);
}
.visual-case-card:hover .case-card-image img {
  transform: scale(1.035);
}
.visual-case-card:hover.case-card-dmi .case-card-image img {
  transform: scale(1.11);
}
.case-card-overlay {
  position: absolute;
  z-index: 2;
  inset: 0;
  padding: clamp(25px, 3vw, 46px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.case-card-overlay > p {
  position: absolute;
  top: 28px;
  left: 32px;
  right: 32px;
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.case-card-overlay h3 {
  max-width: 680px;
  margin: 0 0 20px;
  font-size: clamp(26px, 2.6vw, 43px);
}
.case-card-overlay h3 small {
  display: block;
  margin-bottom: 10px;
  color: var(--lime);
  font: 800 11px/1 Arial;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.case-card-overlay > div {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 25px;
}
.case-card-overlay > div > span {
  max-width: 620px;
  color: #d6e1dc;
  font-size: 13px;
  line-height: 1.5;
}
.case-card-overlay b {
  display: flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
  font-size: 12px;
}
.case-overview-link {
  margin-top: 35px;
}
.cases-library {
  padding: 80px clamp(20px, 7vw, 116px) 110px;
}
.cases-library .case-card-grid {
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: minmax(580px, 1fr);
}
.cases-library .case-card-dmi {
  grid-row: auto;
  min-height: 580px;
}
.cases-library .case-card-overlay > div {
  grid-template-columns: 1fr;
}
.cases-library .case-card-overlay b {
  margin-top: 8px;
}
.standards-section {
  padding: 110px clamp(20px, 7vw, 116px);
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(50px, 8vw, 130px);
  background: var(--paper);
}
.standards-section > div:first-child {
  position: sticky;
  top: 130px;
  align-self: start;
}
.standards-section > div:first-child p:last-child {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}
.standards-list {
  border-top: 1px solid var(--line);
}
.standards-list > a {
  min-height: 105px;
  display: grid;
  grid-template-columns: 50px 1fr 1fr auto;
  align-items: center;
  gap: 20px;
  border-bottom: 1px solid var(--line);
  transition: background 160ms ease, padding 160ms ease;
}
.standards-list > a:hover,
.standards-list > a:focus-visible {
  padding-inline: 14px;
  background: white;
}
.standards-list span {
  font: 700 11px/1 Arial;
  color: #0d8950;
}
.standards-list strong {
  font-size: 22px;
}
.standards-list small {
  color: var(--muted);
}
.standards-list > a > svg {
  transition: transform 160ms ease;
}
.standards-list > a:hover > svg,
.standards-list > a:focus-visible > svg {
  transform: translateX(4px);
}
.matrix-row b a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.standard-detail-hero,
.standard-why-section,
.standard-alignment-section,
.standard-source-section {
  padding: 90px clamp(20px, 7vw, 116px);
}
.standard-detail-hero {
  padding-top: 35px;
  background: var(--sky);
}
.standard-detail-title {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  gap: clamp(45px, 8vw, 120px);
  align-items: end;
}
.standard-detail-title h1 {
  max-width: 820px;
}
.standard-detail-title .lede {
  max-width: 780px;
}
.standard-status-card {
  min-height: 255px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  border: 1px solid #91aea2;
  border-top: 5px solid var(--forest);
  background: rgb(255 255 255/0.62);
}
.standard-status-card > svg {
  margin-bottom: auto;
  color: #0f8a4d;
}
.standard-status-card span {
  margin-bottom: 8px;
  color: #0f8a4d;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.standard-status-card strong {
  font-size: 22px;
}
.standard-status-card small {
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.4;
}
.standard-why-section {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: clamp(50px, 8vw, 120px);
}
.standard-why-lede {
  margin-top: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}
.standard-implication-grid {
  margin-top: 38px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.standard-implication-grid p {
  min-height: 110px;
  margin: 0;
  padding: 24px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  line-height: 1.45;
}
.standard-implication-grid svg {
  width: 16px;
  color: #0f8a4d;
}
.standard-alignment-section {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(50px, 8vw, 120px);
  background: var(--forest);
  color: white;
}
.standard-alignment-heading .eyebrow {
  color: var(--lime);
}
.standard-alignment-heading > p:last-child {
  color: #bad0c7;
  line-height: 1.6;
}
.standard-alignment-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid #54786b;
  border-left: 1px solid #54786b;
}
.standard-alignment-list article {
  position: relative;
  min-height: 225px;
  padding: 28px;
  border-right: 1px solid #54786b;
  border-bottom: 1px solid #54786b;
}
.standard-alignment-list article > span {
  position: absolute;
  right: 22px;
  top: 22px;
  color: var(--lime);
  font-size: 10px;
  font-weight: 800;
}
.standard-alignment-list article > svg {
  color: var(--lime);
}
.standard-alignment-list article p {
  margin: 55px 0 0;
  color: #d4e1dc;
  line-height: 1.55;
}
.standard-source-section {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 50px;
  align-items: center;
  background: var(--paper);
}
.standard-source-section h2 {
  max-width: 760px;
}
.standard-source-section > div > p:last-child {
  color: var(--muted);
}
.cta-section {
  padding: 90px clamp(20px, 7vw, 116px);
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 70px;
  background: var(--forest);
  color: white;
}
.cta-section .eyebrow {
  color: var(--lime);
}
.cta-section h2 {
  max-width: 850px;
}
.cta-actions {
  align-self: center;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
}
.cta-actions > a:not(.button) {
  display: flex;
  gap: 8px;
  align-items: center;
  border-bottom: 1px solid #799c8e;
  padding-bottom: 6px;
}
.button-light {
  background: var(--lime);
  color: var(--forest);
}
footer {
  padding: 40px clamp(20px, 4vw, 64px);
  background: #14201d;
  color: white;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  gap: 30px;
  font-size: 12px;
}
footer p {
  margin: 0;
  color: #b9c5c0;
}
footer p:last-child {
  justify-self: end;
  display: flex;
  gap: 7px;
}
@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }
  .main-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 82px;
    background: var(--paper);
    padding: 24px;
    border-bottom: 1px solid var(--line);
    flex-direction: column;
  }
  .main-nav.is-open {
    display: flex;
  }
  .menu-button {
    display: block;
  }
  .hero {
    grid-template-columns: 1fr;
    background: var(--paper);
  }
  .trust-map {
    max-width: 500px;
  }
  .section-intro,
  .standards-section,
  .standard-detail-title,
  .standard-why-section,
  .standard-alignment-section,
  .standard-source-section {
    grid-template-columns: 1fr;
  }
  .contact-form-section {
    grid-template-columns: 1fr;
  }
  .standard-status-card {
    max-width: 420px;
  }
  .standards-section > div:first-child {
    position: static;
  }
  .case-feature {
    grid-template-columns: 1fr;
  }
  .cta-section {
    grid-template-columns: 1fr;
  }
  .prototype-note {
    display: none;
  }
}
@media (max-width: 680px) {
  .prototype-bar {
    padding: 0 14px;
  }
  .prototype-bar > span:first-child {
    font-size: 9px;
  }
  .site-header {
    min-height: 70px;
    padding: 0 18px;
  }
  .endorsed-brand-lockup-header {
    gap: 9px;
  }
  .endorsed-brand-lockup-header .endorsed-brand-informationgrid {
    gap: 9px;
    font-size: 18px;
  }
  .endorsed-brand-lockup-header .endorsed-brand-informationgrid img {
    width: 28px;
    height: 28px;
  }
  .endorsed-brand-lockup-header .endorsed-brand-yuma {
    width: auto;
    height: 28px;
  }
  .header-actions .language,
  .header-actions .button {
    display: none;
  }
  .main-nav {
    top: 70px;
  }
  .hero {
    padding: 68px 20px;
    min-height: auto;
  }
  .hero h1 {
    font-size: 46px;
  }
  .eyebrow {
    font-size: 13px;
  }
  .button-row {
    align-items: flex-start;
    flex-direction: column;
  }
  .trust-map {
    margin-top: 20px;
  }
  .credibility-band {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .credibility-band .yuma-lockup {
    text-align: center;
  }
  .split-section,
  .standards-section,
  .standard-detail-hero,
  .standard-why-section,
  .standard-alignment-section,
  .standard-source-section {
    padding: 78px 20px;
  }
  .standard-detail-hero {
    padding-top: 35px;
  }
  .standard-implication-grid,
  .standard-alignment-list {
    grid-template-columns: 1fr;
  }
  .standard-implication-grid p,
  .standard-alignment-list article {
    min-height: 170px;
  }
  .product-grid {
    grid-template-columns: 1fr;
  }
  .product-card + .product-card {
    border-left: 0;
    border-top: 1px solid var(--line);
  }
  .case-copy {
    padding: 72px 20px;
  }
  .case-copy dl {
    grid-template-columns: 1fr;
  }
  .standards-list > a {
    grid-template-columns: 35px 1fr auto;
  }
  .standards-list small {
    grid-column: 2;
  }
  .cta-section {
    padding: 72px 20px;
  }
  footer {
    grid-template-columns: 1fr;
  }
  footer p:last-child {
    justify-self: start;
  }
}

/* Detail-page wireframes */
.breadcrumb {
  font: 700 11px/1 Arial;
  color: var(--muted);
  letter-spacing: 0.04em;
  margin-bottom: 70px;
}
.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.breadcrumb li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.breadcrumb li + li::before {
  content: '/';
  color: currentColor;
  opacity: 0.55;
}
.breadcrumb a {
  padding: 4px 0;
  border-bottom: 1px solid transparent;
  transition:
    color 0.18s ease,
    border-color 0.18s ease;
}
.breadcrumb a:hover,
.breadcrumb a:focus-visible {
  color: #0f8a4d;
  border-bottom-color: currentColor;
  outline: none;
}
.detail-hero-dark .breadcrumb a:hover,
.detail-hero-dark .breadcrumb a:focus-visible {
  color: var(--lime);
}
.breadcrumb [aria-current='page'] {
  opacity: 0.72;
}
.detail-hero {
  min-height: 660px;
  padding: 54px clamp(20px, 7vw, 116px) 90px;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: center;
  gap: 8vw;
}
.detail-hero > div:first-child {
  max-width: 850px;
}
.detail-hero h1 {
  font-size: clamp(50px, 5.8vw, 84px);
}
.detail-hero-mint {
  background: linear-gradient(105deg, var(--paper) 0 62%, var(--mint) 62%);
}
.detail-hero-sky {
  background: linear-gradient(105deg, var(--paper) 0 62%, var(--sky) 62%);
}
.detail-hero-dark {
  background: linear-gradient(105deg, var(--forest) 0 62%, #102f29 62%);
  color: white;
}
.detail-hero-dark .breadcrumb,
.detail-hero-dark .lede {
  color: #bad0c7;
}
.detail-hero-dark .eyebrow {
  color: var(--lime);
}
.text-link-light {
  border-color: white;
}
.platform-flow-visual {
  width: 100%;
  max-width: 560px;
  justify-self: center;
  padding: 20px;
  background: rgb(255 255 255/0.58);
  border: 1px solid #9bb7ab;
  box-shadow: 0 18px 48px rgb(6 61 48/0.08);
}
.platform-flow-row {
  display: grid;
  grid-template-columns: minmax(86px, 0.72fr) 18px minmax(174px, 1.55fr) 18px minmax(92px, 0.82fr);
  gap: 7px;
  align-items: stretch;
}
.platform-flow-step {
  min-width: 0;
  min-height: 168px;
  padding: 15px 11px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  text-align: center;
  background: white;
  border: 1px solid #9bb7ab;
}
.platform-flow-step strong {
  font-size: 13px;
  line-height: 1.2;
}
.platform-flow-step small {
  color: var(--muted);
  font-size: 10px;
  line-height: 1.25;
}
.platform-step-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  background: var(--forest);
  color: white;
}
.platform-step-icon svg {
  width: 17px;
  height: 17px;
}
.platform-flow-arrow {
  width: 18px;
  align-self: center;
  color: #527d6c;
}
.platform-model-step {
  justify-content: flex-start;
  padding: 0;
  background: var(--mint);
  border: 2px solid var(--forest);
}
.platform-step-heading {
  width: 100%;
  min-height: 48px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--forest);
  color: white;
}
.platform-step-heading svg {
  width: 17px;
}
.platform-model-detail {
  width: calc(100% - 18px);
  flex: 1;
  padding: 8px 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: #23483c;
  font-size: 10px;
  line-height: 1.22;
}
.platform-model-detail + .platform-model-detail {
  border-top: 1px solid #a8cbb7;
}
.platform-model-detail svg {
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
}
.platform-model-dsl {
  width: 100%;
  padding: 7px 8px;
  background: rgb(255 255 255/0.42);
  border-top: 1px solid #a8cbb7;
  color: #375a4d !important;
  font-size: 8px !important;
  font-weight: 800;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}
.platform-product-step {
  background: var(--lime);
  border-color: #84a848;
}
.platform-product-step small {
  color: #375a4d;
}
.platform-output-connector {
  height: 29px;
  display: grid;
  place-items: center;
  color: #527d6c;
}
.platform-output-connector svg {
  width: 18px;
}
.platform-output-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}
.platform-output-row > div {
  min-width: 0;
  min-height: 60px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  background: var(--sky);
  border: 1px solid #9bb7ab;
  font-size: 11px;
  font-weight: 800;
}
.platform-output-row svg {
  width: 17px;
  flex: 0 0 auto;
}
.platform-foundation {
  margin-top: 15px;
  padding-top: 12px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
  border-top: 1px solid #789c8f;
  color: #375a4d;
}
.platform-foundation-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.platform-foundation-label svg {
  width: 15px;
}
.platform-foundation-terms {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 0;
  font-size: 9px;
  font-weight: 800;
}
.platform-foundation-terms span {
  padding: 0 7px;
  border-right: 1px solid #9bb7ab;
}
.platform-foundation-terms span:last-child {
  padding-right: 0;
  border-right: 0;
}
.claim-status-progression {
  width: 100%;
  max-width: 460px;
  justify-self: center;
  padding: 24px 26px 22px;
  background: rgb(255 255 255/0.08);
  border: 1px solid rgb(255 255 255/0.24);
  color: white;
}
.claim-status-progression > strong {
  display: block;
  margin-bottom: 26px;
  font-size: 20px;
  text-align: center;
}
.claim-status-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.claim-status-track:before {
  content: '';
  position: absolute;
  top: 17px;
  left: 16.66%;
  right: 16.66%;
  height: 2px;
  background: rgb(255 255 255/0.34);
}
.claim-status-step {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 9px;
  text-align: center;
  color: #c7dbd3;
  font-size: 12px;
  font-weight: 700;
}
.claim-status-marker {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid #789c8f;
  background: var(--forest);
  color: white;
}
.claim-status-marker svg {
  width: 16px;
  height: 16px;
}
.claim-status-verified .claim-status-marker {
  background: white;
  border-color: white;
  color: var(--forest);
}
.claim-status-delivery .claim-status-marker {
  background: var(--lime);
  border-color: var(--lime);
  color: var(--forest);
}
.claim-status-roadmap .claim-status-marker {
  background: #102f29;
}
.federated-ecosystem-visual {
  position: relative;
  width: 100%;
  max-width: 560px;
  aspect-ratio: 1;
  justify-self: center;
}
.federated-outer-ring {
  position: absolute;
  inset: 5%;
  border: 2px solid #527d6c;
  border-radius: 50%;
  background: rgb(223 247 233/0.34);
  box-shadow: inset 0 0 0 10px rgb(255 255 255/0.22);
}
.federated-outer-ring > span {
  position: absolute;
  left: 50%;
  top: -14px;
  transform: translateX(-50%);
  white-space: nowrap;
  padding: 7px 11px;
  background: var(--paper);
  border: 1px solid #527d6c;
  border-radius: 99px;
  color: #375a4d;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.federated-mechanism-ring {
  position: absolute;
  inset: 28%;
  border: 1px dashed #789c8f;
  border-radius: 50%;
  background: rgb(220 238 245/0.48);
}
.federated-peer-connections {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  color: #86a59a;
}
.federated-peer-connections path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-dasharray: 5 6;
}
.federated-participant {
  position: absolute;
  z-index: 2;
  width: 22%;
  aspect-ratio: 1;
  padding: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  text-align: center;
  background: white;
  border: 1px solid #789c8f;
  border-radius: 50%;
  box-shadow: 0 8px 20px rgb(6 61 48/0.08);
}
.federated-participant > svg {
  width: 19px;
  height: 19px;
  color: #0f8a4d;
}
.federated-participant strong {
  font-size: 10px;
  line-height: 1.12;
}
.federated-participant small {
  color: var(--muted);
  font-size: 8px;
  line-height: 1.15;
}
.participant-a {
  left: 14%;
  top: 14%;
}
.participant-b {
  right: 14%;
  top: 14%;
}
.participant-c {
  right: 14%;
  bottom: 14%;
}
.participant-d {
  left: 14%;
  bottom: 14%;
}
.federation-mechanism {
  position: absolute;
  z-index: 3;
  width: 15%;
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  text-align: center;
  background: var(--sky);
  border: 1px solid #789c8f;
  border-radius: 50%;
  color: #23483c;
  font-size: 8px;
  font-weight: 800;
}
.federation-mechanism svg {
  width: 14px;
  height: 14px;
}
.mechanism-identity {
  left: 42.5%;
  top: 21%;
}
.mechanism-agreements {
  right: 21%;
  top: 42.5%;
}
.mechanism-authorisation {
  left: 42.5%;
  bottom: 21%;
}
.federated-ecosystem-visual .mechanism-evidence {
  left: 21%;
  top: 42.5%;
}
.federated-exchange-centre {
  position: absolute;
  z-index: 4;
  left: 36%;
  top: 36%;
  width: 28%;
  aspect-ratio: 1;
  padding: 9px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  text-align: center;
  background: var(--lime);
  border: 1px solid #84a848;
  border-radius: 50%;
  color: var(--forest);
}
.federated-exchange-centre > svg {
  width: 20px;
  height: 20px;
}
.federated-exchange-centre strong {
  font-size: 11px;
  line-height: 1.12;
}
.federated-exchange-centre small {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  color: #375a4d;
  font-size: 7px;
  line-height: 1.12;
}
.federated-exchange-centre small svg {
  width: 11px;
  height: 11px;
  flex: 0 0 auto;
}
.federated-control-message {
  position: absolute;
  z-index: 5;
  left: 50%;
  bottom: 1%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  color: #375a4d;
  font-size: 9px;
  font-weight: 800;
}
.federated-control-message svg {
  width: 14px;
  height: 14px;
}
.statement-band {
  padding: 85px clamp(20px, 7vw, 116px);
  display: grid;
  grid-template-columns: 0.4fr 1.25fr 0.75fr;
  gap: 60px;
  align-items: start;
  background: var(--forest);
  color: white;
}
.statement-band > p:first-child {
  color: var(--lime);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.statement-band h2 {
  font-size: clamp(34px, 3.8vw, 54px);
}
.statement-band > p:last-child {
  color: #bad0c7;
  line-height: 1.65;
  font-size: 17px;
}
.capability-section,
.exchange-section,
.matrix-section,
.case-architecture {
  padding: 110px clamp(20px, 7vw, 116px);
}
.capability-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
}
.capability-grid article {
  min-height: 390px;
  padding: 38px 28px;
  border-right: 1px solid var(--line);
  position: relative;
}
.capability-grid article:last-child {
  border: 0;
}
.capability-grid article > span {
  position: absolute;
  right: 22px;
  top: 22px;
  font-size: 11px;
}
.capability-grid article svg {
  color: #0f8a4d;
}
.capability-grid h3 {
  font-size: 25px;
  margin: 58px 0 20px;
}
.capability-grid p {
  color: var(--muted);
  line-height: 1.6;
}
.architecture-section {
  padding: 110px clamp(20px, 7vw, 116px);
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 8vw;
  background: var(--sky);
}
.architecture-section > div:first-child p:last-child {
  color: var(--muted);
  line-height: 1.6;
  font-size: 17px;
}
.platform-access-visual {
  width: 100%;
  max-width: 680px;
  align-self: center;
  justify-self: center;
  padding: 20px;
  background: rgb(255 255 255/0.52);
  border: 1px solid #92aaa1;
  box-shadow: 0 18px 48px rgb(6 61 48/0.07);
}
.access-consumer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px;
}
.access-consumer {
  min-width: 0;
  min-height: 126px;
  padding: 13px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px 9px;
  align-content: center;
  background: white;
  border: 1px solid #9bb7ab;
  border-top-width: 4px;
}
.access-consumer > svg {
  width: 20px;
  height: 20px;
}
.access-consumer strong,
.access-consumer small {
  display: block;
}
.access-consumer strong {
  font-size: 12px;
  line-height: 1.2;
}
.access-consumer small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.access-consumer > span {
  grid-column: 1/-1;
  padding-top: 8px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 10px;
}
.access-application {
  border-top-color: var(--forest);
}
.access-analytics {
  background: #eff8fc;
  border-top-color: #318bb1;
}
.access-agents {
  background: #eff8e9;
  border-top-color: #6f9e3e;
}
.access-arrow-grid {
  height: 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  place-items: center;
  color: #527d6c;
}
.access-arrow-grid svg,
.access-single-arrow svg {
  width: 17px;
  height: 17px;
}
.access-api-layer {
  background: white;
  border: 1px solid #92aaa1;
}
.access-layer-heading {
  min-height: 43px;
  padding: 9px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.access-layer-heading svg {
  width: 17px;
  height: 17px;
}
.access-api-layer .access-layer-heading {
  background: var(--sky);
}
.access-api-grid,
.access-core-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid #92aaa1;
}
.access-api-grid span,
.access-core-grid span {
  min-width: 0;
  min-height: 46px;
  padding: 9px;
  display: grid;
  place-items: center;
  text-align: center;
  border-right: 1px solid #92aaa1;
  font-size: 9px;
  font-weight: 800;
}
.access-api-grid span:last-child,
.access-core-grid span:last-child {
  border-right: 0;
}
.access-single-arrow {
  height: 26px;
  display: grid;
  place-items: center;
  color: #527d6c;
}
.access-product-layer {
  min-height: 48px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--lime);
  border: 1px solid #84a848;
}
.access-product-layer svg {
  width: 18px;
}
.access-core-layer {
  background: var(--forest);
  color: white;
  border: 1px solid var(--forest);
}
.access-core-layer .access-layer-heading {
  color: var(--lime);
}
.access-core-grid {
  border-top-color: #37675a;
}
.access-core-grid span {
  border-right-color: #37675a;
}
.access-foundation {
  margin-top: 14px;
  padding-top: 11px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
  border-top: 1px solid #789c8f;
  color: #375a4d;
  font-size: 9px;
  font-weight: 800;
}
.access-foundation > div {
  display: flex;
  align-items: center;
  gap: 6px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.access-foundation svg {
  width: 15px;
}
.access-foundation p {
  margin: 0;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
}
.access-foundation p span {
  padding: 0 7px;
  border-right: 1px solid #9bb7ab;
}
.access-foundation p span:last-child {
  padding-right: 0;
  border-right: 0;
}
.exchange-flow {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 1fr) 1.3fr;
  align-items: stretch;
  border: 1px solid var(--line);
}
.exchange-flow > div {
  min-height: 250px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: center;
  border-right: 1px solid var(--line);
  position: relative;
}
.exchange-flow > div:last-child {
  border: 0;
}
.exchange-flow > div:not(:last-child):after {
  content: '→';
  position: absolute;
  right: -10px;
  z-index: 2;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--forest);
  color: white;
  font-size: 12px;
  line-height: 20px;
}
.exchange-flow .participant {
  background: var(--sky);
}
.exchange-flow .check {
  background: white;
}
.exchange-flow small {
  color: var(--muted);
}
.exchange-flow svg {
  color: #0b8550;
}
.flow-note {
  max-width: 780px;
  margin: 35px auto 0;
  text-align: center;
  color: var(--muted);
  line-height: 1.6;
}
.role-section {
  padding: 100px clamp(20px, 7vw, 116px);
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 8vw;
  background: var(--forest);
  color: white;
}
.role-section .eyebrow {
  color: var(--lime);
}
.role-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid #54786b;
}
.role-grid div {
  min-height: 105px;
  padding: 25px;
  display: flex;
  align-items: center;
  gap: 25px;
  border-bottom: 1px solid #54786b;
}
.role-grid div:nth-child(odd) {
  border-right: 1px solid #54786b;
}
.role-grid span {
  font-size: 11px;
  color: var(--lime);
}
.role-grid strong {
  font-size: 18px;
}
.deployment-section {
  padding: 110px clamp(20px, 7vw, 116px);
}
.services-scope-visual {
  width: 100%;
  max-width: 620px;
  align-self: center;
  justify-self: center;
  padding: clamp(20px, 3vw, 34px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  background: rgb(255 255 255/0.58);
  border: 1px solid #92aaa1;
  box-shadow: 0 18px 48px rgb(6 61 48/0.07);
}
.scope-use {
  min-height: 160px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 10px;
  background: white;
  border: 1px solid #9bb7ab;
  border-top: 5px solid var(--forest);
}
.scope-use + .scope-use {
  border-left: 0;
}
.scope-use-ecosystem {
  background: #eff8fc;
  border-top-color: #318bb1;
}
.scope-use > svg {
  width: 23px;
  height: 23px;
  color: #0f8a4d;
}
.scope-use > span,
.scope-foundation span {
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.scope-use strong {
  max-width: 210px;
  font-size: 15px;
  line-height: 1.3;
}
.scope-connectors {
  grid-column: 1/-1;
  height: 38px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.scope-connectors span {
  position: relative;
  display: grid;
  place-items: center;
}
.scope-connectors span:before {
  content: '';
  width: 1px;
  height: 100%;
  background: #789c8f;
}
.scope-connectors span:after {
  content: '';
  position: absolute;
  bottom: 3px;
  width: 7px;
  height: 7px;
  border-right: 1px solid #527d6c;
  border-bottom: 1px solid #527d6c;
  transform: rotate(45deg);
}
.scope-foundation {
  grid-column: 1/-1;
  min-height: 105px;
  padding: 22px 25px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  background: var(--forest);
  color: white;
  border-top: 5px solid var(--lime);
}
.scope-foundation > svg {
  color: var(--lime);
}
.scope-foundation div {
  display: grid;
  gap: 5px;
}
.scope-foundation span {
  color: #bad0c7;
}
.scope-foundation strong {
  font-size: 15px;
}
.service-offer-section,
.solution-journey-section,
.eu-context-section,
.sharing-challenges-section,
.sharing-evolution-section,
.sharing-trust-section,
.dataspace-fit-section {
  padding: 110px clamp(20px, 7vw, 116px);
}
.home-solution-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.home-solution-grid .product-card {
  min-height: 390px;
  border: 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.home-yuma-section,
.yuma-transformation-section {
  padding: 90px clamp(20px, 7vw, 116px);
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(45px, 8vw, 120px);
  align-items: center;
  background: var(--forest);
  color: white;
}
.home-yuma-section .eyebrow,
.yuma-transformation-section .eyebrow {
  color: var(--lime);
}
.home-yuma-section > div:last-child,
.yuma-transformation-section > div:last-child {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 15px 20px;
  align-items: start;
}
.home-yuma-section > div:last-child {
  display: block;
}
.home-yuma-section p,
.yuma-transformation-section > div:last-child p {
  margin: 0;
  color: #bad0c7;
  font-size: 17px;
  line-height: 1.65;
}
.home-yuma-section a,
.yuma-transformation-section a {
  grid-column: 2;
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: white;
  font-size: 13px;
  font-weight: 800;
  border-bottom: 1px solid var(--lime);
}
.home-yuma-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 26px;
  margin-top: 24px;
}
.home-yuma-links a {
  grid-column: auto;
}
.yuma-transformation-section > div:last-child > svg {
  color: var(--lime);
}
.cases-yuma-strip {
  padding: 74px clamp(20px, 7vw, 116px);
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(40px, 7vw, 110px);
  background: #edf0e7;
}
.cases-yuma-strip h2 {
  max-width: 650px;
  margin-bottom: 0;
  font-size: clamp(30px, 3.2vw, 48px);
}
.cases-yuma-strip > div:last-child {
  align-self: end;
  max-width: 650px;
}
.cases-yuma-strip > div:last-child p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}
.cases-yuma-strip a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 10px;
  border-bottom: 1px solid currentColor;
  padding-bottom: 5px;
  font-weight: 800;
  font-size: 14px;
}
.solution-journey-section .section-intro > div > p {
  max-width: 760px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}
.solution-journey-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.solution-journey-grid article {
  position: relative;
  min-height: 350px;
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.solution-journey-grid article:nth-child(even) {
  background: var(--paper);
}
.solution-journey-grid article > span {
  position: absolute;
  right: 22px;
  top: 22px;
  color: #0f8a4d;
  font-size: 10px;
  font-weight: 800;
}
.solution-journey-grid article > svg {
  color: #0f8a4d;
}
.solution-journey-grid h3 {
  margin: 48px 0 14px;
  font-size: 23px;
}
.solution-journey-grid p {
  color: var(--muted);
  line-height: 1.55;
}
.solution-journey-grid small {
  margin-top: auto;
  padding-top: 25px;
  color: #375a4d;
  font-size: 10px;
  font-weight: 800;
  line-height: 1.5;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.solution-invitation {
  margin: 24px 0 0;
  color: var(--muted);
  text-align: right;
  font-size: 13px;
}
.solution-invitation a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--ink);
  font-weight: 800;
  border-bottom: 1px solid var(--ink);
}
.service-offer-section .section-intro > div > p,
.sharing-challenges-section .section-intro > div > p,
.sharing-trust-section .section-intro > div > p {
  max-width: 760px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}
.service-offer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid var(--line);
}
.service-offer-grid article {
  position: relative;
  min-height: 440px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-right: 1px solid var(--line);
  background: white;
}
.service-offer-grid article:nth-child(2) {
  background: var(--sky);
}
.service-offer-grid article:last-child {
  border-right: 0;
}
.service-offer-grid article > svg {
  width: 28px;
  height: 28px;
  color: #0f8a4d;
}
.service-offer-index {
  position: absolute;
  right: 25px;
  top: 25px;
  color: #0f8a4d;
  font-size: 10px;
  font-weight: 800;
}
.service-offer-grid h3 {
  margin: 54px 0 18px;
  font-size: 27px;
}
.service-offer-grid p {
  color: var(--muted);
  line-height: 1.6;
}
.service-offer-grid small {
  margin-top: 5px;
  color: #375a4d;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.service-offer-grid a {
  margin-top: auto;
  padding-top: 30px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 800;
}
.service-dataspace-section {
  background: var(--paper);
}
.service-dataspace-section .section-intro {
  max-width: none;
}
.service-dataspace-section .section-intro > div > p {
  max-width: 720px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}
.service-dataspace-section .connector-foundation-visual {
  margin-top: 0;
}
.service-education-link {
  margin: 24px 0 0;
  color: var(--muted);
  text-align: center;
  font-size: 13px;
}
.service-education-link a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--ink);
  font-weight: 800;
  border-bottom: 1px solid var(--ink);
}
.service-proof-section {
  padding: 100px clamp(20px, 7vw, 116px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.72fr);
  gap: clamp(45px, 7vw, 100px);
  align-items: center;
  background: var(--forest);
  color: white;
}
.service-proof-copy > p:not(.eyebrow) {
  max-width: 680px;
  color: #bad0c7;
  font-size: 17px;
  line-height: 1.6;
}
.service-proof-copy .eyebrow {
  color: var(--lime);
}
.service-proof-copy .text-link {
  margin-top: 15px;
}
.service-proof-copy .service-trust-link {
  margin-left: 24px;
}
.service-proof-section .claim-status-progression {
  max-width: none;
}
.service-acm-proof {
  grid-column: 1/-1;
  padding: 25px 28px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  border: 1px solid #54786b;
  background: rgb(255 255 255/0.06);
}
.service-acm-proof > svg {
  color: var(--lime);
}
.service-acm-proof div {
  display: grid;
  gap: 5px;
}
.service-acm-proof span {
  color: var(--lime);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.service-acm-proof strong {
  line-height: 1.35;
}
.service-acm-proof small {
  color: #bad0c7;
}
.service-acm-proof > a {
  color: var(--lime);
}
.eu-context-section {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: 60px clamp(45px, 7vw, 110px);
  background: var(--forest);
  color: white;
}
.eu-context-copy .eyebrow,
.sovereignty-principle .eyebrow {
  color: var(--lime);
}
.eu-context-copy h2 {
  max-width: 720px;
}
.eu-context-copy > p:not(.eyebrow) {
  max-width: 680px;
  color: #bad0c7;
  font-size: 17px;
  line-height: 1.65;
}
.eu-strategy-path {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-self: center;
  border: 1px solid #54786b;
}
.eu-strategy-path > a {
  position: relative;
  min-height: 300px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-right: 1px solid #54786b;
  background: rgb(255 255 255/0.04);
}
.eu-strategy-path > a:last-child {
  border-right: 0;
}
.eu-strategy-path > a > span {
  color: var(--lime);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.eu-strategy-path > a > svg:not(.eu-strategy-link-arrow) {
  margin-top: 40px;
  color: var(--lime);
}
.eu-strategy-path h3 {
  margin: 22px 0 12px;
  font-size: 21px;
}
.eu-strategy-path p {
  margin: 0;
  color: #bad0c7;
  font-size: 13px;
  line-height: 1.55;
}
.eu-strategy-link-arrow {
  position: absolute;
  right: 20px;
  bottom: 20px;
  width: 17px;
  transition: transform 160ms ease;
}
.eu-strategy-path > a:hover .eu-strategy-link-arrow,
.eu-strategy-path > a:focus-visible .eu-strategy-link-arrow {
  transform: translateX(4px);
}
.eu-strategy-path .eu-strategy-outcome {
  background: var(--lime);
  color: var(--forest);
}
.eu-strategy-outcome > span,
.eu-strategy-outcome > svg:not(.eu-strategy-link-arrow) {
  color: var(--forest) !important;
}
.policy-hero,
.policy-chapter,
.policy-now-section,
.policy-bridge-section {
  padding: 90px clamp(20px, 7vw, 116px);
}
.policy-hero {
  padding-top: 35px;
  background: var(--sky);
}
.policy-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: clamp(45px, 8vw, 120px);
  align-items: end;
}
.policy-hero-grid h1 {
  max-width: 900px;
}
.policy-hero-grid .lede {
  max-width: 620px;
}
.policy-page-nav {
  padding: 0 clamp(20px, 7vw, 116px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background: var(--forest);
  color: white;
}
.policy-page-nav a {
  min-height: 105px;
  padding: 25px 28px;
  display: flex;
  align-items: center;
  gap: 18px;
  border-right: 1px solid #456a5d;
  font-size: 14px;
  font-weight: 750;
}
.policy-page-nav a:last-child {
  border-right: 0;
}
.policy-page-nav a:hover,
.policy-page-nav a:focus-visible {
  background: rgb(255 255 255/0.06);
}
.policy-page-nav span {
  color: var(--lime);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.policy-chapter {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: clamp(45px, 7vw, 95px);
}
.policy-chapter-index {
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #0f8a4d;
  border-top: 1px solid var(--line);
  padding-top: 20px;
}
.policy-chapter-index span {
  font-size: 11px;
  font-weight: 800;
}
.policy-chapter-index svg {
  width: 32px;
  height: 32px;
}
.policy-chapter-copy {
  max-width: 1120px;
}
.policy-chapter-lede {
  max-width: 850px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}
.policy-point-grid {
  margin: 45px 0 34px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.policy-point-grid article {
  min-height: 230px;
  padding: 30px 27px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.policy-point-grid article > svg {
  color: #0f8a4d;
}
.policy-point-grid h3 {
  margin: 48px 0 13px;
  font-size: 21px;
}
.policy-point-grid p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}
.policy-chapter-dark {
  background: var(--forest);
  color: white;
}
.policy-chapter-dark .eyebrow,
.policy-chapter-dark .policy-chapter-index,
.policy-chapter-dark .policy-point-grid article > svg {
  color: var(--lime);
}
.policy-chapter-dark .policy-chapter-index,
.policy-chapter-dark .policy-point-grid,
.policy-chapter-dark .policy-point-grid article {
  border-color: #456a5d;
}
.policy-chapter-dark .policy-chapter-lede,
.policy-chapter-dark .policy-point-grid p {
  color: #bad0c7;
}
.policy-now-section {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 45px clamp(55px, 8vw, 120px);
  background: var(--paper);
}
.policy-now-heading > p:last-child {
  max-width: 660px;
  color: var(--muted);
  line-height: 1.6;
}
.policy-now-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.policy-now-grid p {
  min-height: 135px;
  margin: 0;
  padding: 26px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 11px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  line-height: 1.5;
}
.policy-now-grid svg {
  width: 16px;
  color: #0f8a4d;
}
.policy-sovereignty-note {
  grid-column: 1/-1;
  padding: 30px 34px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: start;
  background: var(--lime);
  color: var(--forest);
}
.policy-sovereignty-note > svg {
  width: 28px;
  height: 28px;
}
.policy-sovereignty-note strong {
  font-size: 22px;
}
.policy-sovereignty-note p {
  max-width: 900px;
  margin-bottom: 0;
  color: #23483c;
  line-height: 1.55;
}
.policy-bridge-section {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
}
.policy-bridge-section > div:first-child > p:last-child {
  max-width: 820px;
  color: var(--muted);
  line-height: 1.6;
}
.policy-bridge-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}
.eu-strategy-outcome p {
  color: #23483c;
}
.sovereignty-principle {
  grid-column: 1/-1;
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  border: 1px solid #54786b;
}
.sovereignty-principle > div:first-child {
  padding: 38px 40px;
  border-right: 1px solid #54786b;
}
.sovereignty-principle > div:first-child > svg {
  color: var(--lime);
}
.sovereignty-principle h3 {
  margin: 32px 0 14px;
  font-size: 30px;
}
.sovereignty-principle > div:first-child > p:last-child {
  color: #bad0c7;
  line-height: 1.6;
}
.sovereignty-meaning {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.sovereignty-meaning p {
  margin: 0;
  padding: 34px 30px;
  display: grid;
  gap: 10px;
  border-right: 1px solid #54786b;
  border-bottom: 1px solid #54786b;
}
.sovereignty-meaning p:nth-child(2n) {
  border-right: 0;
}
.sovereignty-meaning p:nth-last-child(-n + 2) {
  border-bottom: 0;
}
.sovereignty-meaning strong {
  color: var(--lime);
  font-size: 13px;
}
.sovereignty-meaning span {
  color: #bad0c7;
  font-size: 13px;
  line-height: 1.5;
}
.eu-context-conclusion {
  grid-column: 1/-1;
  padding-top: 5px;
  display: grid;
  grid-template-columns: 0.38fr 1fr;
  gap: 14px 40px;
  align-items: start;
}
.eu-context-conclusion > strong {
  color: var(--lime);
  font-size: 13px;
}
.eu-context-conclusion > p {
  max-width: 850px;
  margin: 0;
  color: #bad0c7;
  line-height: 1.6;
}
.eu-context-sources {
  grid-column: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
}
.eu-context-sources a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: white;
  font-size: 11px;
  font-weight: 750;
  border-bottom: 1px solid #54786b;
}
.eu-context-sources svg {
  width: 12px;
}
.sharing-challenge-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.sharing-challenge-grid article {
  position: relative;
  min-height: 255px;
  padding: 30px 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.sharing-challenge-grid article > span {
  position: absolute;
  right: 22px;
  top: 22px;
  color: #0f8a4d;
  font-size: 10px;
  font-weight: 800;
}
.sharing-challenge-grid article > svg,
.sharing-trust-grid article > svg {
  color: #0f8a4d;
}
.sharing-challenge-grid h3 {
  margin: 46px 0 14px;
  font-size: 23px;
}
.sharing-challenge-grid p,
.sharing-trust-grid p {
  color: var(--muted);
  line-height: 1.55;
}
.sharing-evolution-section {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(50px, 8vw, 120px);
  align-items: center;
  background: var(--sky);
}
.sharing-evolution-section > div:first-child > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}
.sharing-evolution-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid #9bb7ab;
}
.sharing-evolution-grid article {
  min-height: 260px;
  padding: 25px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 15px;
  background: rgb(255 255 255/0.68);
  border-right: 1px solid #9bb7ab;
}
.sharing-evolution-grid article:last-child {
  border-right: 0;
}
.sharing-evolution-grid article > span {
  color: #0f8a4d;
  font-size: 10px;
  font-weight: 800;
}
.sharing-evolution-grid article > svg {
  color: #0f8a4d;
}
.sharing-evolution-grid strong {
  font-size: 18px;
  line-height: 1.25;
}
.sharing-evolution-grid small {
  color: var(--muted);
  line-height: 1.45;
}
.sharing-evolution-grid .sharing-evolution-active {
  background: var(--forest);
  color: white;
  border-top: 5px solid var(--lime);
}
.sharing-evolution-active small {
  color: #bad0c7;
}
.sharing-evolution-active > svg,
.sharing-evolution-active > span {
  color: var(--lime) !important;
}
.sharing-trust-section {
  background: white;
}
.trust-layer-stack {
  border: 1px solid #9bb7ab;
  background: var(--sky);
}
.trust-layer-stack-wide {
  margin-bottom: 38px;
}
.trust-profile-layer {
  padding: 24px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.trust-profile-layer span {
  min-height: 78px;
  padding: 18px;
  display: grid;
  place-items: center;
  border: 1px solid #7fa397;
  background: white;
  color: var(--forest);
  font-size: 13px;
  font-weight: 800;
  text-align: center;
}
.trust-protocol-layer {
  min-height: 76px;
  padding: 18px 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  border-top: 1px solid #9bb7ab;
  background: #d7e7e4;
}
.trust-protocol-layer strong {
  margin-right: auto;
  font-size: 12px;
}
.trust-protocol-layer span {
  padding: 8px 11px;
  border: 1px solid #7fa397;
  background: rgb(255 255 255/0.56);
  font-size: 10px;
  font-weight: 800;
}
.trust-foundation-layer {
  min-height: 108px;
  padding: 24px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 18px;
  border-top: 5px solid var(--lime);
  background: var(--forest);
  color: white;
}
.trust-foundation-layer > svg {
  color: var(--lime);
}
.trust-foundation-layer div {
  display: grid;
  gap: 6px;
}
.trust-foundation-layer small {
  color: #bad0c7;
}
.sharing-trust-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border: 1px solid var(--line);
}
.sharing-trust-grid article {
  min-height: 245px;
  padding: 30px 25px;
  border-right: 1px solid var(--line);
}
.sharing-trust-grid article:last-child {
  border-right: 0;
}
.sharing-trust-grid h3 {
  margin: 45px 0 14px;
  font-size: 20px;
}
.sharing-trust-link {
  margin-top: 30px;
}
.portable-trust-hero,
.portable-why-section,
.credential-meaning-section,
.trust-independence-section,
.trust-roadmap-section,
.portable-sources-section {
  padding: 90px clamp(20px, 7vw, 116px);
}
.portable-trust-hero {
  padding-top: 35px;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(460px, 1.18fr);
  gap: clamp(50px, 8vw, 120px);
  align-items: center;
  background: var(--sky);
}
.portable-trust-hero h1 {
  max-width: 800px;
}
.portable-trust-hero .lede {
  max-width: 720px;
}
.credential-flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
}
.credential-flow article {
  min-height: 260px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 12px;
  border: 1px solid #91aea2;
  background: rgb(255 255 255/0.65);
}
.credential-flow .credential-flow-holder {
  background: var(--forest);
  color: white;
  border-top: 5px solid var(--lime);
}
.credential-flow article > span {
  color: #0f8a4d;
  font-size: 10px;
  font-weight: 800;
}
.credential-flow article > svg {
  margin: 24px 0 14px;
  color: #0f8a4d;
}
.credential-flow-holder > span,
.credential-flow-holder > svg {
  color: var(--lime) !important;
}
.credential-flow strong {
  font-size: 18px;
}
.credential-flow small {
  color: var(--muted);
  line-height: 1.4;
}
.credential-flow-holder small {
  color: #bad0c7;
}
.credential-flow-arrow {
  width: 26px;
  color: #0f8a4d;
}
.portable-why-section {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(50px, 8vw, 120px);
}
.portable-why-lede {
  margin-top: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}
.portable-benefit-grid {
  margin-top: 38px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.portable-benefit-grid p {
  min-height: 110px;
  margin: 0;
  padding: 24px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  line-height: 1.45;
}
.portable-benefit-grid svg {
  width: 16px;
  color: #0f8a4d;
}
.credential-meaning-section {
  background: var(--paper);
}
.credential-meaning-section .section-intro > div > p {
  max-width: 760px;
  color: var(--muted);
  line-height: 1.6;
}
.credential-meaning-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.credential-meaning-grid article {
  position: relative;
  min-height: 275px;
  padding: 30px 26px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: white;
}
.credential-meaning-grid article > span {
  position: absolute;
  right: 22px;
  top: 22px;
  color: #0f8a4d;
  font-size: 10px;
  font-weight: 800;
}
.credential-meaning-grid article > svg {
  color: #0f8a4d;
}
.credential-meaning-grid h3 {
  margin: 52px 0 14px;
  font-size: 21px;
}
.credential-meaning-grid p {
  color: var(--muted);
  line-height: 1.55;
}
.trust-independence-section {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(420px, 1.25fr);
  gap: clamp(50px, 8vw, 120px);
  align-items: center;
  background: white;
}
.trust-independence-copy > p:last-child {
  max-width: 680px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}
.trust-roadmap-section {
  background: var(--forest);
  color: white;
}
.trust-roadmap-section .eyebrow {
  color: var(--lime);
}
.trust-roadmap-section .section-intro > div > p {
  max-width: 760px;
  color: #bad0c7;
  line-height: 1.6;
}
.trust-roadmap-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid #54786b;
}
.trust-roadmap-grid article {
  min-height: 330px;
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-right: 1px solid #54786b;
}
.trust-roadmap-grid article:last-child {
  border-right: 0;
}
.trust-roadmap-grid article > span {
  color: var(--lime);
  font-size: 10px;
  font-weight: 800;
}
.trust-roadmap-grid article > svg {
  margin: 42px 0 28px;
  color: var(--lime);
}
.trust-roadmap-grid small {
  color: var(--lime);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}
.trust-roadmap-grid h3 {
  margin: 13px 0;
  font-size: 23px;
}
.trust-roadmap-grid p {
  color: #bad0c7;
  line-height: 1.55;
}
.trust-roadmap-grid .trust-roadmap-future {
  background: var(--lime);
  color: var(--forest);
}
.trust-roadmap-future > span,
.trust-roadmap-future > svg,
.trust-roadmap-future small {
  color: var(--forest) !important;
}
.trust-roadmap-future p {
  color: #23483c;
}
.trust-roadmap-note {
  margin: 30px 0 0;
  color: var(--lime);
  font-size: 15px;
  font-weight: 800;
}
.portable-sources-section {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: clamp(50px, 8vw, 120px);
  background: var(--sky);
}
.portable-source-links {
  border-top: 1px solid #9bb7ab;
}
.portable-source-links a {
  min-height: 72px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  border-bottom: 1px solid #9bb7ab;
  font-weight: 800;
}
.portable-source-links svg {
  width: 15px;
}
.dataspace-fit-section {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: clamp(50px, 8vw, 120px);
  background: var(--paper);
}
.dataspace-fit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid var(--line);
}
.dataspace-fit-grid article {
  padding: 32px;
  background: white;
  border-right: 1px solid var(--line);
}
.dataspace-fit-grid article:last-child {
  border-right: 0;
}
.dataspace-fit-grid article > svg {
  color: #0f8a4d;
}
.dataspace-fit-grid h3 {
  margin: 36px 0 22px;
  font-size: 22px;
}
.dataspace-fit-grid ul {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 15px;
  list-style: none;
}
.dataspace-fit-grid li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 9px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}
.dataspace-fit-grid li svg {
  width: 15px;
  color: #0f8a4d;
}
.deployment-section .section-intro {
  max-width: 790px;
}
.deployment-section .section-intro > p:last-child {
  max-width: 690px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}
.connector-foundation-visual {
  margin-top: 54px;
  padding: clamp(20px, 3vw, 38px);
  background: #eef2ed;
  border: 1px solid #b9c7c0;
  box-shadow: 0 18px 48px rgb(6 61 48/0.06);
}
.connector-path-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 24px);
}
.connector-path {
  min-width: 0;
  display: grid;
  grid-template-rows: minmax(90px, auto) 36px minmax(118px, auto) 40px;
}
.participant-situation {
  min-height: 90px;
  padding: 17px 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: white;
  border: 1px solid #9bb7ab;
  border-top: 4px solid var(--forest);
}
.connector-path-2 .participant-situation {
  border-top-color: #318bb1;
}
.connector-path-3 .participant-situation {
  border-top-color: #6f9e3e;
}
.participant-situation span,
.dataspace-foundation-heading > span {
  margin-bottom: 7px;
  color: #0f8a4d;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.participant-situation strong {
  font-size: 14px;
  line-height: 1.35;
}
.connector-path-line {
  position: relative;
  display: grid;
  place-items: center;
}
.connector-path-line:before,
.connector-to-foundation:before {
  content: '';
  width: 1px;
  height: 100%;
  background: #789c8f;
}
.connector-path-line span {
  position: absolute;
  bottom: 3px;
  width: 7px;
  height: 7px;
  border-right: 1px solid #527d6c;
  border-bottom: 1px solid #527d6c;
  transform: rotate(45deg);
}
.connector-choice {
  min-height: 118px;
  padding: 20px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
  background: white;
  border: 1px solid #789c8f;
}
.connector-choice-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  background: var(--forest);
  color: white;
}
.connector-path-2 .connector-choice-icon {
  background: #267b9f;
}
.connector-path-3 .connector-choice-icon {
  background: #628b39;
}
.connector-choice-icon svg {
  width: 21px;
  height: 21px;
}
.connector-choice h3 {
  margin: 0 0 7px;
  font-size: clamp(18px, 1.55vw, 23px);
}
.connector-choice p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.35;
}
.connector-to-foundation {
  display: grid;
  place-items: center;
}
.dataspace-foundation {
  padding: clamp(24px, 3vw, 36px);
  display: grid;
  grid-template-columns: minmax(220px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(28px, 4vw, 58px);
  align-items: center;
  background: var(--forest);
  color: white;
  border-top: 6px solid var(--lime);
}
.dataspace-foundation-heading > span {
  color: var(--lime);
}
.dataspace-foundation-heading strong {
  display: block;
  margin-bottom: 10px;
  font-size: clamp(25px, 2.5vw, 36px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}
.dataspace-foundation-heading p {
  margin: 0;
  color: #bad0c7;
  font-size: 13px;
  line-height: 1.45;
}
.dataspace-service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid #54786b;
  border-left: 1px solid #54786b;
}
.dataspace-service-grid > div {
  min-height: 72px;
  padding: 12px 10px;
  display: flex;
  align-items: center;
  gap: 9px;
  border-right: 1px solid #54786b;
  border-bottom: 1px solid #54786b;
  color: #dce9e4;
  font-size: 10px;
  font-weight: 800;
}
.dataspace-service-grid svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  color: var(--lime);
}
.connector-interoperability-note {
  margin: 17px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #375a4d;
  font-size: 11px;
  font-weight: 700;
  text-align: center;
}
.connector-interoperability-note svg {
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
}
.deployment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.deployment-grid article {
  padding: 38px;
  background: white;
  border: 1px solid var(--line);
}
.deployment-grid svg {
  color: #0f8a4d;
}
.deployment-grid h3 {
  font-size: 25px;
  margin: 50px 0 18px;
}
.deployment-grid p {
  color: var(--muted);
  line-height: 1.55;
}
.matrix-table {
  border-top: 1px solid var(--line);
}
.matrix-head,
.matrix-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.25fr;
  gap: 20px;
  align-items: center;
  min-height: 78px;
  padding: 0 18px;
  border-bottom: 1px solid var(--line);
}
.matrix-head {
  min-height: 52px;
  background: #e9ece7;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.matrix-row b {
  font-size: 17px;
}
.matrix-row small {
  color: var(--muted);
}
.status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 800;
}
.status svg {
  width: 16px;
}
.status-verified {
  color: #087f47;
}
.status-delivery {
  color: #17627c;
}
.status-roadmap {
  color: #8a6519;
}
.acm-section {
  padding: 100px clamp(20px, 7vw, 116px);
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 48px;
  align-items: center;
  background: var(--mint);
}
.acm-icon {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--forest);
  color: white;
}
.acm-icon svg {
  width: 42px;
  height: 42px;
}
.acm-section h2 {
  font-size: clamp(34px, 3.6vw, 52px);
}
.acm-section p:not(.eyebrow) {
  max-width: 850px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}
.acm-section small {
  font-weight: 800;
}
.case-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 690px;
}
.case-hero-copy {
  padding: 55px clamp(20px, 7vw, 116px) 90px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.case-hero-copy h1 {
  font-size: clamp(48px, 5.4vw, 82px);
}
.case-hero-copy .button {
  align-self: flex-start;
  margin-top: 24px;
}
.case-image-panel {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  background: var(--sky);
}
.case-image-panel img {
  width: 100%;
  height: 100%;
  min-height: 690px;
  display: block;
  object-fit: cover;
}
.case-image-dmi {
  background: #eef1e8;
}
.case-image-dmi img {
  object-fit: contain;
  padding: 6%;
}
.case-image-panel figcaption {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 25px;
  padding: 12px 15px;
  background: rgb(6 61 48/0.9);
  color: white;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.case-facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--forest);
  color: white;
}
.case-facts div {
  padding: 34px clamp(20px, 3vw, 48px);
  border-right: 1px solid #456a5d;
}
.case-facts strong {
  display: block;
  font-size: 24px;
  color: var(--lime);
}
.case-facts span {
  display: block;
  margin-top: 8px;
  color: #bad0c7;
  font-size: 12px;
}
.story-section {
  padding: 110px clamp(20px, 7vw, 116px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9vw;
}
.story-section aside h2 {
  font-size: clamp(36px, 4vw, 58px);
}
.story-section > div > p {
  font-size: 19px;
  line-height: 1.7;
  color: var(--muted);
}
.story-section blockquote {
  margin: 50px 0 0;
  padding: 30px 0 0;
  border-top: 1px solid var(--line);
  font-size: 27px;
  line-height: 1.35;
  font-weight: 650;
  letter-spacing: -0.02em;
}
.dmi-map {
  height: 560px;
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  background-image:
    linear-gradient(#dce3df 1px, transparent 1px),
    linear-gradient(90deg, #dce3df 1px, transparent 1px);
  background-size: 42px 42px;
}
.dmi-centre,
.dmi-party {
  position: absolute;
  z-index: 2;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 7px;
}
.dmi-centre {
  width: 190px;
  height: 190px;
  left: calc(50% - 95px);
  top: calc(50% - 95px);
  background: var(--forest);
  color: white;
}
.dmi-centre small {
  color: #bad0c7;
}
.dmi-party {
  width: 130px;
  height: 130px;
  background: white;
  border: 1px solid #8fa99f;
  box-shadow: 0 12px 24px rgb(6 61 48/0.08);
  font-size: 12px;
  font-weight: 800;
}
.party-0 {
  left: 5%;
  top: 12%;
}
.party-1 {
  right: 5%;
  top: 12%;
}
.party-2 {
  left: 8%;
  bottom: 8%;
}
.party-3 {
  right: 8%;
  bottom: 8%;
}
.data-line {
  position: absolute;
  height: 1px;
  background: #78a390;
  left: 22%;
  right: 22%;
  top: 50%;
  transform-origin: center;
}
.line-1 {
  transform: rotate(35deg);
}
.line-2 {
  transform: rotate(-35deg);
}
.line-3 {
  transform: rotate(145deg);
}
.line-4 {
  transform: rotate(-145deg);
}
.domain-role-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
}
.domain-role-grid > div {
  min-height: 220px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  text-align: center;
  background: white;
  border-right: 1px solid var(--line);
}
.domain-role-grid > div:last-child {
  border-right: 0;
}
.domain-role-grid svg {
  width: 38px;
  height: 38px;
  color: #0f8a4d;
}
.domain-role-grid strong {
  font-size: 18px;
}
.outcome-section {
  padding: 100px clamp(20px, 7vw, 116px);
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 9vw;
  background: var(--sky);
}
.outcome-list p {
  display: flex;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid #a9c2cc;
  margin: 0;
}
.outcome-list svg {
  color: #087f47;
  flex: none;
}
.outcome-list span {
  font-size: 18px;
}
.outcome-list small {
  display: block;
  color: #087f47;
  font-size: 10px;
  margin-bottom: 6px;
}
.yuma-case-note {
  padding: 55px clamp(20px, 7vw, 116px);
  display: grid;
  grid-template-columns: auto auto 1fr;
  gap: 28px;
  align-items: center;
  background: white;
}
.yuma-case-note span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.yuma-case-note strong {
  font-size: 34px;
  letter-spacing: 0.12em;
}
.yuma-case-note p {
  max-width: 780px;
  margin: 0 0 0 auto;
  color: var(--muted);
  line-height: 1.55;
}
.network-effect-section {
  padding: 110px clamp(20px, 7vw, 116px);
  background: var(--forest);
  color: white;
}
.network-effect-section .section-intro p:not(.eyebrow) {
  max-width: 780px;
  color: #bad0c7;
  line-height: 1.65;
}
.network-effect-cycle {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid #456a5d;
}
.network-effect-cycle article {
  position: relative;
  min-height: 270px;
  padding: 32px 30px;
  border-right: 1px solid #456a5d;
}
.network-effect-cycle article:last-child {
  border: 0;
}
.network-effect-cycle article > span {
  display: block;
  color: var(--lime);
  font-size: 11px;
  font-weight: 800;
  margin-bottom: 48px;
}
.network-effect-cycle strong {
  font-size: 28px;
}
.network-effect-cycle p {
  color: #bad0c7;
  line-height: 1.55;
}
.network-effect-cycle b {
  position: absolute;
  right: -16px;
  top: 50%;
  z-index: 2;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--lime);
  color: var(--forest);
}
.network-effect-cycle article:last-child b {
  right: 18px;
  transform: rotate(135deg);
}
.yuma-case-note-featured {
  background: var(--lime);
}
.yuma-case-note-featured strong {
  letter-spacing: -0.03em;
  color: var(--forest);
}
.yuma-case-note-featured p {
  color: #23483c;
}
@media (max-width: 980px) {
  .prototype-tabs {
    overflow-x: auto;
  }
  .prototype-tabs > span {
    display: none;
  }
  .prototype-tabs nav {
    margin: 0;
  }
  .detail-hero,
  .statement-band,
  .architecture-section,
  .role-section,
  .service-proof-section,
  .eu-context-section,
  .sharing-evolution-section,
  .dataspace-fit-section,
  .policy-hero-grid,
  .policy-now-section,
  .policy-bridge-section,
  .portable-trust-hero,
  .portable-why-section,
  .trust-independence-section,
  .portable-sources-section,
  .acm-section,
  .case-hero,
  .story-section,
  .outcome-section {
    grid-template-columns: 1fr;
  }
  .policy-chapter {
    grid-template-columns: 90px minmax(0, 1fr);
  }
  .policy-point-grid {
    grid-template-columns: 1fr;
  }
  .policy-point-grid article {
    min-height: 190px;
  }
  .portable-trust-hero {
    align-items: start;
  }
  .credential-flow {
    max-width: 480px;
    grid-template-columns: 1fr;
    justify-self: center;
  }
  .credential-flow article {
    min-height: 200px;
  }
  .credential-flow-arrow {
    justify-self: center;
    transform: rotate(90deg);
  }
  .credential-meaning-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .trust-roadmap-grid {
    grid-template-columns: 1fr;
  }
  .trust-roadmap-grid article {
    min-height: 280px;
    border-right: 0;
    border-bottom: 1px solid #54786b;
  }
  .trust-roadmap-grid article:last-child {
    border-bottom: 0;
  }
  .eu-strategy-path {
    grid-column: 1;
  }
  .sovereignty-principle {
    grid-template-columns: 1fr;
  }
  .sovereignty-principle > div:first-child {
    border-right: 0;
    border-bottom: 1px solid #54786b;
  }
  .detail-hero {
    background: var(--paper);
  }
  .detail-hero-dark {
    background: var(--forest);
  }
  .platform-flow-visual,
  .federated-ecosystem-visual,
  .claim-status-progression {
    margin: 40px auto 0;
    width: 100%;
    max-width: 460px;
  }
  .capability-grid {
    grid-template-columns: 1fr 1fr;
  }
  .service-offer-grid,
  .solution-journey-grid,
  .sharing-challenge-grid {
    grid-template-columns: 1fr;
  }
  .home-yuma-section,
  .yuma-transformation-section,
  .cases-yuma-strip {
    grid-template-columns: 1fr;
  }
  .home-solution-grid {
    grid-template-columns: 1fr;
  }
  .service-offer-grid article {
    min-height: 360px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .sharing-trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .sharing-trust-grid article:nth-child(2n) {
    border-right: 0;
  }
  .sharing-trust-grid article:not(:last-child) {
    border-bottom: 1px solid var(--line);
  }
  .sharing-trust-grid article:last-child {
    grid-column: 1/-1;
    border-right: 0;
  }
  .exchange-flow {
    grid-template-columns: 1fr;
  }
  .exchange-flow > div {
    min-height: 160px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .exchange-flow > div:not(:last-child):after {
    right: auto;
    bottom: -10px;
    transform: rotate(90deg);
  }
  .acm-section > a {
    justify-self: start;
  }
  .case-image-panel,
  .case-image-panel img {
    min-height: 520px;
  }
  .case-facts {
    grid-template-columns: 1fr 1fr;
  }
  .domain-role-grid,
  .network-effect-cycle {
    grid-template-columns: 1fr 1fr;
  }
  .domain-role-grid > div:nth-child(2) {
    border-right: 0;
  }
  .domain-role-grid > div {
    border-bottom: 1px solid var(--line);
  }
  .network-effect-cycle article:nth-child(2) {
    border-right: 0;
  }
  .network-effect-cycle article {
    border-bottom: 1px solid #456a5d;
  }
  .case-card-grid,
  .cases-library .case-card-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .case-card-dmi,
  .cases-library .case-card-dmi {
    grid-column: 1/-1;
    grid-row: auto;
    min-height: 560px;
  }
  .cases-library .visual-case-card {
    min-height: 500px;
  }
  .yuma-case-note {
    grid-template-columns: auto 1fr;
  }
  .yuma-case-note p {
    grid-column: 1/-1;
    margin: 0;
  }
}
@media (max-width: 520px) {
  .platform-flow-visual {
    padding: 14px;
  }
  .platform-flow-row {
    grid-template-columns: 1fr;
  }
  .platform-flow-step {
    min-height: 112px;
  }
  .platform-model-step {
    min-height: 180px;
  }
  .platform-flow-arrow {
    justify-self: center;
    transform: rotate(90deg);
  }
  .platform-output-row {
    grid-template-columns: 1fr;
  }
  .platform-foundation {
    grid-template-columns: 1fr;
  }
  .platform-foundation-terms {
    justify-content: flex-start;
  }
  .platform-foundation-terms span:first-child {
    padding-left: 0;
  }
  .platform-access-visual {
    padding: 14px;
  }
  .access-consumer-grid {
    grid-template-columns: 1fr;
  }
  .access-arrow-grid {
    display: none;
  }
  .access-api-grid,
  .access-core-grid {
    grid-template-columns: 1fr;
  }
  .access-api-grid span,
  .access-core-grid span {
    border-right: 0;
    border-bottom: 1px solid #92aaa1;
  }
  .access-api-grid span:last-child,
  .access-core-grid span:last-child {
    border-bottom: 0;
  }
  .access-core-grid span {
    border-bottom-color: #37675a;
  }
  .access-foundation {
    grid-template-columns: 1fr;
  }
  .access-foundation p {
    justify-content: flex-start;
  }
  .access-foundation p span:first-child {
    padding-left: 0;
  }
}
@media (max-width: 680px) {
  .prototype-tabs nav a {
    padding: 7px 8px;
    font-size: 9px;
  }
  .detail-hero {
    padding: 42px 20px 70px;
  }
  .breadcrumb {
    margin-bottom: 50px;
  }
  .detail-hero h1 {
    font-size: 48px;
  }
  .statement-band,
  .capability-section,
  .exchange-section,
  .matrix-section,
  .case-architecture,
  .architecture-section,
  .role-section,
  .deployment-section,
  .service-offer-section,
  .solution-journey-section,
  .home-yuma-section,
  .yuma-transformation-section,
  .service-proof-section,
  .eu-context-section,
  .policy-hero,
  .policy-chapter,
  .policy-now-section,
  .policy-bridge-section,
  .portable-trust-hero,
  .portable-why-section,
  .credential-meaning-section,
  .trust-independence-section,
  .trust-roadmap-section,
  .portable-sources-section,
  .sharing-challenges-section,
  .sharing-evolution-section,
  .sharing-trust-section,
  .dataspace-fit-section,
  .acm-section,
  .story-section,
  .outcome-section,
  .network-effect-section {
    padding: 75px 20px;
  }
  .policy-hero {
    padding-top: 35px;
  }
  .policy-page-nav,
  .policy-chapter,
  .policy-now-grid {
    grid-template-columns: 1fr;
  }
  .policy-page-nav {
    padding: 0 20px;
  }
  .policy-page-nav a {
    min-height: 82px;
    border-right: 0;
    border-bottom: 1px solid #456a5d;
  }
  .policy-page-nav a:last-child {
    border-bottom: 0;
  }
  .policy-chapter-index {
    min-height: 70px;
    flex-direction: row;
    align-items: center;
  }
  .policy-now-grid p {
    min-height: 105px;
  }
  .policy-sovereignty-note {
    padding: 26px 24px;
  }
  .portable-trust-hero {
    padding-top: 35px;
  }
  .portable-benefit-grid,
  .credential-meaning-grid,
  .trust-profile-layer {
    grid-template-columns: 1fr;
  }
  .credential-meaning-grid article {
    min-height: 225px;
  }
  .trust-profile-layer {
    padding: 14px;
  }
  .trust-protocol-layer strong {
    width: 100%;
  }
  .trust-foundation-layer {
    grid-template-columns: 1fr;
  }
  .service-proof-copy .service-trust-link {
    margin-left: 0;
  }
  .case-showcase,
  .cases-library {
    padding: 75px 20px;
  }
  .case-card-grid,
  .cases-library .case-card-grid {
    grid-template-columns: 1fr;
  }
  .case-card-dmi,
  .cases-library .case-card-dmi,
  .visual-case-card,
  .cases-library .visual-case-card {
    grid-column: auto;
    min-height: 470px;
  }
  .case-card-overlay > div {
    grid-template-columns: 1fr;
  }
  .case-card-overlay b {
    margin-top: 8px;
  }
  .capability-grid,
  .deployment-grid,
  .role-grid,
  .domain-role-grid,
  .network-effect-cycle {
    grid-template-columns: 1fr;
  }
  .services-scope-visual,
  .eu-strategy-path,
  .sovereignty-meaning,
  .sharing-evolution-grid,
  .sharing-trust-grid,
  .dataspace-fit-grid {
    grid-template-columns: 1fr;
  }
  .eu-strategy-path > a {
    min-height: 240px;
    border-right: 0;
    border-bottom: 1px solid #54786b;
  }
  .eu-strategy-path > a:last-child {
    border-bottom: 0;
  }
  .sovereignty-principle > div:first-child {
    padding: 32px 25px;
  }
  .sovereignty-meaning p,
  .sovereignty-meaning p:nth-child(2n),
  .sovereignty-meaning p:nth-last-child(-n + 2) {
    border-right: 0;
    border-bottom: 1px solid #54786b;
  }
  .sovereignty-meaning p:last-child {
    border-bottom: 0;
  }
  .eu-context-conclusion {
    grid-template-columns: 1fr;
  }
  .eu-context-sources {
    grid-column: 1;
  }
  .scope-use + .scope-use {
    border-left: 1px solid #9bb7ab;
    border-top-width: 0;
  }
  .scope-connectors {
    grid-template-columns: 1fr;
  }
  .scope-connectors span:last-child {
    display: none;
  }
  .sharing-evolution-grid article,
  .sharing-trust-grid article,
  .dataspace-fit-grid article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .sharing-trust-grid article:last-child {
    grid-column: auto;
  }
  .sharing-evolution-grid article:last-child,
  .sharing-trust-grid article:last-child,
  .dataspace-fit-grid article:last-child {
    border-bottom: 0;
  }
  .service-acm-proof {
    grid-template-columns: auto 1fr;
  }
  .service-acm-proof > a {
    grid-column: 2;
  }
  .capability-grid article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .domain-role-grid > div {
    border-right: 0;
  }
  .network-effect-cycle article {
    border-right: 0;
  }
  .network-effect-cycle article b {
    right: 18px;
    bottom: -16px;
    top: auto;
    transform: rotate(90deg);
  }
  .network-effect-cycle article:last-child b {
    bottom: 18px;
    transform: rotate(135deg);
  }
  .role-grid div:nth-child(odd) {
    border-right: 0;
  }
  .connector-foundation-visual {
    margin-top: 38px;
    padding: 14px;
  }
  .connector-path-grid {
    grid-template-columns: 1fr;
    gap: 4px;
  }
  .connector-path {
    grid-template-rows: auto 28px auto 30px;
  }
  .participant-situation {
    min-height: 0;
  }
  .connector-choice {
    min-height: 0;
  }
  .dataspace-foundation {
    grid-template-columns: 1fr;
  }
  .dataspace-service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .matrix-head {
    display: none;
  }
  .matrix-row {
    grid-template-columns: 1fr;
    gap: 9px;
    padding: 22px 5px;
  }
  .case-image-panel,
  .case-image-panel img {
    min-height: 420px;
  }
  .case-facts {
    grid-template-columns: 1fr;
  }
  .case-facts div {
    border-right: 0;
    border-bottom: 1px solid #456a5d;
  }
  .dmi-map {
    height: 500px;
  }
  .dmi-party {
    width: 100px;
    height: 100px;
  }
  .dmi-centre {
    width: 150px;
    height: 150px;
    left: calc(50% - 75px);
    top: calc(50% - 75px);
  }
  .yuma-case-note {
    padding: 45px 20px;
  }
}

/* Resources and whitepaper wireframes */
.home-resources {
  padding: 110px clamp(20px, 7vw, 116px);
  background: white;
}
.home-resource-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  border: 1px solid var(--line);
}
.resource-teaser {
  min-height: 420px;
  padding: 50px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: var(--paper);
}
.resource-teaser + .resource-teaser {
  border-left: 1px solid var(--line);
}
.resource-teaser.teaser-featured {
  background: var(--lime);
}
.resource-teaser > span {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.resource-teaser h3 {
  margin: 70px 0 25px;
  font-size: clamp(30px, 3vw, 44px);
  max-width: 780px;
}
.resource-teaser p {
  max-width: 600px;
  color: var(--muted);
  line-height: 1.6;
}
.resource-teaser b {
  margin-top: auto;
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 14px;
}
.resources-hero {
  padding: 54px clamp(20px, 7vw, 116px) 95px;
  background: var(--sky);
}
.resources-hero > div {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: 60px;
}
.resources-hero h1 {
  font-size: clamp(48px, 5.2vw, 78px);
  max-width: 1100px;
}
.resources-hero > .lede {
  margin: 40px 0 0 auto;
  max-width: 680px;
}
.resource-controls {
  padding: 30px clamp(20px, 7vw, 116px);
  display: flex;
  justify-content: space-between;
  gap: 30px;
  border-bottom: 1px solid var(--line);
  background: white;
}
.search-field {
  width: min(360px, 100%);
  padding: 12px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--ink);
  color: var(--muted);
}
.search-field svg {
  width: 18px;
}
.filter-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.filter-pills button {
  display: flex;
  align-items: center;
  gap: 6px;
  border: 1px solid var(--line);
  border-radius: 99px;
  background: white;
  padding: 10px 14px;
  font-size: 12px;
}
.filter-pills button.selected {
  background: var(--forest);
  color: white;
  border-color: var(--forest);
}
.filter-pills svg {
  width: 14px;
}
.resource-library {
  padding: 80px clamp(20px, 7vw, 116px) 110px;
}
.library-heading {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
  font-size: 12px;
  color: var(--muted);
}
.resource-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.resource-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  background: white;
}
.resource-cover {
  min-height: 340px;
  padding: 25px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 18px;
  background: var(--lime);
  overflow: hidden;
}
.resource-sky .resource-cover {
  background: var(--sky);
}
.resource-paper .resource-cover {
  background: #e8e5dc;
}
.resource-cover:before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgb(6 61 48/0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgb(6 61 48/0.12) 1px, transparent 1px);
  background-size: 32px 32px;
  transform: rotate(-12deg) scale(1.3);
}
.resource-cover > * {
  position: relative;
}
.resource-cover > span {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 11px;
  font-weight: 800;
}
.resource-cover svg {
  width: 52px;
  height: 52px;
}
.resource-cover small {
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.resource-body {
  padding: 30px;
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
}
.resource-body > p {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #0f8a4d;
}
.resource-body h2 {
  font-size: 27px;
  line-height: 1.08;
}
.resource-body > span {
  color: var(--muted);
  line-height: 1.55;
}
.resource-body b {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
}
.resource-body b svg {
  width: 16px;
}
.editorial-note {
  margin: 0 clamp(20px, 7vw, 116px) 100px;
  padding: 28px 34px;
  display: flex;
  align-items: flex-start;
  gap: 22px;
  background: #fff4cf;
  border-left: 4px solid #d39c21;
}
.editorial-note svg {
  flex: none;
}
.editorial-note strong {
  display: block;
  margin-bottom: 8px;
}
.editorial-note p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}
.whitepaper-hero {
  min-height: 760px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  background: var(--paper);
}
.whitepaper-copy {
  padding: 54px clamp(20px, 7vw, 116px) 90px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.whitepaper-copy h1 {
  font-size: clamp(48px, 5.4vw, 82px);
}
.author-line {
  margin-top: 38px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}
.whitepaper-cover {
  position: relative;
  overflow: hidden;
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  background: var(--lime);
  color: var(--forest);
}
.cover-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(
      circle at 20% 25%,
      transparent 0 9%,
      rgb(6 61 48/0.12) 9.3% 9.8%,
      transparent 10%
    ),
    linear-gradient(
      135deg,
      transparent 45%,
      rgb(6 61 48/0.13) 45.2% 45.7%,
      transparent 46%
    );
  background-size:
    180px 180px,
    90px 90px;
}
.whitepaper-cover > *:not(.cover-pattern) {
  position: relative;
}
.whitepaper-cover > span {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
}
.whitepaper-cover > svg {
  width: 66px;
  height: 66px;
  margin: 100px 0 25px;
}
.whitepaper-cover h2 {
  font-size: clamp(38px, 4vw, 58px);
}
.whitepaper-cover small {
  margin-top: 45px;
  font-weight: 800;
}
.paper-summary {
  padding: 110px clamp(20px, 7vw, 116px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9vw;
  background: white;
}
.paper-summary > div:last-child > p {
  font-size: 19px;
  line-height: 1.7;
  color: var(--muted);
}
.paper-summary ul {
  list-style: none;
  padding: 0;
  margin: 35px 0 0;
}
.paper-summary li {
  display: flex;
  gap: 12px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
  font-weight: 700;
}
.paper-summary li svg {
  width: 18px;
  color: #0f8a4d;
  flex: none;
}
.chapter-section {
  padding: 110px clamp(20px, 7vw, 116px);
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 9vw;
}
.chapter-section ol {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--line);
}
.chapter-section li {
  padding: 25px 0;
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 25px;
  border-bottom: 1px solid var(--line);
}
.chapter-section li > span {
  font-size: 11px;
  color: #0f8a4d;
  font-weight: 800;
}
.chapter-section strong {
  font-size: 21px;
}
.chapter-section li p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.5;
}
.paper-callout {
  padding: 80px clamp(20px, 7vw, 116px);
  display: grid;
  grid-template-columns: 90px 1fr auto;
  gap: 40px;
  align-items: center;
  background: #fff4cf;
}
.paper-callout > svg {
  width: 70px;
  height: 70px;
  color: #876415;
}
.paper-callout h2 {
  font-size: clamp(34px, 3.6vw, 52px);
}
.paper-callout p:not(.eyebrow) {
  max-width: 900px;
  color: var(--muted);
  line-height: 1.6;
}
.download-panel {
  padding: 80px clamp(20px, 7vw, 116px);
  display: grid;
  grid-template-columns: 110px 1fr auto;
  gap: 35px;
  align-items: center;
  background: var(--forest);
  color: white;
}
.download-icon {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--lime);
  color: var(--forest);
}
.download-icon svg {
  width: 38px;
  height: 38px;
}
.download-panel .eyebrow {
  color: var(--lime);
}
.download-panel h2 {
  font-size: clamp(34px, 3.5vw, 50px);
}
.download-panel p {
  color: #bad0c7;
}
.download-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.download-actions small {
  color: #bad0c7;
}
.related-resources {
  padding: 110px clamp(20px, 7vw, 116px);
  background: white;
}
.related-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--line);
}
.related-grid a {
  min-height: 320px;
  padding: 42px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.related-grid a + a {
  border-left: 1px solid var(--line);
  background: var(--sky);
}
.related-grid > a > span {
  margin-top: 50px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 800;
}
.related-grid h3 {
  font-size: 32px;
}
.related-grid b {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
}
.related-grid b svg {
  width: 16px;
}
@media (max-width: 980px) {
  .home-resource-grid,
  .resources-hero > div,
  .whitepaper-hero,
  .paper-summary,
  .chapter-section {
    grid-template-columns: 1fr;
  }
  .resource-grid {
    grid-template-columns: 1fr 1fr;
  }
  .paper-callout,
  .download-panel {
    grid-template-columns: auto 1fr;
  }
  .paper-callout > a,
  .download-actions {
    grid-column: 2;
  }
  .whitepaper-cover {
    min-height: 650px;
  }
  .resource-controls {
    flex-direction: column;
  }
  .home-resource-grid .resource-teaser + .resource-teaser {
    border-left: 0;
    border-top: 1px solid var(--line);
  }
}
@media (max-width: 680px) {
  .home-resources,
  .resource-library,
  .paper-summary,
  .chapter-section,
  .related-resources {
    padding: 75px 20px;
  }
  .resources-hero {
    padding: 42px 20px 70px;
  }
  .resources-hero h1,
  .whitepaper-copy h1 {
    font-size: 46px;
  }
  .resource-controls {
    padding: 25px 20px;
  }
  .filter-pills {
    overflow-x: auto;
    flex-wrap: nowrap;
  }
  .resource-grid,
  .related-grid {
    grid-template-columns: 1fr;
  }
  .resource-teaser {
    padding: 35px;
    min-height: 380px;
  }
  .resource-cover {
    min-height: 300px;
  }
  .editorial-note {
    margin: 0 20px 75px;
  }
  .whitepaper-copy {
    padding: 42px 20px 75px;
  }
  .whitepaper-cover {
    padding: 40px 25px;
    min-height: 580px;
  }
  .paper-callout,
  .download-panel {
    padding: 65px 20px;
    grid-template-columns: 1fr;
  }
  .paper-callout > a,
  .download-actions {
    grid-column: 1;
    align-items: flex-start;
  }
  .related-grid a + a {
    border-left: 0;
    border-top: 1px solid var(--line);
  }
}
