:root {
  --bg: #131619;
  --text: #f4f5f6;
  --muted: #a8adb3;
  --font: Inter, system-ui, -apple-system, sans-serif;
  --display: Anton, Impact, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

/* ——— Background ——— */
.page-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  background: var(--bg);
}

.lattice {
  position: absolute;
  inset: -20%;
  background:
    repeating-linear-gradient(
      118deg,
      rgba(255, 255, 255, 0.028) 0 2px,
      transparent 2px 16px
    ),
    repeating-linear-gradient(
      118deg,
      rgba(255, 255, 255, 0.018) 0 2px,
      transparent 2px 34px
    );
  opacity: 0.55;
  mask-image: radial-gradient(ellipse 75% 70% at 50% 40%, #000 30%, transparent 78%);
}

.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
}

.glow-gray {
  width: 520px;
  height: 520px;
  bottom: -220px;
  right: -120px;
  background: rgba(168, 173, 179, 0.08);
}

/* ——— Layout ——— */
.landing {
  flex: 1;
  width: min(1080px, 92%);
  margin: 0 auto;
  padding: 3.5rem 0 4.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ——— Hero ——— */
.hero {
  text-align: center;
}

.logo {
  width: min(430px, 86%);
  height: auto;
  aspect-ratio: 2544 / 972;
  margin: 0 auto 2.1rem;
  filter: drop-shadow(0 14px 34px rgba(0, 0, 0, 0.45));
}

h1 {
  margin: 0;
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(2.2rem, 6.5vw, 4.2rem);
  line-height: 1.06;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

h1 span {
  color: var(--muted);
}

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