:root {
  color-scheme: light;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #171717;
  background: #fafaf9;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  display: grid;
  grid-template-rows: auto 1fr auto;
}

header,
footer {
  padding: 20px clamp(24px, 5vw, 72px);
}

header {
  border-bottom: 1px solid #e5e5e5;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: inherit;
  font-size: 15px;
  font-weight: 650;
  text-decoration: none;
}

.brand img {
  width: 32px;
  height: 32px;
  border-radius: 8px;
}

main {
  display: grid;
  place-items: center;
  padding: 64px 24px 80px;
}

.hero {
  width: min(100%, 860px);
}

.logo {
  display: block;
  width: clamp(112px, 18vw, 180px);
  height: auto;
  margin-bottom: 42px;
  border-radius: 28px;
  box-shadow: 0 20px 60px rgb(23 23 23 / 12%);
}

.eyebrow {
  margin: 0 0 18px;
  color: #666;
  font-size: 14px;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(42px, 8vw, 88px);
  font-weight: 650;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.intro {
  max-width: 680px;
  margin: 28px 0 48px;
  color: #525252;
  font-size: clamp(19px, 2.5vw, 25px);
  line-height: 1.55;
}

dl {
  margin: 0;
  border-top: 1px solid #d4d4d4;
}

dl div {
  display: grid;
  grid-template-columns: minmax(90px, 160px) 1fr;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid #d4d4d4;
}

dt {
  color: #737373;
}

dd {
  margin: 0;
  font-weight: 600;
}

dd a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

dd a:hover,
dd a:focus-visible {
  color: #1565c0;
}

footer {
  border-top: 1px solid #e5e5e5;
  color: #737373;
  font-size: 13px;
}

@media (max-width: 520px) {
  main {
    place-items: start;
    padding-top: 48px;
  }

  .logo {
    margin-bottom: 34px;
  }

  dl div {
    grid-template-columns: 72px 1fr;
    gap: 16px;
  }
}
