:root { color-scheme: dark; }
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: #050505;
  color: #f2f2f2;
  font-family: Arial, Helvetica, sans-serif;
}
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 3rem 1.25rem;
  background: radial-gradient(ellipse at center, #1a0a08 0%, #050505 70%);
}
.wordmark { width: min(720px, 92vw); height: auto; }
.bio {
  max-width: 38rem;
  margin: 1.5rem auto 2rem;
  line-height: 1.5;
  color: #cfcfcf;
}
.cta, .links { display: flex; flex-wrap: wrap; gap: .75rem 1.25rem; justify-content: center; }
.cta a, .links a {
  color: #ff6a1a;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.cta a:hover, .links a:hover { color: #fff; }
.scroll { display: grid; }
.panel {
  position: relative;
  display: block;
  color: #fff;
  text-decoration: none;
}
.panel img { width: 100%; height: auto; display: block; }
.panel span {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  font-size: clamp(1.4rem, 4vw, 2.4rem);
  font-weight: 800;
  text-transform: uppercase;
  text-shadow: 0 2px 16px #000;
}
.links { padding: 3rem 1rem 2rem; }
footer {
  text-align: center;
  padding: 0 1rem 3rem;
  color: #8a8a8a;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .8rem;
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
