:root {
  color-scheme: dark;
  font-family: Arial, Helvetica, sans-serif;
  font-synthesis: none;
  --background: #000;
  --foreground: #fff;
  --accent: #f02b2b;
  --muted: #b7b7b7;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--background);
}

body {
  min-width: 320px;
  min-height: 100svh;
  margin: 0;
  overflow-x: hidden;
  background: var(--background);
  color: var(--foreground);
}

.landing {
  display: grid;
  min-height: 100svh;
  align-items: center;
  padding: clamp(2rem, 6vw, 6rem);
}

.content {
  width: min(100%, 90rem);
}

h1 {
  max-width: 12ch;
  margin: 0;
  font-size: clamp(3.2rem, 11.5vw, 11rem);
  font-weight: 800;
  line-height: 0.82;
  letter-spacing: -0.075em;
  text-wrap: balance;
}

.apostrophe {
  color: var(--accent);
}

p {
  margin: clamp(1.75rem, 4vw, 3.5rem) 0 0;
  color: var(--muted);
  font-size: clamp(0.82rem, 1.3vw, 1rem);
  line-height: 1.6;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: clamp(2rem, 4vw, 3.5rem);
}

a {
  display: inline-flex;
  min-width: 9.5rem;
  min-height: 3.25rem;
  align-items: center;
  justify-content: center;
  border: 1px solid #565656;
  color: var(--foreground);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-decoration: none;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease;
}

a:hover {
  border-color: var(--foreground);
  background: var(--foreground);
  color: var(--background);
}

a:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 4px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 38rem) {
  .landing {
    align-items: end;
    padding-block: 3rem;
  }

  h1 {
    max-width: 9ch;
    font-size: clamp(3rem, 18vw, 5.5rem);
    line-height: 0.87;
  }

  p {
    max-width: 28rem;
  }

  nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  a {
    min-width: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  a {
    transition: none;
  }
}
