@font-face {
  font-family: Manrope;
  src: url("./manrope-regular.ttf");
  font-weight: 400 500;
  font-display: swap;
}
@font-face {
  font-family: Manrope;
  src: url("./manrope-bold.ttf");
  font-weight: 600 800;
  font-display: swap;
}
:root {
  --dark: #111b17;
  --paper: #f3f3eb;
  --lime: #d7f87b;
  --muted: #b8c7b4;
  --line: #3c4c3f;
  --ink: #17231b;
  --mono: Consolas, "SFMono-Regular", monospace;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 28px;
}
body {
  margin: 0;
  font:
    16px/1.75 Manrope,
    "Segoe UI",
    sans-serif;
  background: var(--dark);
  color: var(--paper);
  -webkit-font-smoothing: antialiased;
}
h1,
h2,
h3,
p,
figure {
  margin: 0;
}
h1,
h2,
h3 {
  font-weight: 700;
  line-height: 1.16;
  letter-spacing: -0.045em;
}
h1 {
  font-size: clamp(48px, 5.4vw, 78px);
  line-height: 1.04;
  letter-spacing: -0.065em;
}
h2 {
  font-size: clamp(32px, 3.2vw, 46px);
}
h3 {
  font-size: 27px;
}
em {
  font-style: normal;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
  cursor: pointer;
}
a:focus-visible,
button:focus-visible {
  outline: 3px solid #87b148;
  outline-offset: 5px;
}
img {
  display: block;
  max-width: 100%;
}
.wrap {
  width: min(1280px, calc(100% - 112px));
  margin-inline: auto;
}
.skip {
  position: absolute;
  left: 20px;
  top: -100px;
  background: var(--lime);
  color: var(--ink);
  padding: 10px;
  z-index: 5;
}
.skip:focus {
  top: 12px;
}
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-block: 26px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.brand span {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.13em;
}
header nav {
  display: flex;
  gap: 30px;
  font-size: 14px;
  color: #c5d0bd;
}
header nav a:hover,
.text-link:hover {
  color: var(--lime);
}
.header-right {
  display: flex;
  gap: 30px;
  align-items: center;
}
.languages {
  display: flex;
  gap: 6px;
  align-items: center;
  color: #90a087;
  font: 14px var(--mono);
}
.languages a {
  font: 14px var(--mono);
  min-height: 44px;
  min-width: 29px;
  border: 0;
  background: none;
  color: #aebda3;
}
.languages a[aria-current="page"] {
  color: var(--lime);
}
.header-contact {
  font-size: 14px;
  padding-bottom: 3px;
  border-bottom: 1px solid #708463;
}
.hero {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 85px;
  align-items: center;
  padding-block: 58px 66px;
}
.eyebrow {
  font: 14px/1.6 var(--mono);
  letter-spacing: 0.045em;
  color: #b7caa6;
}
.hero .eyebrow {
  display: flex;
  gap: 10px;
  align-items: center;
  max-width: 470px;
}
.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
  flex: none;
}
.hero h1 {
  margin-top: 23px;
}
.hero h1 > span,
.hero h1 > em {
  display: block;
}
.hero h1 > em {
  color: var(--lime);
}
.lead {
  font-size: 18px;
  color: #c0ccba;
  max-width: 560px;
  line-height: 1.8;
  margin-top: 27px;
}
.actions {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 32px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 31px;
  border-radius: 3px;
  padding: 14px 21px;
  min-height: 54px;
  background: var(--lime);
  color: var(--ink);
  font-weight: 700;
  font-size: 16px;
}
.button:hover {
  background: #e6ffad;
}
.button > span:last-child {
  font-size: 21px;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  font-size: 16px;
}
.hero-note {
  font-size: 14px;
  color: #9faf95;
  margin-top: 25px;
}
.system-map {
  padding: 24px;
  border: 1px solid #526345;
  background: linear-gradient(135deg, #25372a, #18251c);
  border-radius: 5px;
}
.map-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  font: 14px var(--mono);
  color: #becdae;
  margin-bottom: 24px;
}
.map-heading > span:last-child {
  font-size: 22px;
  color: var(--lime);
}
.map-source {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid #506644;
  border-bottom: 1px solid #506644;
  padding: 18px 0;
}
.micro {
  display: block;
  font: 14px/1.6 var(--mono);
  color: #a7bb96;
}
.map-source strong {
  display: block;
  font-size: 16px;
  line-height: 1.5;
  margin-top: 5px;
}
.bracket {
  font: 29px var(--mono);
  color: #829b6c;
  white-space: nowrap;
}
.map-line {
  height: 31px;
  width: 1px;
  background: #8da669;
  margin-inline: auto;
}
.engineering {
  border: 1px solid var(--lime);
  background: #d7f87b0b;
}
.engineering > div:first-child {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 17px;
  font-size: 18px;
  font-weight: 700;
}
.map-number {
  font-size: 26px;
  line-height: 1;
  color: var(--lime);
  letter-spacing: -0.07em;
}
.engineering-parts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #60784a;
  font-size: 14px;
}
.engineering-parts span {
  text-align: center;
  padding: 11px 2px;
}
.engineering-parts span + span {
  border-left: 1px solid #526442;
}
.pipeline {
  display: flex;
  align-items: center;
  gap: 11px;
  border: 1px solid #587045;
  padding: 14px 16px;
  background: #17241b;
  font-weight: 700;
}
.pipeline-dot {
  height: 8px;
  width: 8px;
  background: var(--lime);
  border-radius: 50%;
  flex: none;
}
.pipeline-flow {
  margin-left: auto;
  font: 14px/1.6 var(--mono);
  color: #bacaab;
}
.map-branch {
  height: 34px;
  width: 67%;
  margin-inline: auto;
  position: relative;
  border-top: 1px solid #6c8652;
  transform: translateY(17px);
  background: linear-gradient(#6c8652, #6c8652) center 0/1px 17px no-repeat;
}
.map-branch:before,
.map-branch:after {
  content: "";
  position: absolute;
  top: 0;
  height: 17px;
  width: 1px;
  background: #6c8652;
}
.map-branch:before {
  left: 0;
}
.map-branch:after {
  right: 0;
}
.destinations {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}
.destinations > div {
  border: 1px solid #4e6440;
  background: #1a2b20;
  min-height: 83px;
  padding: 12px 3px;
  text-align: center;
}
.destination-sign {
  display: block;
  font: 14px var(--mono);
  color: #91aa78;
  margin-bottom: 8px;
}
.destinations strong {
  display: block;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
}
.system-map figcaption {
  font-size: 14px;
  line-height: 1.6;
  color: #aabf9b;
  margin-top: 21px;
}
.discipline-strip {
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  padding-block: 27px 36px;
}
.discipline-strip > span {
  font: 14px var(--mono);
  color: #9daf94;
}
.discipline-strip > p {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
  font-size: 16px;
}
.discipline-strip i {
  font-style: normal;
  color: #607755;
}
.expertise {
  background: var(--paper);
  color: var(--ink);
  padding-block: 84px 87px;
}
.section-head {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 38px;
  align-items: start;
}
.section-head > .eyebrow {
  padding-top: 7px;
}
.expertise .eyebrow,
.practice .eyebrow {
  color: #526343;
}
.section-lead {
  font-size: 18px;
  line-height: 1.8;
  margin-top: 23px;
  max-width: 735px;
  color: #54624d;
}
.service-list {
  margin-top: 50px;
}
.service-list article {
  border-top: 1px solid #c1caba;
  padding: 30px 0;
  display: grid;
  grid-template-columns: 0.23fr 1fr 1.6fr 30px;
  gap: 33px;
  align-items: start;
}
.service-list article:last-child {
  padding-bottom: 0;
}
.service-number {
  font: 14px var(--mono);
  color: #60704f;
  padding-top: 7px;
}
.service-list h3 {
  font-size: 27px;
}
.service-list article > div > p {
  color: #52604b;
  font-size: 16px;
}
.service-list article > div > .service-tags {
  margin-top: 15px;
  font: 14px/1.8 var(--mono);
  color: #60704f;
}
.service-arrow {
  font-size: 25px;
  color: #69884a;
  text-align: right;
  line-height: 1.4;
}
.deployment {
  display: grid;
  grid-template-columns: 1fr 1.13fr;
  gap: 86px;
  padding-block: 88px;
  align-items: center;
}
.deployment h2 {
  margin-top: 22px;
  font-size: 41px;
}
.deployment-copy > p:not(.eyebrow) {
  color: #c0cbb9;
  margin-top: 24px;
  line-height: 1.8;
}
.deployment-copy > .quiet-note {
  font-size: 14px;
  color: #9eaf93 !important;
}
.deployment-selector {
  border: 1px solid #536646;
  border-radius: 4px;
  background: #1b2a20;
  min-width: 0;
}
.deployment-detail {
  padding: 29px 28px 27px;
  min-height: 320px;
}
.deployment-detail h3 {
  font-size: 28px;
  margin-top: 17px;
  line-height: 1.25;
}
.deployment-detail > p {
  font-size: 16px;
  line-height: 1.8;
  color: #b6c6a9;
  margin-top: 18px;
  min-height: 86px;
}
.deployment-flow {
  margin-top: 24px;
  border-top: 1px solid #425835;
  padding-top: 19px;
  font: 14px/1.6 var(--mono);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 13px;
  color: #c5d6b1;
}
.deployment-flow b {
  font-weight: 400;
  color: #8fa773;
}
.practice {
  background: #e3e9da;
  color: var(--ink);
  padding-block: 80px;
}
.practice-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 55px;
  margin-top: 45px;
}
.lab-example {
  border: 1px solid #aebfa0;
  background: #f4f7ed;
  padding: 28px;
}
.example-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.practice .micro {
  color: #526343;
}
.example-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #607f3a;
  flex: none;
}
.lab-example h3 {
  font-size: 42px;
  margin-top: 23px;
  letter-spacing: -0.055em;
}
.practice article > p {
  font-size: 16px;
  color: #536348;
  margin-top: 21px;
  line-height: 1.8;
}
.lab-chain {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  border-top: 1px solid #c4cfb9;
  border-bottom: 1px solid #c4cfb9;
  padding-block: 15px;
  margin-top: 26px;
  font: 14px var(--mono);
  color: #42602b;
}
.example-foot {
  display: block;
  font: 14px/1.7 var(--mono);
  color: #62754e;
  margin-top: 20px;
}
.model-example {
  padding-top: 7px;
}
.model-example h3 {
  font-size: 29px;
  margin-top: 24px;
  line-height: 1.3;
}
.model-example > .model-principle {
  color: #263d1b;
}
.model-example > .example-foot {
  font:
    14px/1.8 Manrope,
    sans-serif;
  color: #526343;
  border-top: 1px solid #bdcbb1;
  padding-top: 18px;
  margin-top: 24px;
}
.approach {
  padding-block: 80px;
}
.approach-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px;
  margin-top: 48px;
}
.approach-steps article {
  border-top: 1px solid #506245;
  padding-top: 20px;
}
.approach-steps article > span {
  font: 14px var(--mono);
  color: #acbf96;
}
.approach-steps h3 {
  font-size: 26px;
  margin-top: 19px;
}
.approach-steps p {
  font-size: 16px;
  color: #b1c2a6;
  margin-top: 17px;
  line-height: 1.8;
}
.contact-section {
  background: #203123;
  padding-block: 66px 70px;
}
.contact-section > .wrap {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
}
.contact-section h2 {
  font-size: 47px;
  margin-top: 21px;
}
.contact-section .wrap > div + div {
  padding-top: 7px;
}
.contact-section p:not(.eyebrow) {
  font-size: 18px;
  color: #c4d0b8;
  line-height: 1.8;
}
.contact-section .button {
  margin-top: 25px;
}
.contact-section .company {
  font-size: 14px !important;
  color: #aabc99 !important;
  margin-top: 19px;
}
footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  padding-block: 31px;
}
footer > p {
  color: #a5b89a;
  font-size: 14px;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  font-size: 14px;
  color: #bfccb4;
}
@media (max-width: 1180px) {
  .wrap {
    width: calc(100% - 64px);
  }
  .hero {
    gap: 45px;
  }
  .hero h1 {
    font-size: 58px;
  }
  .hero .lead {
    font-size: 16px;
  }
  .hero .text-link {
    font-size: 14px;
  }
  .actions {
    gap: 23px;
  }
  .hero-note {
    max-width: 380px;
  }
  .header-right {
    gap: 20px;
  }
  header nav {
    gap: 19px;
  }
  .service-list article {
    gap: 23px;
    grid-template-columns: 0.18fr 1fr 1.6fr 25px;
  }
  .deployment {
    gap: 45px;
  }
  .deployment h2 {
    font-size: 36px;
  }
  .deployment-detail {
    padding: 24px;
  }
  .pipeline {
    flex-wrap: wrap;
    gap: 8px;
  }
  .pipeline-flow {
    font-size: 14px;
  }
  .practice-grid {
    gap: 35px;
  }
  .contact-section h2 {
    font-size: 40px;
  }
  .contact-section > .wrap {
    gap: 45px;
  }
  .map-source strong {
    font-size: 16px;
  }
  .system-map {
    padding: 20px;
  }
}
@media (max-width: 900px) {
  header > nav {
    display: none;
  }
  .hero {
    gap: 30px;
    grid-template-columns: 1.05fr 1fr;
    padding-top: 38px;
  }
  .hero h1 {
    font-size: 48px;
  }
  .system-map {
    padding: 17px;
  }
  .engineering > div:first-child {
    font-size: 16px;
    gap: 12px;
    padding: 15px 12px;
  }
  .map-number {
    font-size: 24px;
  }
  .engineering-parts span {
    font-size: 14px;
  }
  .pipeline-flow {
    margin-left: 0;
    width: 100%;
    padding-left: 19px;
  }
  .bracket {
    display: none;
  }
  .map-source {
    padding-block: 15px;
  }
  .section-head {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .section-head h2 {
    font-size: 37px;
  }
  .section-lead {
    font-size: 16px;
  }
  .discipline-strip {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  .discipline-strip > p {
    gap: 20px;
  }
  .service-list article {
    grid-template-columns: 30px 1fr 1.45fr;
    gap: 20px;
  }
  .service-arrow {
    display: none;
  }
  .service-list h3 {
    font-size: 24px;
  }
  .deployment {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .deployment-copy {
    max-width: 650px;
  }
  .deployment-detail {
    min-height: 280px;
  }
  .deployment-detail > p {
    min-height: 0;
  }
  .practice-grid {
    gap: 28px;
  }
  .model-example h3 {
    font-size: 26px;
  }
  .lab-example {
    padding: 23px;
  }
  .approach-steps {
    gap: 25px;
  }
  .contact-section > .wrap {
    gap: 35px;
  }
  footer {
    flex-wrap: wrap;
  }
}
@media (max-width: 700px) {
  .wrap {
    width: calc(100% - 40px);
  }
  header {
    padding-block: 20px;
  }
  .brand img {
    width: 46px;
    height: 34px;
  }
  .brand span {
    letter-spacing: 0.07em;
  }
  .brand {
    gap: 9px;
  }
  .header-contact {
    display: none;
  }
  .hero {
    grid-template-columns: 1fr;
    gap: 38px;
    padding-block: 30px 35px;
  }
  .hero h1 {
    font-size: clamp(45px, 11vw, 64px);
    margin-top: 20px;
  }
  .hero .lead {
    margin-top: 24px;
  }
  .hero .eyebrow {
    letter-spacing: 0.02em;
  }
  .hero .text-link {
    font-size: 16px;
  }
  .actions {
    margin-top: 25px;
    gap: 22px;
  }
  .hero-note {
    margin-top: 21px;
  }
  .system-map {
    padding: 21px;
    width: 100%;
    max-width: 530px;
    margin-inline: auto;
  }
  .engineering > div:first-child {
    font-size: 18px;
  }
  .pipeline-flow {
    width: auto;
    margin-left: auto;
    padding-left: 0;
  }
  .map-heading {
    margin-bottom: 19px;
  }
  .destinations > div {
    padding-inline: 2px;
  }
  .discipline-strip {
    padding-block: 23px 29px;
  }
  .discipline-strip > p {
    font-size: 14px;
    gap: 12px;
  }
  .expertise,
  .practice {
    padding-block: 52px;
  }
  .section-head h2 {
    font-size: 33px;
  }
  .service-list {
    margin-top: 32px;
  }
  .service-list article {
    grid-template-columns: 27px 1fr;
    gap: 17px;
    padding-block: 26px;
  }
  .service-list article > div {
    grid-column: 2;
  }
  .service-list h3 {
    font-size: 26px;
  }
  .service-list article > div > p {
    font-size: 16px;
  }
  .service-list h3 br {
    display: initial;
  }
  .service-list article > div > .service-tags {
    font-size: 14px;
  }
  .deployment,
  .approach {
    padding-block: 52px;
  }
  .deployment h2 {
    font-size: 34px;
  }
  .deployment-detail {
    padding: 25px 20px;
    min-height: 335px;
  }
  .deployment-detail h3 {
    font-size: 27px;
  }
  .deployment-flow {
    gap: 9px;
  }
  .practice-grid {
    grid-template-columns: 1fr;
    gap: 34px;
    margin-top: 32px;
  }
  .model-example {
    padding-top: 0;
  }
  .model-example h3 {
    font-size: 28px;
  }
  .lab-example h3 {
    font-size: 39px;
  }
  .approach-steps {
    grid-template-columns: 1fr;
    gap: 27px;
    margin-top: 32px;
  }
  .approach-steps h3 {
    margin-top: 13px;
  }
  .approach-steps p {
    margin-top: 12px;
  }
  .contact-section {
    padding-block: 48px;
  }
  .contact-section > .wrap {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .contact-section h2 {
    font-size: 36px;
  }
  .contact-section p:not(.eyebrow) {
    font-size: 16px;
  }
  .contact-section .wrap > div + div {
    padding-top: 0;
  }
  footer {
    gap: 20px;
    padding-block: 26px;
  }
  footer > p {
    order: 3;
    width: 100%;
  }
  footer nav {
    gap: 20px;
  }
  footer nav a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }
}
@media (max-width: 370px) {
  .wrap {
    width: calc(100% - 32px);
  }
  .hero h1 {
    font-size: 42px;
  }
  .hero .eyebrow {
    font-size: 14px;
    letter-spacing: 0;
  }
  .brand span {
    letter-spacing: 0;
  }
  .system-map {
    padding: 16px;
  }
  .engineering > div:first-child {
    font-size: 16px;
  }
  .pipeline-flow {
    width: 100%;
    padding-left: 19px;
    margin: 0;
  }
  .discipline-strip > p {
    gap: 8px;
  }
  .discipline-strip i {
    display: none;
  }
  .service-list article {
    gap: 12px;
    grid-template-columns: 22px 1fr;
  }
  .service-list h3 {
    font-size: 25px;
  }
  .section-head h2 {
    font-size: 31px;
  }
  .contact-section h2 {
    font-size: 34px;
  }
}
.pipeline {
  position: relative;
}
.pipeline::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -18px;
  height: 17px;
  width: 1px;
  background: #6c8652;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

/* Product identity leads; the component map centers on T2-LAB. */
.hero h1 > span {
  color: var(--lime);
  font-size: 1.12em;
  letter-spacing: -0.055em;
}
.hero h1 > em {
  color: var(--paper);
  font-size: 0.82em;
  line-height: 1.08;
  margin-top: 13px;
}
.engineering > div:first-child {
  font-size: 32px;
  color: var(--lime);
  letter-spacing: -0.04em;
}
.hero .lead {
  margin-top: 24px;
}
.lab-example h3 {
  font-size: 36px;
}
.service-list h3 {
  font-size: 27px;
}
@media (max-width: 900px) {
  .service-list h3 {
    font-size: 24px;
  }
}
@media (max-width: 700px) {
  .hero h1 > span {
    font-size: 1.25em;
  }
  .hero h1 > em {
    font-size: 0.9em;
  }
  .engineering > div:first-child {
    font-size: 29px;
  }
  .lab-example h3 {
    font-size: 33px;
  }
  .service-list h3 {
    font-size: 26px;
  }
}

.arrow {
  width: 22px;
  height: 22px;
  flex: none;
}
.legal-main {
  background: var(--paper);
  color: var(--ink);
  padding: 65px 0 85px;
  min-height: 65vh;
}
.legal-wrap {
  max-width: 760px;
}
.legal-main .eyebrow {
  color: #526343;
}
.legal-main h1 {
  font-size: 48px;
  margin-top: 14px;
  margin-bottom: 35px;
  overflow-wrap: anywhere;
}
.legal-main h2 {
  font-size: 23px;
  line-height: 1.5;
  letter-spacing: -0.025em;
  margin: 31px 0 12px;
}
.legal-main p,
.legal-main li {
  font-size: 16px;
  line-height: 1.9;
  color: #435543;
  margin-top: 12px;
}
.legal-main p a {
  text-decoration: underline;
  overflow-wrap: anywhere;
  text-underline-offset: 3px;
}
.legal-main .text-link {
  margin-top: 35px;
}
.legal-main .text-link:hover {
  color: #38561b;
}
.legal-draft {
  font-size: 16px;
  border-left: 3px solid #7c974c;
  background: #e8eedc;
  padding: 16px 20px;
  color: #3f5137;
}
.contact-details {
  margin-top: 30px;
  padding-top: 15px;
  border-top: 1px solid #c2ccb8;
}
.contact-details ol {
  padding-left: 22px;
  margin-block: 20px;
}
.contact-details .button {
  margin-top: 15px;
}
.error-main {
  text-align: center;
  padding-block: 95px;
}
.error-main h1 {
  font-size: clamp(34px, 5vw, 56px);
}
.error-main p {
  margin-block: 25px;
}
.error-main .eyebrow {
  color: var(--lime);
}

.languages a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.copyright {
  display: inline-block;
  font-size: 14px;
  margin-top: 5px;
}
.anchor-alias {
  display: block;
  position: relative;
  top: -20px;
}
.deployment {
  position: relative;
}
.deployment > .anchor-alias {
  position: absolute;
  top: 0;
}
.sr-only,
.selector-input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}
.deployment-selector {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 4px;
  margin: 0;
  padding: 7px 7px 0;
}
.deployment-selector > label {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  line-height: 1.5;
  text-align: center;
  color: #bbcaac;
  border-radius: 2px;
  padding: 12px 5px;
  min-height: 47px;
  cursor: pointer;
}
.selector-input:checked + label {
  color: var(--ink);
  background: var(--lime);
  font-weight: 700;
}
.selector-input:focus-visible + label {
  outline: 3px solid #87b148;
  outline-offset: 2px;
}
.deployment-panels {
  grid-column: 1/-1;
  min-width: 0;
  border-top: 1px solid #4a5f3d;
  margin: 3px -7px 0;
}
.deployment-detail {
  display: none;
}
#deployment-edge:checked ~ .deployment-panels > [data-deployment-panel="edge"],
#deployment-container:checked
  ~ .deployment-panels
  > [data-deployment-panel="container"],
#deployment-cloud:checked
  ~ .deployment-panels
  > [data-deployment-panel="cloud"] {
  display: block;
}
@media (max-width: 700px) {
  .legal-main {
    padding-block: 42px 55px;
  }
  .legal-main h1 {
    font-size: 36px;
  }
  .deployment-selector > label {
    padding-inline: 4px;
  }
}
