/* ================================================================
   COPPER PONS — Premium Redesign
   ================================================================ */

:root {
  --bg: #010503;
  --bg-2: #041008;
  --bg-3: #071810;
  --green: #00C805;
  --green-hi: #00E313;
  --green-neon: #39FF68;
  --green-dim: rgba(0, 200, 5, 0.12);
  --copper: #D87436;
  --copper-hi: #F2A15E;
  --copper-lo: #B85C27;
  --copper-glow: rgba(216, 116, 54, 0.35);
  --text: #F4FFF6;
  --text-dim: #9CB8A8;
  --font-display: "Arial Black", Impact, Arial, sans-serif;
  --font: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --nav-h: 68px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --wrap: min(1160px, 92vw);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  cursor: none;
}

body.no-cursor { cursor: auto; }
body.no-cursor button, body.no-cursor a { cursor: pointer; }

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; border: none; background: none; cursor: none; }

:focus-visible {
  outline: 2px solid var(--green-neon);
  outline-offset: 3px;
}

.wrap { width: var(--wrap); margin-inline: auto; }

.copper-text {
  background: linear-gradient(120deg, #FFBD79, #D87436, #B85C27);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.green-text { color: var(--green-neon); }

.copper { color: var(--copper-hi); }

/* ── Scroll Progress ── */
.scroll-progress {
  position: fixed; inset: 0 0 auto; height: 2px; z-index: 9999; pointer-events: none;
}
.scroll-progress__bar {
  height: 100%; width: 0;
  background: linear-gradient(90deg, var(--copper), var(--green-neon));
}

/* ── Cursor ── */
.cursor { position: fixed; z-index: 99999; pointer-events: none; top: 0; left: 0; }
.cursor__dot {
  position: absolute; width: 5px; height: 5px;
  background: var(--copper-hi); border-radius: 50%;
  transform: translate(-50%, -50%);
}
.cursor__ring {
  position: absolute; width: 28px; height: 28px;
  border: 1px solid rgba(57, 255, 104, 0.35); border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.25s var(--ease), height 0.25s var(--ease), border-color 0.25s;
}
.cursor.is-hover .cursor__ring {
  width: 48px; height: 48px;
  border-color: rgba(255, 189, 121, 0.55);
}

/* ── Canvas BG ── */
.bg-canvas { position: fixed; inset: 0; z-index: 0; pointer-events: none; opacity: 0.55; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 28px; border-radius: 999px;
  font-family: var(--font-display); font-size: 0.78rem;
  letter-spacing: 0.08em; text-transform: uppercase;
  transition: transform 0.25s var(--ease), box-shadow 0.25s;
  position: relative; overflow: hidden; white-space: nowrap;
}

.btn--copper {
  color: #fff8f0;
  background: linear-gradient(160deg, #FFBD79 0%, #D87436 45%, #B85C27 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.25),
    0 6px 24px var(--copper-glow);
}
.btn--copper:hover { transform: translateY(-2px) scale(1.02); box-shadow: 0 10px 36px rgba(216, 116, 54, 0.45); }
.btn--copper:active { transform: scale(0.98); }

.btn--ghost {
  color: var(--green-neon);
  background: rgba(0, 200, 5, 0.06);
  border: 1px solid rgba(57, 255, 104, 0.28);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover { transform: translateY(-2px); border-color: rgba(57, 255, 104, 0.55); background: rgba(0, 200, 5, 0.1); }

.btn--copy {
  padding: 7px 14px; font-size: 0.68rem; border-radius: 8px;
  color: var(--green-neon); border: 1px solid rgba(57, 255, 104, 0.3);
  background: rgba(0, 200, 5, 0.08);
}
.btn--copy.is-copied { color: var(--copper-hi); border-color: rgba(242, 161, 94, 0.5); background: rgba(216, 116, 54, 0.12); }

/* ── Navigation ── */
.nav {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  padding: 14px 4vw;
  animation: navIn 0.7s var(--ease) 0.1s both;
}
@keyframes navIn { from { transform: translateY(-100%); opacity: 0; } to { transform: none; opacity: 1; } }

.nav__inner {
  max-width: 1160px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 18px; border-radius: 999px;
  transition: background 0.35s, border-color 0.35s, box-shadow 0.35s;
}

.nav.is-scrolled .nav__inner {
  background: rgba(1, 5, 3, 0.82);
  border: 1px solid rgba(57, 255, 104, 0.12);
  backdrop-filter: blur(18px);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.45);
}

.nav__brand {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-size: 0.95rem; letter-spacing: 0.06em;
}
.nav__logo { width: 36px; height: 36px; border-radius: 50%; object-fit: cover; }

.nav__menu { display: flex; align-items: center; gap: 28px; }
.nav__menu a {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--text-dim);
  transition: color 0.2s;
}
.nav__menu a:hover { color: var(--text); }
.nav__buy {
  padding: 10px 18px !important; border-radius: 999px !important;
  color: #fff8f0 !important;
  background: linear-gradient(160deg, #FFBD79, #D87436, #B85C27) !important;
}

.nav__toggle {
  display: none; flex-direction: column; gap: 5px;
  width: 32px; padding: 4px; z-index: 1002;
}
.nav__toggle span {
  display: block; height: 2px; background: var(--green-neon); border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s;
}
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero ── */
.hero {
  position: relative; z-index: 1;
  min-height: 100vh; min-height: 100dvh;
  display: flex; align-items: center;
  padding: calc(var(--nav-h) + 32px) 4vw 48px;
  overflow: hidden;
}

.hero__ambient { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.hero__orb {
  position: absolute; border-radius: 50%; filter: blur(80px);
}
.hero__orb--green {
  width: 55vw; height: 55vw; max-width: 700px; max-height: 700px;
  top: 10%; right: 5%;
  background: radial-gradient(circle, rgba(0, 200, 5, 0.14) 0%, transparent 70%);
  animation: orbDrift 14s ease-in-out infinite;
}
.hero__orb--copper {
  width: 35vw; height: 35vw; max-width: 420px; max-height: 420px;
  bottom: 5%; left: 10%;
  background: radial-gradient(circle, rgba(216, 116, 54, 0.1) 0%, transparent 70%);
  animation: orbDrift 18s ease-in-out infinite reverse;
}
@keyframes orbDrift {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(20px, -24px); }
}

.hero__layout {
  width: min(1160px, 100%); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.05fr;
  gap: clamp(24px, 4vw, 64px); align-items: center;
}

.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--green-neon);
  margin-bottom: 28px;
}
.hero__eyebrow-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--green); box-shadow: 0 0 12px var(--green-neon);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7.5vw, 5.8rem);
  line-height: 0.95; letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.hero__headline span { display: block; }
.hero__headline em {
  font-style: normal;
  background: linear-gradient(125deg, #FFBD79, #E98A48, #B85C27);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero__sub {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: var(--text-dim); max-width: 420px;
  margin-bottom: 36px;
}

.hero__btns { display: flex; flex-wrap: wrap; gap: 14px; }

/* Hero Stage — hero.png centerpiece */
.hero__stage {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  min-height: clamp(320px, 42vw, 560px);
  perspective: 1200px;
}

.hero__halo {
  position: absolute; width: 70%; aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 200, 5, 0.22) 0%, rgba(0, 200, 5, 0.04) 45%, transparent 70%);
  filter: blur(8px);
  animation: haloPulse 5s ease-in-out infinite;
}
@keyframes haloPulse {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.06); opacity: 1; }
}

.hero__ring {
  position: absolute; border-radius: 50%;
  border: 1px solid transparent;
}
.hero__ring--1 {
  width: 88%; aspect-ratio: 1;
  border-color: rgba(216, 116, 54, 0.12);
  animation: spin 30s linear infinite;
}
.hero__ring--2 {
  width: 96%; aspect-ratio: 1;
  border-color: rgba(57, 255, 104, 0.08);
  animation: spin 22s linear infinite reverse;
}
@keyframes spin { to { transform: rotate(360deg); } }

.hero__figure {
  position: relative; z-index: 2; margin: 0;
  animation: float 7s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(-12px); }
  50% { transform: translateY(12px); }
}

.hero__img {
  width: clamp(280px, 38vw, 520px);
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.6)) drop-shadow(0 0 80px rgba(0, 200, 5, 0.12));
  transform: scale(0.88);
  animation: heroIn 1s var(--ease) 0.3s forwards;
}
@keyframes heroIn { to { transform: scale(1); } }

.hero__reflect {
  position: absolute; bottom: 8%; left: 50%; transform: translateX(-50%);
  width: 50%; height: 40px;
  background: radial-gradient(ellipse, rgba(0, 200, 5, 0.15) 0%, transparent 70%);
  filter: blur(12px);
}

/* Load-in */
.load-in { opacity: 0; transform: translateY(24px); animation: loadIn 0.7s var(--ease) forwards; }
.load-in--1 { animation-delay: 0.2s; }
.load-in--2 { animation-delay: 0.35s; }
.load-in--3 { animation-delay: 0.48s; }
.load-in--4 { animation-delay: 0.6s; }
.load-in--5 { animation-delay: 0.72s; }
.load-in--6 { animation-delay: 0.4s; opacity: 1; transform: none; }
@keyframes loadIn { to { opacity: 1; transform: none; } }

/* ── Ticker ── */
.ticker {
  position: relative; z-index: 2;
  background: linear-gradient(90deg, #9a4e22, #c87238, #e08a48, #c87238, #9a4e22);
  border-block: 1px solid rgba(255, 189, 121, 0.25);
  overflow: hidden;
}
.ticker__inner { display: flex; width: max-content; animation: marquee 28s linear infinite; }
.ticker__track {
  display: flex; align-items: center; gap: 28px;
  padding: 13px 28px; white-space: nowrap;
  font-family: var(--font-display); font-size: 0.78rem;
  letter-spacing: 0.14em; text-transform: uppercase; color: #fff5ea;
}
.ticker__track i { font-style: normal; opacity: 0.45; font-size: 0.55rem; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ── Sections ── */
.section { position: relative; z-index: 2; padding: clamp(72px, 10vw, 120px) 4vw; }

.section-tag {
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--green); margin-bottom: 20px;
}

/* Reveals */
.reveal, .reveal-left, .reveal-right, .reveal-scale {
  opacity: 0; transition: opacity 0.7s var(--ease), transform 0.7s var(--ease), filter 0.7s var(--ease);
}
.reveal { transform: translateY(32px); filter: blur(4px); }
.reveal-left { transform: translateX(-40px); filter: blur(3px); }
.reveal-right { transform: translateX(40px); filter: blur(3px); }
.reveal-scale { transform: scale(0.92); filter: blur(4px); }
.reveal.is-visible, .reveal-left.is-visible, .reveal-right.is-visible, .reveal-scale.is-visible {
  opacity: 1; transform: none; filter: none;
}

/* ── About ── */
.about { background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%); }

.about__grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 6vw, 80px); align-items: start;
}

.about__title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  line-height: 1; letter-spacing: -0.02em;
}

.about__right { color: var(--text-dim); font-size: clamp(0.95rem, 1.4vw, 1.05rem); }
.about__lead { color: var(--text); font-size: 1.15em; margin-bottom: 16px; }
.about__right p { margin-bottom: 14px; }

.about__quote {
  margin: 28px 0; padding-left: 20px;
  border-left: 2px solid var(--copper);
  font-family: var(--font-display); font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--text); line-height: 1.45;
}

.about__lines strong { color: var(--copper-hi); }

/* ── Fusion ── */
.fusion { background: var(--bg-2); }

.fusion__grid {
  display: grid; grid-template-columns: 1fr auto 1fr;
  gap: 20px; align-items: center; margin-top: 12px;
}

.fusion__panel {
  padding: 36px 28px; border-radius: 20px;
  transition: transform 0.7s var(--ease);
}
.fusion__panel--copper {
  text-align: right;
  background: linear-gradient(135deg, rgba(216, 116, 54, 0.08), transparent);
  border: 1px solid rgba(216, 116, 54, 0.15);
}
.fusion__panel--green {
  text-align: left;
  background: linear-gradient(225deg, rgba(0, 200, 5, 0.07), transparent);
  border: 1px solid rgba(0, 200, 5, 0.15);
}

.fusion__grid.is-active .fusion__panel--copper { transform: translateX(8px); }
.fusion__grid.is-active .fusion__panel--green { transform: translateX(-8px); }

.fusion__label {
  display: block; font-size: 0.65rem; letter-spacing: 0.2em;
  text-transform: uppercase; margin-bottom: 8px;
}
.fusion__panel--copper .fusion__label { color: var(--copper-hi); }
.fusion__panel--green .fusion__label { color: var(--green-neon); }

.fusion__panel h3 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1; margin-bottom: 10px;
}
.fusion__panel--copper h3 { color: var(--copper-hi); }
.fusion__panel--green h3 { color: var(--green-neon); }
.fusion__panel p { color: var(--text-dim); font-size: 0.92rem; }

.fusion__core {
  position: relative; text-align: center; padding: 28px 20px;
  transition: transform 0.7s var(--ease);
}
.fusion__grid.is-active .fusion__core { transform: scale(1.06); }

.fusion__burst {
  position: absolute; inset: -10px; border-radius: 50%;
  background: radial-gradient(circle, rgba(57, 255, 104, 0.2), rgba(216, 116, 54, 0.15), transparent 70%);
  opacity: 0; filter: blur(16px);
}
.fusion__grid.is-active .fusion__burst { animation: burst 0.8s var(--ease) forwards; }
@keyframes burst {
  0% { opacity: 0; transform: scale(0.6); }
  50% { opacity: 1; }
  100% { opacity: 0.5; transform: scale(1); }
}

.fusion__core img {
  width: 72px; margin: 0 auto 6px;
  filter: drop-shadow(0 0 16px var(--copper-glow));
}
.fusion__symbol { display: block; color: var(--green-neon); font-size: 1.2rem; margin-bottom: 4px; }
.fusion__core strong {
  display: block; font-family: var(--font-display); font-size: 1.2rem;
  background: linear-gradient(120deg, #FFBD79, #39FF68);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.fusion__core small {
  display: block; margin-top: 4px; font-size: 0.65rem;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-dim);
}

/* ── Token ── */
.token { background: var(--bg); }

.token__card {
  max-width: 640px; margin: 0 auto;
  padding: 36px 32px; border-radius: 24px;
  background: rgba(4, 16, 8, 0.7);
  border: 1px solid rgba(57, 255, 104, 0.12);
  backdrop-filter: blur(16px);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4);
}

.token__top {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 28px; flex-wrap: wrap; gap: 12px;
}
.token__top h2 {
  font-family: var(--font-display); font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  letter-spacing: 0.02em;
}
.token__live {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.14em;
  color: var(--green-neon);
}
.token__live i {
  width: 7px; height: 7px; border-radius: 50%; background: var(--green-neon);
  box-shadow: 0 0 8px var(--green-neon);
  animation: pulse 2s ease-in-out infinite;
}

.token__rows { margin-bottom: 28px; }
.token__row {
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px; padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.88rem;
}
.token__row span { color: var(--text-dim); font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; }
.token__row strong { font-family: var(--font-display); letter-spacing: 0.04em; }

.token__row--ca { flex-direction: column; align-items: flex-start; gap: 10px; }
.token__ca-wrap { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; width: 100%; }
.token__ca-wrap code {
  font-family: ui-monospace, monospace; font-size: 0.9rem;
  color: var(--copper-hi); padding: 8px 14px; border-radius: 8px;
  background: rgba(216, 116, 54, 0.08); border: 1px solid rgba(216, 116, 54, 0.2);
}

.token__btns { display: flex; flex-wrap: wrap; gap: 12px; }

/* ── Manifesto ── */
.manifesto { background: var(--bg-2); }

.manifesto__block {
  padding: clamp(36px, 6vw, 64px) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.manifesto__tag {
  display: block; font-size: 0.68rem; letter-spacing: 0.22em;
  text-transform: uppercase; margin-bottom: 10px;
}
.manifesto__block h3 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 6vw, 4.8rem);
  line-height: 1; letter-spacing: -0.02em;
}
.manifesto__block:nth-child(odd) h3 { color: var(--text); }
.manifesto__block:nth-child(even) h3 { color: var(--green-neon); }

.manifesto__finale {
  padding: clamp(48px, 8vw, 96px) 0 16px;
  text-align: center;
}
.manifesto__finale p {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4.5vw, 3.2rem);
  line-height: 1.25; letter-spacing: 0.01em;
}

/* ── Community ── */
.community { background: var(--bg); padding-bottom: clamp(80px, 10vw, 120px); }

.community__card {
  border-radius: 24px; overflow: hidden;
  border: 1px solid rgba(57, 255, 104, 0.1);
  background: var(--bg-3);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.5);
}

.community__banner { position: relative; }
.community__banner img { width: 100%; display: block; }
.community__banner-fade {
  position: absolute; inset: auto 0 0; height: 50%;
  background: linear-gradient(transparent, var(--bg-3));
}

.community__body {
  padding: clamp(28px, 4vw, 44px);
  text-align: center;
}
.community__body h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3rem);
  line-height: 1.1; margin-bottom: 12px;
}
.community__body p { color: var(--text-dim); margin-bottom: 28px; font-size: 1.05rem; }
.community__btns { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }

/* ── Footer ── */
.footer {
  position: relative; z-index: 2;
  padding: 40px 4vw 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background: var(--bg);
}
.footer__inner {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 24px; flex-wrap: wrap; margin-bottom: 24px;
}
.footer__brand { display: flex; gap: 12px; align-items: flex-start; }
.footer__brand img { border-radius: 50%; }
.footer__brand strong { display: block; font-family: var(--font-display); font-size: 0.9rem; margin-bottom: 4px; }
.footer__brand p { font-size: 0.82rem; color: var(--text-dim); line-height: 1.5; }

.footer__nav { display: flex; gap: 22px; }
.footer__nav a {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--text-dim);
  transition: color 0.2s;
}
.footer__nav a:hover { color: var(--copper-hi); }

.footer__legal {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px;
  padding-top: 20px; border-top: 1px solid rgba(255, 255, 255, 0.04);
  font-size: 0.72rem; color: var(--text-dim); opacity: 0.7;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .hero__layout { grid-template-columns: 1fr; text-align: center; }
  .hero__sub { margin-inline: auto; }
  .hero__btns { justify-content: center; }
  .hero__stage { order: -1; min-height: 280px; }
  .about__grid { grid-template-columns: 1fr; }
  .fusion__grid { grid-template-columns: 1fr; gap: 16px; }
  .fusion__panel--copper, .fusion__panel--green { text-align: center; }
}

@media (max-width: 720px) {
  .nav__toggle { display: flex; }
  .nav__menu {
    position: fixed; top: 0; right: 0;
    width: min(300px, 85vw); height: 100dvh;
    flex-direction: column; justify-content: center; gap: 28px;
    padding: 24px;
    background: rgba(1, 5, 3, 0.97);
    border-left: 1px solid rgba(57, 255, 104, 0.1);
    transform: translateX(100%);
    transition: transform 0.35s var(--ease);
  }
  .nav__menu.is-open { transform: none; }
  .nav__buy { width: 100%; text-align: center; }

  .hero__btns, .community__btns, .token__btns { flex-direction: column; }
  .hero__btns .btn, .community__btns .btn, .token__btns .btn { width: 100%; }

  .footer__inner, .footer__legal { flex-direction: column; text-align: center; }
  .footer__nav { justify-content: center; }
}

/* ── Reduced Motion ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  .ticker__inner { animation: none; }
  .hero__figure { animation: none; }
  .hero__img { transform: scale(1); }
  .reveal, .reveal-left, .reveal-right, .reveal-scale,
  .load-in { opacity: 1; transform: none; filter: none; }
  .cursor { display: none; }
  body, button { cursor: auto; }
}
