:root {
  color-scheme: dark;
  --bg: #06100d;
  --bg-2: #0b1713;
  --surface: rgba(10, 22, 18, 0.86);
  --surface-strong: #0f1e19;
  --line: rgba(224, 238, 228, 0.18);
  --line-strong: rgba(224, 238, 228, 0.3);
  --text: #f0f8f1;
  --muted: #b6c8bd;
  --soft: #dbe9df;
  --green: #33dd78;
  --green-dark: #123d26;
  --cyan: #35c9e8;
  --blue: #6aa9ff;
  --amber: #f1b84d;
  --soil: #ca8b57;
  --red: #ef5d56;
  --shadow: rgba(0, 0, 0, 0.34);
  --earth-texture: url("./earth-blue-marble.png?v=20260507-2");
  --earth-icon: url("./earth-icon.png?v=20260507-2");
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

body::selection {
  background: rgba(53, 201, 232, 0.32);
}

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

img {
  display: block;
  max-width: 100%;
}

.topbar {
  position: fixed;
  z-index: 20;
  top: 16px;
  left: 50%;
  display: grid;
  width: min(1180px, calc(100% - 32px));
  min-height: 64px;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(4, 12, 10, 0.78);
  box-shadow: 0 20px 80px var(--shadow);
  transform: translateX(-50%);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(51, 221, 120, 0.42);
  border-radius: 8px;
  background: rgba(6, 16, 13, 0.86);
  box-shadow: inset 0 0 18px rgba(53, 201, 232, 0.08);
}

.brand-globe {
  display: block;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(220, 247, 228, 0.34);
  border-radius: 50%;
  background-image: var(--earth-icon);
  background-size: cover;
  box-shadow: 0 0 18px rgba(53, 201, 232, 0.2);
}

.brand-copy {
  min-width: 0;
}

.brand strong,
.brand small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

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

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  justify-self: center;
}

.nav-links a,
.nav-action {
  border-radius: 7px;
  color: #d5e7db;
  font-size: 13px;
  font-weight: 800;
}

.nav-links a {
  padding: 10px 12px;
}

.nav-links a:hover,
.nav-action:hover {
  background: rgba(255, 255, 255, 0.08);
}

.nav-action {
  justify-self: end;
  padding: 10px 16px;
  border: 1px solid rgba(53, 201, 232, 0.42);
  background: rgba(53, 201, 232, 0.12);
}

.hero {
  position: relative;
  display: grid;
  min-height: 91svh;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 418px);
  align-items: center;
  gap: 52px;
  overflow: hidden;
  padding: 128px max(28px, calc((100% - 1180px) / 2)) 58px;
  isolation: isolate;
}

.hero-media,
.hero-media img,
.hero-overlay,
.hero-grid,
.orbit-system {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: -4;
  background: #0b1410;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
}

.hero-overlay {
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(6, 16, 13, 0.98) 0%, rgba(6, 16, 13, 0.88) 39%, rgba(6, 16, 13, 0.54) 72%, rgba(6, 16, 13, 0.5) 100%),
    linear-gradient(0deg, rgba(6, 16, 13, 0.98) 0%, rgba(6, 16, 13, 0) 30%),
    linear-gradient(180deg, rgba(6, 16, 13, 0.56), rgba(6, 16, 13, 0) 32%);
}

.hero-grid {
  z-index: -2;
  background:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: linear-gradient(90deg, transparent, black 16%, black 86%, transparent);
  opacity: 0.48;
}

.orbit-system {
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.orbit-ring,
.satellite-track {
  position: absolute;
  top: 50%;
  left: 72%;
  width: 620px;
  height: 620px;
  transform: translate(-50%, -50%);
  transform-origin: center;
}

.orbit-ring {
  border: 1px solid rgba(53, 201, 232, 0.2);
  border-radius: 50%;
  opacity: 0.72;
}

.orbit-ring-a {
  transform: translate(-50%, -50%) rotateX(64deg) rotateZ(-18deg);
}

.orbit-ring-b {
  width: 820px;
  height: 820px;
  border-color: rgba(51, 221, 120, 0.14);
  transform: translate(-50%, -50%) rotateX(66deg) rotateZ(26deg);
}

.globe-real {
  --globe-size: 176px;
  width: var(--globe-size);
  height: var(--globe-size);
  overflow: hidden;
  border: 1px solid rgba(220, 247, 228, 0.18);
  border-radius: 50%;
  background-color: #061a42;
  background-image: var(--earth-texture);
  background-repeat: repeat-x;
  background-size: calc(var(--globe-size) * 2) var(--globe-size);
  background-position: 0 50%;
  box-shadow:
    inset -42px -22px 46px rgba(0, 0, 0, 0.58),
    inset 14px 12px 28px rgba(255, 255, 255, 0.08),
    0 0 48px rgba(53, 201, 232, 0.2);
  animation: earthTextureSpin 112s linear infinite;
}

.globe-real::before {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(circle at 30% 22%, rgba(255, 255, 255, 0.2), transparent 28%),
    radial-gradient(circle at 50% 50%, transparent 52%, rgba(0, 0, 0, 0.56) 100%);
  content: "";
}

.globe-real::after {
  position: absolute;
  inset: -16px;
  border: 1px solid rgba(53, 201, 232, 0.12);
  border-radius: 50%;
  content: "";
}

.hero-earth {
  position: absolute;
  top: 53%;
  left: 86%;
  opacity: 0.82;
  transform: translate(-50%, -50%);
}

.satellite-track {
  width: 700px;
  height: 700px;
  animation: satelliteOrbit 74s linear infinite;
}

.satellite-track-b {
  display: none;
}

.satellite-track i {
  position: absolute;
  top: -5px;
  left: calc(50% - 12px);
  width: 24px;
  height: 9px;
  border: 1px solid rgba(224, 238, 228, 0.78);
  border-radius: 3px;
  background: rgba(11, 27, 23, 0.84);
  box-shadow: 0 0 22px rgba(53, 201, 232, 0.45);
  opacity: 0.84;
}

.satellite-track i::before,
.satellite-track i::after {
  position: absolute;
  top: -3px;
  width: 11px;
  height: 13px;
  border: 1px solid rgba(53, 201, 232, 0.58);
  background: rgba(53, 201, 232, 0.12);
  content: "";
}

.satellite-track i::before {
  right: 100%;
  border-radius: 3px 0 0 3px;
}

.satellite-track i::after {
  left: 100%;
  border-radius: 0 3px 3px 0;
}

.downlink-line {
  position: absolute;
  top: 31%;
  left: 69%;
  width: 1px;
  height: 320px;
  background: linear-gradient(180deg, rgba(53, 201, 232, 0), rgba(53, 201, 232, 0.52), rgba(51, 221, 120, 0));
  transform: rotate(19deg);
  transform-origin: top;
  animation: downlinkPulse 7.2s ease-in-out infinite;
}

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

.eyebrow {
  margin: 0 0 14px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 22px;
  max-width: 780px;
  font-size: 104px;
  line-height: 0.86;
  letter-spacing: 0;
}

.hero-text {
  max-width: 650px;
  margin-bottom: 0;
  color: #e4f1e8;
  font-size: 22px;
  line-height: 1.48;
}

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

.primary-action,
.secondary-action {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 900;
}

.primary-action {
  padding: 0 22px;
  background: var(--green);
  color: #031209;
  box-shadow: 0 18px 40px rgba(51, 221, 120, 0.24);
}

.secondary-action {
  padding: 0 20px;
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.07);
}

.hero-facts {
  display: grid;
  max-width: 720px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 36px 0 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--line);
}

.hero-facts div {
  min-width: 0;
  padding: 14px;
  background: rgba(7, 18, 14, 0.78);
}

.hero-facts dt {
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-facts dd {
  margin: 0;
  overflow-wrap: anywhere;
  color: var(--text);
  font-size: 13px;
  font-weight: 800;
}

.hero-panel,
.api-console,
.showcase {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 30px 100px var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-panel {
  padding: 18px;
}

.panel-head,
.metric-row,
.case-title,
.signal-list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.panel-head {
  margin-bottom: 14px;
  color: #d4e7da;
  font-size: 13px;
  font-weight: 900;
}

.panel-head strong {
  border-radius: 999px;
  padding: 5px 9px;
  background: rgba(53, 201, 232, 0.15);
  color: var(--cyan);
  font-size: 11px;
}

.field-output {
  display: grid;
  height: 248px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    #112016;
  background-size: 42px 42px;
}

.field-output img {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: cover;
}

.case-title {
  padding: 16px 0 4px;
}

.case-title span {
  color: var(--muted);
  font-size: 13px;
}

.case-title strong {
  font-size: 18px;
}

.metric-list {
  margin-top: 4px;
}

.metric-row {
  padding: 9px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.metric-row strong {
  color: var(--text);
}

.meter {
  height: 10px;
  margin: 14px 0 16px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
}

.meter span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--green), var(--cyan));
}

.signal-list {
  flex-wrap: wrap;
}

.signal-list span {
  flex: 1 1 92px;
  min-width: 0;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--muted);
  font-size: 12px;
}

.signal-list b {
  display: block;
  margin-bottom: 2px;
  color: var(--white, #fff);
}

.proof-band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #0a1813;
}

.proof-band-inner {
  display: grid;
  width: min(1180px, calc(100% - 56px));
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: 0 auto;
  border-right: 1px solid var(--line);
  border-left: 1px solid var(--line);
  background: var(--line);
}

.proof-band-inner div {
  min-height: 124px;
  padding: 26px 22px;
  background: #0a1813;
}

.proof-band-inner strong,
.proof-band-inner span {
  display: block;
}

.proof-band-inner strong {
  color: var(--green);
  font-size: 42px;
  line-height: 1;
}

.proof-band-inner span {
  max-width: 230px;
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.section {
  display: grid;
  grid-template-columns: minmax(260px, 0.74fr) minmax(0, 1.26fr);
  gap: 60px;
  padding: 108px max(28px, calc((100% - 1180px) / 2));
}

.section-copy {
  max-width: 470px;
}

.section h2 {
  margin-bottom: 18px;
  font-size: 56px;
  line-height: 0.98;
  letter-spacing: 0;
}

.section-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.proof-section {
  grid-template-areas:
    "copy showcase"
    "copy evidence";
  align-items: start;
  background: #081612;
}

.proof-section .section-copy {
  grid-area: copy;
}

.showcase {
  grid-area: showcase;
  overflow: hidden;
}

.layer-stage {
  position: relative;
  display: grid;
  aspect-ratio: 16 / 10;
  min-height: 360px;
  place-items: center;
  overflow: hidden;
  background:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    #102018;
  background-size: 60px 60px;
}

.layer-stage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.layer-scan {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -24%;
  width: 20%;
  background: linear-gradient(90deg, transparent, rgba(53, 201, 232, 0.42), transparent);
  transform: skewX(-14deg);
  animation: scanLayer 4.8s linear infinite;
}

.layer-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 14px;
  border-top: 1px solid var(--line);
}

.layer-button {
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 13px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--muted);
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 900;
}

.layer-button:hover,
.layer-button.is-active {
  border-color: rgba(51, 221, 120, 0.52);
  background: rgba(51, 221, 120, 0.14);
  color: var(--text);
}

.layer-caption {
  padding: 0 18px 18px;
}

.layer-caption span {
  color: var(--cyan);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.layer-caption strong {
  display: block;
  margin: 7px 0;
  color: var(--text);
  font-size: 20px;
}

.layer-caption p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.6;
}

.evidence-grid {
  grid-area: evidence;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.evidence-grid article,
.pipeline-grid article,
.index-card,
.endpoint-list div {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.evidence-grid article {
  padding: 18px;
}

.status-dot {
  display: block;
  width: 12px;
  height: 12px;
  margin-bottom: 18px;
  border-radius: 50%;
}

.status-dot.green {
  background: var(--green);
}

.status-dot.red {
  background: var(--red);
}

.status-dot.amber {
  background: var(--amber);
}

.evidence-grid strong {
  display: block;
  margin-bottom: 8px;
  font-size: 18px;
}

.evidence-grid p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.6;
}

.pipeline-section {
  background:
    linear-gradient(90deg, rgba(53, 201, 232, 0.08), transparent 45%),
    var(--bg-2);
}

.pipeline-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.pipeline-grid article {
  min-height: 218px;
  padding: 22px;
}

.pipeline-grid span {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 8px;
  background: rgba(53, 201, 232, 0.13);
  color: var(--cyan);
  font-size: 13px;
  font-weight: 900;
}

.pipeline-grid h3 {
  margin: 28px 0 10px;
  font-size: 22px;
}

.pipeline-grid p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.6;
}

.index-section {
  background:
    linear-gradient(90deg, rgba(202, 139, 87, 0.12), transparent 42%),
    #10140d;
}

.index-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.index-card {
  min-height: 188px;
  padding: 20px;
}

.index-card strong {
  display: block;
  margin-bottom: 18px;
  font-size: 34px;
}

.index-card p {
  margin-bottom: 18px;
  color: var(--soft);
  line-height: 1.55;
}

.index-card span {
  display: inline-flex;
  border-radius: 999px;
  padding: 5px 9px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.tone-green strong {
  color: var(--green);
}

.tone-blue strong {
  color: var(--blue);
}

.tone-cyan strong {
  color: var(--cyan);
}

.tone-amber strong {
  color: var(--amber);
}

.tone-soil strong {
  color: var(--soil);
}

.tone-red strong {
  color: var(--red);
}

.api-section {
  align-items: start;
  background:
    linear-gradient(90deg, rgba(239, 93, 86, 0.07), transparent 36%),
    #07120f;
}

.endpoint-list {
  display: grid;
  gap: 8px;
  margin-top: 26px;
}

.endpoint-list div {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 12px;
  padding: 12px;
}

.endpoint-list span {
  flex: 0 0 auto;
  border-radius: 999px;
  padding: 5px 8px;
  background: rgba(53, 201, 232, 0.12);
  color: var(--cyan);
  font-size: 11px;
  font-weight: 900;
}

.endpoint-list strong {
  min-width: 0;
  overflow-wrap: anywhere;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 13px;
}

.api-console {
  overflow: hidden;
  background: var(--surface-strong);
}

.console-top {
  display: flex;
  gap: 8px;
  padding: 16px;
  border-bottom: 1px solid var(--line);
}

.console-top span {
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: var(--red);
}

.console-top span:nth-child(2) {
  background: var(--amber);
}

.console-top span:nth-child(3) {
  background: var(--green);
}

pre {
  margin: 0;
  overflow: auto;
  padding: 24px;
  color: #dcf7e4;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 14px;
  line-height: 1.65;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}

.footer {
  display: flex;
  min-height: 88px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 26px max(28px, calc((100% - 1180px) / 2));
  border-top: 1px solid var(--line);
  background: #050e0b;
  color: var(--muted);
  font-size: 13px;
}

@keyframes scanLayer {
  from {
    transform: translateX(0) skewX(-14deg);
  }
  to {
    transform: translateX(760%) skewX(-14deg);
  }
}

@keyframes satelliteOrbit {
  from {
    transform: translate(-50%, -50%) rotateX(66deg) rotateZ(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotateX(66deg) rotateZ(360deg);
  }
}

@keyframes downlinkPulse {
  0%,
  100% {
    opacity: 0.16;
    transform: rotate(19deg) scaleY(0.76);
  }
  50% {
    opacity: 0.72;
    transform: rotate(19deg) scaleY(1);
  }
}

@keyframes earthTextureSpin {
  from {
    background-position: 0 50%;
  }
  to {
    background-position: calc(var(--globe-size) * -2) 50%;
  }
}

@media (max-width: 1100px) {
  h1 {
    font-size: 76px;
  }

  .section h2 {
    font-size: 46px;
  }

  .pipeline-grid,
  .index-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 960px) {
  .topbar {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

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

  .hero {
    min-height: auto;
    padding-top: 112px;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(6, 16, 13, 0.96), rgba(6, 16, 13, 0.78)),
      linear-gradient(0deg, rgba(6, 16, 13, 0.98), rgba(6, 16, 13, 0) 22%);
  }

  .hero-panel {
    max-width: 560px;
  }

  .proof-band {
    background: var(--line);
  }

  .proof-band-inner {
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-right: 0;
    border-left: 0;
  }

  .proof-section {
    grid-template-areas:
      "copy"
      "showcase"
      "evidence";
  }

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

@media (max-width: 620px) {
  .topbar {
    top: 10px;
    width: calc(100% - 20px);
    min-height: 58px;
  }

  .brand small {
    display: none;
  }

  .nav-action {
    padding-inline: 12px;
  }

  .hero {
    gap: 28px;
    padding: 84px 20px 34px;
  }

  h1 {
    font-size: 54px;
  }

  .orbit-ring,
  .satellite-track {
    left: 76%;
    width: 360px;
    height: 360px;
  }

  .orbit-ring-b,
  .satellite-track-b {
    width: 500px;
    height: 500px;
  }

  .hero-earth {
    --globe-size: 108px;
    top: 54%;
    left: 82%;
    opacity: 0.55;
  }

  .downlink-line {
    top: 25%;
    left: 74%;
    height: 230px;
  }

  .hero-text {
    font-size: 18px;
  }

  .primary-action,
  .secondary-action {
    width: 100%;
  }

  .hero-facts {
    grid-template-columns: 1fr;
    margin-top: 24px;
  }

  .hero-panel {
    display: none;
  }

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

  .proof-band-inner div {
    min-height: 104px;
    padding: 24px 20px;
  }

  .proof-band-inner strong {
    font-size: 34px;
  }

  .section {
    gap: 30px;
    padding: 76px 20px;
  }

  .section h2 {
    font-size: 36px;
  }

  .layer-stage {
    min-height: 290px;
    aspect-ratio: 1 / 1;
  }

  .layer-toolbar {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .layer-button {
    width: 100%;
  }

  .pipeline-grid,
  .index-grid {
    grid-template-columns: 1fr;
  }

  .pipeline-grid article,
  .index-card {
    min-height: auto;
  }

  .endpoint-list div {
    align-items: flex-start;
    flex-direction: column;
  }

  pre {
    padding: 18px;
    font-size: 12px;
  }

  .footer {
    align-items: flex-start;
    flex-direction: column;
    padding: 24px 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}
