:root {
  --ink: #10261f;
  --muted: #5e716a;
  --paper: #f5f7f2;
  --white: #fff;
  --green: #1d744e;
  --green-deep: #0c3529;
  --green-dark: #08281f;
  --mint: #8ae0ba;
  --lime: #ddec8a;
  --line: #10261f24;
  --max: 1280px;
  --shadow: 0 24px 70px #08281f1f;
}
* {
  box-sizing: border-box;
}
.lucide-icon {
  flex: none;
  width: 1em;
  height: 1em;
  vertical-align: -0.125em;
  display: inline-block;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-manrope), Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input {
  font: inherit;
}
button {
  color: inherit;
}
main {
  overflow: hidden;
}
.section {
  padding: 108px max(32px, calc((100vw - var(--max)) / 2));
}
.suptitle,
.eyebrow {
  color: var(--green);
  letter-spacing: 0.13em;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 800;
  display: block;
}
.topbar {
  z-index: 50;
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  color: #fff;
  background: #08281ff2;
  border-bottom: 1px solid #ffffff1f;
  align-items: center;
  gap: 28px;
  height: 76px;
  padding: 0 max(28px, 50vw - 720px);
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}
.brand-lockup {
  white-space: nowrap;
  align-items: center;
  gap: 10px;
  display: inline-flex;
}
.brand-symbol {
  background: #00182d;
  border-radius: 4px;
  flex: none;
  width: 62px;
  height: 36px;
  position: relative;
  overflow: hidden;
}
.brand-symbol img {
  width: 92px;
  max-width: none;
  height: auto;
  position: absolute;
  top: -18px;
  left: -18px;
}
.brand-wordmark {
  letter-spacing: -0.02em;
  font-size: 16px;
  font-weight: 700;
}
.brand-wordmark b {
  color: #26d2b5;
}
.desktop-nav {
  align-items: center;
  gap: 3px;
  margin-left: auto;
  display: flex;
}
.desktop-nav a {
  color: #ffffffb8;
  white-space: nowrap;
  padding: 10px;
  font-size: 14px;
  font-weight: 650;
  position: relative;
}
.desktop-nav a:after {
  content: "";
  background: var(--mint);
  height: 1px;
  transition: all 0.2s;
  position: absolute;
  bottom: 4px;
  left: 10px;
  right: 10px;
  transform: scaleX(0);
}
.desktop-nav a:hover,
.desktop-nav a.active {
  color: #fff;
}
.desktop-nav a.active:after {
  transform: scaleX(1);
}
.header-actions {
  align-items: center;
  gap: 8px;
  display: flex;
}
.search-trigger {
  color: #fff;
  cursor: pointer;
  background: #ffffff0f;
  border: 1px solid #ffffff2e;
  border-radius: 4px;
  align-items: center;
  gap: 8px;
  min-width: 128px;
  height: 42px;
  padding: 0 11px;
  font-size: 14px;
  display: flex;
}
.search-trigger > span:first-child .lucide-icon {
  width: 18px;
  height: 18px;
}
.search-trigger kbd {
  color: #ffffff73;
  margin-left: auto;
  font-family: inherit;
  font-size: 14px;
}
.login-button {
  height: 42px;
  color: var(--green-dark);
  background: #fff;
  border-radius: 4px;
  align-items: center;
  gap: 12px;
  padding: 0 16px;
  font-size: 14px;
  font-weight: 800;
  display: flex;
}
.login-button .lucide-icon {
  width: 16px;
  height: 16px;
}
.menu-button {
  background: 0 0;
  border: 1px solid #fff3;
  width: 42px;
  height: 42px;
  padding: 10px;
  align-items: center;
  justify-content: center;
  display: none;
}
.menu-button .lucide-icon {
  color: #fff;
  width: 20px;
  height: 20px;
}
.mobile-nav {
  color: var(--ink);
  box-shadow: var(--shadow);
  background: #fff;
  padding: 12px 20px 20px;
  position: absolute;
  top: 76px;
  left: 0;
  right: 0;
}
.mobile-nav a {
  border-bottom: 1px solid var(--line);
  justify-content: space-between;
  padding: 14px 4px;
  font-size: 14px;
  font-weight: 700;
  display: flex;
}
.mobile-nav a > span .lucide-icon {
  width: 16px;
  height: 16px;
}
.page-hero {
  min-height: 640px;
  padding: 170px max(32px, calc((100vw - var(--max)) / 2)) 90px;
  color: #fff;
  background: radial-gradient(circle at 78%, #3faa6f52, #0000 28%), linear-gradient(125deg, #08281f 0%, #104f39 55%, #0a3328 100%);
  position: relative;
}
.page-hero:after {
  content: "";
  opacity: 0.25;
  background-image: linear-gradient(#ffffff0d 1px, #0000 1px), linear-gradient(90deg, #ffffff0d 1px, #0000 1px);
  background-size: 72px 72px;
  position: absolute;
  inset: 76px 0 0;
  -webkit-mask-image: linear-gradient(90deg, #000, #0000 80%);
  mask-image: linear-gradient(90deg, #000, #0000 80%);
}
.page-hero-grid {
  z-index: 2;
  max-width: var(--max);
  grid-template-columns: minmax(0, 1.25fr) 0.55fr;
  align-items: center;
  gap: 100px;
  margin: auto;
  display: grid;
  position: relative;
}
.page-hero .suptitle {
  color: var(--mint);
  margin-bottom: 24px;
}
.page-hero h1 {
  letter-spacing: -0.055em;
  max-width: 850px;
  margin: 0;
  font-size: clamp(50px, 6vw, 84px);
  font-weight: 650;
  line-height: 1.01;
}
.page-hero p {
  color: #ffffffb3;
  max-width: 760px;
  margin: 30px 0 0;
  font-size: 16px;
  line-height: 1.75;
}
.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 38px;
  display: flex;
}
.button {
  border: 1px solid #0000;
  border-radius: 4px;
  justify-content: center;
  align-items: center;
  gap: 26px;
  min-height: 52px;
  padding: 0 20px;
  font-size: 16px;
  font-weight: 800;
  display: inline-flex;
}
.button-primary {
  background: var(--lime);
  color: var(--green-dark);
}
.button-secondary {
  color: #fff;
  border-color: #ffffff59;
}
.trust-seal {
  text-align: center;
  border: 1px solid #8ae0ba80;
  border-radius: 50%;
  flex-direction: column;
  justify-content: center;
  justify-self: end;
  align-items: center;
  width: 260px;
  height: 260px;
  display: flex;
  box-shadow: inset 0 0 0 18px #ffffff06;
}
.trust-seal > span {
  letter-spacing: 0.18em;
  color: var(--mint);
  font-size: 14px;
}
.trust-seal b {
  margin: 12px 0;
  font-size: 23px;
  line-height: 1.25;
}
.trust-seal small {
  color: #ffffff80;
  max-width: 160px;
  font-size: 14px;
  line-height: 1.5;
}
.metric-strip {
  z-index: 3;
  max-width: var(--max);
  box-shadow: var(--shadow);
  background: #fff;
  grid-template-columns: repeat(4, 1fr);
  margin: -42px auto 0;
  padding: 0;
  display: grid;
  position: relative;
}
.metric-strip article {
  border-right: 1px solid var(--line);
  flex-direction: column;
  min-height: 142px;
  padding: 25px 28px;
  display: flex;
}
.metric-strip article:last-child {
  border-right: 0;
}
.metric-strip span,
.metric-strip small {
  color: var(--muted);
  font-size: 14px;
}
.metric-strip b {
  letter-spacing: -0.04em;
  color: var(--green);
  margin: auto 0 3px;
  font-size: 34px;
  line-height: 1.15;
}
.metric-strip.compact {
  margin-top: -35px;
}
.section-heading {
  grid-template-columns: 1.25fr 0.65fr;
  align-items: end;
  gap: 100px;
  margin-bottom: 52px;
  display: grid;
}
.section-heading h2,
.architecture-callout h2 {
  letter-spacing: -0.05em;
  margin: 14px 0 0;
  font-size: clamp(36px, 4.4vw, 62px);
  font-weight: 650;
  line-height: 1.08;
}
.section-heading > p,
.section-heading > a {
  color: var(--muted);
  margin: 0;
  font-size: 16px;
}
.section-heading.light {
  color: #fff;
}
.section-heading.light .suptitle {
  color: var(--mint);
}
.section-heading.light p {
  color: #ffffff8c;
}
.registry-cards {
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  display: grid;
}
.registry-cards > a {
  border: 1px solid var(--line);
  background: #fff;
  flex-direction: column;
  min-height: 370px;
  padding: 32px;
  transition: all 0.25s;
  display: flex;
}
.registry-cards > a:hover {
  border-color: var(--green);
  box-shadow: var(--shadow);
  transform: translateY(-6px);
}
.card-index {
  color: var(--green);
  letter-spacing: 0.12em;
  font-size: 14px;
  font-weight: 800;
}
.registry-cards h3 {
  margin: auto 0 16px;
  font-size: 27px;
  line-height: 1.2;
}
.registry-cards p {
  color: var(--muted);
  margin: 0 0 32px;
  font-size: 14px;
}
.registry-cards b {
  color: var(--green);
  justify-content: space-between;
  font-size: 14px;
  display: flex;
}
.registry-cards i,
.text-link i {
  font-style: normal;
}
.lifecycle-section {
  background: var(--green-dark);
}
.lifecycle-grid {
  border-top: 1px solid #ffffff2e;
}
.lifecycle-grid article {
  color: #fff;
  border-bottom: 1px solid #ffffff1f;
  grid-template-columns: 85px 1fr;
  gap: 28px;
  padding: 28px 0;
  display: grid;
}
.lifecycle-grid article > span {
  color: var(--mint);
  font-size: 14px;
}
.lifecycle-grid h3 {
  margin: 0 0 7px;
  font-size: 22px;
}
.lifecycle-grid p {
  color: #ffffff8c;
  max-width: 760px;
  margin: 0;
  font-size: 14px;
}
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-weight: 800;
  display: flex;
  color: var(--green) !important;
}
.integrity-grid {
  border: 1px solid var(--line);
  grid-template-columns: repeat(4, 1fr);
  display: grid;
}
.integrity-grid article {
  border-right: 1px solid var(--line);
  min-height: 310px;
  padding: 28px;
}
.integrity-grid article:last-child {
  border-right: 0;
}
.integrity-grid span {
  color: var(--green);
  font-size: 14px;
}
.integrity-grid h3 {
  margin: 80px 0 14px;
  font-size: 20px;
  line-height: 1.3;
}
.integrity-grid p {
  color: var(--muted);
  margin: 0;
  font-size: 14px;
}
.architecture-callout {
  background: #dfe9db;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 70px;
  display: grid;
}
.architecture-callout > div {
  max-width: 900px;
}
.architecture-callout h2 {
  font-size: clamp(34px, 4vw, 54px);
}
.architecture-callout p {
  max-width: 760px;
  color: var(--muted);
  margin: 23px 0 0;
}
.registry-toolbar {
  justify-content: space-between;
  align-items: end;
  gap: 40px;
  margin-bottom: 32px;
  display: flex;
}
.registry-toolbar h2 {
  letter-spacing: -0.04em;
  margin: 8px 0 0;
  font-size: 42px;
}
.filter-pills {
  flex-wrap: wrap;
  gap: 7px;
  display: flex;
}
.filter-pills button {
  border: 1px solid var(--line);
  cursor: pointer;
  background: #fff;
  border-radius: 100px;
  padding: 9px 14px;
  font-size: 14px;
}
.filter-pills button.active {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
}
.data-table {
  border: 1px solid var(--line);
  background: #fff;
}
.table-row {
  border-bottom: 1px solid var(--line);
  grid-template-columns: 1.35fr 1fr 1fr 1fr 0.8fr;
  align-items: center;
  gap: 18px;
  min-height: 88px;
  padding: 16px 22px;
  font-size: 14px;
  display: grid;
}
.table-row:last-child {
  border-bottom: 0;
}
.table-row > span:first-child {
  flex-direction: column;
  display: flex;
}
.table-row small {
  color: var(--green);
  font-size: 14px;
}
.table-row b {
  font-size: 14px;
}
.table-head {
  min-height: 50px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: #edf1ea;
  font-size: 14px;
  font-weight: 800;
}
.status-dot {
  background: #46a878;
  border-radius: 50%;
  width: 7px;
  height: 7px;
  margin-right: 8px;
  display: inline-block;
}
.demo-note {
  color: var(--muted);
  margin: 18px 0 0;
  font-size: 14px;
}
.claim-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  display: grid;
}
.claim-grid article {
  border: 1px solid var(--line);
  background: #fff;
  min-height: 330px;
  padding: 28px;
}
.claim-head {
  color: var(--green);
  justify-content: space-between;
  gap: 20px;
  font-size: 14px;
  display: flex;
}
.claim-head b {
  font-size: 14px;
}
.claim-grid h3 {
  margin: 70px 0 10px;
  font-size: 22px;
  line-height: 1.3;
}
.claim-grid > article > p {
  color: var(--muted);
  font-size: 14px;
}
.claim-grid dl {
  border-top: 1px solid var(--line);
  margin: 28px 0 0;
}
.claim-grid dl > div {
  border-bottom: 1px solid var(--line);
  justify-content: space-between;
  gap: 20px;
  padding: 12px 0;
  font-size: 14px;
  display: flex;
}
.claim-grid dt {
  color: var(--muted);
}
.claim-grid dd {
  text-align: right;
  margin: 0;
  font-weight: 800;
}
.claim-guidance {
  background: var(--green-deep);
  color: #fff;
  margin-top: 18px;
  padding: 46px;
}
.claim-guidance .suptitle {
  color: var(--mint);
}
.claim-guidance h3 {
  margin: 16px 0;
  font-size: 32px;
  line-height: 1.2;
}
.claim-guidance p {
  color: #ffffff9e;
  max-width: 880px;
  font-size: 14px;
}
.standards-page {
  padding-top: 0;
}
.standards-intro {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  grid-template-columns: 220px 1fr;
  gap: 40px;
  margin-bottom: 28px;
  padding: 28px 0;
  display: grid;
}
.standards-intro p {
  color: var(--muted);
  max-width: 920px;
  margin: 0;
  font-size: 16px;
}
.standards-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  display: grid;
}
.standards-grid > a {
  border: 1px solid var(--line);
  background: #fff;
  flex-direction: column;
  min-height: 360px;
  padding: 26px;
  transition: all 0.2s;
  display: flex;
}
.standards-grid > a:hover {
  border-color: var(--green);
  transform: translateY(-4px);
}
.standards-grid > a > div {
  color: var(--green);
  justify-content: space-between;
  gap: 12px;
  font-size: 14px;
  display: flex;
}
.standards-grid > a > div i {
  color: var(--muted);
  text-align: right;
  font-style: normal;
}
.standards-grid h2 {
  margin: auto 0 12px;
  font-size: 22px;
  line-height: 1.2;
}
.standards-grid h3 {
  margin: 0 0 12px;
  font-size: 14px;
}
.standards-grid p {
  color: var(--muted);
  margin: 0;
  font-size: 14px;
}
.knowledge-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  display: grid;
}
.knowledge-grid article {
  border: 1px solid var(--line);
  background: #fff;
  flex-direction: column;
  min-height: 350px;
  padding: 30px;
  display: flex;
}
.knowledge-grid article > div {
  color: var(--green);
  justify-content: space-between;
  font-size: 14px;
  display: flex;
}
.knowledge-grid article > b {
  color: #d4ddd2;
  align-self: flex-end;
  font-size: 46px;
}
.knowledge-grid h3 {
  margin: auto 0 12px;
  font-size: 26px;
}
.knowledge-grid p {
  color: var(--muted);
  font-size: 14px;
}
.article-link {
  color: var(--green);
  justify-content: space-between;
  margin-top: 18px;
  font-size: 14px;
  font-weight: 800;
  display: flex;
}
.article-link i {
  font-style: normal;
}
.article-link .lucide-icon {
  width: 16px;
  height: 16px;
}
.cms-note {
  background: #dfe9db;
  grid-template-columns: 90px 1fr;
  align-items: center;
  gap: 28px;
  margin-top: 18px;
  padding: 32px;
  display: grid;
}
.cms-note > span {
  background: var(--green);
  color: #fff;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 68px;
  height: 68px;
  font-size: 14px;
  font-weight: 800;
  display: flex;
}
.cms-note h3 {
  margin: 0 0 6px;
  font-size: 20px;
}
.cms-note p {
  color: var(--muted);
  margin: 0;
  font-size: 14px;
}
.architecture-map {
  grid-template-columns: 1fr 110px 1fr 110px 1fr;
  align-items: stretch;
  margin-bottom: 45px;
  display: grid;
}
.architecture-map article {
  border: 1px solid var(--line);
  background: #fff;
  flex-direction: column;
  min-height: 270px;
  padding: 28px;
  display: flex;
}
.architecture-map article.central {
  background: var(--green-deep);
  color: #fff;
  border-color: var(--green-deep);
}
.architecture-map article > span,
.architecture-map article > small {
  color: var(--green);
  font-size: 14px;
}
.architecture-map .central > span,
.architecture-map .central > small {
  color: var(--mint);
}
.architecture-map h2 {
  margin: auto 0 12px;
  font-size: 27px;
}
.architecture-map p {
  color: var(--muted);
  margin: 0 0 20px;
  font-size: 14px;
}
.architecture-map .central p {
  color: #fff9;
}
.architecture-arrow {
  color: var(--muted);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  display: flex;
}
.architecture-arrow b {
  color: var(--green);
  font-size: 30px;
}
.architecture-arrow b .lucide-icon {
  width: 30px;
  height: 30px;
}
.integration-grid {
  border: 1px solid var(--line);
  background: #fff;
  grid-template-columns: repeat(4, 1fr);
  display: grid;
}
.integration-grid article {
  border-right: 1px solid var(--line);
  min-height: 270px;
  padding: 26px;
}
.integration-grid article:last-child {
  border-right: 0;
}
.integration-grid span {
  color: var(--green);
  font-size: 14px;
}
.integration-grid h3 {
  margin: 65px 0 12px;
  font-size: 20px;
}
.integration-grid p {
  color: var(--muted);
  font-size: 14px;
}
.api-contract {
  background: var(--green-dark);
  color: #fff;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 70px;
  margin-top: 18px;
  padding: 40px;
  display: grid;
}
.api-contract h2 {
  margin: 10px 0;
  font-size: 36px;
}
.api-contract .suptitle {
  color: var(--mint);
}
.api-contract dl {
  margin: 0;
}
.api-contract dl > div {
  border-bottom: 1px solid #ffffff26;
  grid-template-columns: 190px 1fr;
  gap: 20px;
  padding: 15px 0;
  display: grid;
}
.api-contract dt {
  color: var(--mint);
  font-size: 14px;
  font-weight: 800;
}
.api-contract dd {
  color: #fff9;
  margin: 0;
  font-size: 14px;
}
footer {
  color: #fff;
  padding: 70px max(32px, calc((100vw - var(--max)) / 2)) 24px;
  background: #061f19;
  grid-template-columns: minmax(0, 2fr) repeat(3, minmax(0, 1fr)) minmax(220px, 1.4fr);
  gap: 32px;
  display: grid;
}
.footer-primary p {
  color: #ffffff7a;
  max-width: 410px;
  margin-top: 22px;
  font-size: 14px;
}
footer > div:not(.footer-primary):not(.footer-bottom) {
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
  display: flex;
}
footer h3 {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--mint);
  margin: 4px 0 12px;
  font-size: 14px;
}
.contact-block .title {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--mint);
  margin: 4px 0 12px;
  font-size: 14px;
}
.contact-block .contact-list {
  width: 100%;
  gap: 12px;
  display: grid;
}
.contact-block .contact-item {
  color: #ffffff9e;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.45;
  text-decoration: none;
  display: flex;
}
.contact-block .contact-item svg {
  color: var(--mint);
  flex: none;
  width: 18px;
  height: 18px;
  margin-top: 2px;
}
.contact-block .contact-item span {
  overflow-wrap: anywhere;
}
.contact-block a.contact-item:hover {
  color: #fff;
}
.contact-block a.contact-item:focus-visible {
  outline: 2px solid var(--mint);
  outline-offset: 4px;
}
footer a {
  color: #ffffff9e;
  font-size: 14px;
}
footer a:hover {
  color: #fff;
}
.footer-bottom {
  color: #ffffff59;
  border-top: 1px solid #ffffff1f;
  grid-column: 1/-1;
  justify-content: space-between;
  margin-top: 20px;
  padding-top: 20px;
  font-size: 14px;
  display: flex;
}
.search-overlay {
  z-index: 100;
  justify-content: center;
  align-items: flex-start;
  padding-top: 95px;
  display: flex;
  position: fixed;
  inset: 0;
}
.search-backdrop {
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  background: #03120ec7;
  border: 0;
  position: absolute;
  inset: 0;
}
.search-panel {
  background: #fff;
  width: min(760px, 100vw - 32px);
  max-height: calc(100vh - 120px);
  padding: 30px;
  position: relative;
  overflow: auto;
  box-shadow: 0 40px 120px #00000059;
}
.search-panel-head {
  justify-content: space-between;
  gap: 30px;
  display: flex;
}
.search-panel h2 {
  letter-spacing: -0.04em;
  margin: 8px 0 20px;
  font-size: 28px;
}
.icon-button {
  border: 1px solid var(--line);
  cursor: pointer;
  background: #fff;
  width: 40px;
  height: 40px;
  font-size: 24px;
}
.icon-button .lucide-icon {
  width: 20px;
  height: 20px;
}
.search-form {
  border: 2px solid var(--green);
  align-items: center;
  gap: 13px;
  height: 58px;
  padding: 0 16px;
  display: flex;
}
.search-form-icon .lucide-icon {
  width: 24px;
  height: 24px;
}
.search-form input {
  width: 100%;
  color: var(--ink);
  border: 0;
  outline: 0;
  font-size: 16px;
}
.search-hint {
  color: var(--muted);
  margin: 12px 0 18px;
  font-size: 14px;
}
.search-results {
  border-top: 1px solid var(--line);
}
.search-results > a {
  border-bottom: 1px solid var(--line);
  grid-template-columns: 90px 1fr 24px;
  align-items: center;
  gap: 15px;
  padding: 15px 0;
  display: grid;
}
.result-type {
  color: var(--green);
  font-size: 14px;
}
.search-results > a > span:nth-child(2) {
  flex-direction: column;
  display: flex;
}
.search-results > a b {
  font-size: 14px;
}
.search-results > a small {
  color: var(--muted);
  font-size: 14px;
}
.search-results > a i {
  font-style: normal;
}
.search-empty {
  color: var(--muted);
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  padding: 28px 0;
  font-size: 14px;
  display: flex;
}
.search-empty b {
  color: var(--ink);
}
.search-empty span {
  background: #edf1ea;
  padding: 7px 10px;
}
@media (width<=1100px) {
  .desktop-nav {
    display: none;
  }
  .menu-button {
    display: flex;
  }
  .page-hero-grid {
    grid-template-columns: 1fr 0.4fr;
    gap: 50px;
  }
  .registry-cards,
  .claim-grid,
  .standards-grid,
  .integrity-grid,
  .integration-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .integrity-grid article:nth-child(2),
  .integration-grid article:nth-child(2) {
    border-right: 0;
  }
  .integrity-grid article:nth-child(-n + 2),
  .integration-grid article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }
  .architecture-map {
    grid-template-columns: 1fr;
  }
  .architecture-arrow {
    height: 70px;
  }
  .architecture-arrow b {
    transform: rotate(90deg);
  }
  .architecture-arrow.reverse b {
    transform: rotate(-90deg);
  }
  footer {
    grid-template-columns: 2fr repeat(2, 1fr);
  }
  footer > div:nth-child(4) {
    grid-column: 2;
  }
  .contact-block {
    grid-column: 1/-1;
  }
  .contact-block .contact-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .footer-bottom {
    grid-column: 1/-1;
  }
}
@media (width<=760px) {
  body {
    font-size: 16px;
  }
  .topbar {
    gap: 10px;
    height: 68px;
    padding: 0 16px;
  }
  .brand-symbol {
    width: 52px;
    height: 31px;
  }
  .brand-symbol img {
    width: 78px;
    top: -15px;
    left: -15px;
  }
  .brand-wordmark {
    font-size: 14px;
  }
  .search-trigger {
    justify-content: center;
    width: 42px;
    min-width: 42px;
    padding: 0;
  }
  .search-trigger span:nth-child(2),
  .search-trigger kbd,
  .login-button {
    display: none;
  }
  .mobile-nav {
    top: 68px;
  }
  .page-hero {
    min-height: auto;
    padding: 128px 20px 74px;
  }
  .page-hero-grid {
    grid-template-columns: 1fr;
  }
  .page-hero h1 {
    font-size: 46px;
  }
  .trust-seal {
    display: none;
  }
  .metric-strip {
    grid-template-columns: repeat(2, 1fr);
    width: calc(100% - 32px);
    margin-top: -28px;
  }
  .metric-strip article {
    border-bottom: 1px solid var(--line);
    min-height: 120px;
    padding: 20px;
  }
  .metric-strip article:nth-child(2) {
    border-right: 0;
  }
  .metric-strip b {
    font-size: 28px;
  }
  .section {
    padding: 78px 20px;
  }
  .section-heading {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-bottom: 34px;
  }
  .section-heading h2,
  .architecture-callout h2 {
    font-size: 39px;
  }
  .registry-cards,
  .claim-grid,
  .standards-grid,
  .knowledge-grid {
    grid-template-columns: 1fr;
  }
  .registry-cards > a {
    min-height: 280px;
  }
  .integrity-grid,
  .integration-grid {
    grid-template-columns: 1fr;
  }
  .integrity-grid article,
  .integration-grid article {
    border-right: 0;
    min-height: 230px;
    border-bottom: 1px solid var(--line) !important;
  }
  .integrity-grid h3,
  .integration-grid h3 {
    margin-top: 48px;
  }
  .architecture-callout {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .registry-toolbar {
    flex-direction: column;
    align-items: flex-start;
  }
  .filter-pills {
    flex-wrap: nowrap;
    max-width: 100%;
    padding-bottom: 6px;
    overflow: auto;
  }
  .filter-pills button {
    white-space: nowrap;
  }
  .data-table {
    background: 0 0;
    border: 0;
  }
  .table-head {
    display: none;
  }
  .table-row {
    border: 1px solid var(--line);
    background: #fff;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    min-height: 0;
    margin-bottom: 10px;
    padding: 18px;
  }
  .table-row > span:first-child {
    border-bottom: 1px solid var(--line);
    grid-column: 1/-1;
    padding-bottom: 10px;
  }
  .claim-guidance {
    padding: 28px;
  }
  .standards-intro,
  .cms-note {
    grid-template-columns: 1fr;
  }
  .api-contract {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 28px;
  }
  .api-contract dl > div {
    grid-template-columns: 1fr;
    gap: 5px;
  }
  .search-overlay {
    padding-top: 16px;
  }
  .search-panel {
    max-height: calc(100vh - 32px);
    padding: 22px;
  }
  .search-results > a {
    grid-template-columns: 72px 1fr 18px;
  }
  footer {
    grid-template-columns: 1fr 1fr;
    gap: 35px;
    padding: 56px 20px 22px;
  }
  .footer-primary {
    grid-column: 1/-1;
  }
  footer > div:nth-child(4) {
    grid-column: auto;
  }
  .contact-block {
    grid-column: 1/-1;
  }
  .contact-block .contact-list {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    grid-column: 1/-1;
    gap: 8px;
  }
}
@media (width<=390px) {
  .brand-wordmark {
    font-size: 14px;
  }
  .page-hero h1 {
    font-size: 39px;
  }
  .page-hero p {
    font-size: 16px;
  }
  .button {
    width: 100%;
    font-size: 16px;
  }
  .section-heading h2,
  .architecture-callout h2 {
    font-size: 34px;
  }
  .table-row {
    grid-template-columns: 1fr;
  }
  .table-row > span:first-child {
    grid-column: auto;
  }
  .metric-strip {
    grid-template-columns: 1fr;
  }
  .metric-strip article {
    border-right: 0;
  }
  .standards-grid > a {
    min-height: 320px;
  }
  footer {
    grid-template-columns: 1fr;
  }
  footer > div:nth-child(4) {
    grid-column: auto;
  }
  .contact-block {
    grid-column: auto;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
:root {
  --ecosystem-height: 38px;
  --topbar-height: 76px;
  --header-height: 114px;
}
.site-header {
  z-index: 50;
  height: var(--header-height);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}
.site-header .topbar {
  height: var(--topbar-height);
  gap: 24px;
  position: relative;
  top: auto;
  left: auto;
  right: auto;
}
.site-header .desktop-nav {
  gap: 1px;
}
.site-header .desktop-nav a {
  padding: 10px 9px;
  font-size: 16px;
}
.site-header .desktop-nav a:after {
  height: 2px;
  left: 9px;
  right: 9px;
}
.site-header .brand-wordmark {
  font-size: 16px;
  font-weight: 750;
}
.site-header .search-trigger,
.site-header .login-button {
  font-size: 16px;
}
.site-header .search-trigger {
  min-width: 122px;
}
.site-header .mobile-nav {
  z-index: 3;
  top: var(--topbar-height);
}
.site-header .mobile-nav a {
  font-size: 16px;
}
.site-header .mobile-nav a.active {
  color: var(--green);
}
.page-hero {
  min-height: 678px;
  padding-top: 208px;
}
.page-hero:after {
  inset: var(--header-height) 0 0;
}
.search-overlay {
  padding-top: 132px;
}
.ecosystem-strip {
  height: var(--ecosystem-height);
  color: #fff;
  background: #041712;
  border-bottom: 1px solid #ffffff17;
}
.ecosystem-strip-inner {
  justify-content: space-between;
  align-items: center;
  max-width: 1440px;
  height: 100%;
  margin: auto;
  padding: 0 28px;
  display: flex;
}
.ecosystem-toggle {
  color: #fff;
  cursor: pointer;
  background: 0 0;
  border: 0;
  align-items: center;
  gap: 9px;
  height: 100%;
  padding: 0;
  font-size: 14px;
  font-weight: 750;
  display: flex;
}
.ecosystem-mini-mark {
  width: 28px;
  height: 20px;
  color: var(--mint);
  border: 1px solid #8ae0ba73;
  border-radius: 3px;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  display: inline-flex;
}
.ecosystem-chevron {
  font-size: 17px;
  line-height: 1;
  transition: all 0.2s;
}
.ecosystem-chevron.open {
  transform: rotate(180deg);
}
.ecosystem-quicklinks {
  align-items: center;
  gap: 18px;
  display: flex;
}
.ecosystem-quicklinks a {
  color: #fff9;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 750;
  display: flex;
}
.ecosystem-quicklinks a:hover,
.ecosystem-quicklinks a[aria-current="page"] {
  color: #fff;
}
.ecosystem-quicklinks i,
.ecosystem-mobile-list i {
  background: #4ca878;
  border-radius: 50%;
  width: 7px;
  height: 7px;
}
.ecosystem-quicklinks i.product-pcaf,
.ecosystem-mobile-list i.product-pcaf {
  background: #c75c68;
}
.ecosystem-quicklinks i.product-mrv,
.ecosystem-mobile-list i.product-mrv {
  background: #65b4d0;
}
.ecosystem-quicklinks i.product-cbam,
.ecosystem-mobile-list i.product-cbam {
  background: #9d7455;
}
.ecosystem-quicklinks i.registry-projects,
.ecosystem-quicklinks i.registry-claims,
.ecosystem-mobile-list i.registry-projects,
.ecosystem-mobile-list i.registry-claims {
  background: #b54a55;
}
.ecosystem-panel {
  z-index: 2;
  top: var(--header-height);
  height: calc(100vh - var(--header-height));
  justify-content: center;
  align-items: flex-start;
  display: flex;
  position: absolute;
  left: 0;
  right: 0;
}
.ecosystem-backdrop {
  -webkit-backdrop-filter: blur(7px);
  backdrop-filter: blur(7px);
  background: #020e0bad;
  border: 0;
  position: absolute;
  inset: 0;
}
.ecosystem-panel-content {
  width: min(1180px, 100vw - 40px);
  max-height: calc(100vh - var(--header-height) - 24px);
  color: var(--ink);
  background: #f7f9f5;
  padding: 26px 34px 30px;
  position: relative;
  overflow: auto;
  box-shadow: 0 32px 100px #00000052;
}
.ecosystem-panel-head {
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
  display: flex;
}
.ecosystem-panel-head h2 {
  letter-spacing: -0.04em;
  margin: 4px 0 0;
  font-size: 30px;
  line-height: 1.1;
}
.ecosystem-panel-head p {
  color: var(--muted);
  margin: 5px 0 0;
  font-size: 14px;
}
.ecosystem-close {
  flex: none;
}
.ecosystem-orbit {
  width: min(920px, 100%);
  height: 430px;
  margin: 14px auto 0;
  position: relative;
}
.orbit-line {
  border: 1px solid #1d744e38;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.orbit-outer {
  width: 82%;
  height: 84%;
}
.orbit-inner {
  border-style: dashed;
  width: 43%;
  height: 48%;
}
.ecosystem-core {
  z-index: 2;
  color: #fff;
  text-align: center;
  background: #082b41;
  border-radius: 50%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 104px;
  height: 104px;
  display: flex;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 12px 34px #082b4138;
}
.ecosystem-core b {
  color: #7de0cc;
  font-size: 24px;
}
.ecosystem-core span {
  font-size: 14px;
  line-height: 1.25;
}
.ecosystem-node {
  z-index: 2;
  border: 1px solid var(--line);
  text-align: center;
  background: #fff;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 128px;
  min-height: 76px;
  padding: 10px;
  transition: all 0.2s;
  display: flex;
  position: absolute;
  box-shadow: 0 8px 22px #08281f17;
}
.ecosystem-node:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px #08281f29;
}
.ecosystem-node small {
  color: var(--node-color, var(--green));
  font-size: 14px;
  font-weight: 850;
}
.ecosystem-node b {
  font-size: 14px;
  line-height: 1.25;
}
.ecosystem-node > span {
  color: var(--green);
  margin-top: 3px;
  font-size: 14px;
  font-weight: 800;
}
.product-node {
  border-top: 4px solid var(--node-color, var(--green));
}
.product-node.product-ghg {
  --node-color: #4ca878;
}
.product-node.product-pcaf {
  --node-color: #c75c68;
}
.product-node.product-mrv {
  --node-color: #65b4d0;
}
.product-node.product-cbam {
  --node-color: #9d7455;
}
.product-node.product-market {
  --node-color: #279668;
}
.product-node[aria-current="page"] {
  border-color: var(--node-color);
  background: #eaf5ef;
}
.product-1 {
  top: 2px;
  left: 50%;
  transform: translate(-50%);
}
.product-1:hover {
  transform: translate(-50%, -3px);
}
.product-2 {
  top: 23%;
  right: 3%;
}
.product-3 {
  bottom: 1%;
  right: 16%;
}
.product-4 {
  bottom: 1%;
  left: 16%;
}
.product-5 {
  top: 23%;
  left: 3%;
}
.registry-node {
  background: #fff7f7;
  border-color: #b54a5559;
  border-radius: 50%;
  width: 116px;
  min-height: 68px;
}
.registry-node small {
  color: #a43c48;
}
.registry-node.registry-projects {
  top: 43%;
  left: 29%;
}
.registry-node.registry-claims {
  top: 43%;
  right: 29%;
}
.ecosystem-mobile-list {
  display: none;
}
@media (width<=1240px) {
  .site-header .desktop-nav {
    display: none;
  }
  .site-header .menu-button {
    display: flex;
  }
}
@media (width<=760px) {
  :root {
    --ecosystem-height: 40px;
    --topbar-height: 68px;
    --header-height: 108px;
  }
  .site-header .topbar {
    height: var(--topbar-height);
  }
  .ecosystem-strip-inner {
    padding: 0 16px;
  }
  .ecosystem-toggle {
    font-size: 14px;
  }
  .ecosystem-quicklinks {
    display: none;
  }
  .site-header .brand-wordmark {
    font-size: 16px;
  }
  .site-header .mobile-nav {
    top: var(--topbar-height);
  }
  .ecosystem-panel {
    top: var(--header-height);
    height: calc(100vh - var(--header-height));
  }
  .ecosystem-panel-content {
    width: 100%;
    max-height: 100%;
    padding: 22px 20px 28px;
  }
  .ecosystem-panel-head h2 {
    font-size: 28px;
  }
  .ecosystem-orbit {
    display: none;
  }
  .ecosystem-mobile-list {
    margin-top: 24px;
    display: block;
  }
  .ecosystem-mobile-list h3 {
    text-transform: uppercase;
    letter-spacing: 0.11em;
    color: var(--muted);
    margin: 20px 0 6px;
    font-size: 14px;
  }
  .ecosystem-mobile-list a {
    border-bottom: 1px solid var(--line);
    grid-template-columns: 10px 1fr 20px;
    align-items: center;
    gap: 12px;
    padding: 12px 4px;
    display: grid;
  }
  .ecosystem-mobile-list a[aria-current="page"] {
    background: #eaf5ef;
  }
  .ecosystem-mobile-list span {
    flex-direction: column;
    display: flex;
  }
  .ecosystem-mobile-list small {
    color: var(--muted);
    font-size: 14px;
  }
  .ecosystem-mobile-list b {
    font-size: 14px;
  }
  .ecosystem-mobile-list em {
    color: var(--green);
    font-style: normal;
  }
  .page-hero {
    min-height: auto;
    padding-top: 160px;
  }
  .search-overlay {
    padding-top: 16px;
  }
}
@media (width<=390px) {
  .site-header .brand-wordmark {
    font-size: 16px;
  }
}
.g7-topnav {
  z-index: 120;
  color: #fff;
  height: 40px;
  font-family: var(--font-onest, var(--font-manrope), Arial, sans-serif);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}
.g7-strip {
  background: #0e201b;
  border-bottom: 1px solid #50e0cd33;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  height: 40px;
  padding: 0 max(20px, 50vw - 720px);
  display: flex;
  box-shadow: 0 5px 20px #0000001f;
}
.g7-toggle {
  color: #fff;
  cursor: pointer;
  letter-spacing: 0.01em;
  background: 0 0;
  border: 0;
  align-items: center;
  gap: 9px;
  height: 40px;
  padding: 0;
  font-size: 14px;
  font-weight: 700;
  display: flex;
}
.g7-mark {
  color: #5ee9d8;
  border: 1px solid #2ad7c2;
  border-radius: 50%;
  place-items: center;
  width: 25px;
  height: 25px;
  font-size: 14px;
  font-weight: 900;
  display: grid;
}
.g7-chevron {
  color: #60e4d3;
  transition: transform 0.2s;
}
.g7-chevron .lucide-icon {
  width: 16px;
  height: 16px;
}
.g7-chevron.open {
  transform: rotate(180deg);
}
.g7-quicklinks {
  align-items: center;
  gap: 5px;
  display: flex;
}
.g7-quicklinks a {
  color: #ffffffb8;
  border: 1px solid #0000;
  border-radius: 3px;
  align-items: center;
  gap: 6px;
  height: 30px;
  padding: 0 8px;
  font-size: 14px;
  font-weight: 750;
  display: flex;
}
.g7-quicklinks a:hover,
.g7-quicklinks a[aria-current="page"] {
  color: #fff;
  background: #ffffff12;
  border-color: #ffffff2e;
}
.g7-quicklinks i {
  border-radius: 50%;
  width: 7px;
  height: 7px;
}
.g7-tone-platform {
  background: #17cabb;
}
.g7-tone-fin {
  background: #d55a6e;
}
.g7-tone-model {
  background: #4bbcea;
}
.g7-tone-cbam {
  background: #a96d44;
}
.g7-tone-market {
  background: #43a873;
}
.g7-panel {
  z-index: 119;
  justify-content: center;
  align-items: flex-start;
  padding: 18px;
  display: flex;
  position: fixed;
  inset: 40px 0 0;
}
.g7-backdrop {
  -webkit-backdrop-filter: blur(7px);
  backdrop-filter: blur(7px);
  background: #0d0d0dc2;
  border: 0;
  position: absolute;
  inset: 0;
}
.g7-surface {
  color: #fff;
  background: linear-gradient(150deg, #08281ff2, #0e201b);
  border: 1px solid #53decd47;
  width: min(680px, 100%);
  max-height: calc(100vh - 76px);
  position: relative;
  overflow: auto;
  box-shadow: 0 32px 100px #0000006b;
}
.g7-panel-head {
  background: #0000001a;
  border-bottom: 1px solid #ffffff1f;
  grid-template-columns: 1fr 1fr 38px;
  align-items: center;
  gap: 22px;
  min-height: 92px;
  padding: 18px 20px;
  display: grid;
}
.g7-panel-head small {
  color: #58dfcf;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 14px;
  display: block;
}
.g7-panel-head h2 {
  color: #fff;
  margin: 4px 0 0;
  font-size: 25px;
  line-height: 1.1;
}
.g7-panel-head p {
  color: #ffffff9e;
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
}
.g7-panel-head > button {
  color: #fff;
  cursor: pointer;
  background: 0 0;
  border: 1px solid #fff3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
}
.g7-panel-head > button .lucide-icon {
  width: 18px;
  height: 18px;
}
.g7-stage {
  width: min(600px, 100%);
  height: 425.25px;
  margin: auto;
  position: relative;
}
.g7-ring {
  z-index: 0;
  pointer-events: none;
  border: 1px solid #3bd5c445;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.g7-ring-inner {
  width: 220.5px;
  height: 220.5px;
}
.g7-ring-outer {
  border-style: dashed;
  width: 357px;
  height: 357px;
}
.g7-links {
  z-index: 1;
  pointer-events: none;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}
.g7-links line {
  fill: none;
  stroke: #397cff;
  stroke-width: 1.15px;
  vector-effect: non-scaling-stroke;
}
.g7-product-links {
  opacity: 0.62;
}
.g7-registry-links {
  opacity: 0.95;
}
.g7-node {
  z-index: 3;
  color: #fff;
  text-align: center;
  border-radius: 100px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  transition:
    filter 0.2s,
    border-color 0.2s,
    box-shadow 0.2s;
  display: flex;
  position: absolute;
  box-shadow: 0 12px 30px #0000003d;
}
.g7-node:hover,
.g7-node:focus-visible {
  filter: brightness(1.12);
  border-color: #fff;
  outline: none;
  box-shadow:
    0 0 0 5px #ffffff1f,
    0 16px 36px #0000004d;
}
.g7-node b {
  letter-spacing: 0.02em;
  line-height: 1;
}
.g7-node small {
  color: #ffffffc7;
  margin-top: 6px;
  line-height: 1.08;
}
.g7-core {
  background: linear-gradient(145deg, #008f8c, #005c62);
  border: 1px solid #1ee2cf;
  width: 129.8px;
  height: 129.8px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.g7-core b {
  letter-spacing: -0.06em;
  font-size: 34px;
}
.g7-core small {
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #80e5dc;
  font-size: 10px;
}
.g7-product {
  border: 2px solid #0000;
  width: 90.2px;
  height: 90.2px;
  transform: translate(-50%, -50%);
}
.g7-product b {
  font-size: 14px;
}
.g7-product small {
  font-size: 14px;
}
.g7-platform {
  background: linear-gradient(145deg, #00aaa7, #007276);
  border-color: #1ce3d0;
  top: calc(50% - 55.125px);
  left: calc(50% - 169.785px);
}
.g7-fin {
  background: linear-gradient(145deg, #b84559, #7b2436);
  border-color: #ef8695;
  top: calc(50% - 55.125px);
  left: calc(50% + 169.785px);
}
.g7-model {
  background: linear-gradient(145deg, #42b2dd, #217ca7);
  border-color: #89d8f6;
  top: calc(50% + 144.375px);
  left: calc(50% - 104.895px);
}
.g7-cbam {
  background: linear-gradient(145deg, #8e6242, #5c3925);
  border-color: #c79a76;
  top: calc(50% + 144.375px);
  left: calc(50% + 104.895px);
}
.g7-market {
  background: linear-gradient(145deg, #319b68, #176443);
  border-color: #75c996;
  top: calc(50% - 178.5px);
  left: 50%;
}
.g7-market b {
  font-size: 14px;
}
.g7-product.current {
  box-shadow:
    0 0 0 6px #fff3,
    0 0 0 9px #24dcc93d,
    0 16px 38px #0000004d;
}
.g7-registry {
  background: linear-gradient(145deg, #285d68, #173b45);
  border: 1px solid #65b5bd;
  width: 70.4px;
  height: 70.4px;
  transform: translate(-50%, -50%);
}
.g7-registry b {
  font-size: 14px;
}
.g7-registry small {
  max-width: 54px;
  font-size: 10px;
}
.g7-registry-claims {
  top: calc(50% - 89.145px);
  left: calc(50% + 64.785px);
}
.g7-registry-projects {
  top: calc(50% + 34.02px);
  left: calc(50% - 104.895px);
}
.g7-panel-foot {
  color: #ffffff8c;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-top: 1px solid #ffffff1a;
  align-items: center;
  gap: 24px;
  min-height: 48px;
  padding: 12px 20px;
  font-size: 12px;
  display: flex;
}
.g7-panel-foot span {
  align-items: center;
  gap: 7px;
  display: flex;
}
.g7-panel-foot i {
  background: #39d6c5;
  border-radius: 50%;
  width: 6px;
  height: 6px;
}
@media (width<=720px) {
  .g7-strip {
    padding: 0 14px;
  }
  .g7-toggle {
    font-size: 14px;
  }
  .g7-quicklinks {
    display: none;
  }
  .g7-panel {
    padding: 0;
  }
  .g7-surface {
    border-left: 0;
    border-right: 0;
    width: 100%;
    max-height: calc(100vh - 40px);
  }
  .g7-panel-head {
    grid-template-columns: 1fr 38px;
    gap: 10px;
    padding: 14px 16px;
  }
  .g7-panel-head p {
    grid-area: 2/1 / auto/-1;
  }
  .g7-panel-head > button {
    grid-area: 1/2;
  }
  .g7-stage {
    height: 351.75px;
  }
  .g7-ring-inner {
    width: 180.6px;
    height: 180.6px;
  }
  .g7-ring-outer {
    width: 291.9px;
    height: 291.9px;
  }
  .g7-core {
    width: 105.6px;
    height: 105.6px;
  }
  .g7-core b {
    font-size: 28px;
  }
  .g7-product {
    width: 70.4px;
    height: 70.4px;
  }
  .g7-product b {
    font-size: 14px;
  }
  .g7-product small {
    font-size: 10px;
  }
  .g7-platform {
    top: calc(50% - 45.15px);
    left: calc(50% - 138.81px);
  }
  .g7-fin {
    top: calc(50% - 45.15px);
    left: calc(50% + 138.81px);
  }
  .g7-model {
    top: calc(50% + 118.125px);
    left: calc(50% - 85.785px);
  }
  .g7-cbam {
    top: calc(50% + 118.125px);
    left: calc(50% + 85.785px);
  }
  .g7-market {
    top: calc(50% - 145.95px);
  }
  .g7-registry {
    width: 55px;
    height: 55px;
  }
  .g7-registry b {
    font-size: 14px;
  }
  .g7-registry small {
    font-size: 10px;
  }
  .g7-registry-claims {
    top: calc(50% - 73.08px);
    left: calc(50% + 53.025px);
  }
  .g7-registry-projects {
    top: calc(50% + 27.93px);
    left: calc(50% - 85.89px);
  }
  .g7-panel-foot {
    flex-wrap: wrap;
    gap: 10px;
  }
}
@media (width<=360px) {
  .g7-toggle > span:nth-child(2) {
    font-size: 14px;
  }
  .g7-stage {
    height: 300.3px;
  }
  .g7-ring-inner {
    width: 151.2px;
    height: 151.2px;
  }
  .g7-ring-outer {
    width: 247.8px;
    height: 247.8px;
  }
  .g7-core {
    width: 92.4px;
    height: 92.4px;
  }
  .g7-core b {
    font-size: 25px;
  }
  .g7-product {
    width: 57.2px;
    height: 57.2px;
  }
  .g7-product b {
    font-size: 14px;
  }
  .g7-platform {
    top: calc(50% - 38.325px);
    left: calc(50% - 117.81px);
  }
  .g7-fin {
    top: calc(50% - 38.325px);
    left: calc(50% + 117.81px);
  }
  .g7-model {
    top: calc(50% + 100.275px);
    left: calc(50% - 72.87px);
  }
  .g7-cbam {
    top: calc(50% + 100.275px);
    left: calc(50% + 72.87px);
  }
  .g7-market {
    top: calc(50% - 123.9px);
  }
  .g7-registry {
    width: 46.2px;
    height: 46.2px;
  }
  .g7-registry-claims {
    top: calc(50% - 61.11px);
    left: calc(50% + 44.415px);
  }
  .g7-registry-projects {
    top: calc(50% + 23.415px);
    left: calc(50% - 71.925px);
  }
}
body {
  padding-top: 40px;
}
:root {
  --header-height: 76px;
}
.site-header {
  height: 76px;
  top: 40px;
}
@media (width<=720px) {
  :root {
    --header-height: 68px;
  }
  .site-header {
    height: 68px;
    top: 40px;
  }
}
:root {
  --header-height: 76px;
  --topbar-height: 76px;
}
.site-header,
.site-header .topbar {
  height: 76px;
}
.site-header .brand-symbol {
  background: #00182d url(../images/7g-symbol.png) 50% / cover no-repeat;
  flex: 0 0 54px;
  width: 54px;
  height: 36px;
}
.site-header .brand-symbol img {
  display: none;
}
.site-header .brand-wordmark,
.site-header .desktop-nav a,
.site-header .search-trigger,
.site-header .login-button,
.site-header .mobile-nav a {
  font-size: 16px;
}
@media (width<=720px) {
  :root {
    --header-height: 68px;
    --topbar-height: 68px;
  }
  .site-header,
  .site-header .topbar {
    height: 68px;
  }
  .site-header .brand-symbol {
    flex-basis: 48px;
    width: 48px;
    height: 32px;
  }
  .site-header .brand-wordmark {
    font-size: 14px;
  }
}
.standards-summary {
  max-width: var(--max);
  background: #fff;
  border: 1px solid var(--line);
  grid-template-columns: repeat(4, 1fr);
  margin: 28px auto;
  display: grid;
}
.standards-summary article {
  border-right: 1px solid var(--line);
  flex-direction: column;
  justify-content: center;
  min-height: 112px;
  padding: 22px;
  display: flex;
}
.standards-summary article:last-child {
  border-right: 0;
}
.standards-summary b {
  color: var(--green);
  font-size: 26px;
  line-height: 1.15;
}
.standards-summary span {
  color: var(--muted);
  margin-top: 7px;
  font-size: 14px;
}
.standard-card-head {
  align-items: flex-start;
}
.standard-state {
  background: #e5f4ea;
  border-radius: 100px;
  align-items: center;
  min-height: 25px;
  padding: 2px 9px;
  font-style: normal;
  font-weight: 800;
  color: #19653f !important;
  font-size: 14px !important;
  display: inline-flex !important;
}
.standard-state.transition {
  background: #fff1cf;
  color: #875b00 !important;
}
.standard-version {
  border-bottom: 1px solid var(--line);
  justify-content: space-between;
  align-items: end;
  gap: 15px;
  margin: 48px 0 16px;
  padding-bottom: 14px;
  display: flex;
}
.standard-version b {
  color: var(--ink);
  font-size: 14px;
}
.standard-version small {
  color: var(--muted);
  font-size: 14px;
}
.standards-grid h2 {
  margin: 0 0 12px;
}
.standards-grid > a {
  min-height: 410px;
}
.standards-watch {
  background: #fff6dd;
  border: 1px solid #d9b85e;
  margin-top: 18px;
  padding: 32px;
}
.standards-watch h3 {
  margin: 10px 0 5px;
  font-size: 20px;
}
.standards-watch p {
  color: var(--muted);
  margin: 0;
  font-size: 14px;
}
.project-records,
.unit-records {
  gap: 14px;
  display: grid;
}
.project-records > article,
.unit-records > article {
  border: 1px solid var(--line);
  background: #fff;
  padding: 28px;
}
.project-records header,
.unit-records header {
  border-bottom: 1px solid var(--line);
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  padding-bottom: 22px;
  display: flex;
}
.project-records header small,
.unit-records header small {
  color: var(--green);
  font-size: 14px;
  font-weight: 800;
}
.project-records header h3,
.unit-records header h3 {
  margin: 5px 0 0;
  font-size: 24px;
  line-height: 1.25;
}
.project-records header > span,
.unit-records header > span {
  white-space: nowrap;
  font-size: 14px;
  font-weight: 800;
}
.project-primary,
.unit-primary {
  border-bottom: 1px solid var(--line);
  grid-template-columns: repeat(4, 1fr);
  display: grid;
}
.project-primary > div,
.unit-primary > div {
  flex-direction: column;
  gap: 7px;
  min-height: 98px;
  padding: 20px 20px 20px 0;
  display: flex;
}
.project-primary small,
.unit-primary small,
.ccp-levels small {
  color: var(--muted);
  font-size: 14px;
}
.project-primary b,
.unit-primary b {
  font-size: 14px;
  line-height: 1.4;
}
.record-details {
  border-top: 1px solid var(--line);
  margin: 0;
  padding: 0;
  margin-top: 28px;
}
.record-details li {
  border-bottom: 1px solid var(--line);
  justify-content: space-between;
  gap: 20px;
  padding: 12px 0;
  font-size: 14px;
  display: flex;
}
.record-details .label {
  color: var(--muted);
}
.record-details .value {
  text-align: right;
  margin: 0;
  font-weight: 800;
}
.article-six-details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 0;
  padding-bottom: 18px;
  border-top: none;
}
.article-six-details li {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0;
  padding: 20px 20px 0 0;
  border-bottom: none;
}
.article-six-details .label {
  color: var(--green);
  font-size: 14px;
  font-weight: 800;
}
.article-six-details .value {
  text-align: left;
  margin: 7px 0 0;
  font-size: 14px;
  line-height: 1.45;
}
.ccp-levels {
  background: #edf5ee;
  grid-template-columns: 1fr 28px 1fr 28px 1fr;
  align-items: center;
  padding: 18px;
  display: grid;
}
.ccp-levels > div {
  flex-direction: column;
  gap: 5px;
  display: flex;
}
.ccp-levels > span {
  text-align: center;
  color: var(--green);
}
.ccp-levels > span .lucide-icon {
  width: 18px;
  height: 18px;
}
.ccp-levels b {
  font-size: 14px;
}
.claim-grid article {
  flex-direction: column;
  min-height: 465px;
  display: flex;
}
.claim-grid article.claim-blocked {
  background: snow;
  border-color: #d99a9a;
}
.claim-grid h3 {
  margin: 54px 0 10px;
}
.claim-checks {
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 22px;
  display: flex;
}
.claim-checks span {
  border-radius: 100px;
  padding: 6px 9px;
  font-size: 14px;
  font-weight: 800;
}
.claim-checks .passed {
  color: #19653f;
  background: #e5f4ea;
}
.claim-checks .failed {
  color: #9c3434;
  background: #fbe5e5;
}
.claim-checks .passed span,
.claim-checks .failed span {
  padding: 0;
  border-radius: 0;
}
.claim-checks .lucide-icon {
  width: 14px;
  height: 14px;
}
.publication-gate {
  color: var(--green);
  margin-top: auto;
  padding-top: 18px;
  font-size: 14px;
}
.claim-blocked .publication-gate {
  color: #9c3434;
}
@media (width<=1000px) {
  .standards-summary {
    grid-template-columns: repeat(2, 1fr);
  }
  .standards-summary article:nth-child(2) {
    border-right: 0;
  }
  .standards-summary article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }
  .project-primary,
  .unit-primary,
  .record-details {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (width<=760px) {
  .standards-summary {
    grid-template-columns: 1fr;
  }
  .standards-summary article {
    border-right: 0;
    min-height: 88px;
    border-bottom: 1px solid var(--line) !important;
  }
  .standards-summary article:last-child {
    border-bottom: 0 !important;
  }
  .standards-grid > a {
    min-height: 360px;
  }
  .project-records > article,
  .unit-records > article {
    padding: 20px;
  }
  .project-records header,
  .unit-records header {
    flex-direction: column;
  }
  .project-primary,
  .unit-primary,
  .record-details,
  .article-six-details {
    grid-template-columns: 1fr;
  }
  .project-primary > div,
  .unit-primary > div {
    border-bottom: 1px solid var(--line);
    min-height: auto;
    padding: 14px 0;
  }
  .record-details > div {
    padding: 16px 0 0;
  }
  .ccp-levels {
    grid-template-columns: 1fr;
  }
  .ccp-levels > span {
    transform: rotate(90deg);
  }
  .claim-grid article {
    min-height: 430px;
  }
}

[hidden] {
  display: none !important;
}
body.has-modal {
  overflow: hidden;
}
body {
  font-family: Arial, sans-serif;
}

.article-body {
  color: var(--ink);
  font-size: 17px;
  line-height: 1.8;
}
.article-body h1,
.article-body h2 {
  color: var(--ink);
  margin: 55px 0 18px;
  font-size: 34px;
  line-height: 1.2;
  letter-spacing: -0.035em;
}
.article-body h1:first-child,
.article-body h2:first-child {
  margin-top: 0;
}
.article-body h3 {
  color: var(--ink);
  margin: 42px 0 16px;
  font-size: 28px;
  line-height: 1.25;
  letter-spacing: -0.025em;
}
.article-body h4 {
  color: var(--ink);
  margin: 34px 0 14px;
  font-size: 22px;
  line-height: 1.3;
}
.article-body p {
  margin: 0 0 22px;
}
.article-body a {
  color: var(--green);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.article-body a:hover {
  color: var(--green-deep);
}
.article-body a:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 3px;
}
.article-body ul,
.article-body ol {
  margin: 0 0 24px;
  padding-left: 28px;
}
.article-body li {
  margin-bottom: 8px;
}
.article-body li::marker {
  color: var(--green);
  font-weight: 700;
}
.article-body li > ul,
.article-body li > ol {
  margin: 8px 0 0;
}
.article-body blockquote {
  color: var(--green-deep);
  border-left: 4px solid var(--green);
  background: #e8f1eb;
  margin: 32px 0;
  padding: 22px 26px;
}
.article-body blockquote > :last-child {
  margin-bottom: 0;
}
.article-body figure {
  margin: 34px 0;
}
.article-body img {
  max-width: 100%;
  height: auto;
}
.article-body figcaption,
.article-body .wp-element-caption {
  color: var(--muted);
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.5;
}
.article-body pre {
  color: #fff;
  background: var(--green-dark);
  max-width: 100%;
  margin: 30px 0;
  padding: 22px 24px;
  line-height: 1.6;
  overflow-x: auto;
}
.article-body code {
  color: var(--green-deep);
  background: #e8f1eb;
  padding: 2px 6px;
  font-size: 0.9em;
}
.article-body pre code {
  color: inherit;
  background: transparent;
  padding: 0;
}
.article-body hr {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 42px 0;
}
.article-body .wp-block-table {
  max-width: 100%;
  margin: 32px 0;
  overflow-x: auto;
}
.article-body .wp-block-table table,
.article-body > table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
}
.article-body > table {
  display: block;
  margin: 32px 0;
  overflow-x: auto;
}
.article-body th,
.article-body td {
  border: 1px solid var(--line);
  padding: 13px 16px;
  text-align: left;
  vertical-align: top;
}
.article-body th {
  color: var(--green-deep);
  background: #e8f1eb;
  font-weight: 700;
}
.text-page-content {
  max-width: 100%;
  margin: 0 auto;
}
.text-page-content > :last-child {
  margin-bottom: 0;
}

/* Polylang language switchers */
.carbon-language-switcher {
  flex: none;
  color: #fff;
  position: relative;
}
.carbon-language-switcher details {
  position: relative;
}
.carbon-language-switcher summary {
  cursor: pointer;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 8px 10px;
  color: #fff;
  background: #ffffff0f;
  border: 1px solid #ffffff2e;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  list-style: none;
  display: flex;
}
.carbon-language-switcher summary::-webkit-details-marker {
  display: none;
}
.carbon-language-switcher summary:hover,
.carbon-language-switcher details[open] summary {
  background: #ffffff1a;
  border-color: var(--mint, #8ae0ba);
}
.carbon-language-switcher__flag {
  align-items: center;
  display: inline-flex;
}
.carbon-language-switcher__flag svg {
  display: block;
  width: 20px;
  height: 14px;
  border-radius: 3px;
}
.carbon-language-switcher__chevron {
  width: 14px;
  height: 14px;
  transition: transform 0.2s ease;
}
.carbon-language-switcher details[open] .carbon-language-switcher__chevron {
  transform: rotate(180deg);
}
.carbon-language-switcher__menu {
  min-width: 86px;
  min-width: 100%;
  padding: 6px;
  background: var(--green-dark, #08281f);
  border: 1px solid #ffffff24;
  border-radius: 4px;
  box-shadow: 0 18px 36px #00141152;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 50;
}
.carbon-language-switcher__option {
  align-items: center;
  gap: 9px;
  min-height: 36px;
  padding: 8px 9px;
  color: #ffffffb8;
  border-radius: 3px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  display: flex;
}
.carbon-language-switcher__option:hover,
.carbon-language-switcher__option.is-current {
  color: #fff;
  background: #ffffff14;
}
.footer-language-switcher {
  align-items: center;
  gap: 9px;
  white-space: nowrap;
  display: flex;
}
.footer-language-switcher a {
  color: #ffffffa6;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-decoration: none;
}
.footer-language-switcher a:hover,
.footer-language-switcher a[aria-current="page"] {
  color: var(--mint, #8ae0ba);
}
@media (width<=1100px) {
  .carbon-language-switcher_header {
    margin-left: 0;
  }
}
@media (width<=760px) {
  .carbon-language-switcher summary {
    min-height: 42px;
    padding: 8px;
  }
  .carbon-language-switcher__code {
    font-size: 14px;
  }
}
@media (width<=390px) {
  .carbon-language-switcher summary {
    gap: 5px;
    padding: 7px;
  }
  .carbon-language-switcher__flag svg {
    width: 18px;
    height: 13px;
  }
  .carbon-language-switcher__chevron {
    width: 12px;
    height: 12px;
  }
  .carbon-language-switcher__menu {
    right: -4px;
  }
}
@media (width<=360px) {
  .carbon-language-switcher summary {
    gap: 4px;
    padding: 7px 6px;
  }
  .carbon-language-switcher__code {
    font-size: 14px;
  }
}

@media (width<=760px) {
  .article-body {
    font-size: 16px;
  }
  .article-body h1,
  .article-body h2 {
    font-size: 29px;
  }
}
