* { box-sizing: border-box; }
html, body { margin: 0; min-height: 100%; }
body {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #172033;
  background: #f7f9fc;
}
.hero {
  min-height: calc(100vh - 64px);
  display: grid;
  place-items: center;
  padding: 48px 24px;
}
.content {
  width: min(900px, 100%);
  text-align: center;
}
.mark {
  display: inline-grid;
  place-items: center;
  width: 88px;
  height: 88px;
  border-radius: 22px;
  background: #172033;
  color: white;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: .04em;
  margin-bottom: 24px;
}
.eyebrow {
  margin: 0 0 12px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .2em;
}
h1 {
  margin: 0;
  font-size: clamp(40px, 7vw, 72px);
  line-height: 1.02;
  letter-spacing: -.045em;
}
.lead {
  max-width: 760px;
  margin: 28px auto 36px;
  font-size: clamp(18px, 2.2vw, 22px);
  line-height: 1.65;
  color: #526079;
}
.pipeline {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding: 20px;
  border: 1px solid #dfe5ee;
  border-radius: 16px;
  background: white;
  font-size: 14px;
  font-weight: 650;
}
.pipeline b { color: #8a96aa; }
.coming {
  margin-top: 34px;
  font-size: 17px;
  font-weight: 750;
}
footer {
  height: 64px;
  display: grid;
  place-items: center;
  color: #7a8699;
  font-size: 13px;
}
@media (max-width: 600px) {
  .pipeline { flex-direction: column; }
  .pipeline b { transform: rotate(90deg); }
}
