:root {
  color-scheme: dark;
  --ink: #050505;
  --night: #0b0c0c;
  --graphite: #171818;
  --fog: #f5f2ea;
  --muted: #a6a198;
  --line: rgba(245, 242, 234, 0.16);
  --acid: #c8ff41;
  --infrared: #ff3b28;
  --cyan: #7df2ff;
  --champagne: #d8c69a;
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.42);
  --beat: 500ms;
  --beat-2: 1000ms;
  --beat-4: 2000ms;
  --beat-6: 3000ms;
  --beat-8: 4000ms;
  --beat-12: 6000ms;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background:
    linear-gradient(118deg, rgba(125, 242, 255, 0.09), transparent 28%),
    linear-gradient(248deg, rgba(255, 59, 40, 0.12), transparent 34%),
    linear-gradient(180deg, #020202 0%, #171016 46%, #050505 100%);
  color: var(--fog);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  letter-spacing: 0;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  background-image:
    linear-gradient(rgba(245, 242, 234, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 242, 234, 0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.84), transparent 88%);
}

body::after {
  position: fixed;
  inset: 0;
  z-index: 1;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.78), transparent 22%, transparent 78%, rgba(5, 5, 5, 0.76)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.18), transparent 34%, rgba(0, 0, 0, 0.64));
}

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

button,
input,
select {
  font: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  clip-path: inset(50%);
}

#pulse-field {
  position: fixed;
  inset: 0;
  z-index: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  opacity: 0.95;
  mix-blend-mode: screen;
}

.grain {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.14;
  background-image:
    repeating-linear-gradient(12deg, rgba(255, 255, 255, 0.055) 0 1px, transparent 1px 6px),
    repeating-linear-gradient(97deg, rgba(255, 255, 255, 0.025) 0 1px, transparent 1px 9px);
  mix-blend-mode: screen;
}

.cursor-light {
  position: fixed;
  left: 52vw;
  top: 42vh;
  z-index: 1;
  width: 34rem;
  height: 24rem;
  pointer-events: none;
  opacity: 0.3;
  transform: translate3d(-50%, -50%, 0);
  background:
    linear-gradient(112deg, transparent 8%, rgba(200, 255, 65, 0.28) 43%, transparent 78%),
    linear-gradient(74deg, transparent 20%, rgba(125, 242, 255, 0.24) 52%, transparent 84%);
  filter: blur(22px);
  mix-blend-mode: screen;
  animation: cursor-beat var(--beat) cubic-bezier(0.18, 0.86, 0.22, 1) infinite;
}

main,
.site-footer {
  position: relative;
  z-index: 2;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.05rem clamp(1rem, 3vw, 2.5rem);
  color: var(--fog);
  transition:
    background 220ms ease,
    border-color 220ms ease,
    backdrop-filter 220ms ease;
}

.site-header[data-elevated="true"] {
  border-bottom: 1px solid var(--line);
  background: rgba(5, 5, 5, 0.72);
  backdrop-filter: blur(24px);
}

.brand-lockup {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 0.55rem;
}

.brand-symbol {
  width: 3rem;
  height: auto;
  object-fit: contain;
  filter: invert(1) drop-shadow(0 0 18px rgba(245, 242, 234, 0.16));
}

.brand-wordmark {
  width: auto;
  height: 2rem;
  max-width: 5.8rem;
  object-fit: contain;
  filter: none;
}

.site-header nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(0.55rem, 2vw, 1.25rem);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.site-header nav a {
  position: relative;
  padding: 0.55rem 0;
  color: rgba(245, 242, 234, 0.72);
}

.site-header nav a::after {
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0.34rem;
  height: 2px;
  content: "";
  background: var(--acid);
  transition: right 180ms ease;
}

.site-header nav a:hover,
.site-header nav a:focus-visible {
  color: var(--fog);
}

.site-header nav a:hover::after,
.site-header nav a:focus-visible::after {
  right: 0;
}

.social-handle {
  display: inline-flex;
  min-height: 2.35rem;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(245, 242, 234, 0.18);
  border-radius: 999px;
  padding: 0.65rem 0.78rem;
  background: rgba(5, 5, 5, 0.28);
  color: rgba(245, 242, 234, 0.82);
  font-size: 0.7rem;
  font-weight: 950;
  text-transform: uppercase;
  backdrop-filter: blur(14px);
}

.social-handle:hover,
.social-handle:focus-visible {
  border-color: var(--acid);
  color: var(--acid);
}

.hero {
  position: relative;
  display: grid;
  min-height: 92svh;
  padding: clamp(6.5rem, 12vh, 8rem) clamp(1rem, 4vw, 4rem) 4rem;
  overflow: hidden;
  grid-template-columns: minmax(0, 1.05fr) minmax(17rem, 0.48fr);
  gap: clamp(1.25rem, 5vw, 4rem);
  align-items: end;
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.48), transparent 54%),
    linear-gradient(transparent 62%, rgba(5, 5, 5, 0.9));
}

.hero-orbit {
  position: absolute;
  z-index: 1;
  inset: 4.5rem 0 auto auto;
  width: min(58vw, 48rem);
  aspect-ratio: 1;
  opacity: 1;
  mix-blend-mode: screen;
  pointer-events: none;
  transform: translate(16%, -12%);
}

.hero-orbit::before,
.hero-orbit::after {
  position: absolute;
  inset: 18%;
  z-index: 1;
  content: "";
  background: linear-gradient(100deg, var(--acid), var(--cyan) 48%, transparent 72%);
  opacity: 0.62;
  -webkit-mask: url("assets/tempo-symbol-cutout.png") center / contain no-repeat;
  mask: url("assets/tempo-symbol-cutout.png") center / contain no-repeat;
  filter:
    drop-shadow(0 0 18px rgba(200, 255, 65, 0.7))
    drop-shadow(0 0 44px rgba(125, 242, 255, 0.32));
  animation: laser-symbol var(--beat-8) ease-in-out infinite;
}

.hero-orbit::after {
  background: linear-gradient(80deg, transparent 8%, var(--infrared), var(--fog) 58%, transparent 78%);
  opacity: 0.36;
  transform: translate3d(0.8rem, -0.25rem, 0);
  filter:
    drop-shadow(0 0 16px rgba(255, 59, 40, 0.62))
    drop-shadow(0 0 40px rgba(245, 242, 234, 0.22));
  animation-duration: var(--beat-6);
  animation-direction: reverse;
}

.hero-symbol {
  position: absolute;
  inset: 18%;
  z-index: 2;
  width: 64%;
  height: 64%;
  object-fit: contain;
  opacity: 0.58;
  mix-blend-mode: screen;
  filter:
    invert(1)
    brightness(1.8)
    drop-shadow(0 0 12px rgba(200, 255, 65, 0.54))
    drop-shadow(0 0 34px rgba(125, 242, 255, 0.4))
    drop-shadow(0 0 80px rgba(255, 59, 40, 0.15));
  animation:
    symbol-float var(--beat-12) ease-in-out infinite,
    laser-flicker var(--beat-4) steps(2, end) infinite;
}

.logo-beam {
  position: absolute;
  z-index: 3;
  left: 0;
  right: 0;
  top: 50%;
  height: 2px;
  opacity: 0.64;
  background: linear-gradient(90deg, transparent, rgba(200, 255, 65, 0.95), rgba(125, 242, 255, 0.72), transparent);
  box-shadow:
    0 0 16px rgba(200, 255, 65, 0.72),
    0 0 44px rgba(125, 242, 255, 0.34);
  transform-origin: center;
  animation:
    beam-scan var(--beat-4) ease-in-out infinite,
    beam-kick var(--beat) cubic-bezier(0.18, 0.86, 0.22, 1) infinite;
}

.beam-one {
  transform: rotate(-14deg) translateY(-2.4rem);
}

.beam-two {
  height: 1px;
  opacity: 0.42;
  background: linear-gradient(90deg, transparent, rgba(255, 59, 40, 0.86), rgba(245, 242, 234, 0.7), transparent);
  box-shadow:
    0 0 14px rgba(255, 59, 40, 0.6),
    0 0 36px rgba(245, 242, 234, 0.22);
  transform: rotate(18deg) translateY(3.5rem);
  animation-delay: -1.3s;
}

.beam-three {
  top: 62%;
  opacity: 0.36;
  transform: rotate(-4deg);
  animation-delay: -2.2s;
}

.orbit-ring {
  position: absolute;
  z-index: 4;
  inset: 8%;
  border: 1px solid rgba(125, 242, 255, 0.28);
  border-radius: 50%;
  box-shadow: 0 0 28px rgba(125, 242, 255, 0.1);
  animation: spin 22s linear infinite;
}

.ring-two {
  inset: 18%;
  border-color: rgba(200, 255, 65, 0.28);
  box-shadow: 0 0 30px rgba(200, 255, 65, 0.1);
  animation-duration: 15s;
  animation-direction: reverse;
}

.orbit-ring::before,
.orbit-ring::after {
  position: absolute;
  width: 0.72rem;
  height: 0.72rem;
  content: "";
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 24px rgba(200, 255, 65, 0.8);
}

.orbit-ring::before {
  top: 10%;
  left: 18%;
}

.orbit-ring::after {
  right: 7%;
  bottom: 24%;
  background: var(--infrared);
  box-shadow: 0 0 24px rgba(255, 59, 40, 0.72);
}

.orbit-copy {
  position: absolute;
  z-index: 5;
  left: 50%;
  top: 50%;
  width: 100%;
  color: rgba(125, 242, 255, 0.23);
  font-size: clamp(0.68rem, 1vw, 0.86rem);
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
  transform: translate(-50%, -50%);
}

.copy-one {
  rotate: -8deg;
}

.copy-two {
  color: rgba(200, 255, 65, 0.2);
  rotate: 11deg;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 66rem;
}

.eyebrow,
.section-kicker {
  margin: 0 0 1rem;
  color: var(--acid);
  font-size: clamp(0.72rem, 1.1vw, 0.82rem);
  font-weight: 900;
  text-transform: uppercase;
}

h2,
h3,
p {
  margin-top: 0;
}

.hero-logo {
  position: relative;
  display: block;
  width: min(43rem, 90vw);
  max-width: 100%;
  margin: 0 0 1rem -1.15rem;
  isolation: isolate;
  transform-origin: 44% 52%;
  animation: hero-logo-kick var(--beat) cubic-bezier(0.18, 0.86, 0.22, 1) infinite;
}

.hero-logo::before,
.hero-logo::after {
  position: absolute;
  inset: -12% -8%;
  z-index: 0;
  content: "";
  opacity: 0.72;
  background: linear-gradient(112deg, var(--acid), var(--cyan) 36%, var(--infrared) 64%, transparent 82%);
  -webkit-mask: url("assets/tempo-wordmark-hero-white.png") center / contain no-repeat;
  mask: url("assets/tempo-wordmark-hero-white.png") center / contain no-repeat;
  filter: blur(12px);
  transform: translate3d(-0.4rem, 0.18rem, 0);
  animation: hero-logo-glow var(--beat) cubic-bezier(0.18, 0.86, 0.22, 1) infinite;
}

.hero-logo::after {
  opacity: 0.38;
  background: linear-gradient(72deg, transparent 8%, var(--infrared), var(--fog) 56%, var(--cyan) 80%);
  filter: blur(2px);
  transform: translate3d(0.7rem, -0.2rem, 0);
  animation-duration: var(--beat);
  animation-direction: reverse;
}

.hero-wordmark {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  height: auto;
  image-rendering: auto;
  filter:
    drop-shadow(0 0 1px rgba(255, 255, 255, 0.16))
    drop-shadow(0 0 12px rgba(200, 255, 65, 0.12));
}

.hero-logo-outlinefx {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  opacity: 0.42;
  background:
    linear-gradient(112deg, transparent 10%, rgba(200, 255, 65, 0.58), rgba(245, 242, 234, 0.72), transparent 38%),
    linear-gradient(62deg, transparent 22%, rgba(125, 242, 255, 0.48), transparent 58%);
  background-size:
    190% 190%,
    160% 160%;
  -webkit-mask: url("assets/tempo-wordmark-white-mask.png") center / contain no-repeat;
  mask: url("assets/tempo-wordmark-white-mask.png") center / contain no-repeat;
  mix-blend-mode: soft-light;
  filter:
    saturate(1.1)
    drop-shadow(0 0 7px rgba(200, 255, 65, 0.2))
    drop-shadow(0 0 18px rgba(125, 242, 255, 0.12));
  animation:
    outline-energy var(--beat-12) linear infinite,
    outline-kick var(--beat) cubic-bezier(0.18, 0.86, 0.22, 1) infinite;
}

.hero-logo-outlinefx::after {
  position: absolute;
  inset: 0;
  content: "";
  background: repeating-linear-gradient(
    90deg,
    transparent 0 18px,
    rgba(245, 242, 234, 0.2) 19px,
    transparent 21px 38px
  );
  opacity: 0.18;
  animation: outline-spark var(--beat-4) steps(5, end) infinite;
}

.hero-logo-scan {
  position: absolute;
  z-index: 5;
  left: -4%;
  right: -6%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(200, 255, 65, 0.9), rgba(125, 242, 255, 0.82), transparent);
  box-shadow:
    0 0 14px rgba(200, 255, 65, 0.7),
    0 0 34px rgba(125, 242, 255, 0.36);
  pointer-events: none;
  transform-origin: center;
  animation: logo-scan var(--beat-4) ease-in-out infinite;
}

.scan-one {
  top: 28%;
  rotate: -3deg;
}

.scan-two {
  top: 69%;
  height: 1px;
  opacity: 0.56;
  background: linear-gradient(90deg, transparent, rgba(255, 59, 40, 0.84), rgba(245, 242, 234, 0.82), transparent);
  box-shadow:
    0 0 12px rgba(255, 59, 40, 0.58),
    0 0 30px rgba(245, 242, 234, 0.24);
  rotate: 4deg;
  animation-delay: -1.4s;
}

.hero-statement {
  max-width: 45rem;
  margin-bottom: 1rem;
  color: rgba(245, 242, 234, 0.8);
  font-size: clamp(1rem, 1.7vw, 1.38rem);
  line-height: 1.45;
}

.brand-slogan {
  width: max-content;
  max-width: 100%;
  border: 1px solid rgba(200, 255, 65, 0.38);
  border-radius: 999px;
  margin: 0 0 1rem;
  padding: 0.55rem 0.75rem;
  color: var(--acid);
  font-size: clamp(0.82rem, 1.4vw, 1rem);
  font-weight: 950;
  text-transform: uppercase;
  box-shadow: 0 0 22px rgba(200, 255, 65, 0.12);
}

.social-strip {
  display: flex;
  max-width: 45rem;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.45rem;
}

.social-strip a,
.social-strip span {
  display: inline-flex;
  min-height: 2.1rem;
  align-items: center;
  border: 1px solid rgba(245, 242, 234, 0.16);
  border-radius: 999px;
  padding: 0.58rem 0.7rem;
  background: rgba(5, 5, 5, 0.34);
  color: rgba(245, 242, 234, 0.72);
  font-size: 0.68rem;
  font-weight: 950;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.social-strip span {
  border-color: rgba(200, 255, 65, 0.34);
  color: var(--acid);
}

.social-strip a:hover,
.social-strip a:focus-visible {
  border-color: var(--fog);
  color: var(--fog);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.button {
  display: inline-flex;
  min-height: 3.15rem;
  align-items: center;
  justify-content: center;
  gap: 0.72rem;
  border: 1px solid rgba(245, 242, 234, 0.22);
  border-radius: 999px;
  padding: 0.95rem 1.2rem;
  color: var(--fog);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button.primary {
  border-color: transparent;
  background: var(--fog);
  color: var(--ink);
}

.button.primary:hover,
.button.primary:focus-visible {
  background: var(--acid);
}

.button.secondary {
  background: rgba(5, 5, 5, 0.4);
  backdrop-filter: blur(14px);
}

.button-mark {
  width: 0.78rem;
  height: 0.78rem;
  clip-path: polygon(50% 0, 62% 35%, 100% 50%, 62% 65%, 50% 100%, 38% 65%, 0 50%, 38% 35%);
  background: currentColor;
}

.hero-panel {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 0.7rem;
  padding-bottom: 0.4rem;
}

.hero-panel div {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1rem;
  background: rgba(12, 13, 13, 0.58);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-panel span {
  display: block;
  margin-bottom: 0.6rem;
  color: var(--cyan);
  font-size: 0.68rem;
  font-weight: 950;
}

.hero-panel strong {
  display: block;
  margin-bottom: 0.38rem;
  font-size: 1.05rem;
  text-transform: uppercase;
}

.hero-panel p {
  margin-bottom: 0;
  color: rgba(245, 242, 234, 0.66);
  font-size: 0.88rem;
  line-height: 1.45;
}

.ticker-band {
  position: relative;
  z-index: 3;
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: var(--fog);
  color: var(--ink);
}

.ticker-track {
  display: flex;
  width: max-content;
  min-width: 100%;
  animation: ticker 28s linear infinite;
}

.ticker-track span {
  padding: 0.9rem 1.35rem;
  font-size: clamp(1rem, 3vw, 2rem);
  font-weight: 950;
  white-space: nowrap;
  text-transform: uppercase;
}

.manifesto-strip {
  display: grid;
  border-bottom: 1px solid var(--line);
  background: rgba(5, 5, 5, 0.58);
  grid-template-columns: repeat(3, 1fr);
}

.manifesto-strip div {
  min-height: 7.6rem;
  border-right: 1px solid var(--line);
  padding: clamp(1rem, 2.8vw, 1.5rem);
}

.manifesto-strip div:last-child {
  border-right: 0;
}

.manifesto-strip span {
  display: block;
  margin-bottom: 0.65rem;
  color: rgba(245, 242, 234, 0.46);
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
}

.manifesto-strip strong {
  display: block;
  max-width: 16rem;
  font-size: clamp(1.05rem, 2.4vw, 1.8rem);
  line-height: 1;
  text-transform: uppercase;
}

.principle-section {
  border-bottom: 1px solid var(--line);
  padding: clamp(2.5rem, 7vw, 6rem) clamp(1rem, 4vw, 4rem);
  background:
    linear-gradient(90deg, rgba(255, 59, 40, 0.12), transparent 42%),
    rgba(5, 5, 5, 0.38);
}

.principle-section p {
  max-width: 16ch;
  margin-bottom: 0;
  color: var(--fog);
  font-size: clamp(2.5rem, 8vw, 7.4rem);
  font-weight: 950;
  line-height: 0.86;
  text-transform: uppercase;
}

.section-grid {
  display: grid;
  padding: clamp(4.5rem, 9vw, 8rem) clamp(1rem, 4vw, 4rem);
  grid-template-columns: minmax(7rem, 0.24fr) minmax(0, 0.76fr) minmax(18rem, 0.45fr);
  gap: clamp(1rem, 4vw, 3rem);
  align-items: start;
}

.section-heading h2,
.console-header h2,
.label-inner h2,
.access-copy h2 {
  max-width: 11ch;
  margin-bottom: 1rem;
  font-size: clamp(2.4rem, 6vw, 6rem);
  line-height: 0.9;
  text-transform: uppercase;
  text-wrap: balance;
}

.section-heading p,
.label-inner p,
.access-copy p {
  max-width: 38rem;
  color: rgba(245, 242, 234, 0.68);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  line-height: 1.55;
}

.access-copy a {
  color: var(--acid);
  font-weight: 850;
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.25rem;
}

.contact-links a {
  display: inline-flex;
  min-height: 2.35rem;
  align-items: center;
  border: 1px solid rgba(245, 242, 234, 0.18);
  border-radius: 999px;
  padding: 0.65rem 0.78rem;
  background: rgba(5, 5, 5, 0.36);
  color: var(--fog);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.contact-links a:hover,
.contact-links a:focus-visible {
  border-color: var(--acid);
  color: var(--acid);
}

.event-card {
  position: relative;
  min-height: 31rem;
  overflow: hidden;
  border: 1px solid rgba(245, 242, 234, 0.2);
  border-radius: 8px;
  padding: 1.1rem;
  background:
    linear-gradient(180deg, rgba(245, 242, 234, 0.1), rgba(245, 242, 234, 0.025)),
    rgba(11, 12, 12, 0.78);
  box-shadow: var(--shadow);
}

.event-card::before {
  position: absolute;
  inset: 22% -18% auto;
  height: 12rem;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(200, 255, 65, 0.28), transparent);
  filter: blur(26px);
  transform: rotate(-16deg);
}

.event-card-top,
.event-card-bottom {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: rgba(245, 242, 234, 0.7);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.event-card h3 {
  position: relative;
  z-index: 1;
  max-width: 7ch;
  margin: 5.4rem 0 0.8rem;
  font-size: clamp(3.1rem, 7vw, 5.4rem);
  line-height: 0.84;
  text-transform: uppercase;
}

.event-date {
  position: relative;
  z-index: 1;
  color: var(--champagne);
  font-size: 0.86rem;
  font-weight: 850;
  text-transform: uppercase;
}

.event-meter {
  position: absolute;
  left: 1.1rem;
  right: 1.1rem;
  bottom: 4.1rem;
  display: grid;
  height: 8.5rem;
  grid-template-columns: repeat(12, 1fr);
  gap: 0.38rem;
  align-items: end;
}

.event-meter span {
  display: block;
  height: var(--height);
  min-height: 1rem;
  border-radius: 999px 999px 2px 2px;
  background: linear-gradient(180deg, var(--acid), rgba(125, 242, 255, 0.52));
  transform-origin: bottom;
  animation: meter var(--beat) cubic-bezier(0.18, 0.86, 0.22, 1) infinite;
  animation-delay: 0ms;
}

.event-meter span:nth-child(2),
.mini-wave i:nth-child(2) {
  animation-delay: -58ms;
}

.event-meter span:nth-child(3),
.mini-wave i:nth-child(3) {
  animation-delay: -116ms;
}

.event-meter span:nth-child(4),
.mini-wave i:nth-child(4) {
  animation-delay: -174ms;
}

.event-meter span:nth-child(5),
.mini-wave i:nth-child(5) {
  animation-delay: -232ms;
}

.event-meter span:nth-child(6),
.mini-wave i:nth-child(6) {
  animation-delay: -290ms;
}

.event-meter span:nth-child(7),
.mini-wave i:nth-child(7) {
  animation-delay: -348ms;
}

.event-meter span:nth-child(8),
.mini-wave i:nth-child(8) {
  animation-delay: -406ms;
}

.event-meter span:nth-child(9) {
  animation-delay: -116ms;
}

.event-meter span:nth-child(10) {
  animation-delay: -232ms;
}

.event-meter span:nth-child(11) {
  animation-delay: -348ms;
}

.event-meter span:nth-child(12) {
  animation-delay: -58ms;
}

.event-card-bottom {
  position: absolute;
  left: 1.1rem;
  right: 1.1rem;
  bottom: 1.1rem;
}

.event-card-bottom a {
  color: var(--acid);
}

.launch-section {
  display: grid;
  padding: 0 clamp(1rem, 4vw, 4rem) clamp(4.5rem, 8vw, 7rem);
  grid-template-columns: minmax(0, 0.54fr) minmax(18rem, 0.7fr);
  gap: clamp(1.25rem, 5vw, 4rem);
  align-items: stretch;
}

.launch-copy h2 {
  max-width: 11ch;
  margin-bottom: 1rem;
  font-size: clamp(2.25rem, 5.8vw, 5.5rem);
  line-height: 0.9;
  text-transform: uppercase;
}

.launch-copy p:last-child {
  max-width: 36rem;
  margin-bottom: 0;
  color: rgba(245, 242, 234, 0.68);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  line-height: 1.55;
}

.launch-console {
  display: grid;
  border: 1px solid rgba(245, 242, 234, 0.18);
  border-radius: 8px;
  overflow: hidden;
  background:
    linear-gradient(116deg, rgba(125, 242, 255, 0.12), transparent 44%),
    linear-gradient(240deg, rgba(200, 255, 65, 0.1), transparent 38%),
    rgba(7, 8, 8, 0.76);
  box-shadow: var(--shadow);
}

.launch-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid var(--line);
  padding: 1rem;
}

.launch-status span,
.count-item span,
.protocol-list span {
  color: rgba(245, 242, 234, 0.48);
  font-size: 0.7rem;
  font-weight: 950;
  text-transform: uppercase;
}

.launch-status strong {
  color: var(--acid);
  font-size: 0.82rem;
  text-align: right;
  text-transform: uppercase;
}

.countdown-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.count-item {
  min-height: 7.5rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 1rem;
}

.count-item:last-child {
  border-right: 0;
}

.count-item strong {
  display: block;
  margin-bottom: 0.7rem;
  color: var(--fog);
  font-size: clamp(1.45rem, 4vw, 3rem);
  line-height: 0.9;
  text-transform: uppercase;
}

.protocol-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.protocol-list article {
  min-height: 7rem;
  border-right: 1px solid var(--line);
  padding: 1rem;
}

.protocol-list article:last-child {
  border-right: 0;
}

.protocol-list p {
  max-width: 9rem;
  margin: 0.75rem 0 0;
  color: var(--fog);
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.05;
  text-transform: uppercase;
}

.schedule-section {
  display: grid;
  padding: 0 clamp(1rem, 4vw, 4rem) clamp(4.5rem, 8vw, 7rem);
  grid-template-columns: minmax(16rem, 0.4fr) minmax(0, 0.88fr);
  gap: clamp(1.25rem, 4vw, 3rem);
}

.schedule-heading h2 {
  max-width: 10ch;
  margin-bottom: 0;
  font-size: clamp(2rem, 5vw, 4.6rem);
  line-height: 0.92;
  text-transform: uppercase;
}

.schedule-list {
  border-top: 1px solid var(--line);
}

.schedule-row {
  display: grid;
  min-height: 7.2rem;
  align-items: center;
  border-bottom: 1px solid var(--line);
  gap: 1rem;
  grid-template-columns: 0.22fr minmax(0, 1fr) auto;
}

.schedule-code,
.schedule-state,
.schedule-row a {
  color: var(--acid);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.schedule-row h3 {
  margin-bottom: 0.28rem;
  font-size: clamp(1.35rem, 3vw, 2.4rem);
  line-height: 0.96;
  text-transform: uppercase;
}

.schedule-row p {
  margin-bottom: 0;
  color: rgba(245, 242, 234, 0.58);
  font-size: 0.9rem;
}

.schedule-row a,
.schedule-state {
  display: inline-flex;
  min-height: 2.4rem;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(200, 255, 65, 0.3);
  border-radius: 999px;
  padding: 0.65rem 0.82rem;
  white-space: nowrap;
}

.schedule-state {
  border-color: rgba(245, 242, 234, 0.16);
  color: rgba(245, 242, 234, 0.48);
}

.modes-section {
  padding: 0 clamp(1rem, 4vw, 4rem) clamp(4.5rem, 8vw, 7rem);
}

.mode-console {
  display: grid;
  min-height: 30rem;
  overflow: hidden;
  border: 1px solid rgba(245, 242, 234, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(255, 59, 40, 0.12), transparent 34%),
    linear-gradient(135deg, rgba(245, 242, 234, 0.08), rgba(245, 242, 234, 0.02)),
    rgba(5, 5, 5, 0.76);
  box-shadow: var(--shadow);
  grid-template-columns: minmax(0, 0.72fr) minmax(18rem, 0.5fr);
}

.console-header {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid var(--line);
  padding: clamp(1.2rem, 4vw, 2rem);
}

.mode-tabs {
  display: grid;
  gap: 0;
  border-bottom: 1px solid var(--line);
}

.mode-tab {
  min-height: 4.2rem;
  border: 0;
  border-bottom: 1px solid var(--line);
  padding: 1rem 1.2rem;
  background: transparent;
  color: rgba(245, 242, 234, 0.58);
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 950;
  text-align: left;
  text-transform: uppercase;
}

.mode-tab.active {
  background: var(--fog);
  color: var(--ink);
}

.mode-display {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  justify-content: end;
  padding: clamp(1.2rem, 4vw, 2rem);
}

.mode-display p:first-child {
  color: var(--cyan);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.mode-display h3 {
  max-width: 12ch;
  margin-bottom: 1rem;
  font-size: clamp(2.2rem, 5vw, 4.4rem);
  line-height: 0.93;
  text-transform: uppercase;
}

.mode-display p:last-child {
  max-width: 30rem;
  margin-bottom: 0;
  color: rgba(245, 242, 234, 0.7);
  line-height: 1.55;
}

.vault-section {
  display: grid;
  padding: 0 clamp(1rem, 4vw, 4rem) clamp(4.5rem, 9vw, 8rem);
  grid-template-columns: minmax(0, 0.58fr) minmax(18rem, 0.78fr);
  gap: clamp(1.4rem, 5vw, 4rem);
  align-items: end;
}

.vault-copy h2 {
  max-width: 10ch;
  margin-bottom: 1rem;
  font-size: clamp(2.35rem, 6vw, 5.6rem);
  line-height: 0.9;
  text-transform: uppercase;
}

.vault-copy p:last-child {
  max-width: 34rem;
  margin-bottom: 0;
  color: rgba(245, 242, 234, 0.66);
  font-size: clamp(1rem, 1.4vw, 1.16rem);
  line-height: 1.55;
}

.vault-grid {
  display: grid;
  min-height: 34rem;
  gap: 0.85rem;
  grid-template-columns: 1.05fr 0.75fr;
  grid-template-rows: 1fr 1fr;
}

.vault-tile {
  position: relative;
  display: grid;
  min-height: 14rem;
  overflow: hidden;
  border: 1px solid rgba(245, 242, 234, 0.17);
  border-radius: 8px;
  padding: 1rem;
  place-items: end start;
  background: rgba(12, 13, 13, 0.78);
  box-shadow: var(--shadow);
}

.vault-tile::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(135deg, rgba(245, 242, 234, 0.12), transparent 34%),
    linear-gradient(18deg, transparent 0 42%, rgba(200, 255, 65, 0.12) 43% 46%, transparent 47%),
    repeating-linear-gradient(0deg, rgba(245, 242, 234, 0.06) 0 1px, transparent 1px 9px);
}

.tile-room {
  grid-row: span 2;
  min-height: 29rem;
}

.tile-room::before {
  background:
    linear-gradient(155deg, rgba(255, 59, 40, 0.22), transparent 36%),
    linear-gradient(20deg, transparent 0 34%, rgba(245, 242, 234, 0.12) 35% 37%, transparent 38%),
    repeating-linear-gradient(90deg, rgba(245, 242, 234, 0.055) 0 1px, transparent 1px 11px);
}

.tile-crowd::before {
  background:
    linear-gradient(120deg, rgba(125, 242, 255, 0.18), transparent 38%),
    linear-gradient(330deg, rgba(245, 242, 234, 0.13), transparent 42%),
    repeating-linear-gradient(135deg, rgba(245, 242, 234, 0.05) 0 1px, transparent 1px 10px);
}

.tile-mix::before {
  background:
    linear-gradient(180deg, rgba(200, 255, 65, 0.13), transparent 48%),
    repeating-linear-gradient(90deg, rgba(245, 242, 234, 0.055) 0 1px, transparent 1px 8px);
}

.vault-tile img {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 72%;
  max-height: 62%;
  object-fit: contain;
  opacity: 0.22;
  transform: translate(-50%, -50%) rotate(-8deg);
  filter: invert(1);
}

.tile-crowd img {
  width: 120%;
  max-height: none;
  opacity: 0.17;
  transform: translate(-50%, -50%) rotate(7deg);
}

.vault-tile span {
  position: relative;
  z-index: 1;
  color: var(--fog);
  font-size: clamp(1.35rem, 3vw, 2.8rem);
  font-weight: 950;
  line-height: 0.95;
  text-transform: uppercase;
}

.mini-wave {
  position: absolute;
  inset: 1rem;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 0.28rem;
  align-items: center;
}

.mini-wave i {
  display: block;
  height: var(--height);
  border-radius: 999px;
  background: rgba(200, 255, 65, 0.7);
  transform-origin: center bottom;
  animation: meter var(--beat) cubic-bezier(0.18, 0.86, 0.22, 1) infinite;
}

.garment-grid {
  display: grid;
  gap: 1rem;
}

.garment-card {
  min-height: 25rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1.1rem;
  background: rgba(12, 13, 13, 0.68);
  box-shadow: var(--shadow);
}

.garment-light {
  background: rgba(245, 242, 234, 0.9);
  color: var(--ink);
}

.shirt-shape {
  display: grid;
  min-height: 16rem;
  margin-bottom: 1rem;
  place-items: center;
  clip-path: polygon(26% 0, 41% 0, 45% 10%, 55% 10%, 59% 0, 74% 0, 100% 24%, 86% 43%, 78% 37%, 78% 100%, 22% 100%, 22% 37%, 14% 43%, 0 24%);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.16), transparent 48%),
    #080808;
}

.garment-light .shirt-shape {
  background:
    linear-gradient(160deg, rgba(0, 0, 0, 0.11), transparent 48%),
    #f1eddf;
}

.shirt-shape img {
  width: min(74%, 19rem);
  max-height: 10rem;
  object-fit: contain;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.36));
}

.garment-dark .shirt-shape img {
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.8));
}

.garment-light .shirt-shape img {
  filter: grayscale(1) contrast(1.15);
}

.garment-card h3 {
  margin-bottom: 0.35rem;
  font-size: 1.15rem;
  text-transform: uppercase;
}

.garment-card p {
  margin-bottom: 0;
  color: rgba(245, 242, 234, 0.62);
  font-size: 0.88rem;
}

.garment-light p {
  color: rgba(5, 5, 5, 0.6);
}

.drop-state {
  display: inline-flex;
  min-height: 2rem;
  align-items: center;
  border: 1px solid rgba(200, 255, 65, 0.3);
  border-radius: 999px;
  margin-top: 1rem;
  padding: 0.55rem 0.68rem;
  color: var(--acid);
  font-size: 0.68rem;
  font-weight: 950;
  text-transform: uppercase;
}

.garment-light .drop-state {
  border-color: rgba(5, 5, 5, 0.24);
  color: var(--ink);
}

.label-section {
  padding: clamp(4.5rem, 9vw, 8rem) clamp(1rem, 4vw, 4rem);
  background:
    linear-gradient(180deg, rgba(245, 242, 234, 0.04), transparent),
    rgba(5, 5, 5, 0.32);
}

.label-inner {
  display: grid;
  gap: clamp(1.5rem, 5vw, 4rem);
  grid-template-columns: minmax(0, 0.72fr) minmax(18rem, 0.62fr);
  align-items: start;
}

.release-stack {
  border-top: 1px solid var(--line);
}

.release-row {
  display: grid;
  min-height: 5.8rem;
  align-items: center;
  border-bottom: 1px solid var(--line);
  gap: 0.8rem;
  grid-template-columns: 0.45fr 1fr 0.6fr;
}

.release-row span,
.release-row em {
  color: rgba(245, 242, 234, 0.54);
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 900;
  text-transform: uppercase;
}

.release-row strong {
  font-size: clamp(1.2rem, 2.8vw, 2rem);
  text-transform: uppercase;
}

.label-player {
  display: grid;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  margin-top: 1rem;
  padding: 1rem;
  background: rgba(245, 242, 234, 0.07);
  gap: 1rem;
  grid-template-columns: auto 1fr;
}

.play-button {
  display: grid;
  width: 3.4rem;
  height: 3.4rem;
  border: 1px solid rgba(200, 255, 65, 0.42);
  border-radius: 50%;
  background: var(--acid);
  color: var(--ink);
  cursor: pointer;
  place-items: center;
}

.play-button span {
  width: 0;
  height: 0;
  margin-left: 0.18rem;
  border-top: 0.48rem solid transparent;
  border-bottom: 0.48rem solid transparent;
  border-left: 0.72rem solid currentColor;
}

.label-player.is-playing .play-button span {
  width: 0.72rem;
  height: 0.92rem;
  border: 0;
  border-right: 0.22rem solid currentColor;
  border-left: 0.22rem solid currentColor;
  margin-left: 0;
}

.label-player strong {
  display: block;
  margin-bottom: 0.2rem;
  text-transform: uppercase;
}

.label-player p {
  margin-bottom: 0;
  color: rgba(245, 242, 234, 0.6);
  font-size: 0.85rem;
}

.access-section {
  display: grid;
  padding: clamp(4.5rem, 9vw, 8rem) clamp(1rem, 4vw, 4rem);
  grid-template-columns: minmax(0, 0.72fr) minmax(18rem, 0.48fr);
  gap: clamp(1.5rem, 5vw, 4rem);
}

.access-form {
  display: grid;
  gap: 0.9rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(1rem, 3vw, 1.4rem);
  background: rgba(245, 242, 234, 0.08);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}

.access-form label {
  display: grid;
  gap: 0.45rem;
}

.bot-field {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.access-form label span {
  color: rgba(245, 242, 234, 0.68);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.access-form input,
.access-form select {
  width: 100%;
  min-height: 3.25rem;
  border: 1px solid rgba(245, 242, 234, 0.18);
  border-radius: 8px;
  padding: 0.85rem 0.92rem;
  outline: none;
  background: rgba(5, 5, 5, 0.58);
  color: var(--fog);
}

.access-form input:focus,
.access-form select:focus {
  border-color: var(--acid);
  box-shadow: 0 0 0 3px rgba(200, 255, 65, 0.14);
}

.access-form select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--fog) 50%),
    linear-gradient(135deg, var(--fog) 50%, transparent 50%);
  background-position:
    calc(100% - 19px) 50%,
    calc(100% - 13px) 50%;
  background-size:
    6px 6px,
    6px 6px;
  background-repeat: no-repeat;
}

.form-button {
  width: 100%;
  margin-top: 0.3rem;
  border-radius: 8px;
}

.form-status {
  min-height: 1.2rem;
  margin-bottom: 0;
  color: var(--acid);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.form-note {
  margin-bottom: 0;
  color: rgba(245, 242, 234, 0.5);
  font-size: 0.75rem;
  line-height: 1.45;
}

.form-note a {
  color: var(--acid);
  font-weight: 850;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  border-top: 1px solid var(--line);
  padding: 1.2rem clamp(1rem, 4vw, 4rem);
  background: var(--fog);
  color: var(--ink);
}

.site-footer img {
  width: auto;
  max-width: 48vw;
  height: 3.8rem;
  filter: none;
}

.site-footer div {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.9rem;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.success-page {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.success-shell {
  width: min(42rem, 100%);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(1.2rem, 5vw, 2rem);
  background: rgba(5, 5, 5, 0.72);
  box-shadow: var(--shadow);
  text-align: left;
}

.success-shell img {
  width: min(22rem, 82vw);
  margin-bottom: 1.4rem;
}

.success-shell h1 {
  margin: 0 0 1rem;
  color: var(--fog);
  font-size: clamp(3rem, 10vw, 6rem);
  line-height: 0.85;
  text-transform: uppercase;
}

.success-shell p:not(.section-kicker) {
  max-width: 32rem;
  color: rgba(245, 242, 234, 0.72);
  line-height: 1.55;
}

.legal-page {
  min-height: 100svh;
  background:
    linear-gradient(120deg, rgba(200, 255, 65, 0.1), transparent 28%),
    linear-gradient(240deg, rgba(125, 242, 255, 0.08), transparent 34%),
    #050505;
}

.legal-shell {
  width: min(48rem, 100%);
  padding: clamp(1rem, 4vw, 3rem);
}

.legal-brand img {
  width: min(14rem, 70vw);
  margin-bottom: clamp(3rem, 10vw, 7rem);
}

.legal-shell h1 {
  margin: 0 0 1rem;
  font-size: clamp(3rem, 10vw, 7rem);
  line-height: 0.86;
  text-transform: uppercase;
}

.legal-shell p {
  max-width: 42rem;
  color: rgba(245, 242, 234, 0.72);
  font-size: 1rem;
  line-height: 1.6;
}

.legal-shell a:not(.button) {
  color: var(--acid);
  font-weight: 850;
}

@keyframes symbol-float {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(-3deg) scale(1);
  }
  50% {
    transform: translate3d(-1.2rem, 1.2rem, 0) rotate(4deg) scale(1.04);
  }
}

@keyframes laser-symbol {
  0%,
  100% {
    opacity: 0.22;
    transform: translate3d(-0.3rem, 0.1rem, 0) scale(0.99);
  }
  42% {
    opacity: 0.52;
  }
  54% {
    opacity: 0.18;
    transform: translate3d(0.7rem, -0.35rem, 0) scale(1.02);
  }
  66% {
    opacity: 0.48;
  }
}

@keyframes laser-flicker {
  0%,
  100% {
    opacity: 0.3;
  }
  48% {
    opacity: 0.46;
  }
  52% {
    opacity: 0.18;
  }
}

@keyframes beam-scan {
  0%,
  100% {
    opacity: 0.18;
    translate: -5% -2rem;
  }
  45% {
    opacity: 0.72;
    translate: 3% 1rem;
  }
  58% {
    opacity: 0.38;
  }
}

@keyframes beam-kick {
  0% {
    filter: brightness(1.9) saturate(1.25);
  }
  18% {
    filter: brightness(1) saturate(1);
  }
  50% {
    filter: brightness(1.24) saturate(1.08);
  }
  100% {
    filter: brightness(1) saturate(1);
  }
}

@keyframes cursor-beat {
  0% {
    opacity: 0.46;
    filter: blur(18px) brightness(1.28);
  }
  18% {
    opacity: 0.28;
    filter: blur(22px) brightness(1);
  }
  50% {
    opacity: 0.36;
    filter: blur(20px) brightness(1.14);
  }
  100% {
    opacity: 0.3;
    filter: blur(22px) brightness(1);
  }
}

@keyframes hero-logo-kick {
  0% {
    scale: 1.018;
  }
  18% {
    scale: 1;
  }
  50% {
    scale: 1.006;
  }
  100% {
    scale: 1;
  }
}

@keyframes hero-logo-glow {
  0% {
    opacity: 0.88;
    transform: translate3d(-0.52rem, 0.22rem, 0) scale(1.026);
  }
  18% {
    opacity: 0.42;
    transform: translate3d(-0.36rem, 0.1rem, 0) scale(0.996);
  }
  50% {
    opacity: 0.64;
    transform: translate3d(0.22rem, -0.18rem, 0) scale(1.01);
  }
  100% {
    opacity: 0.48;
    transform: translate3d(-0.4rem, 0.18rem, 0) scale(0.998);
  }
}

@keyframes logo-scan {
  0%,
  100% {
    opacity: 0;
    translate: -7% -1rem;
  }
  36% {
    opacity: 0.82;
  }
  58% {
    opacity: 0.34;
    translate: 8% 1.4rem;
  }
}

@keyframes outline-energy {
  0% {
    background-position:
      0% 48%,
      100% 54%;
  }
  50% {
    background-position:
      100% 52%,
      12% 46%;
  }
  100% {
    background-position:
      0% 48%,
      100% 54%;
  }
}

@keyframes outline-kick {
  0% {
    opacity: 0.62;
  }
  18% {
    opacity: 0.34;
  }
  50% {
    opacity: 0.48;
  }
  100% {
    opacity: 0.42;
  }
}

@keyframes outline-spark {
  0%,
  100% {
    opacity: 0.18;
    translate: -4% 0;
  }
  48% {
    opacity: 0.42;
  }
  52% {
    opacity: 0.08;
    translate: 5% 0;
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes ticker {
  to {
    transform: translateX(-50%);
  }
}

@keyframes meter {
  0% {
    transform: scaleY(1.1);
  }
  18% {
    transform: scaleY(0.56);
  }
  50% {
    transform: scaleY(0.86);
  }
  72% {
    transform: scaleY(0.62);
  }
  100% {
    transform: scaleY(0.52);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

@media (max-width: 980px) {
  .site-header {
    align-items: flex-start;
  }

  .site-header nav {
    max-width: 15rem;
    flex-wrap: wrap;
  }

  .social-handle {
    display: none;
  }

  .hero {
    min-height: 94svh;
    grid-template-columns: 1fr;
  }

  .hero-orbit {
    width: min(90vw, 39rem);
    opacity: 0.54;
  }

  .hero-panel {
    grid-template-columns: repeat(3, 1fr);
  }

  .manifesto-strip,
  .launch-section,
  .schedule-section,
  .vault-section {
    grid-template-columns: 1fr;
  }

  .manifesto-strip div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .section-grid,
  .label-inner,
  .access-section,
  .mode-console {
    grid-template-columns: 1fr;
  }

  .console-header {
    min-height: 18rem;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .mode-tabs {
    grid-template-columns: repeat(3, 1fr);
  }

  .mode-tab {
    text-align: center;
  }
}

@media (max-width: 680px) {
  .cursor-light {
    display: none;
  }

  .site-header {
    padding: 0.8rem 0.85rem;
  }

  .brand-symbol {
    width: 2.65rem;
  }

  .brand-wordmark {
    height: 1.65rem;
    max-width: 4.8rem;
  }

  .site-header nav {
    gap: 0.48rem;
    font-size: 0.66rem;
  }

  .hero {
    padding: 5.6rem 0.85rem 2.2rem;
  }

  .hero-logo {
    width: min(29rem, 96vw);
    margin-left: -0.8rem;
  }

  .hero-statement {
    max-width: 22rem;
  }

  .hero-panel {
    grid-template-columns: 1fr;
  }

  .hero-panel div {
    padding: 0.82rem;
  }

  .hero-panel p {
    font-size: 0.82rem;
  }

  .button {
    width: 100%;
  }

  .ticker-track span {
    padding-inline: 0.9rem;
  }

  .section-grid,
  .label-section,
  .access-section,
  .modes-section,
  .launch-section,
  .schedule-section,
  .vault-section {
    padding-inline: 0.85rem;
  }

  .countdown-grid,
  .protocol-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .count-item:nth-child(2),
  .protocol-list article:nth-child(2) {
    border-right: 0;
  }

  .protocol-list article {
    border-bottom: 1px solid var(--line);
  }

  .schedule-row {
    min-height: 8.5rem;
    grid-template-columns: 1fr;
    gap: 0.5rem;
    padding: 1rem 0;
  }

  .schedule-row a,
  .schedule-state {
    width: max-content;
  }

  .vault-grid {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .tile-room {
    min-height: 22rem;
  }

  .section-heading h2,
  .console-header h2,
  .label-inner h2,
  .access-copy h2 {
    font-size: clamp(2.25rem, 14vw, 4rem);
  }

  .event-card {
    min-height: 29rem;
  }

  .event-card h3 {
    margin-top: 4.8rem;
  }

  .mode-tabs {
    grid-template-columns: 1fr;
  }

  .mode-tab {
    min-height: 3.4rem;
    text-align: left;
  }

  .release-row {
    min-height: 6.5rem;
    grid-template-columns: 1fr;
    gap: 0.25rem;
    padding: 1rem 0;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer div {
    justify-content: flex-start;
  }
}
