:root {
  color-scheme: dark;
  --bg: #080a0d;
  --text: #f4f6f8;
  --muted: #98a2ad;
  --line: #242b33;
  --signal: #a7f3d0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
* { box-sizing: border-box; }
body {
  min-height: 100vh; margin: 0; display: grid; place-items: center; color: var(--text);
  background: radial-gradient(circle at 15% 20%, rgb(32 63 53 / 28%), transparent 34rem), var(--bg);
}
main { width: min(880px, calc(100% - 40px)); padding: 80px 0; }
.eyebrow, .label { color: var(--muted); font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; }
.eyebrow span { display: inline-block; width: 8px; height: 8px; margin-right: 8px; border-radius: 50%; background: var(--signal); box-shadow: 0 0 20px var(--signal); }
h1 { max-width: 760px; margin: 22px 0; font-size: clamp(3rem, 9vw, 7rem); font-weight: 580; letter-spacing: -.065em; line-height: .9; }
.intro { max-width: 650px; color: #c8ced5; font-size: clamp(1.08rem, 2vw, 1.35rem); line-height: 1.6; }
section { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 64px; border: 1px solid var(--line); background: rgb(17 21 26 / 72%); }
section div { min-height: 128px; padding: 24px; border-right: 1px solid var(--line); }
section div:last-child { border: 0; }
section p:last-child { margin: 24px 0 0; font-size: 1.05rem; }
.next { margin-top: 26px; color: var(--muted); font-size: .9rem; }
@media (max-width: 650px) {
  main { padding: 56px 0; }
  section { grid-template-columns: 1fr; margin-top: 44px; }
  section div { min-height: auto; border-right: 0; border-bottom: 1px solid var(--line); }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
