:root {
  color-scheme: dark;
  --ink: #050505;
  --bg: #f5f5f5;
  --line: rgba(255, 255, 255, 0.16);
  --line-strong: rgba(255, 255, 255, 0.28);
}

* {
  box-sizing: border-box;
}

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

body {
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  place-items: center;
  padding: 24px;
}

.hero h1 {
  margin: 0;
  color: #000000;
  font-size: clamp(52px, 12vw, 176px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.92;
  text-align: center;
}

.top-links {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  gap: 10px;
}

.top-links a {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  color: #000000;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.top-links a:hover {
  border-color: var(--line-strong);
}
