/* ───── topbar ───── */
.topbar {
  position: fixed; top: 0; left: 0; right: 0;
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 32px;
  z-index: 50;
  background: linear-gradient(to bottom, var(--bg), transparent);
  pointer-events: none;
}
.topbar > * { pointer-events: auto; }
.topbar .mono { font-size: 11px; color: var(--ink-faint); }
.topbar .pulse { display: inline-flex; align-items: center; gap: 8px; }
.topbar .pulse::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent-glow);
  box-shadow: 0 0 8px var(--accent-glow);
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}

/* ───── hero ───── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 140px 64px 80px;
  border-top: none;
}
.hero-eyebrow {
  display: flex; gap: 24px; align-items: center;
  margin-bottom: 48px;
}
.hero-eyebrow .line {
  flex: 1; height: 1px; background: var(--rule); max-width: 200px;
}
.hero h1 {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(56px, 11vw, 184px);
  line-height: 0.92;
  letter-spacing: -0.04em;
  margin-bottom: 32px;
}
.hero h1 .num {
  font-weight: 500;
  color: var(--accent-glow);
  font-style: italic;
  font-family: var(--serif);
  letter-spacing: -0.02em;
}
.hero h1 .cheer {
  display: inline-flex;
  align-items: baseline;
  gap: 18px;
  color: var(--ink-faint);
  font-size: 0.45em;
  font-weight: 300;
}
.hero h1 .cheer .emoji {
  font-family: "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", sans-serif;
  font-size: 1em;
  line-height: 1;
  filter: grayscale(0.15);
}
.hero-sub {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: end;
  gap: 64px;
  margin-top: 64px;
}
.hero-sub .col p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-dim);
  max-width: 36ch;
}
.hero-sub .col.right { text-align: right; justify-self: end; }
.hero-sub .center {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-faint);
  text-align: center;
  letter-spacing: 0.2em;
}
.hero-sub .center .skull {
  display: block;
  font-size: 22px;
  color: var(--accent);
  margin-bottom: 12px;
  opacity: 0.7;
}

/* ───── footer ───── */
footer {
  padding: 100px 64px 60px;
  border-top: 1px solid var(--rule);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  align-items: end;
}
footer .big {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(28px, 4vw, 56px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--ink);
}
footer .big .accent { color: var(--accent-glow); }
footer .meta {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--ink-faint);
  text-transform: uppercase;
  line-height: 2;
}
footer .right { text-align: right; }
footer .skull-row {
  display: flex;
  gap: 12px;
  color: var(--accent);
  font-size: 18px;
  opacity: 0.6;
  justify-content: flex-end;
  margin-bottom: 16px;
}
