:root {
  --void: #090014;
  --ink: #eefbff;
  --mute: rgba(238, 251, 255, 0.68);
  --mag: #ff2d9b;
  --cyan: #3df0ff;
  --sun: #ff8a42;
  --line: rgba(61, 240, 255, 0.28);
}

* { box-sizing: border-box; }
html, body {
  margin: 0;
  min-height: 100%;
  background: #090014;
  color: var(--ink);
}
html { color-scheme: dark; }
body {
  font-family: Rajdhani, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.45;
}

a { color: var(--cyan); }
a:hover { color: #fff; }

#stage {
  position: fixed;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.haze {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background:
    radial-gradient(ellipse at 50% 118%, rgba(255, 106, 50, 0.28), transparent 42%),
    linear-gradient(to top, rgba(9, 0, 20, 0.94) 0%, rgba(9, 0, 20, 0.22) 32%, transparent 58%);
}

.scan {
  position: fixed;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background: repeating-linear-gradient(
    to bottom,
    transparent 0 2px,
    rgba(0, 0, 0, 0.16) 2px 3px
  );
  opacity: 0.28;
  mix-blend-mode: multiply;
}

.visor {
  position: fixed;
  inset: 10px;
  z-index: 4;
  pointer-events: none;
  border: 1px solid rgba(61, 240, 255, 0.22);
  box-shadow:
    inset 0 0 90px rgba(255, 45, 155, 0.08),
    0 0 40px rgba(61, 240, 255, 0.08);
}
.visor::before,
.visor::after {
  content: "";
  position: absolute;
  width: 28px;
  height: 28px;
  border: 2px solid var(--cyan);
}
.visor::before {
  top: -1px;
  left: -1px;
  border-right: 0;
  border-bottom: 0;
}
.visor::after {
  bottom: -1px;
  right: -1px;
  border-left: 0;
  border-top: 0;
}

.hud {
  position: absolute;
  font-family: Orbitron, Rajdhani, sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cyan);
  text-shadow: 0 0 12px rgba(61, 240, 255, 0.55);
}
.hud-tl { top: 8px; left: 14px; }
.hud-tr { top: 8px; right: 14px; color: var(--mag); }
.hud-bl { bottom: 10px; left: 12px; }
.hud-br { bottom: 10px; right: 12px; color: var(--sun); }

.site {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  min-height: 100svh;
}

.top {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 3.15rem 2.6rem 1.2rem;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.top a { color: var(--mute); text-decoration: none; }
.top a:hover, .top a[aria-current="page"] { color: var(--ink); }
.links { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero {
  margin-top: auto;
  padding: 0 2.4rem 2.8rem;
  width: min(100%, 82rem);
  max-width: none;
  overflow: visible;
}
.sig {
  margin: 0 0 0.5rem;
  color: var(--mag);
  letter-spacing: 0.36em;
  text-transform: uppercase;
  font-size: 0.68rem;
  text-shadow: 0 0 16px rgba(255, 45, 155, 0.55);
}
h1 {
  margin: 0;
  display: block;
  width: max-content;
  max-width: 100%;
  overflow: visible;
  font-family: Orbitron, Rajdhani, sans-serif;
  font-weight: 800;
  font-size: clamp(2.2rem, 8vw, 6.2rem);
  line-height: 1.05;
  letter-spacing: 0.02em;
  padding-right: 0.22em;
  text-transform: uppercase;
  background: linear-gradient(180deg, #ffffff 0%, #3df0ff 42%, #ff2d9b 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 22px rgba(255, 45, 155, 0.45));
}
.lede {
  margin: 0.95rem 0 0;
  max-width: 36rem;
  color: var(--mute);
  font-size: 1.12rem;
  font-weight: 500;
}

.sheet {
  position: relative;
  z-index: 2;
  background: rgba(8, 0, 18, 0.82);
  border-top: 1px solid var(--line);
  padding: 2rem 1.4rem 3rem;
  backdrop-filter: blur(14px);
  box-shadow: 0 -24px 80px rgba(255, 45, 155, 0.08);
}
.wrap { width: min(960px, 100%); margin: 0 auto; }
.sheet h2 {
  margin: 0 0 1rem;
  font-family: Orbitron, sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--cyan);
  font-weight: 700;
}

.hold {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 760px) {
  .hold { grid-template-columns: 1fr; }
}
.card {
  display: block;
  text-decoration: none;
  color: inherit;
  padding: 1.15rem 1rem 1.25rem;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 45, 155, 0.08), rgba(10, 6, 24, 0.72));
}
.card:hover {
  border-color: var(--mag);
  box-shadow: 0 0 28px rgba(255, 45, 155, 0.18);
}
.card span {
  color: var(--cyan);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.card h3 {
  margin: 0.35rem 0 0.4rem;
  font-family: Orbitron, sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.card p { margin: 0; color: var(--mute); font-size: 0.95rem; }

dl {
  display: grid;
  grid-template-columns: 10rem 1fr;
  gap: 0.45rem 1rem;
  margin: 0;
}
dt { color: var(--mute); }
dd { margin: 0; }
@media (max-width: 640px) {
  dl { grid-template-columns: 1fr; }
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(61, 240, 255, 0.16);
  color: var(--mute);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
footer a { color: var(--mute); text-decoration: none; }

html.no-verse body {
  background:
    radial-gradient(ellipse at 50% 78%, rgba(255, 106, 50, 0.45), transparent 46%),
    linear-gradient(#050014, #1c0636 48%, #c43a6e 82%, #ff8a42);
}
html.no-verse .haze {
  background: linear-gradient(to top, rgba(9, 0, 20, 0.88), transparent 55%);
}

@media (prefers-reduced-motion: reduce) {
  #stage, .scan { display: none; }
}
