:root {
  color-scheme: light;
  --ink: #101718;
  --muted: #566266;
  --line: #d8dfdf;
  --paper: #ffffff;
  --wash: #f4f7f6;
  --dark: #101817;
  --coral: #ef6548;
  --coral-dark: #b93622;
  --mint: #b7f4df;
  --yellow: #f4d56a;
  --code: #0c1514;
  --code-line: #263432;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

a {
  color: var(--coral-dark);
  text-underline-offset: 3px;
}

a:hover {
  color: #7b2114;
}

code,
pre {
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

code {
  overflow-wrap: anywhere;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--paper);
  color: var(--ink);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: relative;
  z-index: 10;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.97);
}

.header-inner,
.footer-inner,
.content,
.hero-inner,
.facts {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.header-inner {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  text-decoration: none;
}

.brand img {
  width: 48px;
  height: 48px;
  border: 1px solid #1c2524;
  border-radius: 8px;
}

.brand span {
  display: grid;
  line-height: 1.15;
}

.brand strong {
  font-size: 16px;
}

.brand small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--ink);
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
}

.site-nav a:hover {
  color: var(--coral-dark);
}

.hero {
  background: var(--dark);
  color: #f6faf8;
  border-bottom: 6px solid var(--coral);
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(340px, 0.75fr);
  gap: 72px;
  align-items: center;
  min-height: 520px;
  padding: 76px 0;
}

.hero h1,
.page-intro h1 {
  max-width: 850px;
  margin: 10px 0 20px;
  font-size: 52px;
  line-height: 1.05;
  letter-spacing: 0;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 750px;
  margin: 0;
  color: #cfd9d6;
  font-size: 19px;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--coral-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--yellow);
}

.hero-code {
  border: 1px solid #3c4a47;
  border-left: 4px solid var(--mint);
  background: #0a1110;
  box-shadow: 14px 14px 0 #27302f;
}

.hero-code p {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 12px;
  margin: 0;
  padding: 17px 20px;
  border-bottom: 1px solid #293634;
  color: #dce5e2;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 13px;
}

.hero-code p:last-child {
  border-bottom: 0;
}

.hero-code span {
  color: var(--yellow);
}

.hero-code b {
  min-width: 0;
  font-weight: 500;
}

.hero-code code {
  color: var(--mint);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border: 1px solid currentColor;
  border-radius: 6px;
  background: var(--paper);
  color: var(--ink);
  font-size: 14px;
  font-weight: 760;
  text-align: center;
  text-decoration: none;
}

.button:hover {
  background: var(--wash);
  color: var(--ink);
}

.button-primary {
  border-color: var(--coral);
  background: var(--coral);
  color: #151211;
}

.button-primary:hover {
  border-color: #ff8268;
  background: #ff8268;
  color: #151211;
}

.button-dark {
  border-color: #53625f;
  background: #192421;
  color: #f4f8f7;
}

.button-dark:hover {
  background: #273532;
  color: #ffffff;
}

.facts-band {
  border-bottom: 1px solid var(--line);
  background: var(--wash);
}

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

.facts > div {
  min-height: 124px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px 28px;
  border-left: 1px solid var(--line);
}

.facts > div:last-child {
  border-right: 1px solid var(--line);
}

.facts strong {
  font-size: 30px;
  line-height: 1;
}

.facts span {
  margin-top: 9px;
  color: var(--muted);
  font-size: 13px;
}

.content {
  padding: 84px 0;
}

.content.narrow {
  width: min(900px, calc(100% - 40px));
}

.content > section + section,
.content > section + aside,
.content > aside + section {
  margin-top: 96px;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 30px;
}

h2 {
  margin: 4px 0 12px;
  font-size: 32px;
  line-height: 1.18;
  letter-spacing: 0;
}

.section-heading p:last-child,
.page-intro p,
.split-section > div > p,
.integrity-band p,
.notice p {
  color: var(--muted);
}

.client-list {
  border-top: 1px solid var(--line);
}

.client-list > a {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr) 110px;
  gap: 24px;
  align-items: center;
  min-height: 104px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  text-decoration: none;
}

.client-list > a:hover {
  background: var(--wash);
}

.client-list strong {
  font-size: 19px;
}

.client-list span {
  color: var(--muted);
}

.client-list b {
  color: var(--coral-dark);
  font-size: 13px;
  text-align: right;
}

.table-scroll {
  max-width: 100%;
  overflow-x: auto;
  border: 1px solid var(--line);
}

table {
  width: 100%;
  min-width: 880px;
  border-collapse: collapse;
}

th,
td {
  padding: 17px 18px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

thead th {
  background: var(--dark);
  color: #f8fbfa;
  font-size: 12px;
  text-transform: uppercase;
}

tbody tr:last-child th,
tbody tr:last-child td {
  border-bottom: 0;
}

tbody th {
  font-weight: 650;
}

tbody th code {
  display: block;
  color: var(--ink);
  font-size: 13px;
}

tbody th span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
}

tbody td {
  color: var(--muted);
  font-size: 14px;
}

.method {
  color: var(--coral-dark);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 12px;
  font-weight: 800;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(460px, 1.18fr);
  gap: 64px;
  align-items: start;
}

.check-list {
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 11px 0 11px 27px;
  border-bottom: 1px solid var(--line);
}

.check-list li::before {
  position: absolute;
  top: 12px;
  left: 0;
  color: var(--coral-dark);
  content: "✓";
  font-weight: 800;
}

.code-block {
  min-width: 0;
  margin: 0;
  border: 1px solid var(--code-line);
  border-radius: 6px;
  background: var(--code);
  color: #e9f0ed;
  box-shadow: 10px 10px 0 #dce5e2;
}

.code-block figcaption {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 9px 16px;
  border-bottom: 1px solid var(--code-line);
  color: #aebbb7;
  font-size: 12px;
}

.code-block figcaption a {
  color: var(--mint);
}

.code-block pre {
  max-width: 100%;
  margin: 0;
  padding: 22px;
  overflow-x: auto;
  font-size: 13px;
  line-height: 1.65;
}

.integrity-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 48px;
  align-items: end;
  padding: 38px;
  background: var(--dark);
  color: #f8fbfa;
  border-left: 6px solid var(--yellow);
}

.integrity-band .eyebrow {
  color: var(--yellow);
}

.integrity-band p {
  max-width: 720px;
  margin-bottom: 0;
  color: #bdc9c5;
}

.integrity-band .actions {
  justify-content: flex-end;
}

.page-intro {
  border-bottom: 1px solid var(--line);
  background: var(--wash);
}

.page-intro .content {
  padding-top: 72px;
  padding-bottom: 72px;
}

.page-intro h1 {
  color: var(--ink);
}

.page-intro p:not(.eyebrow) {
  max-width: 760px;
  font-size: 18px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 38px;
  color: var(--muted);
  font-size: 13px;
}

.steps {
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.steps li {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.steps li > span {
  width: 32px;
  height: 32px;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--coral);
  border-radius: 50%;
  color: var(--coral-dark);
  font-weight: 800;
}

.steps strong,
.steps code,
.steps p {
  display: block;
}

.steps code {
  margin-top: 7px;
  color: var(--ink);
  font-size: 12px;
}

.steps p {
  margin: 7px 0 0;
  font-size: 14px;
}

.method-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
  border-top: 1px solid var(--line);
}

.method-list > div {
  min-height: 128px;
  padding: 24px 20px 24px 0;
  border-bottom: 1px solid var(--line);
}

.method-list > div:nth-child(odd) {
  border-right: 1px solid var(--line);
}

.method-list > div:nth-child(even) {
  padding-left: 24px;
}

.method-list dt {
  font-weight: 800;
}

.method-list dd {
  margin: 9px 0 0;
  color: var(--muted);
}

.status-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.status-grid > div {
  min-height: 120px;
  display: flex;
  flex-direction: column;
  padding: 22px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.status-grid strong {
  color: var(--coral-dark);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 22px;
}

.status-grid span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
}

.notice {
  padding: 26px 28px;
  border: 1px solid #d4b640;
  border-left: 6px solid var(--yellow);
  background: #fffbea;
}

.notice p {
  margin: 6px 0 0;
}

.lifecycle {
  display: grid;
  grid-template-columns: auto 24px auto 24px auto;
  gap: 8px;
  align-items: center;
  padding: 28px;
  border: 1px solid var(--line);
  background: var(--wash);
}

.lifecycle span {
  padding: 8px 10px;
  border: 1px solid var(--ink);
  border-radius: 4px;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 12px;
  text-align: center;
}

.lifecycle b {
  text-align: center;
}

.lifecycle small {
  grid-column: 1 / -1;
  margin-top: 12px;
  color: var(--muted);
}

.site-footer {
  border-top: 1px solid #31403d;
  background: var(--dark);
  color: #aebbb7;
}

.footer-inner {
  min-height: 124px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 28px 0;
  font-size: 12px;
}

.footer-inner a {
  color: #dfe9e6;
}

@media (max-width: 900px) {
  .header-inner {
    align-items: flex-start;
    flex-direction: column;
    padding: 14px 0 10px;
  }

  .site-nav {
    width: 100%;
    gap: 22px;
    overflow-x: auto;
  }

  .site-nav a {
    flex: 0 0 auto;
  }

  .hero-inner,
  .split-section {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    gap: 46px;
    min-height: 0;
  }

  .split-section {
    gap: 36px;
  }

  .integrity-band {
    grid-template-columns: 1fr;
  }

  .integrity-band .actions {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .header-inner,
  .footer-inner,
  .content,
  .hero-inner,
  .facts {
    width: min(100% - 28px, 1180px);
  }

  .header-inner {
    min-height: 0;
  }

  .brand img {
    width: 42px;
    height: 42px;
  }

  .hero-inner {
    padding: 54px 0;
  }

  .hero h1,
  .page-intro h1 {
    font-size: 38px;
  }

  .hero-copy > p:not(.eyebrow),
  .page-intro p:not(.eyebrow) {
    font-size: 16px;
  }

  .hero-code {
    box-shadow: 6px 6px 0 #27302f;
  }

  .hero-code p {
    padding: 15px 14px;
    font-size: 12px;
  }

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

  .facts > div {
    min-height: 104px;
    padding: 18px;
    border-bottom: 1px solid var(--line);
  }

  .facts > div:nth-child(2) {
    border-right: 1px solid var(--line);
  }

  .facts > div:nth-child(3),
  .facts > div:nth-child(4) {
    border-bottom: 0;
  }

  .content {
    padding: 62px 0;
  }

  .content.narrow {
    width: min(100% - 28px, 900px);
  }

  .content > section + section,
  .content > section + aside,
  .content > aside + section {
    margin-top: 72px;
  }

  h2 {
    font-size: 27px;
  }

  .client-list > a {
    grid-template-columns: 1fr;
    gap: 7px;
    padding: 19px 0;
  }

  .client-list b {
    text-align: left;
  }

  .actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .code-block {
    box-shadow: 5px 5px 0 #dce5e2;
  }

  .code-block pre {
    padding: 18px 15px;
    font-size: 12px;
  }

  .integrity-band {
    padding: 28px 22px;
  }

  .method-list,
  .status-grid {
    grid-template-columns: 1fr;
  }

  .method-list > div:nth-child(odd) {
    border-right: 0;
  }

  .method-list > div:nth-child(even) {
    padding-left: 0;
  }

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

  .lifecycle b {
    transform: rotate(90deg);
  }

  .footer-inner {
    min-height: 0;
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
