:root {
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system,
    BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #f5f6f8;
  color: #18202a;
  line-height: 1.6;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
}

a {
  color: inherit;
}

.top {
  max-width: 1120px;
  margin: 0 auto;
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  font-weight: 700;
  letter-spacing: -.02em;
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

nav a {
  text-decoration: none;
  color: #596575;
}

.wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 88px 32px 110px;
}

.narrow {
  max-width: 760px;
}

.hero {
  max-width: 800px;
}

.eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em;
  color: #718096;
}

h1 {
  margin: 10px 0 24px;
  font-size: clamp(44px, 7vw, 82px);
  line-height: 1.02;
  letter-spacing: -.055em;
}

.narrow h1 {
  font-size: clamp(40px, 6vw, 64px);
}

h2 {
  margin-top: 42px;
  letter-spacing: -.025em;
}

.lead {
  max-width: 700px;
  font-size: 20px;
  color: #596575;
}

.grid {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

article,
.status {
  background: #fff;
  border: 1px solid #e4e7eb;
  border-radius: 18px;
  padding: 28px;
}

article h2 {
  margin-top: 0;
}

article p,
.status p {
  color: #667384;
}

.status {
  margin: 40px 0;
  display: flex;
  align-items: center;
  gap: 18px;
}

.status p {
  margin: 3px 0 0;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: #38a169;
  box-shadow: 0 0 0 6px #e6ffed;
}

.button {
  display: inline-block;
  margin-top: 18px;
  padding: 12px 18px;
  background: #18202a;
  color: #fff;
  border-radius: 10px;
  text-decoration: none;
}

footer {
  max-width: 1120px;
  margin: 0 auto;
  padding: 30px 32px 50px;
  border-top: 1px solid #dde2e7;
  display: flex;
  justify-content: space-between;
  color: #7b8794;
  font-size: 14px;
}

.error {
  padding-top: 18vh;
}

@media (max-width: 720px) {
  .top,
  footer {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .wrap {
    padding-top: 60px;
  }
}
