:root {
  --ink: #f2f6ff;
  --muted: #9eafc5;
  --void: #050914;
  --panel: rgba(5, 13, 27, 0.68);
  --cyan: #3ee8ff;
  --green: #91ff56;
  --line: rgba(170, 228, 255, 0.2);
  --mx: 0;
  --my: 0;
}

* {
  box-sizing: border-box;
}

html {
  color-scheme: dark;
  background: var(--void);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100svh;
  overflow: hidden;
  color: var(--ink);
  background: var(--void);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: #041018;
  background: var(--green);
  transform: translateY(-180%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.background,
.background-shade,
#particleField,
.grain,
.cursor-glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

.background {
  z-index: 0;
  background: var(--void) url("assets/fomosapiens-bg.webp") center / cover no-repeat;
  transform: scale(1.035) translate(calc(var(--mx) * -5px), calc(var(--my) * -4px));
  transition: transform 400ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.background-shade {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(3, 8, 18, 0.96) 0%, rgba(3, 8, 18, 0.76) 30%, rgba(3, 8, 18, 0.12) 62%, rgba(3, 8, 18, 0.32) 100%),
    linear-gradient(180deg, rgba(2, 6, 16, 0.62) 0%, transparent 28%, transparent 70%, rgba(2, 6, 16, 0.9) 100%);
}

#particleField {
  z-index: 2;
  width: 100%;
  height: 100%;
  opacity: 0.7;
}

.grain {
  z-index: 20;
  opacity: 0.055;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.75'/%3E%3C/svg%3E");
}

.cursor-glow {
  z-index: 3;
  width: 28rem;
  height: 28rem;
  left: calc(var(--cursor-x, 50%) - 14rem);
  top: calc(var(--cursor-y, 50%) - 14rem);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(54, 226, 255, 0.09), transparent 66%);
  opacity: 0;
  transition: opacity 300ms ease;
}

body.pointer-active .cursor-glow {
  opacity: 1;
}

.site-shell {
  position: relative;
  z-index: 4;
  width: min(100vw, 1920px);
  height: min(100svh, 1080px);
  min-height: 690px;
  margin: 0 auto;
  isolation: isolate;
}

.topbar {
  position: relative;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 90px;
  padding: 0 clamp(32px, 4.5vw, 86px);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(3, 8, 18, 0.72), rgba(3, 8, 18, 0.16));
  backdrop-filter: blur(8px);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 13px;
  color: var(--ink);
  text-decoration: none;
}

.brand img {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(109, 236, 255, 0.55);
  border-radius: 50%;
  box-shadow: 0 0 28px rgba(62, 232, 255, 0.2);
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand strong {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.brand small,
.nav-number,
.subject-status {
  font-family: "Courier New", monospace;
  font-size: 9px;
  letter-spacing: 0.19em;
}

.brand small {
  color: var(--muted);
}

.subject-status {
  display: inline-flex;
  align-items: center;
  justify-self: center;
  gap: 9px;
  color: #d2ffbe;
}

.status-dot {
  position: relative;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 12px var(--green);
}

.status-dot::after {
  content: "";
  position: absolute;
  inset: -5px;
  border: 1px solid var(--green);
  border-radius: inherit;
  animation: statusPulse 1.8s ease-out infinite;
}

.social-nav {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 8px;
}

.social-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: 1px solid rgba(177, 231, 255, 0.18);
  border-radius: 999px;
  color: #d9e9fa;
  background: rgba(8, 18, 37, 0.5);
  font-family: "Courier New", monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-decoration: none;
  transition: border-color 180ms ease, color 180ms ease, transform 180ms ease, background 180ms ease;
}

.social-nav a:hover,
.social-nav a:focus-visible {
  color: #06101b;
  border-color: var(--green);
  background: var(--green);
  transform: translateY(-2px);
  outline: none;
}

.nav-number {
  color: var(--cyan);
}

.social-nav a:hover .nav-number,
.social-nav a:focus-visible .nav-number {
  color: #06101b;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(570px, 0.94fr) minmax(650px, 1.06fr);
  height: calc(100% - 90px);
}

.hero-copy {
  position: relative;
  z-index: 8;
  align-self: center;
  width: min(790px, 44vw);
  padding: 0 0 72px clamp(36px, 5vw, 96px);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: clamp(14px, 2.2vh, 24px);
  color: #c5d4e7;
  font-family: "Courier New", monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.25em;
}

.eyebrow-line {
  width: 44px;
  height: 2px;
  background: linear-gradient(90deg, var(--green), var(--cyan));
  box-shadow: 0 0 12px rgba(85, 240, 222, 0.65);
}

.hero-title {
  position: relative;
  z-index: 2;
  display: grid;
  margin: 0;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(84px, 8.6vw, 166px);
  font-weight: 500;
  line-height: 0.74;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}

.hero-title span {
  position: relative;
  display: block;
  width: max-content;
}

.title-solid {
  color: var(--ink);
  text-shadow: 0 0 36px rgba(137, 213, 255, 0.18);
}

.title-outline {
  margin-top: 0.18em;
  color: rgba(5, 9, 20, 0.2);
  -webkit-text-stroke: clamp(1px, 0.13vw, 3px) var(--ink);
  text-shadow: 0 0 22px rgba(57, 228, 255, 0.12);
}

.hero-title span::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  z-index: -1;
  color: var(--cyan);
  opacity: 0;
  transform: translateX(0);
  clip-path: inset(45% 0 38% 0);
}

.hero-title.is-glitching span::after {
  animation: titleGlitch 520ms steps(2, end);
}

.tagline {
  margin: clamp(24px, 3.3vh, 36px) 0 10px;
  color: #d5e1ee;
  font-family: "Courier New", monospace;
  font-size: clamp(13px, 0.9vw, 17px);
  font-weight: 700;
  letter-spacing: 0.17em;
}

.tagline em {
  color: var(--green);
  font-style: normal;
  text-shadow: 0 0 18px rgba(145, 255, 86, 0.34);
}

.intro {
  max-width: 610px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(13px, 0.88vw, 17px);
  line-height: 1.65;
}

.actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: clamp(18px, 2.5vh, 28px);
}

.ca-button {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  min-width: 272px;
  max-width: 420px;
  min-height: 56px;
  padding: 8px 10px 8px 9px;
  overflow: hidden;
  border: 1px solid rgba(145, 255, 86, 0.68);
  border-radius: 4px;
  color: #06101b;
  background: var(--green);
  box-shadow: 0 12px 34px rgba(107, 255, 85, 0.13), inset 0 0 0 1px rgba(255, 255, 255, 0.25);
  cursor: pointer;
  font-family: "Courier New", monospace;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.ca-button::after {
  content: "";
  position: absolute;
  top: -120%;
  bottom: -120%;
  left: -28%;
  width: 24%;
  background: rgba(255, 255, 255, 0.55);
  transform: rotate(20deg);
  transition: left 480ms ease;
}

.ca-button:hover,
.ca-button:focus-visible {
  filter: brightness(1.06);
  transform: translateY(-2px) rotate(-0.35deg);
  box-shadow: 0 16px 46px rgba(107, 255, 85, 0.24);
  outline: none;
}

.ca-button:hover::after,
.ca-button:focus-visible::after {
  left: 115%;
}

.ca-button.copied {
  animation: copiedPop 420ms ease;
}

.ca-icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(4, 16, 24, 0.28);
  border-radius: 3px;
}

.ca-icon svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.ca-value {
  overflow: hidden;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-align: left;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ca-action {
  padding: 8px;
  border-left: 1px solid rgba(4, 16, 24, 0.2);
  font-size: 9px;
  letter-spacing: 0.14em;
}

.signal-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 56px;
  padding: 0 4px;
  color: #dce7f4;
  font-family: "Courier New", monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-decoration: none;
}

.signal-link span {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--cyan);
  transition: transform 180ms ease, border-color 180ms ease;
}

.signal-link:hover span,
.signal-link:focus-visible span {
  border-color: var(--cyan);
  transform: translate(3px, -3px);
}

.signal-link:focus-visible {
  outline: 1px solid var(--cyan);
  outline-offset: 6px;
}

.lore-card {
  position: relative;
  width: min(650px, 100%);
  margin-top: clamp(18px, 2.5vh, 26px);
  padding: 15px 18px 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-left: 2px solid var(--cyan);
  background: linear-gradient(100deg, rgba(6, 15, 31, 0.88), rgba(9, 24, 46, 0.48));
  backdrop-filter: blur(14px);
}

.lore-card::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 90px;
  height: 1px;
  background: var(--green);
  box-shadow: 0 0 14px var(--green);
}

.lore-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--cyan);
  font-family: "Courier New", monospace;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.classified {
  padding: 3px 6px;
  color: #07121b;
  background: var(--green);
}

.lore-card p {
  margin: 10px 0 12px;
  color: #b8c7d9;
  font-size: clamp(11px, 0.69vw, 13px);
  line-height: 1.5;
}

.lore-card strong {
  color: var(--ink);
}

.specimen-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.specimen-stats span {
  display: grid;
  gap: 2px;
  padding-top: 7px;
  border-top: 1px solid rgba(170, 228, 255, 0.13);
  color: #dce8f5;
  font-family: "Courier New", monospace;
  font-size: 10px;
}

.specimen-stats small {
  color: #7489a1;
  font-size: 8px;
  letter-spacing: 0.14em;
}

.visual-stage {
  position: relative;
  z-index: 6;
  min-width: 0;
  transform: translate(calc(var(--mx) * 7px), calc(var(--my) * 4px));
  transition: transform 340ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.character-wrap {
  position: absolute;
  z-index: 4;
  right: clamp(-42px, -1.4vw, -12px);
  bottom: clamp(13px, 1.5vh, 22px);
  width: min(65vw, 1040px);
  aspect-ratio: 1180 / 1059;
  transform-origin: 58% 83%;
  animation: feralHover 4.2s ease-in-out infinite;
  will-change: transform;
}

.character-wrap.is-raging {
  animation: rageShake 680ms steps(2, end);
}

.character {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 32px 30px rgba(0, 0, 0, 0.42));
  user-select: none;
}

.character-aura {
  position: absolute;
  z-index: 1;
  top: 13%;
  left: 23%;
  width: 52%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(145, 255, 86, 0.16), rgba(62, 232, 255, 0.08) 38%, transparent 70%);
  filter: blur(8px);
  animation: auraPulse 2.8s ease-in-out infinite;
}

.monitor-scan {
  position: absolute;
  z-index: 3;
  top: 9.5%;
  right: 1.6%;
  width: 31%;
  height: 30%;
  overflow: hidden;
  border-radius: 8px;
  opacity: 0.28;
  transform: perspective(700px) rotateY(-7deg) rotateZ(-0.8deg);
  mix-blend-mode: screen;
}

.monitor-scan::after {
  content: "";
  position: absolute;
  inset: -70% 0;
  background: linear-gradient(180deg, transparent 42%, rgba(113, 255, 197, 0.6) 50%, transparent 58%);
  animation: monitorScan 2.4s linear infinite;
}

.orbit {
  position: absolute;
  z-index: 1;
  border: 1px solid rgba(71, 223, 255, 0.21);
  border-radius: 50%;
  box-shadow: inset 0 0 24px rgba(52, 225, 255, 0.03), 0 0 30px rgba(52, 225, 255, 0.03);
}

.orbit::after {
  content: "";
  position: absolute;
  top: 50%;
  left: -4px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 18px var(--green);
}

.orbit-one {
  top: 5%;
  right: 2%;
  width: min(49vw, 820px);
  aspect-ratio: 1;
  animation: orbitSpin 18s linear infinite;
}

.orbit-two {
  top: 15%;
  right: 12%;
  width: min(37vw, 620px);
  aspect-ratio: 1;
  border-style: dashed;
  animation: orbitSpin 26s linear infinite reverse;
}

.energy-burst {
  position: absolute;
  z-index: 0;
  top: 20%;
  right: 25%;
  width: 48%;
  height: 42%;
  opacity: 0.4;
  background: conic-gradient(from 90deg, transparent, rgba(68, 231, 255, 0.22), transparent 28%, rgba(145, 255, 86, 0.18), transparent 60%);
  filter: blur(24px);
  animation: energyTurn 14s linear infinite;
}

.callout {
  position: absolute;
  z-index: 8;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #bbd0e5;
  font-family: "Courier New", monospace;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-shadow: 0 1px 8px #020712;
}

.callout span {
  width: 36px;
  height: 1px;
  background: var(--cyan);
  box-shadow: 0 0 9px var(--cyan);
}

.callout-top {
  top: 18%;
  left: 13%;
}

.callout-bottom {
  right: 4%;
  bottom: 23%;
}

.power-meter {
  position: absolute;
  z-index: 9;
  top: 31%;
  right: 3.5%;
  display: grid;
  width: 132px;
  gap: 5px;
  padding: 10px;
  border: 1px solid rgba(170, 228, 255, 0.2);
  background: rgba(3, 9, 21, 0.72);
  backdrop-filter: blur(8px);
  font-family: "Courier New", monospace;
}

.meter-label {
  color: #8fa5ba;
  font-size: 7px;
  letter-spacing: 0.12em;
}

.meter-track {
  display: block;
  height: 4px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.12);
}

.meter-track i {
  display: block;
  width: 96%;
  height: 100%;
  background: linear-gradient(90deg, var(--cyan), var(--green));
  box-shadow: 0 0 10px var(--green);
  animation: meterCharge 2.4s ease-in-out infinite;
}

.power-meter strong {
  color: var(--green);
  font-size: 11px;
  letter-spacing: 0.08em;
}

.bottom-rail {
  position: absolute;
  z-index: 30;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  height: 42px;
  overflow: hidden;
  border-top: 1px solid rgba(170, 228, 255, 0.17);
  background: rgba(3, 8, 18, 0.82);
  backdrop-filter: blur(10px);
}

.ticker {
  flex: 1;
  overflow: hidden;
}

.ticker-track {
  display: flex;
  align-items: center;
  width: max-content;
  height: 100%;
  animation: tickerMove 26s linear infinite;
}

.ticker-track span {
  padding: 0 28px;
  color: #b7c8d9;
  font-family: "Courier New", monospace;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

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

.rail-mark {
  display: grid;
  place-items: center;
  width: 100px;
  border-left: 1px solid rgba(170, 228, 255, 0.17);
  color: var(--cyan);
  font-family: "Courier New", monospace;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: revealIn 780ms cubic-bezier(0.18, 0.84, 0.24, 1) forwards;
}

.reveal-1 { animation-delay: 100ms; }
.reveal-2 { animation-delay: 190ms; }
.reveal-3 { animation-delay: 310ms; }
.reveal-4 { animation-delay: 430ms; }
.reveal-5 { animation-delay: 540ms; }

.toast {
  position: fixed;
  z-index: 80;
  left: 50%;
  bottom: 68px;
  padding: 12px 18px;
  border: 1px solid var(--green);
  border-radius: 3px;
  color: #06101b;
  background: var(--green);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.38);
  font-family: "Courier New", monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
  opacity: 0;
  transform: translate(-50%, 20px);
  transition: opacity 180ms ease, transform 180ms ease;
  pointer-events: none;
}

.toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}

@keyframes revealIn {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes statusPulse {
  0% { opacity: 0.8; transform: scale(0.7); }
  70%, 100% { opacity: 0; transform: scale(1.8); }
}

@keyframes feralHover {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  44% { transform: translateY(-7px) rotate(-0.25deg); }
  52% { transform: translateY(-5px) rotate(0.2deg); }
}

@keyframes rageShake {
  0%, 100% { transform: translate(0, 0) rotate(0); }
  15% { transform: translate(-3px, 1px) rotate(-0.35deg); }
  30% { transform: translate(4px, -2px) rotate(0.4deg); }
  48% { transform: translate(-2px, -1px) rotate(-0.25deg); }
  64% { transform: translate(3px, 1px) rotate(0.3deg); }
  82% { transform: translate(-1px, -2px) rotate(-0.15deg); }
}

@keyframes auraPulse {
  0%, 100% { opacity: 0.5; transform: scale(0.92); }
  50% { opacity: 1; transform: scale(1.08); }
}

@keyframes monitorScan {
  from { transform: translateY(-24%); }
  to { transform: translateY(24%); }
}

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

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

@keyframes meterCharge {
  0%, 100% { transform: scaleX(0.25); transform-origin: left; }
  60% { transform: scaleX(1); transform-origin: left; }
}

@keyframes titleGlitch {
  0% { opacity: 0; transform: translateX(0); }
  20% { opacity: 0.8; transform: translateX(7px); }
  38% { opacity: 0.4; transform: translateX(-5px); }
  64% { opacity: 0.8; transform: translateX(3px); }
  100% { opacity: 0; transform: translateX(0); }
}

@keyframes copiedPop {
  50% { transform: translateY(-2px) scale(1.025); }
}

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

@media (max-width: 1260px) {
  .hero {
    grid-template-columns: minmax(500px, 0.9fr) minmax(510px, 1.1fr);
  }

  .hero-copy {
    width: min(680px, 48vw);
    padding-left: 42px;
  }

  .character-wrap {
    width: min(69vw, 900px);
    right: -54px;
  }

  .power-meter,
  .callout {
    display: none;
  }
}

@media (max-width: 980px), (max-aspect-ratio: 4 / 3) {
  body {
    overflow-x: hidden;
    overflow-y: auto;
  }

  .site-shell {
    width: 100%;
    height: auto;
    min-height: 100svh;
  }

  .topbar {
    grid-template-columns: 1fr auto;
    height: 76px;
    padding: 0 22px;
  }

  .subject-status {
    display: none;
  }

  .social-nav a {
    padding: 9px 11px;
  }

  .social-nav .nav-number {
    display: none;
  }

  .hero {
    display: flex;
    min-height: calc(100svh - 76px);
    flex-direction: column;
    height: auto;
  }

  .hero-copy {
    order: 1;
    width: 100%;
    padding: 62px 28px 44px;
  }

  .hero-title {
    font-size: clamp(72px, 18vw, 132px);
  }

  .visual-stage {
    order: 2;
    min-height: 610px;
    overflow: hidden;
  }

  .character-wrap {
    right: 50%;
    bottom: 34px;
    width: min(1040px, 104vw);
    transform: translateX(50%);
    animation: none;
  }

  .character-wrap.is-raging {
    animation: none;
  }

  .lore-card {
    width: min(680px, 100%);
  }

  .bottom-rail {
    position: relative;
  }
}

@media (max-width: 620px) {
  .brand-copy small,
  .social-nav a:first-child,
  .signal-link {
    display: none;
  }

  .brand strong {
    font-size: 15px;
  }

  .brand img {
    width: 38px;
    height: 38px;
  }

  .hero-copy {
    padding: 48px 20px 34px;
  }

  .actions {
    align-items: stretch;
  }

  .ca-button {
    width: 100%;
    min-width: 0;
  }

  .specimen-stats {
    grid-template-columns: 1fr;
  }

  .visual-stage {
    min-height: 490px;
  }

  .character-wrap {
    width: 128vw;
  }

  .orbit-one {
    width: 100vw;
  }
}

@media (max-height: 820px) and (min-width: 981px) {
  .site-shell {
    min-height: 620px;
  }

  .hero-copy {
    padding-bottom: 52px;
  }

  .hero-title {
    font-size: clamp(74px, 8vw, 124px);
  }

  .intro {
    line-height: 1.45;
  }

  .lore-card {
    margin-top: 14px;
    padding-top: 11px;
    padding-bottom: 10px;
  }

  .character-wrap {
    width: min(61vw, 830px);
  }
}

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

  #particleField,
  .cursor-glow {
    display: none;
  }
}
