:root {
  --bg: #050609;
  --panel: #0a0d13;
  --cyan: #00f0ff;
  --pink: #ff2bd6;
  --yellow: #f6ff00;
  --green: #39ff14;
  --white: #f2f5ff;
  --dim: #8b93a7;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  letter-spacing: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--white);
  font-family: "Microsoft YaHei", "PingFang SC", "Noto Sans SC", sans-serif;
  overflow-x: hidden;
  min-height: 100vh;
}

img {
  max-width: 100%;
  display: block;
}

.bg-grid {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(0, 240, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 240, 255, 0.08) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.9), rgba(0,0,0,0.35) 80%, transparent);
}

.scanlines {
  position: fixed;
  inset: 0;
  z-index: 8;
  pointer-events: none;
  background: repeating-linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.22) 0,
    rgba(0, 0, 0, 0.22) 1px,
    transparent 1px,
    transparent 4px
  );
  mix-blend-mode: overlay;
  opacity: 0.55;
}

.vignette {
  position: fixed;
  inset: 0;
  z-index: 7;
  pointer-events: none;
  background: radial-gradient(circle at 50% 42%, transparent 30%, rgba(0, 0, 0, 0.72) 100%);
}

.hex-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.55;
  background-image:
    linear-gradient(30deg, transparent 45%, rgba(0, 240, 255, 0.05) 45%, rgba(0, 240, 255, 0.05) 50%, transparent 50%),
    linear-gradient(-30deg, transparent 45%, rgba(255, 43, 214, 0.05) 45%, rgba(255, 43, 214, 0.05) 50%, transparent 50%);
  background-size: 70px 121px;
  mask-image: radial-gradient(circle at 50% 35%, black, transparent 78%);
  animation: hex-drift 18s linear infinite;
}

@keyframes hex-drift {
  from { background-position: 0 0, 0 0; }
  to { background-position: 70px 121px, 70px 121px; }
}

.data-stream {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.4;
  background-image:
    linear-gradient(180deg, transparent 0, rgba(0, 240, 255, 0.14) 8%, transparent 16%),
    linear-gradient(180deg, transparent 0, rgba(255, 43, 214, 0.12) 10%, transparent 20%),
    linear-gradient(180deg, transparent 0, rgba(246, 255, 0, 0.1) 12%, transparent 22%);
  background-size: 220px 100%, 340px 100%, 480px 100%;
  background-position: 8% 0, 32% 0, 76% 0;
  background-repeat: repeat-y;
  animation: stream-fall 7s linear infinite;
}

@keyframes stream-fall {
  from { background-position: 8% 0, 32% 0, 76% 0; }
  to { background-position: 8% 120%, 32% 120%, 76% 120%; }
}

.scan-beam {
  position: fixed;
  left: 0;
  right: 0;
  height: 2px;
  z-index: 6;
  pointer-events: none;
  opacity: 0.6;
  background: linear-gradient(90deg, transparent, rgba(0, 240, 255, 0.85), transparent);
  box-shadow: 0 0 18px rgba(0, 240, 255, 0.65);
  animation: scan-sweep 7s linear infinite;
}

@keyframes scan-sweep {
  0% { top: 8%; }
  50% { top: 92%; }
  100% { top: 8%; }
}

.hud-frame {
  position: fixed;
  inset: 14px;
  z-index: 9;
  pointer-events: none;
}

.corner {
  position: absolute;
  width: 34px;
  height: 34px;
  border-style: solid;
  border-color: rgba(0, 240, 255, 0.75);
  filter: drop-shadow(0 0 6px rgba(0, 240, 255, 0.6));
}

.corner.tl { left: 0; top: 0; border-width: 2px 0 0 2px; }
.corner.tr { right: 0; top: 0; border-width: 2px 2px 0 0; }
.corner.bl { left: 0; bottom: 0; border-width: 0 0 2px 2px; }
.corner.br { right: 0; bottom: 0; border-width: 0 2px 2px 0; }

.hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
  align-items: center;
  gap: 2rem;
  padding: 5rem 5vw 7rem;
}

.hero-copy {
  position: relative;
  z-index: 3;
}

.kicker {
  font-family: Consolas, "Courier New", monospace;
  color: var(--green);
  font-size: 0.88rem;
  margin-bottom: 1.2rem;
  text-shadow: 0 0 12px rgba(57, 255, 20, 0.8);
}

.glitch {
  position: relative;
  font-size: 4.1rem;
  font-weight: 900;
  line-height: 1.08;
  color: var(--white);
  text-shadow:
    4px 0 var(--cyan),
    -4px 0 var(--pink),
    0 0 28px rgba(0, 240, 255, 0.45);
}

.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.glitch::before {
  color: var(--cyan);
  z-index: -1;
  animation: glitch-a 2.7s infinite steps(1);
}

.glitch::after {
  color: var(--pink);
  z-index: -2;
  animation: glitch-b 3.3s infinite steps(1);
}

@keyframes glitch-a {
  0%, 88%, 100% { transform: translate(0); clip-path: inset(0 0 0 0); }
  89% { transform: translate(-6px, 2px); clip-path: inset(10% 0 62% 0); }
  92% { transform: translate(5px, -1px); clip-path: inset(58% 0 8% 0); }
  95% { transform: translate(-3px, 1px); clip-path: inset(30% 0 40% 0); }
}

@keyframes glitch-b {
  0%, 84%, 100% { transform: translate(0); clip-path: inset(0 0 0 0); }
  85% { transform: translate(6px, -2px); clip-path: inset(52% 0 20% 0); }
  90% { transform: translate(-5px, 1px); clip-path: inset(8% 0 74% 0); }
  94% { transform: translate(4px, 2px); clip-path: inset(68% 0 4% 0); }
}

.subtitle {
  max-width: 34rem;
  margin-top: 1.4rem;
  color: var(--dim);
  font-size: 1.02rem;
  line-height: 1.9;
  border-left: 3px solid var(--pink);
  padding-left: 1.1rem;
}

.epic-line {
  margin-top: 1.5rem;
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--yellow);
  text-shadow:
    0 0 12px rgba(246, 255, 0, 0.55),
    3px 0 rgba(0, 240, 255, 0.55),
    -3px 0 rgba(255, 43, 214, 0.55);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.hero-meta > div {
  min-width: 8.2rem;
  padding: 0.8rem 1rem;
  border: 1px solid rgba(0, 240, 255, 0.4);
  background: rgba(0, 240, 255, 0.06);
  box-shadow: inset 0 0 18px rgba(0, 240, 255, 0.08);
}

.status-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.6rem;
}

.status-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.7rem;
  border: 1px solid rgba(0, 240, 255, 0.35);
  background: rgba(2, 5, 9, 0.55);
  font-family: Consolas, "Courier New", monospace;
  font-size: 0.72rem;
  color: var(--dim);
}

.dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  animation: blink 1.2s ease-in-out infinite;
}

.dot-cyan { background: var(--cyan); box-shadow: 0 0 8px var(--cyan); }
.dot-pink { background: var(--pink); box-shadow: 0 0 8px var(--pink); animation-delay: 0.2s; }
.dot-yellow { background: var(--yellow); box-shadow: 0 0 8px var(--yellow); animation-delay: 0.4s; }
.dot-green { background: var(--green); box-shadow: 0 0 8px var(--green); animation-delay: 0.6s; }

@keyframes blink {
  50% { opacity: 0.25; }
}

.meta-label {
  display: block;
  font-family: Consolas, "Courier New", monospace;
  font-size: 0.72rem;
  color: var(--dim);
  margin-bottom: 0.35rem;
}

.meta-value {
  font-family: Consolas, "Courier New", monospace;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--yellow);
  text-shadow: 0 0 10px rgba(246, 255, 0, 0.55);
}

.hero-figure {
  position: relative;
  z-index: 2;
  height: min(72vh, 760px);
  min-height: 430px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}

.hero-figure img {
  position: relative;
  z-index: 3;
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  filter:
    drop-shadow(0 0 16px rgba(0, 240, 255, 0.65))
    drop-shadow(0 0 44px rgba(255, 43, 214, 0.45))
    saturate(1.15)
    contrast(1.05);
  animation: img-breathe 4.5s ease-in-out infinite;
}

.figure-title {
  position: absolute;
  top: 2%;
  left: 50%;
  z-index: 4;
  transform: translateX(-50%);
  font-size: 2rem;
  font-weight: 900;
  white-space: nowrap;
  color: var(--white);
  text-shadow:
    3px 0 var(--cyan),
    -3px 0 var(--pink),
    0 0 24px rgba(0, 240, 255, 0.65);
  animation: god-breathe 2.6s ease-in-out infinite;
}

.figure-title::before,
.figure-title::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.figure-title::before {
  color: var(--cyan);
  z-index: -1;
  transform: translate(-3px, 1px);
  animation: god-glitch-a 3s steps(1) infinite;
}

.figure-title::after {
  color: var(--pink);
  z-index: -2;
  transform: translate(3px, -1px);
  animation: god-glitch-b 3.4s steps(1) infinite;
}

@keyframes god-breathe {
  0%, 100% { transform: translateX(-50%) scale(1); }
  50% { transform: translateX(-50%) scale(1.07); }
}

@keyframes god-glitch-a {
  0%, 86%, 100% { clip-path: inset(0 0 0 0); }
  88% { clip-path: inset(12% 0 58% 0); }
  93% { clip-path: inset(60% 0 6% 0); }
}

@keyframes god-glitch-b {
  0%, 82%, 100% { clip-path: inset(0 0 0 0); }
  84% { clip-path: inset(54% 0 16% 0); }
  90% { clip-path: inset(6% 0 72% 0); }
}

.hero-figure::before,
.hero-figure::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: url("bigroc.png");
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: contain;
  mix-blend-mode: screen;
  opacity: 0.55;
  pointer-events: none;
}

.hero-figure::before {
  animation: slice-a 3.1s steps(2) infinite;
}

.hero-figure::after {
  animation: slice-b 2.6s steps(2) infinite;
}

@keyframes slice-a {
  0%, 78%, 100% {
    clip-path: inset(0 0 0 0);
    transform: translate(0);
    filter: hue-rotate(0deg);
  }
  80% {
    clip-path: inset(8% 0 64% 0);
    transform: translate(-8px, 3px);
    filter: hue-rotate(55deg);
  }
  85% {
    clip-path: inset(58% 0 6% 0);
    transform: translate(8px, -2px);
    filter: hue-rotate(-45deg);
  }
  90% {
    clip-path: inset(28% 0 36% 0);
    transform: translate(-4px, 1px);
    filter: hue-rotate(90deg);
  }
}

@keyframes slice-b {
  0%, 82%, 100% {
    clip-path: inset(0 0 0 0);
    transform: translate(0);
    filter: hue-rotate(0deg);
  }
  84% {
    clip-path: inset(52% 0 18% 0);
    transform: translate(7px, -3px);
    filter: hue-rotate(-70deg);
  }
  90% {
    clip-path: inset(4% 0 78% 0);
    transform: translate(-7px, 2px);
    filter: hue-rotate(35deg);
  }
  95% {
    clip-path: inset(66% 0 2% 0);
    transform: translate(5px, 1px);
    filter: hue-rotate(120deg);
  }
}

@keyframes img-breathe {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-9px) scale(1.012);
  }
}

.beam {
  position: absolute;
  top: 6%;
  bottom: 8%;
  width: 2px;
  z-index: 0;
  pointer-events: none;
}

.beam-a {
  left: 16%;
  background: linear-gradient(to bottom, transparent, var(--cyan), transparent);
  box-shadow: 0 0 22px rgba(0, 240, 255, 0.8);
  animation: beam-pulse 3.2s ease-in-out infinite;
}

.beam-b {
  right: 18%;
  background: linear-gradient(to bottom, transparent, var(--pink), transparent);
  box-shadow: 0 0 22px rgba(255, 43, 214, 0.8);
  animation: beam-pulse 3.8s ease-in-out infinite reverse;
}

.hud-ring {
  position: absolute;
  left: 50%;
  top: 50%;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

.ring-1 {
  width: min(62vh, 600px);
  height: min(62vh, 600px);
  border: 1px dashed rgba(0, 240, 255, 0.45);
  transform: translate(-50%, -50%);
  opacity: 0.75;
  animation: ring-spin 24s linear infinite;
}

.ring-2 {
  width: min(78vh, 760px);
  height: min(78vh, 760px);
  border: 1px solid rgba(255, 43, 214, 0.22);
  border-top-color: var(--yellow);
  transform: translate(-50%, -50%);
  opacity: 0.65;
  animation: ring-spin 18s linear infinite reverse;
}

@keyframes ring-spin {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes beam-pulse {
  0%, 100% { opacity: 0.35; transform: scaleY(0.8); }
  50% { opacity: 1; transform: scaleY(1.1); }
}

.hero-ticker {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 4;
  border-top: 1px solid rgba(0, 240, 255, 0.45);
  background: rgba(3, 5, 8, 0.82);
  overflow: hidden;
  white-space: nowrap;
  padding: 0.65rem 0;
}

.ticker-track {
  display: inline-flex;
  align-items: center;
  gap: 1.2rem;
  animation: ticker 20s linear infinite;
  font-family: Consolas, "Courier New", monospace;
  font-size: 0.82rem;
  color: var(--cyan);
}

.ticker-track i {
  color: var(--pink);
  font-style: normal;
}

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

.terminal {
  position: relative;
  z-index: 1;
  margin: 0 5vw 4rem;
  border: 1px solid rgba(0, 240, 255, 0.4);
  background: rgba(3, 6, 10, 0.85);
  box-shadow:
    0 0 30px rgba(0, 240, 255, 0.08),
    inset 0 0 40px rgba(0, 240, 255, 0.04);
}

.terminal-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.7rem 1rem;
  border-bottom: 1px solid rgba(0, 240, 255, 0.35);
  background: rgba(0, 240, 255, 0.06);
  font-family: Consolas, "Courier New", monospace;
  font-size: 0.75rem;
  color: var(--cyan);
}

.terminal-dot {
  color: var(--pink);
  animation: blink 1.4s steps(1) infinite;
}

.terminal-body {
  padding: 1rem 1.2rem 1.2rem;
  font-family: Consolas, "Courier New", monospace;
  font-size: 0.9rem;
  line-height: 1.9;
  color: var(--dim);
}

.terminal-body p {
  margin: 0;
}

.prompt {
  color: var(--green);
  margin-right: 0.5rem;
}

.error-line { color: var(--pink); }
.warn-line { color: var(--yellow); }
.ok-line { color: var(--green); }

.terminal-cursor {
  display: inline-block;
  width: 0.65em;
  height: 1em;
  vertical-align: middle;
  background: var(--cyan);
  box-shadow: 0 0 8px rgba(0, 240, 255, 0.7);
  animation: blink 0.8s steps(1) infinite;
}

.cursor-line {
  margin-top: 0.4rem;
}

.lore {
  position: relative;
  z-index: 1;
  padding: 5rem 5vw 4rem;
  border-top: 1px solid rgba(246, 255, 0, 0.35);
  background:
    linear-gradient(180deg, rgba(255, 43, 214, 0.06), transparent 32%),
    var(--bg);
}

.lore-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 2rem;
}

.lore-block {
  position: relative;
  padding: 1.3rem 1.4rem 1.5rem;
  border: 1px solid rgba(255, 43, 214, 0.38);
  background: linear-gradient(135deg, rgba(255, 43, 214, 0.08), rgba(0, 240, 255, 0.04));
  overflow: hidden;
}

.lore-block::after {
  content: "";
  position: absolute;
  right: -30px;
  bottom: -30px;
  width: 90px;
  height: 90px;
  border: 1px dashed rgba(0, 240, 255, 0.3);
  transform: rotate(45deg);
}

.lore-block h3 {
  font-size: 1.12rem;
  font-weight: 900;
  color: var(--cyan);
  text-shadow: 0 0 10px rgba(0, 240, 255, 0.45);
  margin-bottom: 0.8rem;
}

.lore-block p {
  color: var(--dim);
  font-size: 0.95rem;
  line-height: 1.9;
}

.lore-poem {
  margin-top: 2.2rem;
  padding: 1.4rem 1rem;
  border-top: 1px dashed rgba(246, 255, 0, 0.5);
  border-bottom: 1px dashed rgba(246, 255, 0, 0.5);
  text-align: center;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 2.1;
  color: var(--yellow);
  text-shadow: 0 0 12px rgba(246, 255, 0, 0.35);
}

.manifesto {
  position: relative;
  z-index: 1;
  padding: 5rem 5vw 6rem;
  border-top: 1px solid rgba(255, 43, 214, 0.5);
  background:
    linear-gradient(180deg, rgba(0, 240, 255, 0.05), transparent 28%),
    var(--bg);
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  border-bottom: 2px solid var(--pink);
  padding-bottom: 1.1rem;
}

.section-tag {
  font-family: Consolas, "Courier New", monospace;
  font-size: 0.8rem;
  color: var(--green);
  margin-bottom: 0.6rem;
}

.section-head h2 {
  font-size: 2.2rem;
  font-weight: 900;
  text-shadow: 0 0 18px rgba(255, 43, 214, 0.35);
}

.count {
  font-family: Consolas, "Courier New", monospace;
  color: var(--yellow);
  font-size: 0.85rem;
  white-space: nowrap;
}

.rebel-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 12px;
  margin-top: 2rem;
}

.rebel-item {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  min-height: 4.4rem;
  padding: 1rem 1.1rem 1rem 1.3rem;
  border: 1px solid rgba(0, 240, 255, 0.32);
  background: linear-gradient(135deg, rgba(0, 240, 255, 0.08), rgba(255, 43, 214, 0.05));
  color: var(--white);
  font-size: 0.94rem;
  line-height: 1.65;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.rebel-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--pink);
  box-shadow: 0 0 12px rgba(255, 43, 214, 0.7);
}

.rebel-item:nth-child(4n+2)::before {
  background: var(--yellow);
  box-shadow: 0 0 12px rgba(246, 255, 0, 0.6);
}

.rebel-item:nth-child(4n+3)::before {
  background: var(--green);
  box-shadow: 0 0 12px rgba(57, 255, 20, 0.6);
}

.rebel-item:nth-child(4n+4)::before {
  background: var(--cyan);
  box-shadow: 0 0 12px rgba(0, 240, 255, 0.6);
}

.rebel-item:hover {
  transform: translateX(6px);
  border-color: var(--yellow);
  box-shadow: 8px 0 0 rgba(246, 255, 0, 0.16);
}

.rebel-num {
  font-family: Consolas, "Courier New", monospace;
  font-weight: 700;
  color: var(--cyan);
  text-shadow: 0 0 8px rgba(0, 240, 255, 0.65);
}

.quotes {
  position: relative;
  z-index: 1;
  padding: 4rem 5vw 5rem;
  border-top: 1px solid rgba(0, 240, 255, 0.35);
  background:
    linear-gradient(180deg, rgba(0, 240, 255, 0.05), transparent 30%),
    var(--bg);
}

.quote-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 2rem;
}

.quote-grid blockquote {
  position: relative;
  margin: 0;
  padding: 1.1rem 1.3rem 1.1rem 1.7rem;
  border: 1px solid rgba(246, 255, 0, 0.32);
  border-left: 4px solid var(--yellow);
  background: rgba(246, 255, 0, 0.05);
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.8;
}

.quote-grid blockquote::before {
  content: "「";
  position: absolute;
  left: 0.45rem;
  top: 0.3rem;
  color: var(--pink);
  font-size: 1.3rem;
}

.site-footer {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 5vw;
  border-top: 1px solid rgba(0, 240, 255, 0.3);
  font-family: Consolas, "Courier New", monospace;
  font-size: 0.76rem;
  color: var(--dim);
}

#pop-layer {
  position: fixed;
  inset: 0;
  z-index: 1000;
  pointer-events: none;
  overflow: hidden;
}

.pop-text {
  position: fixed;
  transform: translate(-50%, -50%);
  font-size: 2.1rem;
  font-weight: 900;
  white-space: nowrap;
  color: var(--pink);
  text-shadow:
    3px 0 var(--cyan),
    -3px 0 var(--yellow),
    0 0 22px rgba(255, 43, 214, 0.8);
  animation: pop 1.05s forwards ease-out;
}

.pop-text::before,
.pop-text::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.pop-text::before {
  color: var(--cyan);
  z-index: -1;
  transform: translate(-4px, 2px);
  animation: pop-glitch-a 0.45s steps(2) infinite;
}

.pop-text::after {
  color: var(--yellow);
  z-index: -2;
  transform: translate(4px, -2px);
  animation: pop-glitch-b 0.6s steps(2) infinite;
}

@keyframes pop-glitch-a {
  0%, 100% { clip-path: inset(0 0 0 0); }
  50% { clip-path: inset(20% 0 55% 0); }
}

@keyframes pop-glitch-b {
  0%, 100% { clip-path: inset(0 0 0 0); }
  50% { clip-path: inset(58% 0 8% 0); }
}

@keyframes pop {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.45) rotate(-6deg);
  }
  16% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.18) rotate(2deg);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -170%) scale(1.45) rotate(0deg);
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 3.5rem;
    gap: 1rem;
  }

  .glitch {
    font-size: 3rem;
  }

  .hero-figure {
    order: -1;
    height: 48vh;
    min-height: 320px;
  }

  .figure-title {
    font-size: 1.7rem;
  }

  .subtitle {
    font-size: 0.95rem;
  }
}

@media (max-width: 560px) {
  .hero {
    padding-left: 1.2rem;
    padding-right: 1.2rem;
    min-height: auto;
  }

  .glitch {
    font-size: 2.35rem;
  }

  .hero-figure {
    height: 42vh;
    min-height: 280px;
  }

  .hero-meta > div {
    min-width: 7rem;
  }

  .section-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .section-head h2 {
    font-size: 1.7rem;
  }

  .manifesto {
    padding-left: 1.2rem;
    padding-right: 1.2rem;
  }

  .terminal {
    margin-left: 1.2rem;
    margin-right: 1.2rem;
  }

  .lore,
  .quotes {
    padding-left: 1.2rem;
    padding-right: 1.2rem;
  }

  .epic-line {
    font-size: 1.05rem;
  }

  .rebel-grid {
    grid-template-columns: 1fr;
  }

  .lore-grid,
  .quote-grid {
    grid-template-columns: 1fr;
  }

  .site-footer {
    flex-direction: column;
  }
}
