:root {
  --sage-900: #303522;
  --sage-700: #596040;
  --sage-500: #7f875a;
  --sand-100: #f4dc9a;
  --sand-300: #dab76c;
  --ochre-500: #b76825;
  --ochre-700: #733617;
  --ink: #19170f;
  --paper: #efe1b4;
  --brass: #f2bd50;
  --shell: #9d2e28;
  --cream: #fff1be;
  --mx: 0;
  --my: 0;
  color-scheme: dark;
  font-family: "Arial Narrow", "Franklin Gothic Medium", Impact, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--sage-900);
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  overflow: hidden;
  color: var(--cream);
  background:
    linear-gradient(90deg, rgba(24, 25, 16, 0.76), transparent 34%, transparent 66%, rgba(24, 25, 16, 0.76)),
    linear-gradient(0deg, rgba(23, 20, 11, 0.4), transparent 45%),
    url("assets/ochre-flats-bg.jpg") center / cover no-repeat fixed;
}

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

button {
  font: inherit;
}

a {
  color: inherit;
}

.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;
}

#dustCanvas,
.cursor-glow,
.film-grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

#dustCanvas {
  z-index: 7;
  opacity: 0.68;
}

.cursor-glow {
  z-index: 1;
  background: radial-gradient(
    circle 220px at calc((var(--mx) + 1) * 50%) calc((var(--my) + 1) * 50%),
    rgba(255, 216, 122, 0.13),
    transparent 72%
  );
}

.film-grain {
  z-index: 8;
  opacity: 0.11;
  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='.82' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.72'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
  animation: grain 0.22s steps(2) infinite;
}

.site-shell {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-rows: 96px 1fr 42px;
  width: 100vw;
  height: 100svh;
  min-height: 680px;
  isolation: isolate;
}

.site-shell::before {
  content: "";
  position: absolute;
  inset: 16px;
  z-index: -1;
  border: 1px solid rgba(255, 232, 169, 0.32);
  border-radius: 22px;
  box-shadow:
    inset 0 0 0 6px rgba(25, 23, 15, 0.18),
    0 0 70px rgba(25, 23, 15, 0.32);
  pointer-events: none;
}

.topbar {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  padding: 18px 42px 10px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  text-decoration: none;
}

.brand img {
  width: 54px;
  height: 54px;
  border: 2px solid var(--brass);
  border-radius: 15px;
  box-shadow: 4px 4px 0 var(--ink);
  transition: transform 180ms ease;
}

.brand:hover img {
  transform: rotate(-5deg) scale(1.05);
}

.brand-copy {
  display: grid;
  line-height: 0.95;
}

.brand-copy strong {
  color: var(--brass);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 1.45rem;
  letter-spacing: 0.16em;
}

.brand-copy small {
  margin-top: 7px;
  color: rgba(255, 241, 190, 0.72);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.61rem;
  font-weight: 800;
  letter-spacing: 0.17em;
}

.topbar-stamp {
  margin: 0;
  color: rgba(255, 241, 190, 0.7);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-align: center;
  transform: rotate(-1.5deg);
}

.topbar-stamp span {
  display: block;
  color: var(--brass);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 1.35rem;
  letter-spacing: 0.18em;
}

.socials {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid rgba(255, 232, 169, 0.4);
  border-radius: 999px;
  color: var(--cream);
  background: rgba(31, 30, 19, 0.44);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(12px);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-decoration: none;
  transition:
    color 160ms ease,
    background 160ms ease,
    border-color 160ms ease,
    transform 160ms ease;
}

.social-link svg {
  width: 17px;
  height: 17px;
  overflow: visible;
  fill: currentColor;
}

.social-link:hover,
.social-link:focus-visible {
  color: var(--ink);
  background: var(--brass);
  border-color: var(--brass);
  outline: none;
  transform: translateY(-2px) rotate(-1deg);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(420px, 1fr) minmax(400px, 0.9fr) minmax(350px, 0.78fr);
  align-items: center;
  gap: clamp(14px, 2vw, 44px);
  min-height: 0;
  padding: 0 clamp(42px, 4.5vw, 92px) 8px;
}

.hero-copy {
  position: relative;
  z-index: 4;
  align-self: center;
  max-width: 620px;
  transform: translate3d(calc(var(--mx) * -6px), calc(var(--my) * -4px), 0);
  transition: transform 120ms linear;
}

.eyebrow,
.card-kicker {
  margin: 0;
  color: rgba(255, 241, 190, 0.78);
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(0.64rem, 0.65vw, 0.8rem);
  font-weight: 900;
  letter-spacing: 0.18em;
}

.eyebrow span {
  color: var(--ink);
  background: var(--brass);
  padding: 6px 9px 5px;
  clip-path: polygon(3% 0, 100% 6%, 97% 100%, 0 91%);
}

.title {
  display: grid;
  width: fit-content;
  margin: clamp(12px, 2vh, 22px) 0 8px;
  color: var(--cream);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  line-height: 0.73;
  letter-spacing: -0.035em;
  text-transform: uppercase;
  filter: drop-shadow(6px 7px 0 rgba(25, 23, 15, 0.95));
}

.title-boom {
  display: block;
  width: fit-content;
  font-size: clamp(5.2rem, 7.25vw, 9.4rem);
  -webkit-text-stroke: 2px var(--ink);
  paint-order: stroke fill;
}

.boom-one {
  color: var(--cream);
  transform: rotate(-2deg);
}

.boom-two {
  margin-left: 0.14em;
  color: var(--brass);
  transform: rotate(1deg);
}

.boom-three {
  margin-left: -0.03em;
  color: #d86c2c;
  transform: rotate(-1deg);
}

.title-name {
  position: relative;
  z-index: 1;
  width: fit-content;
  margin-top: 0.28em;
  padding: 0.22em 0.33em 0.18em;
  color: var(--ink);
  background: var(--paper);
  box-shadow: 5px 6px 0 var(--ochre-700);
  font-size: clamp(2rem, 3vw, 3.8rem);
  letter-spacing: 0.035em;
  line-height: 0.82;
  clip-path: polygon(1% 5%, 99% 0, 96% 95%, 3% 100%);
  transform: rotate(-1.5deg);
}

.lead {
  margin: clamp(16px, 2.2vh, 28px) 0 20px;
  color: rgba(255, 241, 190, 0.82);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(0.98rem, 1.05vw, 1.28rem);
  font-style: italic;
  line-height: 1.35;
}

.ca-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 5px 8px 5px 16px;
  border: 2px solid var(--ink);
  border-radius: 7px;
  color: var(--ink);
  background: var(--brass);
  box-shadow:
    5px 6px 0 var(--ink),
    inset 0 -4px 0 rgba(133, 65, 18, 0.15);
  cursor: pointer;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.07em;
  transition:
    transform 140ms ease,
    box-shadow 140ms ease,
    background 140ms ease;
}

.ca-button svg {
  width: 37px;
  height: 37px;
  padding: 9px;
  border-radius: 4px;
  fill: var(--cream);
  background: var(--ink);
}

.ca-label {
  opacity: 0.65;
}

.ca-value {
  max-width: 260px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ca-button:hover,
.ca-button:focus-visible {
  outline: none;
  background: var(--cream);
  box-shadow: 2px 3px 0 var(--ink);
  transform: translate(3px, 3px) rotate(-1deg);
}

.ca-button:active {
  box-shadow: none;
  transform: translate(5px, 6px);
}

.character-stage {
  position: relative;
  z-index: 3;
  display: grid;
  place-items: center;
  align-self: stretch;
  min-width: 0;
  min-height: 0;
  transform: translate3d(calc(var(--mx) * 9px), calc(var(--my) * 5px), 0);
  transition: transform 120ms linear;
}

.character-button {
  position: absolute;
  inset: auto auto 0;
  z-index: 3;
  display: grid;
  place-items: end center;
  width: min(100%, 580px);
  height: 100%;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
}

.character-button:focus-visible {
  outline: 3px dashed var(--brass);
  outline-offset: 6px;
  border-radius: 48%;
}

.character {
  position: absolute;
  left: 50%;
  bottom: -4.5%;
  z-index: 2;
  width: auto;
  height: min(88vh, 910px);
  max-width: none;
  user-select: none;
  filter:
    drop-shadow(0 22px 12px rgba(25, 20, 11, 0.35))
    drop-shadow(7px 5px 0 rgba(26, 22, 14, 0.45));
  transform: translateX(-50%);
  transform-origin: 50% 88%;
  animation: bandolero-idle 4.8s ease-in-out infinite;
  will-change: transform;
}

.character-shadow {
  position: absolute;
  left: 50%;
  bottom: 1.5%;
  z-index: 1;
  width: 66%;
  height: 5.5%;
  border-radius: 50%;
  background: rgba(33, 27, 14, 0.38);
  filter: blur(5px);
  transform: translateX(-50%);
  animation: shadow-breathe 4.8s ease-in-out infinite;
}

.character-button:hover .character {
  filter:
    drop-shadow(0 24px 12px rgba(25, 20, 11, 0.35))
    drop-shadow(7px 5px 0 rgba(26, 22, 14, 0.45))
    drop-shadow(0 0 18px rgba(242, 189, 80, 0.24));
}

.sun-rings {
  position: absolute;
  z-index: 0;
  width: min(44vw, 660px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: repeating-conic-gradient(
    from 10deg,
    rgba(244, 220, 154, 0.1) 0deg 8deg,
    transparent 8deg 17deg
  );
  animation: sun-spin 42s linear infinite;
  opacity: 0.86;
}

.sun-rings span {
  position: absolute;
  inset: calc(var(--i, 0) * 7%);
  border: 1px dashed rgba(255, 232, 169, 0.34);
  border-radius: 50%;
}

.sun-rings span:nth-child(1) {
  --i: 1;
}

.sun-rings span:nth-child(2) {
  --i: 2;
}

.sun-rings span:nth-child(3) {
  --i: 3;
}

.orbit-copy {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.orbit-copy span {
  position: absolute;
  color: rgba(255, 236, 177, 0.52);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.3em;
}

.orbit-copy span:nth-child(1) {
  top: 21%;
  left: 5%;
  transform: rotate(-90deg);
}

.orbit-copy span:nth-child(2) {
  top: 12%;
  right: 8%;
}

.orbit-copy span:nth-child(3) {
  right: 3%;
  bottom: 17%;
  transform: rotate(90deg);
}

.click-hint {
  position: absolute;
  right: -8%;
  bottom: 9%;
  z-index: 5;
  margin: 0;
  color: rgba(255, 241, 190, 0.78);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  transform: rotate(-5deg);
  animation: hint-pulse 2.3s ease-in-out infinite;
}

.click-hint span {
  display: inline-block;
  margin-right: 5px;
  color: var(--brass);
  font-size: 1.5rem;
}

.boom-bursts {
  position: absolute;
  inset: 0;
  z-index: 6;
  pointer-events: none;
}

.boom-bursts span {
  position: absolute;
  top: 19%;
  left: 50%;
  padding: 0.12em 0.24em;
  color: var(--ink);
  background: var(--brass);
  box-shadow: 5px 5px 0 var(--ochre-700);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(3rem, 5vw, 6.6rem);
  line-height: 0.9;
  opacity: 0;
  clip-path: polygon(0 16%, 18% 18%, 24% 0, 39% 16%, 58% 2%, 68% 20%, 100% 11%, 91% 47%, 100% 78%, 69% 75%, 59% 100%, 39% 82%, 14% 98%, 19% 68%, 0 56%);
  transform: translate(-50%, -50%) scale(0.1) rotate(-7deg);
}

.boom-bursts span:nth-child(2) {
  top: 37%;
  left: 86%;
  color: var(--cream);
  background: var(--shell);
  transform: translate(-50%, -50%) scale(0.1) rotate(7deg);
}

.boom-bursts span:nth-child(3) {
  top: 57%;
  left: 13%;
  color: var(--cream);
  background: var(--ochre-700);
  transform: translate(-50%, -50%) scale(0.1) rotate(-11deg);
}

.character-stage.is-booming .character {
  animation: triple-boom 760ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.character-stage.is-booming .boom-bursts span {
  animation: boom-pop 460ms cubic-bezier(0.17, 0.86, 0.35, 1.24) var(--delay) both;
}

.lore-card {
  position: relative;
  z-index: 4;
  width: 100%;
  max-width: 430px;
  justify-self: end;
  padding: clamp(22px, 2vw, 34px);
  border: 1px solid rgba(255, 226, 150, 0.42);
  border-radius: 8px 24px 8px 24px;
  color: var(--ink);
  background:
    linear-gradient(rgba(239, 225, 180, 0.9), rgba(216, 188, 119, 0.86)),
    var(--paper);
  box-shadow:
    9px 10px 0 rgba(29, 25, 14, 0.74),
    inset 0 0 40px rgba(114, 71, 27, 0.12);
  transform: translate3d(calc(var(--mx) * -5px), calc(var(--my) * 7px), 0) rotate(1deg);
  transition: transform 120ms linear;
}

.lore-card::before,
.lore-card::after {
  content: "";
  position: absolute;
  width: 72px;
  height: 24px;
  background: rgba(109, 77, 34, 0.3);
  box-shadow: inset 0 0 0 1px rgba(255, 241, 190, 0.18);
  transform: rotate(-7deg);
}

.lore-card::before {
  top: -10px;
  left: 18%;
}

.lore-card::after {
  right: 12%;
  bottom: -9px;
  transform: rotate(4deg);
}

.lore-heading-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 14px;
  border-bottom: 2px solid rgba(25, 23, 15, 0.26);
}

.card-kicker {
  color: rgba(25, 23, 15, 0.6);
}

.card-mark {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(25, 23, 15, 0.4);
  border-radius: 50%;
}

.lore-card h2 {
  margin: 20px 0 12px;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(2.2rem, 2.6vw, 3.4rem);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: 0.015em;
}

.lore-card > p {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(0.88rem, 0.87vw, 1.06rem);
  line-height: 1.55;
}

.field-notes {
  display: grid;
  gap: 0;
  margin: 22px 0 0;
  border-top: 1px solid rgba(25, 23, 15, 0.25);
}

.field-notes div {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(25, 23, 15, 0.2);
}

.field-notes dt {
  color: rgba(25, 23, 15, 0.54);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.field-notes dd {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-align: right;
}

.lore-card blockquote {
  margin: 20px 0 0;
  color: var(--ochre-700);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1rem, 1.05vw, 1.28rem);
  font-style: italic;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
}

.ticker {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  color: var(--ink);
  background: var(--brass);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.68rem;
  font-weight: 950;
  letter-spacing: 0.18em;
  white-space: nowrap;
}

.ticker-track {
  display: flex;
  align-items: center;
  gap: 34px;
  width: max-content;
  animation: ticker-roll 28s linear infinite;
}

.ticker i {
  color: var(--shell);
  font-style: normal;
  font-size: 1rem;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 70px;
  z-index: 20;
  padding: 13px 18px;
  border: 2px solid var(--ink);
  border-radius: 5px;
  color: var(--ink);
  background: var(--brass);
  box-shadow: 5px 5px 0 var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 18px) rotate(-1deg);
  transition:
    opacity 160ms ease,
    transform 220ms ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0) rotate(-1deg);
}

.impact-ring {
  position: fixed;
  z-index: 15;
  width: 24px;
  height: 24px;
  border: 5px solid rgba(242, 189, 80, 0.85);
  border-radius: 50%;
  pointer-events: none;
  animation: ring-expand 700ms ease-out forwards;
}

@keyframes bandolero-idle {
  0%,
  100% {
    transform: translateX(-50%) translateY(0) rotate(-0.4deg);
  }
  48% {
    transform: translateX(-50%) translateY(-9px) rotate(0.6deg);
  }
  56% {
    transform: translateX(-50%) translateY(-7px) rotate(0.35deg);
  }
}

@keyframes shadow-breathe {
  0%,
  100% {
    opacity: 0.48;
    transform: translateX(-50%) scaleX(1);
  }
  50% {
    opacity: 0.3;
    transform: translateX(-50%) scaleX(0.88);
  }
}

@keyframes triple-boom {
  0%,
  100% {
    transform: translateX(-50%) translateY(0) rotate(0);
  }
  12% {
    transform: translateX(-53%) translateY(-10px) rotate(-3deg);
  }
  26% {
    transform: translateX(-48%) translateY(1px) rotate(2deg);
  }
  41% {
    transform: translateX(-53%) translateY(-13px) rotate(-2.5deg);
  }
  58% {
    transform: translateX(-48%) translateY(0) rotate(1.5deg);
  }
  73% {
    transform: translateX(-52%) translateY(-8px) rotate(-1.5deg);
  }
}

@keyframes boom-pop {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.05) rotate(-10deg);
  }
  38% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.08) rotate(2deg);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -64%) scale(1.22) rotate(5deg);
  }
}

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

@keyframes hint-pulse {
  0%,
  100% {
    opacity: 0.55;
    transform: rotate(-5deg) translateY(0);
  }
  50% {
    opacity: 1;
    transform: rotate(-5deg) translateY(-4px);
  }
}

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

@keyframes grain {
  0% {
    transform: translate(0, 0);
  }
  25% {
    transform: translate(-1.5%, 1%);
  }
  50% {
    transform: translate(1%, -1.5%);
  }
  75% {
    transform: translate(1.5%, 0.5%);
  }
}

@keyframes ring-expand {
  to {
    width: 440px;
    height: 440px;
    margin: -208px;
    opacity: 0;
    border-width: 1px;
  }
}

@media (max-width: 1340px) {
  .hero {
    grid-template-columns: minmax(340px, 0.9fr) minmax(350px, 0.9fr) minmax(310px, 0.72fr);
    padding-inline: 42px;
  }

  .title-boom {
    font-size: clamp(4.6rem, 6.7vw, 7.4rem);
  }

  .character {
    height: min(82vh, 810px);
  }

  .lore-card {
    padding: 24px;
  }

  .lore-card > p {
    font-size: 0.86rem;
  }

  .click-hint {
    display: none;
  }
}

@media (max-width: 1080px) {
  body {
    overflow-y: auto;
  }

  .site-shell {
    min-height: 900px;
  }

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

  .topbar-stamp {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr 0.9fr;
    align-items: center;
    padding-bottom: 20px;
  }

  .character-stage {
    grid-column: 2;
    grid-row: 1 / span 2;
  }

  .character {
    height: min(74vh, 700px);
  }

  .lore-card {
    grid-column: 1;
    max-width: 560px;
    padding: 20px 24px;
    transform: none;
  }

  .lore-card > p {
    display: none;
  }

  .lore-card h2 {
    font-size: 2rem;
  }

  .field-notes {
    margin-top: 10px;
  }
}

@media (max-width: 740px) {
  body {
    overflow-x: hidden;
    background-position: 55% center;
  }

  .site-shell {
    display: block;
    min-height: 1180px;
    height: auto;
    padding-bottom: 42px;
  }

  .site-shell::before {
    inset: 8px;
  }

  .topbar {
    display: flex;
    justify-content: space-between;
    padding: 15px 18px;
  }

  .brand-copy {
    display: none;
  }

  .social-link {
    width: 44px;
    padding: 0;
  }

  .social-link span {
    display: none;
  }

  .hero {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 28px 24px 40px;
  }

  .hero-copy {
    width: 100%;
    transform: none;
  }

  .title-boom {
    font-size: clamp(4.6rem, 22vw, 7rem);
  }

  .title-name {
    font-size: clamp(2rem, 9vw, 3rem);
  }

  .lead {
    display: none;
  }

  .ca-button {
    margin-top: 18px;
  }

  .character-stage {
    width: 100%;
    height: 570px;
    transform: none;
  }

  .character {
    bottom: -7%;
    height: 590px;
  }

  .sun-rings {
    width: 120vw;
  }

  .lore-card {
    width: calc(100% - 10px);
    max-width: none;
    transform: rotate(0.5deg);
  }

  .lore-card > p {
    display: block;
  }

  .ticker {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 42px;
  }
}

@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;
  }

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

