:root {
  --bg: #f7f5f0;
  --text: #171717;
  --muted: #5a5a5a;
  --line: rgba(23, 23, 23, 0.1);
  --accent: #333333;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  min-height: 100vh;
  min-height: 100dvh;
  font-family: "IBM Plex Sans", sans-serif;
  color: var(--text);
  background: var(--bg);
}

.page {
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  place-items: center;
  padding: 32px 24px;
}

.hero {
  width: min(560px, 100%);
  padding: 0;
}

h1 {
  margin: 0;
  max-width: 100%;
  font-size: clamp(2.25rem, 6.5vw, 3.9rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
}

.nowrap {
  white-space: nowrap;
}

.link {
  display: inline-flex;
  align-items: center;
  min-height: auto;
  padding: 0;
  border: 0;
  border-bottom: 1px solid var(--text);
  border-radius: 0;
  background: transparent;
  color: var(--text);
  margin-top: 20px;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: -0.01em;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.link:hover,
.link:focus-visible {
  background: transparent;
  border-color: rgba(23, 23, 23, 0.45);
  color: #000;
  transform: none;
}

@media (max-width: 640px) {
  h1 {
    font-size: clamp(2.1rem, 9.5vw, 3.1rem);
  }

  .link {
    font-size: 0.9rem;
  }
}
