:root {
  color-scheme: dark;
  --gold: #ffc51b;
  --gold-light: #fff0a1;
  --green: #ffc51b;
  --red: #ff3d2e;
  --ink: #080704;
  --cream: #fff8dd;
  --line: clamp(2px, 0.18vw, 4px);
}

* { box-sizing: border-box; }
html {
  background: var(--ink);
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
body {
  min-width: 320px;
  min-height: 100%;
  margin: 0;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--cream);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", "Helvetica Neue", sans-serif;
}
button, a { font: inherit; }
button { color: inherit; }

.stage {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  background: var(--ink);
}

.city-layer,
.city-layer img,
.shade-layer,
.halftone-layer,
.speed-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.city-layer { z-index: -6; }
.city-layer img { display: block; object-fit: cover; object-position: center; transform: scale(1.035); }
.shade-layer {
  z-index: -5;
  background:
    radial-gradient(circle at 62% 51%, transparent 0 21%, rgb(0 0 0 / 0.15) 44%, rgb(0 0 0 / 0.68) 100%),
    linear-gradient(90deg, rgb(0 0 0 / 0.74) 0 21%, transparent 48% 70%, rgb(0 0 0 / 0.2));
  pointer-events: none;
}
.halftone-layer {
  z-index: 8;
  opacity: 0.16;
  pointer-events: none;
  background-image: radial-gradient(circle, #ffeeb0 0 0.8px, transparent 1px);
  background-size: 5px 5px;
  mix-blend-mode: overlay;
  mask-image: linear-gradient(115deg, #000, transparent 35% 72%, #000);
}
.speed-lines {
  z-index: 7;
  opacity: 0.34;
  pointer-events: none;
  background: repeating-conic-gradient(from 257deg at 58% 56%, transparent 0deg 2.8deg, rgb(255 226 123 / 0.62) 2.9deg 3deg, transparent 3.1deg 5deg);
  mask-image: radial-gradient(circle at 58% 56%, transparent 0 19%, #000 43%, transparent 79%);
}

.masthead {
  position: relative;
  z-index: 20;
  display: flex;
  min-height: 72px;
  align-items: stretch;
  justify-content: space-between;
  border-bottom: var(--line) solid rgb(255 236 168 / 0.46);
  background: linear-gradient(180deg, rgb(5 5 3 / 0.9), rgb(5 5 3 / 0.56));
  backdrop-filter: blur(10px);
}
.wordmark {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem clamp(1rem, 2.3vw, 2.2rem);
  color: inherit;
  text-decoration: none;
}
.wordmark__seal {
  display: grid;
  width: 64px;
  aspect-ratio: 1.25;
  place-items: center;
  border: 0;
  background: transparent;
}
.wordmark__seal img { display: block; width: 100%; height: 100%; object-fit: contain; filter: drop-shadow(0 5px 3px #000) drop-shadow(0 0 7px rgb(255 197 27 / 0.25)); }
.wordmark b { display: block; color: var(--gold); font-size: 1.25rem; letter-spacing: 0.035em; line-height: 0.9; }
.wordmark small { display: block; margin-top: 0.28rem; font-family: "Arial Narrow", Arial, sans-serif; font-size: 0.58rem; font-weight: 900; letter-spacing: 0.22em; }
.masthead nav { display: flex; }
.masthead nav a,
.masthead nav button {
  display: grid;
  min-width: 92px;
  place-items: center;
  padding: 0.7rem 1rem;
  border: 0;
  border-left: 1px solid rgb(255 236 168 / 0.34);
  background: transparent;
  color: var(--cream);
  cursor: pointer;
  font-family: "Arial Narrow", Arial, sans-serif;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-decoration: none;
  transition: 150ms ease;
}
.masthead nav a:hover,
.masthead nav a:focus-visible,
.masthead nav button:hover,
.masthead nav button:focus-visible {
  outline: 0;
  background: var(--green);
  color: var(--ink);
}

.hero {
  position: relative;
  min-height: calc(100svh - 72px);
  padding: clamp(1rem, 2.6vw, 2.5rem) clamp(1rem, 3.4vw, 3.6rem) 4rem;
}
.hero-copy { position: relative; z-index: 6; width: min(34rem, 34vw); padding-top: clamp(2.5rem, 10vh, 7.5rem); }
h1 { margin: 0; font-size: clamp(4.2rem, 9.2vw, 10rem); letter-spacing: -0.055em; line-height: 0.65; text-transform: uppercase; }
h1 span, h1 strong, h1 em { display: block; width: fit-content; }
h1 span { font-size: 0.42em; letter-spacing: 0.1em; }
h1 strong { color: var(--gold); font-weight: 900; text-shadow: 4px 4px 0 #5b3300, 8px 8px 0 rgb(0 0 0 / 0.68); transform: skewX(-7deg); }
h1 em { margin: 0.18em 0 0 0.55em; color: transparent; font-size: 0.54em; font-style: normal; letter-spacing: 0.02em; -webkit-text-stroke: 2px var(--cream); transform: skewX(-7deg); }
.subhead { margin: 1.6rem 0 0; border-left: 4px solid var(--green); padding-left: 0.8rem; color: rgb(255 248 221 / 0.82); font-family: "Arial Narrow", Arial, sans-serif; font-size: clamp(0.78rem, 1.05vw, 1rem); font-weight: 800; letter-spacing: 0.12em; line-height: 1.5; text-transform: uppercase; }
.actions { display: flex; gap: 0.65rem; margin-top: 1.5rem; }
.action {
  display: flex;
  min-height: 52px;
  align-items: center;
  justify-content: space-between;
  gap: 1.1rem;
  padding: 0.75rem 0.9rem 0.75rem 1.1rem;
  border: 2px solid rgb(255 248 221 / 0.66);
  background: rgb(5 5 3 / 0.72);
  color: var(--cream);
  cursor: pointer;
  font-family: "Arial Narrow", Arial, sans-serif;
  font-size: 0.68rem;
  font-weight: 950;
  letter-spacing: 0.11em;
  text-decoration: none;
  backdrop-filter: blur(7px);
  clip-path: polygon(4% 0, 100% 0, 96% 100%, 0 100%);
  transition: transform 150ms ease, background 150ms ease, color 150ms ease;
}
.action i { font-size: 1rem; font-style: normal; }
.action__arrow { position: relative; display: block; width: 1rem; height: 1rem; flex: 0 0 1rem; }
.action__arrow::before { position: absolute; top: 0.08rem; right: 0.05rem; width: 0.5rem; height: 0.5rem; border-top: 2px solid currentColor; border-right: 2px solid currentColor; content: ""; }
.action__arrow::after { position: absolute; top: 0.53rem; right: 0.02rem; width: 0.82rem; height: 2px; background: currentColor; content: ""; transform: rotate(-45deg); transform-origin: right center; }
.action--primary { border-color: var(--gold); background: linear-gradient(105deg, #fff09b, var(--gold) 42%, #d98d00); color: var(--ink); box-shadow: 6px 6px 0 rgb(0 0 0 / 0.5); }
.action:hover, .action:focus-visible { outline: 0; background: var(--cream); color: var(--ink); transform: translateY(-3px) skewX(-2deg); }

.bull-layer {
  --rx: 0deg;
  --ry: 0deg;
  position: absolute;
  z-index: 4;
  top: 49%;
  left: 61%;
  width: min(69vw, 1160px);
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  transform: translate(-50%, -50%) perspective(1100px) rotateX(var(--rx)) rotateY(var(--ry));
  transform-origin: 54% 54%;
  filter: drop-shadow(0 30px 22px rgb(0 0 0 / 0.48));
}
.bull-layer img { position: relative; z-index: 2; display: block; width: 100%; height: auto; user-select: none; transition: transform 260ms cubic-bezier(.17,.9,.24,1.2); }
.bull-layer:hover img, .bull-layer:focus-visible img { transform: scale(1.025) translateX(-1.2%); }
.bull-layer:focus-visible { outline: 2px dashed var(--green); outline-offset: -4vw; }
.bull-glow { position: absolute; z-index: 1; inset: 16% 8% 11% 15%; border-radius: 50%; background: radial-gradient(ellipse, rgb(255 177 0 / 0.28), transparent 67%); filter: blur(18px); }
.impact-word { position: absolute; z-index: 5; top: 12%; left: 2%; max-width: 48%; color: var(--green); font-size: clamp(2.2rem, 5.2vw, 6.4rem); letter-spacing: -0.04em; line-height: 0.82; opacity: 0; text-align: left; text-shadow: 5px 5px 0 var(--ink); transform: rotate(-12deg) scale(0.4); pointer-events: none; }
.press-note { position: absolute; z-index: 6; right: 17%; bottom: 9%; min-width: 8.6rem; padding: 0.35rem 0.5rem; border: 1px solid rgb(255 255 255 / 0.35); background: rgb(0 0 0 / 0.55); color: rgb(255 255 255 / 0.65); font-family: "Arial Narrow", Arial, sans-serif; font-size: clamp(0.5rem, 0.62vw, 0.66rem); font-weight: 900; letter-spacing: 0.15em; text-align: center; transform: rotate(-3deg); }
.bull-layer.is-charging img { animation: charge 760ms cubic-bezier(.15,.75,.2,1); }
.bull-layer.is-charging .impact-word { animation: impact 800ms cubic-bezier(.12,.9,.3,1); }
.stage.is-hit { animation: screen-hit 420ms ease; }

.crew-card {
  position: absolute;
  z-index: 10;
  right: 2.2vw;
  bottom: clamp(3.5rem, 7vh, 5.8rem);
  width: min(40vw, 640px);
  padding: 7px;
  border: 3px solid var(--gold-light);
  background: linear-gradient(135deg, var(--gold), #5f3900 42%, var(--ink) 43%);
  box-shadow: 14px 14px 0 rgb(0 0 0 / 0.64), 0 0 0 2px rgb(0 0 0 / 0.8), 0 0 30px rgb(255 183 0 / 0.18);
  transform: rotate(-1deg);
  clip-path: polygon(2% 0, 100% 0, 98% 100%, 0 95%);
}
.crew-card::before { position: absolute; z-index: -1; inset: -14px 14px 14px -14px; border: 2px solid var(--red); content: ""; clip-path: polygon(3% 0, 100% 2%, 96% 100%, 0 94%); }
.crew-card::after { position: absolute; inset: 7px; content: ""; border: 1px solid rgb(255 255 255 / 0.52); background: linear-gradient(105deg, transparent 0 57%, rgb(255 197 27 / 0.17)); pointer-events: none; }
.crew-card img { display: block; width: 100%; height: auto; border: 2px solid var(--ink); filter: saturate(1.08) contrast(1.07); }
.crew-card__label { position: absolute; z-index: 3; top: -1.65rem; left: 1rem; display: flex; align-items: center; gap: 0.7rem; padding: 0.46rem 0.72rem; border: 2px solid var(--ink); background: var(--gold); color: var(--ink); font-family: "Arial Narrow", Arial, sans-serif; font-size: 0.62rem; font-weight: 950; letter-spacing: 0.15em; box-shadow: 5px 5px 0 var(--ink); transform: skewX(-7deg); }
.crew-card__label b { padding-left: 0.65rem; border-left: 1px solid rgb(8 7 4 / 0.42); color: #563400; font-size: 0.52rem; }
.crew-card p { margin: 0; padding: 0.6rem 0.9rem 0.68rem; color: var(--gold-light); font-family: "Arial Narrow", Arial, sans-serif; font-size: clamp(0.56rem, 0.7vw, 0.7rem); font-weight: 900; letter-spacing: 0.14em; }
.toast { position: absolute; z-index: 40; top: 5.7rem; left: 50%; margin: 0; padding: 0.65rem 0.9rem; background: var(--green); color: var(--ink); font-family: "Arial Narrow", Arial, sans-serif; font-size: 0.7rem; font-weight: 950; letter-spacing: 0.12em; opacity: 0; transform: translate(-50%, -12px) skewX(-6deg); transition: opacity 150ms ease, transform 150ms ease; pointer-events: none; }
.toast:not(:empty) { opacity: 1; transform: translate(-50%, 0) skewX(-6deg); }

.ticker { position: absolute; z-index: 30; right: 0; bottom: 0; left: 0; overflow: hidden; border-top: 2px solid var(--gold); background: var(--ink); color: var(--gold); }
.ticker__track { display: flex; width: max-content; animation: ticker 28s linear infinite; font-family: "Arial Narrow", Arial, sans-serif; font-size: clamp(0.62rem, 0.8vw, 0.76rem); font-weight: 950; letter-spacing: 0.13em; line-height: 2.55rem; white-space: nowrap; will-change: transform; }
.ticker__group { display: flex; flex: none; min-width: max-content; }
.ticker__group span { flex: none; }

.lore {
  position: relative;
  display: grid;
  grid-template-columns: minmax(250px, 0.82fr) minmax(420px, 1.18fr);
  gap: clamp(2.5rem, 8vw, 9rem);
  min-height: 86svh;
  padding: clamp(4.5rem, 9vw, 9rem) clamp(1.25rem, 7vw, 8rem);
  overflow: hidden;
  border-top: 1px solid rgb(255 240 161 / 0.26);
  background:
    linear-gradient(115deg, rgb(255 197 27 / 0.11), transparent 34%),
    radial-gradient(circle at 82% 14%, rgb(255 197 27 / 0.12), transparent 28%),
    #0a0804;
}
.lore::before {
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background-image: radial-gradient(circle, #f5ce5b 0 0.8px, transparent 1px);
  background-size: 6px 6px;
  content: "";
  mask-image: linear-gradient(110deg, #000, transparent 42%);
  pointer-events: none;
}
.lore::after {
  position: absolute;
  right: -8vw;
  bottom: -22vw;
  width: 54vw;
  aspect-ratio: 1;
  border: 1px solid rgb(255 197 27 / 0.28);
  border-radius: 50%;
  box-shadow: 0 0 0 3vw rgb(255 197 27 / 0.025), 0 0 0 9vw rgb(255 197 27 / 0.02);
  content: "";
}
.lore__intro, .lore__body { position: relative; z-index: 2; }
.lore__kicker { margin: 0 0 1.3rem; color: var(--gold); font-family: "Arial Narrow", Arial, sans-serif; font-size: 0.72rem; font-weight: 950; letter-spacing: 0.2em; }
.lore h2 { margin: 0; font-size: clamp(3.4rem, 7.3vw, 8.5rem); letter-spacing: -0.05em; line-height: 0.78; }
.lore h2 em { color: transparent; font-style: normal; -webkit-text-stroke: 2px var(--gold); }
.lore__body { align-self: center; max-width: 760px; }
.lore__lead { margin: 0 0 2rem; color: var(--cream); font-family: "Arial Narrow", Arial, sans-serif; font-size: clamp(1.1rem, 1.7vw, 1.55rem); font-weight: 750; line-height: 1.42; }
.mechanic { position: relative; margin-bottom: 1.8rem; padding: 1.4rem 1.5rem 1.3rem; border: 2px solid var(--gold); background: linear-gradient(105deg, #211600, #0b0905 58%); box-shadow: 9px 9px 0 #000; clip-path: polygon(1.6% 0, 100% 0, 98.4% 100%, 0 100%); }
.mechanic span { display: block; margin-bottom: 0.45rem; color: var(--gold); font-family: "Arial Narrow", Arial, sans-serif; font-size: 0.62rem; font-weight: 950; letter-spacing: 0.18em; }
.mechanic strong { display: block; color: var(--gold-light); font-size: clamp(1.7rem, 3vw, 3.1rem); letter-spacing: -0.025em; }
.mechanic p { margin: 0.55rem 0 0; color: rgb(255 248 221 / 0.72); font-family: Arial, sans-serif; font-size: 0.78rem; line-height: 1.55; }
.gold-price { display: grid; grid-template-columns: minmax(170px, 0.75fr) minmax(250px, 1.25fr); align-items: center; margin-bottom: 1px; border: 1px solid rgb(255 240 161 / 0.34); background: linear-gradient(105deg, rgb(255 197 27 / 0.11), #080704 48%); }
.gold-price__label { padding: 1rem 1.15rem; border-right: 1px solid rgb(255 240 161 / 0.22); }
.gold-price__label span { display: block; margin-bottom: 0.3rem; color: var(--gold); font-family: "Arial Narrow", Arial, sans-serif; font-size: 0.54rem; font-weight: 950; letter-spacing: 0.16em; }
.gold-price__label strong { display: block; color: var(--cream); font-size: 1.3rem; letter-spacing: 0.02em; }
.gold-price__label small { display: block; margin-top: 0.28rem; color: rgb(255 248 221 / 0.48); font-family: Arial, sans-serif; font-size: 0.58rem; }
.gold-price__widget { min-width: 0; padding: 0.35rem 0.5rem; overflow: hidden; }
.gold-price__widget tv-single-ticker { display: block; width: 100%; min-height: 66px; color: rgb(255 248 221 / 0.58); font-family: Arial, sans-serif; font-size: 0.7rem; }
.source-links { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; border: 1px solid rgb(255 240 161 / 0.24); background: rgb(255 240 161 / 0.24); }
.source-links a { display: flex; min-height: 78px; flex-direction: column; justify-content: center; padding: 1rem 1.15rem; background: #0a0804; color: var(--cream); text-decoration: none; transition: 150ms ease; }
.source-links a:hover, .source-links a:focus-visible { outline: 0; background: var(--gold); color: var(--ink); transform: translate(-3px, -3px); box-shadow: 5px 5px 0 var(--red); }
.source-links span { margin-bottom: 0.4rem; color: var(--gold); font-family: "Arial Narrow", Arial, sans-serif; font-size: 0.56rem; font-weight: 900; letter-spacing: 0.14em; }
.source-links a:hover span, .source-links a:focus-visible span { color: #604000; }
.source-links b { font-family: "Arial Narrow", Arial, sans-serif; font-size: 0.72rem; letter-spacing: 0.1em; }
.chart-shell { margin-top: 1px; border: 1px solid rgb(255 240 161 / 0.34); background: #070604; box-shadow: 9px 9px 0 rgb(0 0 0 / 0.52); }
.chart-shell__head { display: flex; min-height: 64px; align-items: center; justify-content: space-between; gap: 1rem; padding: 0.8rem 1.1rem; border-bottom: 1px solid rgb(255 240 161 / 0.28); background: linear-gradient(90deg, rgb(255 197 27 / 0.13), transparent); }
.chart-shell__head span { display: block; margin-bottom: 0.25rem; color: var(--gold); font-family: "Arial Narrow", Arial, sans-serif; font-size: 0.54rem; font-weight: 950; letter-spacing: 0.16em; }
.chart-shell__head strong { display: block; color: var(--cream); font-size: 1.1rem; letter-spacing: 0.04em; }
.chart-shell__head a { color: var(--gold); font-family: "Arial Narrow", Arial, sans-serif; font-size: 0.62rem; font-weight: 950; letter-spacing: 0.1em; text-decoration: none; }
.chart-shell__head a:hover, .chart-shell__head a:focus-visible { color: var(--cream); outline: 0; }
.chart-placeholder { position: relative; display: grid; min-height: 310px; place-content: center; overflow: hidden; padding: 2rem; text-align: center; background-image: linear-gradient(rgb(255 197 27 / 0.07) 1px, transparent 1px), linear-gradient(90deg, rgb(255 197 27 / 0.07) 1px, transparent 1px); background-size: 42px 42px; }
.chart-placeholder::before { position: absolute; right: -8%; bottom: 22%; left: -8%; height: 2px; background: var(--gold); box-shadow: 0 0 14px rgb(255 197 27 / 0.52); content: ""; transform: rotate(-8deg); clip-path: polygon(0 50%, 11% 50%, 18% 0, 24% 78%, 36% 32%, 44% 84%, 57% 18%, 64% 54%, 76% 7%, 84% 69%, 100% 9%, 100% 100%, 0 100%); }
.chart-placeholder span, .chart-placeholder strong, .chart-placeholder p { position: relative; z-index: 1; }
.chart-placeholder span { color: var(--gold); font-family: "Arial Narrow", Arial, sans-serif; font-size: 0.58rem; font-weight: 950; letter-spacing: 0.18em; }
.chart-placeholder strong { margin-top: 0.35rem; color: var(--cream); font-size: clamp(2rem, 4vw, 3.2rem); letter-spacing: -0.02em; }
.chart-placeholder p { max-width: 390px; margin: 0.55rem auto 0; color: rgb(255 248 221 / 0.55); font-family: Arial, sans-serif; font-size: 0.72rem; line-height: 1.5; }
.chart-shell iframe { display: block; width: 100%; height: 510px; border: 0; background: #070604; }
.chart-shell iframe[hidden] { display: none; }

@keyframes ticker { to { transform: translateX(-50%); } }
@keyframes charge { 0% { transform: translateX(0) scale(1); } 28% { transform: translateX(-8%) scale(1.04) rotate(-1deg); } 55% { transform: translateX(2%) scale(0.99); } 100% { transform: translateX(0) scale(1); } }
@keyframes impact { 0% { opacity: 0; transform: rotate(-12deg) scale(0.35); } 23% { opacity: 1; transform: rotate(-7deg) scale(1); } 68% { opacity: 1; transform: rotate(-9deg) scale(0.92); } 100% { opacity: 0; transform: rotate(-4deg) scale(1.3); } }
@keyframes screen-hit { 20% { transform: translateX(-5px); } 40% { transform: translateX(4px); } 60% { transform: translateX(-2px); } }

@media (max-width: 900px) {
  .masthead { min-height: 62px; }
  .masthead nav a, .masthead nav button { min-width: auto; padding-inline: 0.72rem; font-size: 0.58rem; }
  .hero { min-height: calc(100svh - 62px); padding: 1rem 1rem 3.6rem; }
  .hero-copy { width: 46vw; padding-top: 4vh; }
  h1 { font-size: clamp(3.7rem, 13vw, 7rem); }
  .subhead { font-size: 0.66rem; }
  .actions { flex-direction: column; width: min(240px, 44vw); }
  .action { min-height: 45px; padding: 0.62rem 0.75rem; font-size: 0.58rem; }
  .bull-layer { top: 47%; left: 63%; width: min(82vw, 760px); }
  .crew-card { right: 2.5vw; bottom: 3.4rem; width: min(43vw, 420px); }
  .lore { grid-template-columns: 1fr; gap: 2.5rem; }
  .lore h2 { max-width: 650px; }
}

@media (max-aspect-ratio: 4 / 5) {
  .stage { min-height: 112svh; }
  .hero { min-height: calc(112svh - 62px); }
  .city-layer img { object-position: center; }
  .shade-layer { background: linear-gradient(180deg, rgb(0 0 0 / 0.62), transparent 30% 64%, rgb(0 0 0 / 0.76)); }
  .masthead nav a, .masthead nav button { padding-inline: 0.62rem; }
  .wordmark { padding-inline: 0.75rem; }
  .wordmark b { font-size: 1.05rem; }
  .wordmark small { font-size: 0.47rem; }
  .wordmark__seal { width: 48px; }
  .hero-copy { width: 100%; padding-top: 4.5vh; }
  h1 { font-size: clamp(4.7rem, 23vw, 8.3rem); }
  h1 em { margin-left: 0.85em; }
  .subhead { margin-top: 1rem; }
  .actions { width: min(94%, 360px); margin-top: 1rem; flex-direction: row; }
  .action { flex: 1; }
  .bull-layer { top: 55%; left: 55%; width: min(127vw, 720px); }
  .press-note { right: 22%; bottom: 13%; }
  .crew-card { right: 4vw; bottom: 3.5rem; width: min(76vw, 440px); }
  .crew-card__label { top: -1.4rem; }
}

@media (max-width: 480px) {
  .masthead nav a:first-child { display: none; }
  .hero-copy { padding-top: 1.4vh; }
  .subhead { display: none; }
  .bull-layer { top: 53%; width: 132vw; }
  .crew-card { bottom: 3.1rem; width: 81vw; }
  .crew-card p { font-size: 0.52rem; }
  .lore { padding: 4.5rem 1rem; }
  .lore h2 { font-size: 3.85rem; }
  .lore__lead { font-size: 1rem; }
  .source-links { grid-template-columns: 1fr; }
  .gold-price { grid-template-columns: 1fr; }
  .gold-price__label { border-right: 0; border-bottom: 1px solid rgb(255 240 161 / 0.22); }
  .chart-placeholder { min-height: 260px; }
  .chart-shell iframe { height: 430px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: 1ms !important; animation-iteration-count: 1 !important; }
  .bull-layer { transform: translate(-50%, -50%); }
}
