html {
  background: #08111f;
  color: #f8fafc;
  font-family: Geist, Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body {
  margin: 0;
}

main {
  box-sizing: border-box;
  min-height: 100vh;
  max-width: 820px;
  margin: 0 auto;
  padding: 56px 24px;
}

a {
  color: #7ed8c9;
  text-underline-offset: 4px;
}

.brand {
  color: #9b87f5;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.18em;
  margin: 0 0 20px;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(40px, 8vw, 72px);
  letter-spacing: 0;
  line-height: 0.98;
  margin: 0;
}

p,
li {
  color: #cbd5e1;
  font-size: 18px;
  line-height: 1.7;
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 36px 0;
}

dl {
  border-top: 1px solid rgba(203, 213, 225, 0.22);
  display: grid;
  gap: 22px;
  margin-top: 40px;
  padding-top: 28px;
}

dt {
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  margin-bottom: 8px;
  text-transform: uppercase;
}

dd {
  color: #cbd5e1;
  margin: 0;
}

@media (min-width: 720px) {
  dl {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
