* {
  box-sizing: border-box;
}

:root {
  color-scheme: dark;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #101418;
  color: #e9eef3;
}

body {
  min-height: 100vh;
  margin: 0;
  display: grid;
  place-items: center;
  background:
    linear-gradient(140deg, rgba(34, 197, 94, 0.12), transparent 38%),
    radial-gradient(circle at 70% 20%, rgba(56, 189, 248, 0.11), transparent 32%),
    #101418;
}

main {
  width: min(720px, calc(100vw - 40px));
}

.eyebrow {
  margin: 0 0 14px;
  color: #9fb0bd;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1 {
  max-width: 12ch;
  margin: 0;
  font-size: clamp(42px, 8vw, 76px);
  line-height: 0.95;
  font-weight: 760;
}

.lead {
  max-width: 520px;
  margin: 24px 0 34px;
  color: #b8c5cf;
  font-size: 18px;
  line-height: 1.6;
}

section {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid rgba(233, 238, 243, 0.14);
  background: rgba(233, 238, 243, 0.12);
}

section div {
  min-height: 96px;
  padding: 18px;
  display: grid;
  align-content: space-between;
  background: rgba(16, 20, 24, 0.78);
}

span {
  color: #8fa0ad;
  font-size: 13px;
}

strong {
  color: #e9eef3;
  font-size: 20px;
  font-weight: 650;
}

@media (max-width: 560px) {
  body {
    place-items: start;
    padding: 56px 0;
  }

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