@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:ital,wght@0,400;0,500;1,400&display=swap');

:root {
  color-scheme: dark;
  font-family: "IBM Plex Mono", monospace;
  background: #07090b;
  color: #f3f0e8;
  font-synthesis: none;
}

* { box-sizing: border-box; }

html, body, main { width: 100%; height: 100%; margin: 0; overflow: hidden; }

body {
  background:
    radial-gradient(circle at 68% 42%, rgba(37, 48, 55, .22), transparent 42%),
    #07090b;
}

canvas { position: fixed; inset: 0; width: 100%; height: 100%; }

.intro {
  position: fixed;
  z-index: 2;
  top: clamp(24px, 5vw, 72px);
  left: clamp(22px, 4vw, 64px);
  pointer-events: none;
}

.eyebrow, footer, .status, button {
  font-size: 10px;
  letter-spacing: .19em;
  text-transform: uppercase;
}

.eyebrow { margin: 0 0 10px; color: rgba(243, 240, 232, .56); }

.logo {
  display: block;
  width: 180px;
  height: auto;
  filter: brightness(0) invert(1);
  opacity: .96;
}

.dek {
  margin: clamp(22px, 4vh, 42px) 0 0;
  color: rgba(243, 240, 232, .66);
  font-family: "IBM Plex Mono", monospace;
  font-size: clamp(14px, 1.25vw, 19px);
  font-style: normal;
  line-height: 1.55;
}

.status {
  position: fixed;
  z-index: 2;
  top: clamp(26px, 4vw, 58px);
  right: clamp(22px, 4vw, 64px);
  display: grid;
  grid-template-columns: 76px 110px 72px;
  align-items: center;
  gap: 14px;
  color: rgba(243, 240, 232, .58);
}

.rule { height: 1px; background: rgba(243, 240, 232, .2); }
.rule i { display: block; width: 0; height: 1px; background: #f3f0e8; }
#count { text-align: right; }

button {
  position: fixed;
  z-index: 3;
  right: clamp(22px, 4vw, 64px);
  bottom: clamp(28px, 4vw, 58px);
  min-width: 88px;
  min-height: 40px;
  padding: 11px 18px;
  border: 1px solid rgba(255, 255, 255, .72);
  color: #fff;
  background: #000;
  cursor: pointer;
}

button:hover { background: #17191b; }
button:focus-visible { outline: 2px solid #fff; outline-offset: 3px; }

footer {
  position: fixed;
  z-index: 2;
  left: clamp(22px, 4vw, 64px);
  bottom: clamp(30px, 4vw, 60px);
  display: flex;
  gap: 30px;
  color: rgba(243, 240, 232, .42);
}

footer span:not(:last-child)::after { content: "·"; position: relative; left: 15px; }

@media (max-width: 700px) {
  .status { display: none; }
  .dek { display: none; }
  footer span:not(:first-child) { display: none; }
}

@media (prefers-reduced-motion: reduce) { button { display: none; } }
