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

body {
  background: #000;
  color: #fff;
  overflow: hidden;
  height: 100vh;
  height: 100dvh;
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
}

#bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

/* ─── Top right ───────────────────────────────────── */
.top-right {
  position: fixed;
  top: clamp(1.5rem, 4vw, 3rem);
  right: clamp(1.5rem, 4vw, 3rem);
  z-index: 1;
  text-align: right;
}

/* ─── Hero: oversized loe. ────────────────────────── */
.hero {
  position: fixed;
  z-index: 1;
  pointer-events: none;
  left: clamp(1.5rem, 4vw, 3rem);
  top: 50%;
  transform: translateY(-50%);
  line-height: 0.82;
}

.hero-lo,
.hero-e {
  display: block;
  font-size: clamp(12rem, 28vw, 28rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  text-transform: none;
}

.hero-e {
  margin-top: -0.02em;
}

/* ─── Bottom left: tagline ────────────────────────── */
.bottom-left {
  position: fixed;
  bottom: clamp(1.5rem, 4vw, 3rem);
  left: clamp(1.5rem, 4vw, 3rem);
  z-index: 1;
}

.tagline {
  font-size: clamp(0.75rem, 1.8vw, 1.1rem);
  letter-spacing: 0.04em;
  line-height: 1.2;
}

/* ─── Bottom right: github + member ───────────────── */
.bottom-right {
  position: fixed;
  bottom: clamp(1.5rem, 4vw, 3rem);
  right: clamp(1.5rem, 4vw, 3rem);
  z-index: 1;
  text-align: right;
}

.info-link {
  display: block;
  font-size: clamp(0.75rem, 1.8vw, 1.1rem);
  letter-spacing: 0.04em;
  color: #fff;
  text-decoration: none;
  transition: opacity 0.3s ease;
  margin-bottom: 0.4em;
}

.info-link:hover {
  opacity: 0.6;
}

/* ─── Mobile adjustments ──────────────────────────── */
@media (max-width: 600px) {
  .hero {
    left: 1.2rem;
  }

  .top-right {
    top: 1.2rem;
    right: 1.2rem;
  }

  .bottom-left {
    bottom: calc(1.2rem + env(safe-area-inset-bottom, 0px));
    left: 1.2rem;
  }

  .bottom-right {
    bottom: calc(1.2rem + env(safe-area-inset-bottom, 0px));
    right: 1.2rem;
  }

  .info-link {
    font-size: 0.85rem;
  }
}
