:root {
  color-scheme: light;
  font-family:
    Inter,
    ui-sans-serif,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  background: #f6f7f9;
  color: #172033;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  min-height: 100%;
}

body {
  min-height: 100vh;
  min-height: 100svh;
  margin: 0;
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: clamp(1.5rem, 4vw, 3rem);
}

header,
main,
footer {
  width: min(100%, 76rem);
  margin-inline: auto;
}

.brand {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: inherit;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.brand-mark {
  width: 2rem;
  height: 2rem;
  color: #3157d5;
}

main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-block: clamp(5rem, 15vh, 10rem);
}

.eyebrow {
  margin: 0 0 1.5rem;
  color: #3157d5;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

h1 {
  max-width: 11ch;
  margin: 0;
  font-size: clamp(3.5rem, 10vw, 8rem);
  font-weight: 650;
  letter-spacing: -0.07em;
  line-height: 0.92;
}

.intro {
  max-width: 34rem;
  margin: 2rem 0 0;
  color: #56657a;
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  line-height: 1.55;
}

.note {
  margin: 2rem 0 0;
  padding-top: 2rem;
  border-top: 1px solid #dce1e8;
  color: #172033;
  font-size: 0.875rem;
  font-weight: 600;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.25rem;
  border-top: 1px solid #dce1e8;
  color: #6a7688;
  font-size: 0.75rem;
}

footer a {
  color: inherit;
  text-underline-offset: 0.2em;
}

footer a:hover {
  color: #172033;
}

::selection {
  background: #cfd9ff;
}

@media (max-width: 36rem) {
  footer {
    flex-direction: column;
  }
}
