:root {
  color-scheme: light;
  --ink: #1f2933;
  --muted: #5f6b7a;
  --line: #d8dee6;
  --paper: #f8fafc;
  --accent: #0f766e;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  min-height: 100vh;
  margin: 0;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: var(--ink);
  background: var(--paper);
}

.page {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 2rem;
}

.intro {
  width: min(100%, 42rem);
  padding-block: 10vh;
}

.domain {
  margin: 0 0 1rem;
  color: var(--accent);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  max-width: 12ch;
  margin: 0;
  font-size: 5.75rem;
  line-height: 0.92;
}

.summary {
  max-width: 34rem;
  margin: 1.5rem 0 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 1.25rem;
  line-height: 1.55;
}

.links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 2rem;
}

.links a {
  color: var(--accent);
  font-size: 1rem;
  font-weight: 700;
  text-decoration-thickness: 0.1em;
  text-underline-offset: 0.2em;
}

@media (max-width: 40rem) {
  .page {
    place-items: end start;
    padding: 1.25rem;
  }

  .intro {
    padding-block: 6vh;
  }

  h1 {
    font-size: 3rem;
  }

  .summary {
    font-size: 1.125rem;
  }
}
