:root {
  --navy: #071226;
  --navy-mid: #0c2148;
  --suit: #14356f;
  --sky: #2f86d4;
  --sky-soft: #7eb9ee;
  --gold: #e4c872;
  --gold-deep: #b8923a;
  --gold-dim: rgba(228, 200, 114, 0.18);
  --chrome: #eef4fb;
  --ink: #d7e4f4;
  --muted: #8ea6c4;
  --line: rgba(228, 200, 114, 0.28);
  --glass: rgba(8, 22, 46, 0.55);
  --font-display: "Cinzel", serif;
  --font-body: "Manrope", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: var(--navy);
  color: var(--ink);
  font-family: var(--font-body);
  cursor: none;
}

body {
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  cursor: none;
}

button {
  font: inherit;
  cursor: none;
}

.cursor-halo,
.cursor-core {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 80;
  pointer-events: none;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.cursor-halo {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(228, 200, 114, 0.7);
  box-shadow: 0 0 18px rgba(228, 200, 114, 0.25);
  transition: width 0.25s ease, height 0.25s ease, background 0.25s ease;
}

.cursor-halo.is-hot {
  width: 64px;
  height: 64px;
  background: rgba(228, 200, 114, 0.08);
}

.cursor-core {
  width: 6px;
  height: 6px;
  background: var(--gold);
  box-shadow: 0 0 10px var(--gold);
}

.chamber {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.sky {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 55% at 50% -10%, #4aa0e8 0%, transparent 58%),
    radial-gradient(ellipse 50% 40% at 80% 10%, rgba(90, 160, 220, 0.28), transparent 60%),
    linear-gradient(180deg, #1a4f8c 0%, #0b2348 38%, #071226 72%);
}

.sky-haze {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 18%, rgba(180, 214, 245, 0.16), transparent 42%);
  animation: haze 12s ease-in-out infinite;
}

.cloud {
  position: absolute;
  height: 160px;
  border-radius: 50%;
  filter: blur(28px);
  background: rgba(210, 230, 248, 0.14);
  animation: drift 36s linear infinite;
}

.cloud-a { width: 42vw; top: 8%; left: -10%; }
.cloud-b { width: 28vw; top: 16%; left: 40%; animation-duration: 48s; animation-direction: reverse; }
.cloud-c { width: 34vw; top: 4%; left: 70%; animation-duration: 42s; }

.colonnade {
  position: absolute;
  inset: auto 0 0;
  height: 58%;
  background:
    repeating-linear-gradient(
      90deg,
      transparent 0 7.2%,
      rgba(232, 240, 248, 0.035) 7.2% 8.4%,
      transparent 8.4% 16.6%
    ),
    linear-gradient(180deg, transparent, rgba(7, 18, 38, 0.88));
  mask-image: linear-gradient(180deg, transparent, #000 28%, #000);
}

.shaft {
  position: absolute;
  top: -10%;
  width: 18vw;
  height: 80%;
  background: linear-gradient(180deg, rgba(255, 244, 210, 0.16), transparent 70%);
  filter: blur(18px);
  transform: rotate(8deg);
  animation: sweep 16s ease-in-out infinite;
}

.shaft-a { left: 12%; }
.shaft-b { left: 44%; animation-delay: -5s; width: 12vw; }
.shaft-c { left: 70%; animation-delay: -10s; transform: rotate(-6deg); }

.marble-wash {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.08), transparent 24%),
    radial-gradient(circle at 75% 70%, rgba(180, 200, 220, 0.08), transparent 28%);
}

#motes {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.seal-watermark {
  position: absolute;
  width: 46vmin;
  height: 46vmin;
  right: -6vmin;
  bottom: -8vmin;
  border: 1px solid rgba(228, 200, 114, 0.12);
  border-radius: 50%;
  box-shadow: inset 0 0 0 18px rgba(228, 200, 114, 0.04);
  animation: spin 80s linear infinite;
}

.seal-watermark::before,
.seal-watermark::after {
  content: "";
  position: absolute;
  inset: 12%;
  border: 1px dashed rgba(228, 200, 114, 0.16);
  border-radius: 50%;
}

.seal-watermark::after {
  inset: 24%;
  border-style: solid;
}

.grain,
.vignette {
  position: absolute;
  inset: 0;
}

.grain {
  opacity: 0.08;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.vignette {
  background: radial-gradient(ellipse at center, transparent 40%, rgba(4, 10, 22, 0.72) 100%);
}

.nav,
main,
.foot,
.tape,
.drawer {
  position: relative;
  z-index: 2;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 16px 5vw;
  background: rgba(7, 18, 38, 0.62);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition: border-color 0.3s ease, background 0.3s ease;
}

.nav.is-tight {
  background: rgba(7, 18, 38, 0.86);
  border-bottom-color: var(--line);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-seal {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid var(--gold);
  box-shadow: 0 0 0 3px rgba(228, 200, 114, 0.15);
}

.brand-seal img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-text strong {
  font-family: var(--font-display);
  letter-spacing: 0.12em;
  font-size: 13px;
}

.brand-text small {
  color: var(--gold);
  letter-spacing: 0.18em;
  font-size: 10px;
}

.links {
  display: flex;
  gap: 22px;
  margin-left: auto;
}

.links a {
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  position: relative;
}

.links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.links a:hover {
  color: var(--chrome);
}

.links a:hover::after {
  width: 100%;
}

.nav-tools {
  display: flex;
  align-items: center;
  gap: 10px;
}

.glyph,
.cta,
.quiet-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.glyph {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(12, 33, 72, 0.6);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.glyph img {
  width: 16px;
  height: 16px;
}

.glyph:hover {
  transform: translateY(-2px);
  border-color: var(--gold);
  box-shadow: 0 8px 22px rgba(228, 200, 114, 0.16);
}

.cta {
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid var(--gold);
  background: linear-gradient(180deg, rgba(228, 200, 114, 0.2), rgba(184, 146, 58, 0.08));
  color: var(--gold);
  font-size: 13px;
  letter-spacing: 0.06em;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.cta img {
  width: 16px;
  height: 16px;
}

.cta:hover,
.cta-solid:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(228, 200, 114, 0.18);
}

.cta-solid {
  background: linear-gradient(180deg, #f0d98a, #b8923a);
  color: #1a1406;
  border-color: transparent;
}

.cta-ghost {
  background: rgba(8, 22, 46, 0.35);
}

.burger {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: transparent;
  position: relative;
}

.burger i {
  position: absolute;
  left: 11px;
  right: 11px;
  height: 1px;
  background: var(--gold);
  transition: transform 0.3s ease, top 0.3s ease;
}

.burger i:first-child { top: 16px; }
.burger i:last-child { top: 24px; }
.burger.is-open i:first-child { top: 20px; transform: rotate(38deg); }
.burger.is-open i:last-child { top: 20px; transform: rotate(-38deg); }

.drawer {
  display: none;
  flex-direction: column;
  gap: 18px;
  padding: 18px 5vw 24px;
  background: rgba(7, 18, 38, 0.94);
  border-bottom: 1px solid var(--line);
}

.drawer.is-open {
  display: flex;
}

.drawer a {
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

.tape {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: rgba(10, 28, 58, 0.45);
}

.tape-track {
  display: flex;
  gap: 48px;
  width: max-content;
  padding: 10px 0;
  animation: marquee 32s linear infinite;
  color: var(--gold);
  letter-spacing: 0.28em;
  font-size: 11px;
  text-transform: uppercase;
  font-family: var(--font-display);
}

.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
  min-height: calc(100vh - 130px);
  padding: 64px 5vw 80px;
}

.ribbon {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--gold);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 11px;
}

.dollar-mark {
  width: 18px;
  height: 18px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  position: relative;
  animation: pulse 3.2s ease-in-out infinite;
}

.dollar-mark::after {
  content: "$";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 11px;
  font-family: var(--font-display);
}

.hero h1 {
  margin: 0;
  line-height: 0.86;
}

.hero h1 em,
.hero h1 strong {
  display: block;
  font-style: normal;
  font-family: var(--font-display);
}

.hero h1 em {
  font-size: clamp(42px, 7vw, 92px);
  letter-spacing: 0.18em;
  color: #cfe3f7;
  text-shadow: 0 10px 40px rgba(80, 150, 220, 0.28);
}

.chrome {
  font-size: clamp(64px, 11vw, 148px);
  letter-spacing: 0.06em;
  background: linear-gradient(185deg, #ffffff 0%, #d5e7f8 22%, #6ea8de 40%, #ffffff 52%, #3d86c9 72%, #f3f8ff 100%);
  background-size: 100% 220%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: chrome 8s ease-in-out infinite;
  filter: drop-shadow(0 16px 28px rgba(40, 110, 190, 0.32));
}

.lede {
  margin: 22px 0 12px;
  font-family: var(--font-display);
  font-size: clamp(18px, 2.2vw, 26px);
  line-height: 1.45;
  max-width: 34ch;
}

.sub {
  margin: 0 0 28px;
  color: var(--muted);
  max-width: 46ch;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.stats li {
  padding: 14px 16px;
  border: 1px solid var(--line);
  background: var(--glass);
  backdrop-filter: blur(10px);
}

.stats b {
  display: block;
  color: var(--gold);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.ca-row {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  margin-top: 14px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  background: var(--glass);
  color: var(--ink);
  text-align: left;
  backdrop-filter: blur(10px);
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.ca-row b {
  color: var(--gold);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.ca-row code {
  flex: 1;
  color: var(--chrome);
  font-size: 13px;
}

.ca-row em {
  font-style: normal;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 11px;
}

.ca-row:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
}

.hero-podium {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 620px;
}

.orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px dashed rgba(228, 200, 114, 0.35);
}

.orbit-slow {
  width: min(86%, 540px);
  aspect-ratio: 1;
  animation: spin 48s linear infinite;
}

.orbit-mid {
  width: min(72%, 440px);
  aspect-ratio: 1;
  border-style: solid;
  border-color: rgba(228, 200, 114, 0.18);
  animation: spin 28s linear infinite reverse;
}

.horn {
  position: absolute;
  width: 90px;
  height: 140px;
  border: 2px solid rgba(47, 134, 212, 0.55);
  border-bottom: none;
  border-radius: 50% 50% 0 0;
  filter: drop-shadow(0 0 16px rgba(47, 134, 212, 0.35));
  animation: bob 5s ease-in-out infinite;
}

.horn-left {
  top: 6%;
  left: 8%;
  transform: rotate(-28deg);
}

.horn-right {
  top: 6%;
  right: 8%;
  transform: rotate(28deg);
  animation-delay: -1.4s;
}

.portrait {
  width: min(78%, 420px);
  margin: 0;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--gold);
  box-shadow:
    0 0 0 10px rgba(228, 200, 114, 0.08),
    0 30px 80px rgba(0, 0, 0, 0.45);
  position: relative;
  z-index: 1;
}

.portrait img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center 12%;
  animation: loom 10s ease-in-out infinite;
}

.plinth {
  position: relative;
  z-index: 2;
  margin-top: -18px;
  min-width: 260px;
  padding: 14px 22px 16px;
  text-align: center;
  background: linear-gradient(180deg, #2a2414, #0f0c06);
  border: 1px solid #d8b45a;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.plinth span,
.plinth strong {
  display: block;
  font-family: var(--font-display);
  letter-spacing: 0.16em;
}

.plinth span {
  color: #e8d48b;
  font-size: 10px;
}

.plinth strong {
  margin-top: 4px;
  color: #f7efd2;
  font-size: 15px;
}

.panel {
  padding: 96px 5vw;
}

.panel-head {
  max-width: 760px;
  margin-bottom: 42px;
}

.panel-head h2,
.brief h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.15;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
  align-items: center;
}

.brief,
.motion,
.join-card,
.market-frame {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(16, 38, 74, 0.72), rgba(8, 20, 42, 0.72));
  backdrop-filter: blur(12px);
}

.brief {
  padding: 36px;
}

.brief-kicker {
  margin: 0 0 10px;
  color: var(--gold);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 11px;
}

.brief p {
  color: var(--muted);
  line-height: 1.75;
}

.facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 28px 0 0;
}

.facts dt {
  color: var(--gold);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.facts dd {
  margin: 6px 0 0;
}

.brief-photo {
  margin: 0;
}

.photo-mat {
  padding: 14px;
  background: linear-gradient(180deg, rgba(228, 200, 114, 0.16), rgba(8, 20, 42, 0.2));
  border: 1px solid var(--line);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

.photo-mat img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center 14%;
}

.photo-mat figcaption {
  margin-top: 12px;
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0.04em;
}

.motions {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.motion {
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s ease, border-color 0.35s ease;
}

.motion::before {
  content: "";
  position: absolute;
  inset: auto -20% 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  animation: glide 5s linear infinite;
}

.motion:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
}

.stamp {
  display: inline-block;
  margin-bottom: 14px;
  padding: 4px 10px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--font-display);
  letter-spacing: 0.14em;
}

.motion h3 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: 22px;
}

.motion p {
  color: var(--muted);
  line-height: 1.7;
}

.quiet-link {
  margin-top: 12px;
  color: var(--gold);
  font-size: 13px;
}

.quiet-link img {
  width: 14px;
  height: 14px;
}

.market-frame {
  position: relative;
  min-height: 640px;
  padding: 18px 18px 18px 52px;
  overflow: hidden;
}

.market-rail {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 42px;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  border-right: 1px solid var(--line);
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 0.2em;
}

.market-rail span {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.market-frame iframe {
  width: 100%;
  height: 600px;
  border: 0;
  background: #0b1220;
}

.banner-stage {
  margin: 0 0 28px;
  aspect-ratio: 3 / 1;
  overflow: hidden;
  border: 1px solid var(--gold);
  box-shadow:
    0 0 0 8px rgba(228, 200, 114, 0.08),
    0 30px 70px rgba(0, 0, 0, 0.35);
  position: relative;
}

.banner-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 20%, rgba(255, 255, 255, 0.22) 48%, transparent 62%);
  transform: translateX(-120%);
  animation: sheen 7s ease-in-out infinite;
}

.banner-stage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.join-card {
  padding: 32px;
}

.join-card p {
  margin: 0 0 22px;
  color: var(--muted);
  line-height: 1.75;
  max-width: 70ch;
}

.join-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.foot {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px 32px;
  padding: 36px 5vw 48px;
  border-top: 1px solid var(--line);
}

.foot-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.foot-brand img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 16%;
  border: 1px solid var(--gold);
}

.foot-brand strong,
.foot-brand span {
  display: block;
}

.foot-brand strong {
  font-family: var(--font-display);
  letter-spacing: 0.12em;
}

.foot-brand span,
.fine {
  color: var(--muted);
  font-size: 13px;
}

.foot-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 22px;
  align-items: center;
}

.foot-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
}

.foot-links img {
  width: 14px;
  height: 14px;
}

.fine {
  grid-column: 1 / -1;
  margin: 0;
  max-width: 72ch;
}

.rise {
  opacity: 0;
  transform: translateY(28px);
  animation: rise 0.9s ease forwards;
}

.delay-1 { animation-delay: 0.12s; }
.delay-2 { animation-delay: 0.24s; }
.delay-3 { animation-delay: 0.36s; }

@keyframes rise {
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes chrome {
  0%, 100% { background-position: 0 0; }
  50% { background-position: 0 100%; }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes drift {
  0% { transform: translateX(0); }
  100% { transform: translateX(12vw); }
}

@keyframes sweep {
  0%, 100% { opacity: 0.18; transform: rotate(8deg) translateX(0); }
  50% { opacity: 0.42; transform: rotate(10deg) translateX(3vw); }
}

@keyframes haze {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 1; }
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(228, 200, 114, 0.35); }
  70% { box-shadow: 0 0 0 10px rgba(228, 200, 114, 0); }
}

@keyframes bob {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -8px; }
}

@keyframes loom {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.04); }
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

@keyframes glide {
  to { transform: translateX(60%); }
}

@keyframes sheen {
  0%, 30% { transform: translateX(-120%); }
  55%, 100% { transform: translateX(120%); }
}

@media (max-width: 980px) {
  .links,
  .nav-tools .cta span {
    display: none;
  }

  .burger {
    display: block;
    margin-left: auto;
  }

  .hero,
  .about-grid,
  .motions,
  .foot {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 36px;
  }

  .hero-podium {
    min-height: 480px;
    order: -1;
  }

  .facts {
    grid-template-columns: 1fr;
  }

  .market-frame {
    padding: 52px 10px 10px;
  }

  .market-rail {
    width: auto;
    height: 42px;
    right: 0;
    bottom: auto;
    flex-direction: row;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .market-rail span {
    writing-mode: horizontal-tb;
    transform: none;
  }

  .banner-stage {
    aspect-ratio: 3 / 1;
  }
}

@media (max-width: 640px) {
  body {
    cursor: auto;
  }

  .cursor-halo,
  .cursor-core {
    display: none;
  }

  .stats {
    grid-template-columns: 1fr;
  }

  .hero-podium {
    min-height: 400px;
  }

  .market-frame iframe {
    height: 480px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .rise {
    opacity: 1;
    transform: none;
  }
}
