:root {
  color-scheme: dark;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  background: #07111f;
  color: #e8f0fb;
}

body {
  margin: 0;
  min-height: 100vh;
  background: radial-gradient(circle at top, #17304f, #07111f 55%);
}

main {
  width: min(920px, calc(100% - 32px));
  margin: 0 auto;
  padding: 64px 0;
}

.eyebrow {
  color: #6ee7d8;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

h1 {
  margin: 8px 0;
  font-size: clamp(2rem, 7vw, 4rem);
}

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

article,
dl div {
  padding: 20px;
  border: 1px solid #294765;
  border-radius: 16px;
  background: #0c1d30;
}

article span {
  display: inline-grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  background: #167b72;
}

dl {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

dt {
  color: #9db2ca;
}

dd {
  margin: 8px 0 0;
  font-weight: 700;
}

@media (max-width: 680px) {
  .pipeline,
  dl {
    grid-template-columns: 1fr;
  }
}
