:root {
  --bg: #000000;
  --fg: #ededed;
  --muted: #8a8a8a;
  --faint: #5a5a5a;
  --line: #242424;
  --font: "Geist", ui-sans-serif, system-ui, -apple-system, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font);
  font-weight: 400;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

.eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.menu {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(16px);
}

.menu__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1120px;
  margin: 0 auto;
  padding: 1.05rem 1.5rem;
}

.menu__brand {
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.menu__links {
  display: flex;
  gap: 1.75rem;
  list-style: none;
}

.menu__links a {
  font-size: 0.85rem;
  color: var(--muted);
  transition: color 0.2s ease;
}

.menu__links a:hover,
.menu__links a.is-active {
  color: var(--fg);
}

.about {
  max-width: 1120px;
  margin: 0 auto;
  padding: 8.5rem 1.5rem 7rem;
}

.about h1 {
  margin-top: 1.25rem;
  font-size: clamp(3.4rem, 9vw, 6.4rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.92;
}

.about__roles {
  margin-top: 1.75rem;
  font-size: clamp(1.15rem, 2.4vw, 1.55rem);
  font-weight: 400;
  letter-spacing: -0.03em;
  color: var(--muted);
}

.about__copy {
  max-width: 34rem;
  margin-top: 2.4rem;
  font-size: 1.05rem;
  line-height: 1.7;
  color: #c8c8c8;
}

.about__place {
  margin-top: 2rem;
  font-size: 0.9rem;
  color: var(--faint);
}

.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(ellipse 70% 55% at 50% 48%, #141414 0%, #000 72%);
}

.hero canvas {
  display: block;
  width: 100%;
  height: 100%;
  cursor: grab;
}

.hero canvas:active {
  cursor: grabbing;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  max-width: 1120px;
  margin: 0 auto;
  padding: 1.6rem 1.5rem 2rem;
}

.footer__name,
.footer__copy {
  font-size: 0.8rem;
  color: var(--faint);
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
}

.footer__links a {
  font-size: 0.8rem;
  color: var(--muted);
  transition: color 0.2s ease;
}

.footer__links a:hover {
  color: var(--fg);
}

@media (max-width: 720px) {
  .about {
    padding: 6.5rem 1.25rem 4.5rem;
  }

  .hero {
    min-height: 540px;
  }

  .footer {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem 1.25rem 2rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
