@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@500;700&display=swap");

:root {
  color-scheme: light;
  --bg: #ffffff;
  --text: #000000;
  --muted: rgba(0, 0, 0, 0.5);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Space Grotesk", system-ui, -apple-system, sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 24px;
  text-align: center;
}

.title {
  font-size: clamp(32px, 6vw, 64px);
  font-weight: 700;
  margin: 0 0 10px 0;
  letter-spacing: 0.2px;
}

.subtitle {
  font-size: clamp(16px, 2.5vw, 22px);
  font-weight: 500;
  margin: 0 0 28px 0;
  color: var(--muted);
}

.links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.link {
  border: 2px solid var(--text);
  padding: 12px 18px;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.legal {
  position: fixed;
  bottom: 20px;
  display: flex;
  gap: 12px;
  font-size: 12px;
  color: var(--muted);
}

@media (max-width: 540px) {
  .legal {
    position: static;
    margin-top: 24px;
  }
}
