:root {
  --ink: #f7fbff;
  --muted: #b8c8d6;
  --navy-950: #020b15;
  --blue: #168dff;
  --lime: #a8ff18;
  --lime-hot: #d1ff49;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
  color-scheme: dark;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html {
  height: 100%;
  background: var(--navy-950);
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  min-height: 100%;
  margin: 0;
  background: var(--navy-950);
  color: var(--ink);
}

button, a { -webkit-tap-highlight-color: transparent; }
button, input, textarea, select { font: inherit; }
a { color: inherit; text-decoration: none; }

.site-shell {
  --mouse-x: 0;
  --mouse-y: 0;
  isolation: isolate;
  position: relative;
  width: 100%;
  height: 100svh;
  min-height: 700px;
  overflow: hidden;
  background: #061827;
}

.scene-bg {
  position: absolute;
  z-index: -5;
  inset: -4%;
  width: 108%;
  height: 108%;
  object-fit: cover;
  object-position: center;
  transform: translate(calc(var(--mouse-x) * -0.65%), calc(var(--mouse-y) * -0.45%)) scale(1.02);
  filter: saturate(0.9) contrast(1.05) brightness(0.76);
  transition: transform 220ms ease-out;
}

.scene-wash {
  position: absolute;
  z-index: -4;
  inset: 0;
  background:
    radial-gradient(circle at 78% 48%, rgba(22, 141, 255, 0.08) 0, rgba(3, 15, 27, 0.1) 26%, rgba(3, 14, 26, 0.68) 58%),
    linear-gradient(90deg, rgba(2, 11, 21, 0.96) 0%, rgba(2, 13, 24, 0.86) 32%, rgba(3, 15, 26, 0.28) 68%, rgba(2, 10, 18, 0.72) 100%),
    linear-gradient(180deg, rgba(4, 15, 26, 0.22) 0%, rgba(3, 12, 21, 0.28) 70%, rgba(2, 9, 16, 0.94) 100%);
}

.noise {
  position: absolute;
  z-index: 8;
  inset: 0;
  opacity: 0.16;
  pointer-events: none;
  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='.92' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.25'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

.sonar {
  position: absolute;
  z-index: -1;
  width: min(58vw, 900px);
  aspect-ratio: 1;
  border: 1px solid rgba(168, 255, 24, 0.15);
  border-radius: 50%;
  pointer-events: none;
  animation: sonar-pulse 5.5s ease-out infinite;
}

.sonar::before, .sonar::after {
  content: "";
  position: absolute;
  border: inherit;
  border-radius: inherit;
  inset: 10%;
}

.sonar::after { inset: 22%; }
.sonar-a { top: 6%; right: -6%; }
.sonar-b { bottom: -42%; left: 22%; width: min(44vw, 680px); animation-delay: -2.5s; }

.topbar {
  position: relative;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1760px, calc(100% - 80px));
  height: clamp(76px, 8.8vh, 96px);
  margin: 0 auto;
  border-bottom: 1px solid rgba(190, 224, 243, 0.18);
}

.brand { display: inline-flex; align-items: center; gap: 13px; border-radius: 14px; outline: none; }

.brand:focus-visible, .nav-pill:focus-visible, .character-button:focus-visible {
  outline: 3px solid var(--lime-hot);
  outline-offset: 4px;
}

.brand-icon-wrap {
  position: relative;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(168, 255, 24, 0.55);
  border-radius: 50%;
  box-shadow: 0 0 28px rgba(168, 255, 24, 0.18);
  overflow: hidden;
}

.brand-icon-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.08);
}

.brand-icon-wrap img { width: 100%; height: 100%; object-fit: cover; }
.brand-copy { display: grid; gap: 2px; }

.brand-copy strong {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 1.28rem;
  letter-spacing: 0.08em;
  line-height: 1;
}

.brand-copy small {
  color: #a6bacb;
  font-family: "Courier New", monospace;
  font-size: 0.66rem;
  letter-spacing: 0.13em;
}

.nav-actions { display: flex; align-items: center; gap: 10px; }

.nav-pill {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 16px;
  border: 1px solid rgba(209, 230, 243, 0.28);
  border-radius: 999px;
  background: rgba(4, 18, 31, 0.48);
  color: #eff9ff;
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  font-family: "Courier New", monospace;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.nav-pill:hover {
  transform: translateY(-2px);
  border-color: rgba(168, 255, 24, 0.7);
  background: rgba(7, 35, 56, 0.72);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.25), inset 0 1px rgba(255, 255, 255, 0.1);
}

.nav-pill-accent { border-color: rgba(168, 255, 24, 0.38); color: var(--lime-hot); }

.nav-symbol {
  display: grid;
  width: 23px;
  height: 23px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: Arial, sans-serif;
  font-size: 0.69rem;
}

.ca-button {
  min-width: 126px;
  border-color: transparent;
  background: var(--lime);
  color: #081224;
  box-shadow: 0 0 24px rgba(168, 255, 24, 0.2);
}

.ca-button:hover {
  border-color: var(--lime-hot);
  background: var(--lime-hot);
  box-shadow: 0 0 34px rgba(168, 255, 24, 0.38);
}

.copy-mark { transform: rotate(45deg); }

.hero {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.93fr) minmax(540px, 1.07fr);
  align-items: center;
  width: min(1760px, calc(100% - 80px));
  height: calc(100svh - clamp(76px, 8.8vh, 96px) - 48px);
  min-height: 556px;
  margin: 0 auto;
  padding: clamp(24px, 3.2vh, 44px) 0 clamp(24px, 4vh, 48px);
}

.hero-copy { position: relative; z-index: 4; align-self: center; max-width: 760px; }

.lab-status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 13px;
  border: 1px solid rgba(168, 255, 24, 0.28);
  border-radius: 999px;
  background: rgba(1, 13, 24, 0.48);
  color: #d8e7f1;
  backdrop-filter: blur(12px);
  font-family: "Courier New", monospace;
  font-size: clamp(0.68rem, 0.72vw, 0.8rem);
  letter-spacing: 0.1em;
}

.status-light {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 5px rgba(168, 255, 24, 0.11), 0 0 14px var(--lime);
  animation: blink 1.8s ease-in-out infinite;
}

.hero-title {
  display: grid;
  width: fit-content;
  margin: clamp(16px, 2.3vh, 26px) 0 14px;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(6.6rem, 10vw, 11.9rem);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 0.69;
  text-transform: uppercase;
  filter: drop-shadow(0 20px 34px rgba(0, 0, 0, 0.38));
}

.hero-title span { display: block; }
.title-nas { color: #f7fbff; }

.title-musk {
  margin-left: 0.24em;
  color: var(--lime);
  -webkit-text-stroke: 1px rgba(220, 255, 155, 0.35);
  text-shadow: 0 0 44px rgba(168, 255, 24, 0.18);
}

.hero-kicker {
  margin: 18px 0 6px;
  color: var(--ink);
  font-size: clamp(1.05rem, 1.38vw, 1.55rem);
  font-weight: 900;
  letter-spacing: 0.08em;
}

.hero-intro {
  max-width: 620px;
  margin: 0;
  color: #b8cbda;
  font-size: clamp(1rem, 1.05vw, 1.18rem);
  line-height: 1.55;
}

.lore-card {
  max-width: 690px;
  margin-top: clamp(18px, 2.4vh, 26px);
  padding: clamp(16px, 2vh, 22px) clamp(18px, 1.7vw, 28px);
  border: 1px solid rgba(184, 215, 232, 0.2);
  border-left: 3px solid var(--lime);
  border-radius: 0 20px 20px 0;
  background: linear-gradient(105deg, rgba(3, 18, 31, 0.84), rgba(5, 27, 43, 0.48));
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.lore-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
  color: var(--lime-hot);
  font-family: "Courier New", monospace;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.file-number { color: #7fa4bf; }

.lore-card p {
  margin: 0;
  color: #d3e0e8;
  font-size: clamp(0.88rem, 0.9vw, 1rem);
  line-height: 1.58;
}

.micro-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 690px;
  margin-top: 16px;
  border-top: 1px solid rgba(194, 220, 235, 0.2);
  border-bottom: 1px solid rgba(194, 220, 235, 0.2);
}

.micro-stats div { display: grid; gap: 3px; padding: 12px 14px 11px 0; }
.micro-stats div + div { padding-left: 18px; border-left: 1px solid rgba(194, 220, 235, 0.2); }

.micro-stats span {
  color: #7798ae;
  font-family: "Courier New", monospace;
  font-size: 0.62rem;
  letter-spacing: 0.14em;
}

.micro-stats strong { color: #e7f2f8; font-size: clamp(0.72rem, 0.8vw, 0.9rem); letter-spacing: 0.04em; }

.character-zone {
  position: relative;
  display: grid;
  height: 100%;
  min-height: 0;
  place-items: center;
}

.character-button {
  --rotate-x: 0deg;
  --rotate-y: 0deg;
  appearance: none;
  position: relative;
  display: block;
  width: min(38vw, 650px);
  aspect-ratio: 1;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: inherit;
  cursor: pointer;
  animation: float 5.5s ease-in-out infinite;
}

.portrait-frame {
  position: absolute;
  z-index: 3;
  inset: 7.5%;
  display: block;
  overflow: hidden;
  border: 2px solid rgba(225, 250, 255, 0.5);
  border-radius: 50%;
  background: #072039;
  box-shadow: 0 38px 90px rgba(0, 0, 0, 0.52), 0 0 0 13px rgba(4, 23, 38, 0.64), 0 0 0 15px rgba(168, 255, 24, 0.62), 0 0 80px rgba(42, 169, 255, 0.34);
  transform: perspective(950px) rotateX(var(--rotate-x)) rotateY(var(--rotate-y));
  transition: transform 140ms ease-out, box-shadow 260ms ease;
}

.character-button:hover .portrait-frame {
  box-shadow: 0 42px 100px rgba(0, 0, 0, 0.54), 0 0 0 13px rgba(4, 23, 38, 0.66), 0 0 0 17px rgba(168, 255, 24, 0.86), 0 0 100px rgba(42, 169, 255, 0.5);
}

.portrait-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 46%;
  transform: scale(1.035);
  filter: saturate(1.04) contrast(1.03);
  transition: transform 500ms cubic-bezier(0.2, 0.9, 0.25, 1.2), filter 300ms ease;
}

.character-button:hover .portrait-frame img { transform: scale(1.075); filter: saturate(1.12) contrast(1.05); }

.portrait-halo {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(168, 255, 24, 0.33);
  border-radius: 50%;
  box-shadow: inset 0 0 50px rgba(168, 255, 24, 0.05);
  animation: rotate 18s linear infinite;
}

.portrait-halo::before, .portrait-halo::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  border: 3px solid var(--lime);
  border-radius: 50%;
  background: #07182a;
  box-shadow: 0 0 22px rgba(168, 255, 24, 0.65);
}

.portrait-halo::before { top: 13%; left: 10%; }
.portrait-halo::after { right: 7%; bottom: 18%; }

.goggle-glare {
  position: absolute;
  z-index: 5;
  top: 14%;
  left: -35%;
  width: 28%;
  height: 72%;
  border-radius: 50%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.26), transparent);
  transform: rotate(18deg);
  mix-blend-mode: screen;
  animation: glare 6s ease-in-out infinite 1.2s;
}

.scan-line {
  position: absolute;
  z-index: 5;
  top: -15%;
  right: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, rgba(168, 255, 24, 0.9), transparent);
  box-shadow: 0 0 20px rgba(168, 255, 24, 0.8);
  opacity: 0;
}

.character-button:hover .scan-line, .character-button:focus-visible .scan-line { animation: scan 1.8s ease-in-out infinite; }

.orbit-label {
  position: absolute;
  z-index: 6;
  left: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 13px;
  border: 1px solid rgba(168, 255, 24, 0.42);
  border-radius: 999px;
  background: rgba(3, 16, 29, 0.72);
  color: var(--lime-hot);
  backdrop-filter: blur(14px);
  font-family: "Courier New", monospace;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  white-space: nowrap;
  transform: translateX(-50%);
}

.orbit-label-top { top: 2.5%; }
.orbit-label-bottom { bottom: 2.5%; color: #ccdfeb; }

.depth-badge {
  position: absolute;
  z-index: 7;
  right: -2%;
  bottom: 12%;
  display: grid;
  gap: 2px;
  min-width: 162px;
  padding: 12px 14px;
  border: 1px solid rgba(161, 214, 245, 0.3);
  border-radius: 15px;
  background: rgba(5, 21, 35, 0.8);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(14px);
  text-align: left;
  transform: rotate(-3deg);
}

.depth-badge small { color: #7ca1ba; font-family: "Courier New", monospace; font-size: 0.6rem; letter-spacing: 0.13em; }
.depth-badge strong { color: var(--lime-hot); font-size: 0.78rem; letter-spacing: 0.04em; }

.field-note {
  position: absolute;
  z-index: 8;
  top: 7%;
  right: 1%;
  display: grid;
  max-width: min(310px, 36vw);
  gap: 5px;
  padding: 14px 17px;
  border: 1px solid rgba(177, 219, 244, 0.26);
  border-radius: 18px 18px 4px 18px;
  background: rgba(2, 16, 29, 0.78);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(18px);
  transform: rotate(2deg);
  transition: transform 240ms ease, opacity 200ms ease;
}

.field-note::after {
  content: "";
  position: absolute;
  right: 20px;
  bottom: -10px;
  width: 18px;
  height: 18px;
  border-right: 1px solid rgba(177, 219, 244, 0.26);
  border-bottom: 1px solid rgba(177, 219, 244, 0.26);
  background: #071b2b;
  transform: rotate(45deg);
}

.field-note span { color: var(--lime); font-family: "Courier New", monospace; font-size: 0.62rem; letter-spacing: 0.15em; }
.field-note strong { color: #eef8fe; font-size: clamp(0.82rem, 0.82vw, 0.95rem); line-height: 1.35; }
.field-note.is-changing { opacity: 0; transform: rotate(-2deg) translateY(8px) scale(0.95); }
.character-button.is-diving { animation: dive 720ms cubic-bezier(0.2, 0.8, 0.2, 1); }
.character-button.is-diving .portrait-frame img { animation: face-pop 720ms ease; }

.ticker {
  position: absolute;
  z-index: 20;
  right: 0;
  bottom: 0;
  left: 0;
  height: 48px;
  overflow: hidden;
  border-top: 1px solid rgba(168, 255, 24, 0.42);
  background: var(--lime);
  color: #071426;
}

.ticker-track {
  display: flex;
  width: max-content;
  align-items: center;
  height: 100%;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 1.02rem;
  letter-spacing: 0.12em;
  white-space: nowrap;
  animation: ticker 24s linear infinite;
}

.ticker-track span { display: block; min-width: 620px; }

.toast {
  position: fixed;
  z-index: 50;
  right: 28px;
  bottom: 76px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 17px;
  border: 1px solid rgba(168, 255, 24, 0.5);
  border-radius: 14px;
  background: rgba(3, 19, 31, 0.92);
  color: var(--lime-hot);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.45), 0 0 28px rgba(168, 255, 24, 0.12);
  backdrop-filter: blur(18px);
  font-family: "Courier New", monospace;
  font-size: 0.75rem;
  letter-spacing: 0.09em;
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px) scale(0.96);
  transition: opacity 180ms ease, transform 220ms ease;
}

.toast.is-visible { opacity: 1; transform: translateY(0) scale(1); }

.bubble {
  --size: 20px;
  --drift: 20px;
  position: absolute;
  z-index: 1;
  bottom: -80px;
  left: var(--left);
  width: var(--size);
  height: var(--size);
  border: 1px solid rgba(218, 246, 255, 0.48);
  border-radius: 50%;
  background: radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.56), rgba(38, 154, 218, 0.1) 34%, rgba(4, 24, 40, 0.04) 68%);
  box-shadow: inset -4px -5px 10px rgba(34, 162, 234, 0.18), 0 0 12px rgba(126, 218, 255, 0.12);
  opacity: 0;
  pointer-events: none;
  animation: rise var(--duration) linear var(--delay) infinite;
}

@keyframes float { 0%, 100% { transform: translateY(0) rotate(-0.4deg); } 50% { transform: translateY(-14px) rotate(0.5deg); } }
@keyframes rotate { to { transform: rotate(360deg); } }
@keyframes sonar-pulse { 0%, 100% { opacity: 0.25; transform: scale(0.96); } 50% { opacity: 0.72; transform: scale(1.04); } }
@keyframes blink { 0%, 100% { opacity: 0.45; } 50% { opacity: 1; } }
@keyframes glare { 0%, 15% { left: -35%; opacity: 0; } 26% { opacity: 0.8; } 42%, 100% { left: 115%; opacity: 0; } }
@keyframes scan { 0% { top: -8%; opacity: 0; } 15% { opacity: 0.85; } 75% { opacity: 0.45; } 100% { top: 108%; opacity: 0; } }
@keyframes ticker { to { transform: translateX(-620px); } }
@keyframes rise { 0% { opacity: 0; transform: translate3d(0, 0, 0) scale(0.72); } 12% { opacity: 0.64; } 82% { opacity: 0.36; } 100% { opacity: 0; transform: translate3d(var(--drift), -115vh, 0) scale(1.15); } }
@keyframes dive { 0%, 100% { transform: translateY(0) rotate(0); } 24% { transform: translateY(18px) rotate(-3deg) scale(0.96); } 56% { transform: translateY(-18px) rotate(2deg) scale(1.03); } 78% { transform: translateY(4px) rotate(-1deg); } }
@keyframes face-pop { 0%, 100% { transform: scale(1.035); } 50% { transform: scale(1.12); } }

@media (max-width: 1180px) {
  .topbar, .hero { width: min(100% - 48px, 1100px); }
  .hero { grid-template-columns: minmax(0, 1fr) minmax(430px, 0.94fr); }
  .hero-title { font-size: clamp(5.5rem, 11.4vw, 8.7rem); }
  .character-button { width: min(45vw, 560px); }
  .depth-badge { right: -4%; }
}

@media (max-width: 850px) {
  .site-shell { height: auto; min-height: 100svh; overflow-x: hidden; overflow-y: auto; }
  .scene-bg { position: fixed; }
  .topbar { width: calc(100% - 32px); height: auto; min-height: 78px; padding: 13px 0; }
  .brand-copy small, .nav-pill span:not(.nav-symbol):not(.copy-mark) { display: none; }
  .ca-button #caLabel { display: inline; }
  .nav-pill { min-width: 44px; padding: 0 11px; }
  .ca-button { min-width: auto; }
  .hero { grid-template-columns: 1fr; width: calc(100% - 32px); height: auto; min-height: 0; padding: 44px 0 100px; }
  .hero-copy { max-width: none; }
  .hero-title { font-size: clamp(6rem, 25vw, 10rem); }
  .character-zone { min-height: min(116vw, 720px); margin-top: 18px; }
  .character-button { width: min(88vw, 610px); }
  .field-note { top: 2%; right: 0; max-width: 280px; }
  .scene-wash { background: linear-gradient(180deg, rgba(2, 11, 21, 0.94) 0%, rgba(3, 15, 26, 0.64) 46%, rgba(2, 10, 18, 0.88) 100%); }
}

@media (max-width: 560px) {
  .brand-icon-wrap { width: 42px; height: 42px; }
  .brand-copy strong { font-size: 1rem; }
  .nav-actions { gap: 6px; }
  .nav-pill { min-height: 40px; }
  .ca-button { position: fixed; z-index: 30; right: 16px; bottom: 62px; padding: 0 15px; box-shadow: 0 10px 32px rgba(0, 0, 0, 0.45), 0 0 26px rgba(168, 255, 24, 0.22); }
  .hero { padding-top: 34px; }
  .hero-title { margin-top: 20px; font-size: clamp(5.3rem, 27vw, 8rem); }
  .hero-intro { font-size: 1rem; }
  .lore-card { padding: 17px; }
  .lore-card p { font-size: 0.92rem; }
  .micro-stats { grid-template-columns: 1fr; }
  .micro-stats div, .micro-stats div + div { padding: 10px 0; border-left: 0; }
  .micro-stats div + div { border-top: 1px solid rgba(194, 220, 235, 0.16); }
  .character-zone { min-height: 118vw; }
  .field-note { right: 2%; max-width: 78%; padding: 12px 14px; }
  .depth-badge { right: 0; min-width: 145px; }
  .orbit-label { font-size: 0.57rem; }
  .ticker-track { font-size: 0.9rem; }
  .toast { right: 16px; bottom: 116px; left: 16px; justify-content: center; }
}

@media (max-height: 780px) and (min-width: 851px) {
  .site-shell { min-height: 620px; }
  .hero { padding-top: 18px; padding-bottom: 22px; }
  .hero-title { margin-top: 12px; font-size: clamp(5.4rem, 9.5vw, 8.8rem); }
  .hero-kicker { margin-top: 13px; }
  .lore-card { margin-top: 14px; padding-top: 13px; padding-bottom: 13px; }
  .micro-stats div { padding-top: 8px; padding-bottom: 8px; }
  .character-button { width: min(34vw, 510px); }
}

@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; }
  .scene-bg { transform: none; }
}
