:root {
  color-scheme: light;
  --bg: #f8f7f4;
  --text: #0f0f0f;
  --subtle: #c8c6c0;
}

* {
  box-sizing: border-box;
  margin: 0;
}

body {
  min-height: 100vh;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 100;
  background: var(--bg);
  color: var(--text);
  display: flex;
  flex-direction: column;
}

.hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 1.5rem;
  gap: 1.5rem;
}

.logo-wrap {
  width: clamp(140px, 20vw, 220px);
  aspect-ratio: 1;
  border-radius: 999px;
  overflow: hidden;
  border: 1px solid var(--subtle);
  padding: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
}

.logo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  font-weight: 200;
}

.anagram {
  font-size: clamp(1rem, 3vw, 1.5rem);
  letter-spacing: 0.65rem;
  text-transform: uppercase;
  color: #6d6d6d;
  font-weight: 200;
}

footer {
  width: 100%;
  text-align: center;
  padding: 1.5rem;
  font-size: 0.85rem;
  color: #4f4f4f;
}

footer a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}

footer a:hover {
  border-color: currentColor;
}
