@font-face {
  font-family: "Manrope47";
  src: url("/47/assets/fonts/manrope-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
}

@font-face {
  font-family: "Plex47";
  src: url("/47/assets/fonts/ibm-plex-mono-400-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Plex47";
  src: url("/47/assets/fonts/ibm-plex-mono-600-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

:root {
  color-scheme: light;
  --paper: #f4f3ed;
  --paper-deep: #e8e7df;
  --ink: #0d1713;
  --ink-soft: #435149;
  --line: rgba(13, 23, 19, 0.16);
  --green: #2dde88;
  --green-deep: #0ea765;
  --acid: #d9ff57;
  --white: #fffef9;
  --orange: #ff6b45;
  --radius: 24px;
  --shadow: 0 24px 70px rgba(13, 23, 19, 0.13);
  --font-display: "Manrope47", "Microsoft YaHei", "PingFang SC", sans-serif;
  --font-mono: "Plex47", "SFMono-Regular", Consolas, monospace;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    linear-gradient(rgba(13, 23, 19, 0.052) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13, 23, 19, 0.052) 1px, transparent 1px),
    var(--paper);
  background-size: 64px 64px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

button {
  font: inherit;
}

svg {
  display: block;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 100;
  padding: 10px 16px;
  border-radius: 10px;
  background: var(--ink);
  color: var(--white);
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

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

:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
}

.page-shell {
  position: relative;
  overflow: clip;
}

.section-frame,
.site-header {
  width: min(1240px, calc(100% - 64px));
  margin-inline: auto;
}

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 96px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand img,
.footer-brand img {
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(13, 23, 19, 0.16);
}

.brand-copy,
.footer-brand span {
  display: grid;
  line-height: 1;
}

.brand-copy strong,
.footer-brand strong {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.brand-copy small,
.footer-brand small {
  margin-top: 5px;
  color: var(--ink-soft);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.17em;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 22px;
}

.health-link,
.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--ink-soft);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: color 180ms ease;
}

.health-link:hover,
.text-link:hover {
  color: var(--ink);
}

.health-dot {
  width: 8px;
  height: 8px;
  margin-right: 8px;
  border-radius: 50%;
  background: #a2aaa5;
  box-shadow: 0 0 0 5px rgba(162, 170, 165, 0.15);
}

.health-dot.is-online {
  background: var(--green-deep);
  box-shadow: 0 0 0 5px rgba(14, 167, 101, 0.14);
}

.health-dot.is-degraded {
  background: var(--orange);
  box-shadow: 0 0 0 5px rgba(255, 107, 69, 0.14);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 750;
  letter-spacing: -0.01em;
  transition: background-color 200ms ease, color 200ms ease, border-color 200ms ease, box-shadow 200ms ease, transform 200ms ease;
}

.button svg {
  width: 19px;
  height: 19px;
  margin-left: 12px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

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

.button-small {
  min-height: 42px;
  padding-inline: 20px;
  font-size: 13px;
}

.button-dark {
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 8px 18px rgba(13, 23, 19, 0.18);
}

.button-dark:hover {
  background: #203028;
}

.button-primary {
  background: var(--green);
  color: var(--ink);
  box-shadow: 0 13px 30px rgba(45, 222, 136, 0.28);
}

.button-primary:hover {
  background: #48e699;
  box-shadow: 0 16px 36px rgba(45, 222, 136, 0.34);
}

.button-ghost {
  border-color: var(--line);
  background: rgba(255, 254, 249, 0.44);
  color: var(--ink);
}

.button-ghost:hover {
  border-color: rgba(13, 23, 19, 0.34);
  background: var(--white);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  gap: clamp(48px, 7vw, 104px);
  align-items: center;
  min-height: 780px;
  padding-block: 150px 90px;
}

.hero::before {
  position: absolute;
  top: -170px;
  right: -120px;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(45, 222, 136, 0.3), rgba(45, 222, 136, 0) 68%);
  content: "";
  pointer-events: none;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0 0 24px;
  color: var(--ink-soft);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
}

.hero .eyebrow span + span::before {
  display: inline-block;
  width: 30px;
  height: 1px;
  margin: 0 16px 3px 0;
  background: var(--line);
  content: "";
}

.hero h1,
.section-heading h2,
.code-copy h2,
.final-cta h2 {
  margin: 0;
  font-weight: 800;
  letter-spacing: -0.065em;
  line-height: 0.98;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(54px, 5.8vw, 84px);
}

.hero h1 span {
  position: relative;
  display: inline-block;
  z-index: 1;
}

.hero h1 span::after {
  position: absolute;
  inset: auto -5px 1px -5px;
  z-index: -1;
  height: 18%;
  background: var(--acid);
  content: "";
  transform: rotate(-1.1deg);
}

.hero-lede {
  max-width: 660px;
  margin: 30px 0 0;
  color: var(--ink-soft);
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.endpoint {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: 620px;
  margin-top: 40px;
  padding: 15px 16px 15px 20px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 254, 249, 0.56);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(14px);
}

.endpoint > div {
  display: grid;
  min-width: 0;
}

.endpoint-label {
  margin-bottom: 4px;
  color: var(--green-deep);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
}

.endpoint code {
  overflow: hidden;
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 13px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.endpoint button {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  min-width: 84px;
  min-height: 42px;
  border: 0;
  border-radius: 12px;
  background: var(--ink);
  color: var(--white);
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  transition: background-color 180ms ease, transform 180ms ease;
}

.endpoint button:hover {
  background: #263a30;
  transform: translateY(-1px);
}

.endpoint button svg {
  width: 16px;
  height: 16px;
  margin-right: 7px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.hero-signal {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 1 / 1.08;
  max-height: 580px;
}

.signal-grid {
  position: absolute;
  inset: 4%;
  border: 1px solid var(--line);
  border-radius: 50%;
  background:
    linear-gradient(rgba(13, 23, 19, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13, 23, 19, 0.08) 1px, transparent 1px),
    rgba(255, 254, 249, 0.36);
  background-size: 32px 32px;
  box-shadow: inset 0 0 70px rgba(45, 222, 136, 0.16), var(--shadow);
  overflow: hidden;
}

.signal-grid::after {
  position: absolute;
  inset: 17%;
  border: 1px dashed rgba(13, 23, 19, 0.28);
  border-radius: 50%;
  content: "";
}

.signal-number {
  position: relative;
  z-index: 3;
  color: var(--ink);
  font-size: clamp(140px, 18vw, 260px);
  font-weight: 800;
  letter-spacing: -0.13em;
  line-height: 1;
  transform: translateX(-0.06em);
  text-shadow: 10px 14px 0 var(--green);
}

.signal-orbit {
  position: absolute;
  z-index: 2;
  border: 1px solid rgba(13, 23, 19, 0.18);
  border-radius: 50%;
}

.orbit-one {
  inset: 13%;
  animation: orbit 18s linear infinite;
}

.orbit-two {
  inset: 29%;
  border-style: dashed;
  animation: orbit-reverse 13s linear infinite;
}

.orbit-one::before,
.orbit-two::before {
  position: absolute;
  top: -6px;
  left: calc(50% - 6px);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 7px rgba(255, 107, 69, 0.16);
  content: "";
}

.orbit-two::before {
  background: var(--green-deep);
  box-shadow: 0 0 0 7px rgba(14, 167, 101, 0.16);
}

.signal-card {
  position: absolute;
  z-index: 5;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 254, 249, 0.88);
  box-shadow: 0 14px 30px rgba(13, 23, 19, 0.13);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  backdrop-filter: blur(10px);
}

.signal-card-top {
  top: 14%;
  right: -1%;
}

.signal-card-top span,
.code-result span {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 7px;
  border-radius: 50%;
  background: var(--green-deep);
  box-shadow: 0 0 0 4px rgba(14, 167, 101, 0.14);
}

.signal-card-bottom {
  bottom: 11%;
  left: -2%;
  background: var(--ink);
  color: var(--white);
}

@keyframes orbit {
  to { transform: rotate(360deg); }
}

@keyframes orbit-reverse {
  to { transform: rotate(-360deg); }
}

.protocol-strip {
  overflow: hidden;
  border-block: 1px solid var(--ink);
  background: var(--acid);
}

.protocol-track {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 3vw, 48px);
  min-height: 64px;
  padding-inline: 24px;
  white-space: nowrap;
}

.protocol-track span {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.11em;
}

.protocol-track i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--ink);
}

.capabilities {
  padding-block: 132px;
}

.section-heading {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 20px 80px;
  align-items: end;
}

.section-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.section-heading h2,
.code-copy h2 {
  font-size: clamp(44px, 5vw, 72px);
}

.section-heading > p:last-child,
.code-copy > p {
  max-width: 470px;
  margin: 0 0 5px;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.75;
}

.capability-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  gap: 16px;
  margin-top: 68px;
}

.capability-card {
  position: relative;
  min-height: 360px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 254, 249, 0.68);
  transition: border-color 200ms ease, box-shadow 200ms ease, transform 200ms ease;
}

.capability-card:hover {
  border-color: rgba(13, 23, 19, 0.34);
  box-shadow: 0 22px 44px rgba(13, 23, 19, 0.1);
  transform: translateY(-4px);
}

.capability-featured {
  background: var(--ink);
  color: var(--white);
}

.card-index {
  color: var(--ink-soft);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.capability-featured .card-index {
  color: rgba(255, 254, 249, 0.55);
}

.card-icon {
  width: 48px;
  height: 48px;
  margin: 74px 0 28px;
  padding: 11px;
  border-radius: 13px;
  background: var(--green);
  fill: none;
  stroke: var(--ink);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.capability-card:not(.capability-featured) .card-icon {
  background: var(--acid);
}

.capability-card h3 {
  margin: 0;
  font-size: 25px;
  letter-spacing: -0.04em;
}

.capability-card p {
  margin: 12px 0 0;
  color: var(--ink-soft);
  line-height: 1.75;
}

.capability-featured p {
  color: rgba(255, 254, 249, 0.68);
}

.capability-card code {
  position: absolute;
  right: 26px;
  bottom: 26px;
  left: 26px;
  overflow: hidden;
  padding: 13px 15px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--green);
  font-family: var(--font-mono);
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.code-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(48px, 7vw, 100px);
  align-items: center;
  padding-block: 80px 140px;
}

.code-copy > p {
  margin-top: 24px;
}

.steps {
  display: grid;
  gap: 18px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.steps li {
  display: flex;
  align-items: center;
  gap: 15px;
}

.steps li > span {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
}

.steps li div {
  display: grid;
}

.steps strong {
  font-size: 14px;
}

.steps small {
  color: var(--ink-soft);
  font-size: 12px;
}

.inline-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  margin-top: 28px;
  border-bottom: 1px solid var(--ink);
  font-size: 13px;
  font-weight: 700;
}

.inline-link span {
  margin-left: 8px;
}

.code-window {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(13, 23, 19, 0.75);
  border-radius: var(--radius);
  background: #111b17;
  box-shadow: 18px 18px 0 var(--green), var(--shadow);
  color: #eaf5ee;
}

.code-window-head {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 58px;
  padding-inline: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
}

.code-window-head > span:first-child {
  display: flex;
  gap: 6px;
}

.code-window-head i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
}

.code-window-head i:nth-child(2) { background: var(--acid); }
.code-window-head i:nth-child(3) { background: var(--green); }

.code-window-head strong {
  font-weight: 400;
  color: rgba(234, 245, 238, 0.6);
}

.code-status {
  justify-self: end;
  color: var(--green);
}

.code-window pre {
  min-height: 370px;
  margin: 0;
  overflow: auto;
  padding: clamp(24px, 4vw, 48px);
  font-family: var(--font-mono);
  font-size: clamp(11px, 1.1vw, 14px);
  line-height: 2;
  tab-size: 2;
}

.code-muted { color: #8da49a; }
.code-key { color: var(--acid); }
.code-string { color: #85eab6; }

.code-result {
  display: flex;
  align-items: center;
  min-height: 54px;
  padding-inline: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  color: rgba(234, 245, 238, 0.64);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
}

.final-cta {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  min-height: 400px;
  margin-bottom: 48px;
  overflow: hidden;
  padding: clamp(40px, 6vw, 80px);
  border-radius: 32px;
  background: var(--green);
}

.final-cta::before {
  position: absolute;
  top: -150px;
  right: 9%;
  width: 380px;
  height: 380px;
  border: 1px solid rgba(13, 23, 19, 0.2);
  border-radius: 50%;
  box-shadow: 0 0 0 50px rgba(13, 23, 19, 0.04), 0 0 0 100px rgba(13, 23, 19, 0.03);
  content: "";
}

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

.final-cta .eyebrow {
  position: absolute;
  top: clamp(40px, 6vw, 80px);
  left: clamp(40px, 6vw, 80px);
  color: rgba(13, 23, 19, 0.67);
}

.final-cta h2 {
  font-size: clamp(52px, 6vw, 84px);
}

.button-light {
  min-width: 180px;
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 14px 30px rgba(13, 23, 19, 0.22);
}

.button-light:hover {
  background: #263a30;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 38px;
  align-items: center;
  padding-block: 34px 54px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 26px;
}

.footer-links a {
  min-height: 44px;
  padding-top: 10px;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 650;
  transition: color 180ms ease;
}

.footer-links a:hover {
  color: var(--ink);
}

.site-footer > p {
  grid-column: 1 / -1;
  margin: 0;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.05em;
}

.toast {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 100;
  padding: 12px 18px;
  border-radius: 12px;
  background: var(--ink);
  color: var(--white);
  box-shadow: var(--shadow);
  font-size: 13px;
  font-weight: 650;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 620ms cubic-bezier(.22, 1, .36, 1), transform 620ms cubic-bezier(.22, 1, .36, 1);
}

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

.capability-grid .reveal:nth-child(2) { transition-delay: 90ms; }
.capability-grid .reveal:nth-child(3) { transition-delay: 180ms; }

@media (max-width: 1040px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 150px;
  }

  .hero-copy {
    max-width: 800px;
  }

  .hero-signal {
    width: min(620px, 86vw);
    margin: 0 auto;
  }

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

  .capability-featured {
    grid-column: 1 / -1;
  }

  .code-section {
    grid-template-columns: 1fr;
  }

  .code-copy {
    max-width: 720px;
  }
}

@media (max-width: 760px) {
  body {
    background-size: 40px 40px;
  }

  .section-frame,
  .site-header {
    width: min(100% - 32px, 620px);
  }

  .site-header {
    height: 82px;
  }

  .brand-copy small,
  .desktop-only {
    display: none;
  }

  .nav-actions {
    gap: 12px;
  }

  .health-link {
    font-size: 12px;
  }

  .health-link [data-health-label] {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  .health-link .health-dot {
    margin-right: 0;
  }

  .hero {
    gap: 58px;
    padding-block: 126px 72px;
  }

  .hero::before {
    top: -120px;
    right: -220px;
    width: 460px;
    height: 460px;
  }

  .hero h1 {
    font-size: clamp(46px, 15vw, 68px);
    line-height: 1.02;
  }

  .hero h1 br {
    display: none;
  }

  .hero-lede {
    margin-top: 24px;
    font-size: 16px;
    line-height: 1.75;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .button-small {
    width: auto;
  }

  .endpoint {
    align-items: stretch;
    margin-top: 28px;
    padding: 14px;
  }

  .endpoint code {
    font-size: 12px;
  }

  .endpoint button {
    min-width: 48px;
  }

  .endpoint button span {
    display: none;
  }

  .endpoint button svg {
    margin: 0;
  }

  .hero-signal {
    width: 100%;
    max-height: none;
  }

  .signal-number {
    font-size: clamp(122px, 46vw, 188px);
  }

  .signal-card {
    font-size: 12px;
  }

  .signal-card-top {
    right: 0;
  }

  .signal-card-bottom {
    left: 0;
  }

  .protocol-track {
    justify-content: flex-start;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .protocol-track::-webkit-scrollbar {
    display: none;
  }

  .capabilities {
    padding-block: 92px;
  }

  .section-heading {
    grid-template-columns: 1fr;
  }

  .section-heading h2,
  .code-copy h2 {
    font-size: clamp(40px, 12vw, 56px);
  }

  .section-heading > p:last-child {
    margin-top: 8px;
  }

  .capability-grid {
    grid-template-columns: 1fr;
    margin-top: 42px;
  }

  .capability-featured {
    grid-column: auto;
  }

  .capability-card {
    min-height: 330px;
    padding: 24px;
  }

  .card-icon {
    margin-top: 56px;
  }

  .code-section {
    padding-block: 28px 108px;
  }

  .code-window {
    box-shadow: 8px 8px 0 var(--green), var(--shadow);
  }

  .code-window pre {
    min-height: 330px;
    padding: 24px 20px;
    font-size: 12px;
    line-height: 1.9;
  }

  .final-cta {
    grid-template-columns: 1fr;
    gap: 44px;
    min-height: 430px;
    margin-bottom: 24px;
    padding: 38px 26px;
    border-radius: 24px;
  }

  .final-cta .eyebrow {
    position: static;
  }

  .final-cta h2 {
    align-self: end;
    font-size: clamp(48px, 15vw, 66px);
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-bottom: 36px;
  }

  .footer-links {
    justify-content: flex-start;
    gap: 18px;
  }

  .toast {
    right: 16px;
    bottom: 16px;
    left: 16px;
    text-align: center;
  }
}

@media (max-width: 380px) {
  .brand img {
    width: 38px;
    height: 38px;
  }

  .button-small {
    padding-inline: 16px;
  }

  .hero .eyebrow span:last-child {
    display: none;
  }

  .endpoint code {
    max-width: 218px;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
