:root {
  --bg: #0a0a0c;
  --text-primary: #f2f0ec;
  --text-secondary: #8b8b90;
  --accent-coral: #ff6b4a;
  --accent-teal: #3fa9a0;
}

* { box-sizing: border-box; }

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

body {
  background: var(--bg);
  color: var(--text-primary);
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 1.5rem;
}

.page {
  width: 100%;
  max-width: 34rem;
  text-align: center;
}

.name {
  font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-weight: 700;
  font-size: clamp(1.75rem, 6vw, 2.75rem);
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--text-primary);
}

.cursor {
  color: var(--accent-coral);
  animation: blink 1.1s steps(1) infinite;
}

@keyframes blink {
  0%, 49% { opacity: 1; }
  50%, 100% { opacity: 0; }
}

.tagline {
  margin: 0.9rem 0 0;
  font-size: clamp(0.9rem, 2.4vw, 1.05rem);
  line-height: 1.5;
}

.tagline a {
  color: var(--text-secondary);
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 3px;
  transition: color 0.15s ease, text-decoration-color 0.15s ease;
}

.tagline a:hover,
.tagline a:focus-visible {
  color: var(--accent-teal);
  text-decoration-color: var(--accent-teal);
}

.links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  justify-content: center;
  margin-top: 2.5rem;
}

.links a {
  display: inline-flex;
  color: var(--text-secondary);
  padding: 0.25rem;
  border-radius: 6px;
  transition: color 0.15s ease;
}

.links a svg {
  width: 22px;
  height: 22px;
}

.links a:hover,
.links a:focus-visible {
  color: var(--accent-coral);
}

.links a:focus-visible {
  outline: 2px solid var(--accent-teal);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  .cursor {
    animation: none;
    opacity: 1;
  }
}
