/* ===========================================================
   APE WITH GUN — $APEGUN
   =========================================================== */

:root {
  --bg:        #0b0e07;
  --bg-2:      #10150c;
  --panel:     #151b0f;
  --line:      #2b3620;
  --olive:     #4f6b2a;
  --olive-lt:  #7fa03c;
  --acid:      #b9f227;
  --rust:      #b4551f;
  --sand:      #d9cfa8;
  --text:      #e6e9dd;
  --muted:     #9aa389;
  --white:     #ffffff;

  --font-head: "Black Ops One", Impact, "Arial Black", sans-serif;
  --font-body: "Chakra Petch", "Segoe UI", system-ui, sans-serif;

  --wrap: 1200px;
  --r: 4px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  overflow-x: hidden;
  background-image:
    radial-gradient(900px 500px at 85% -5%, rgba(127, 160, 60, .16), transparent 60%),
    radial-gradient(700px 500px at 5% 20%, rgba(180, 85, 31, .10), transparent 60%);
  background-attachment: fixed;
}

img { max-width: 100%; display: block; }

h1, h2, h3, .btn, .kicker, .crate__id, .crate__status, .ca__label, .step__n, .card__num {
  font-family: var(--font-head);
  font-weight: 400;
  letter-spacing: .5px;
}

a { color: inherit; }

::selection { background: var(--acid); color: #10150c; }

/* film grain / camo noise overlay */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: .045;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.wrap { width: min(100% - 44px, var(--wrap)); margin-inline: auto; }
.wrap--narrow { width: min(100% - 44px, 860px); }

/* ============ BUTTONS ============ */
.btn {
  --btn-bg: transparent;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 12px 22px;
  border: 2px solid var(--line);
  border-radius: var(--r);
  background: var(--btn-bg);
  color: var(--text);
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 1px;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .2s ease, border-color .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  --btn-bg: var(--acid);
  color: #131a06;
  border-color: var(--acid);
  box-shadow: 0 0 0 rgba(185, 242, 39, 0);
}
.btn--primary:hover { box-shadow: 0 8px 26px rgba(185, 242, 39, .32); }

.btn--tg {
  --btn-bg: rgba(42, 171, 238, .10);
  border-color: rgba(42, 171, 238, .55);
  color: #7fd0f7;
}
.btn--tg:hover { --btn-bg: #2aabee; color: #06222f; border-color: #2aabee; box-shadow: 0 8px 26px rgba(42, 171, 238, .3); }

.btn--ghost { border-color: var(--olive); color: var(--sand); }
.btn--ghost:hover { background: rgba(127, 160, 60, .16); border-color: var(--olive-lt); }

.btn--lg { padding: 16px 30px; font-size: 17px; }

/* ============ NAV ============ */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 14px clamp(16px, 4vw, 40px);
  background: rgba(11, 14, 7, .55);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: background .25s ease, border-color .25s ease, padding .25s ease;
}
.nav.is-stuck {
  background: rgba(11, 14, 7, .92);
  border-bottom-color: var(--line);
  padding-block: 9px;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: var(--font-head);
  font-size: 20px;
  letter-spacing: 1px;
}
.nav__brand img { border-radius: 3px; border: 1px solid var(--line); }
.nav__brand em { color: var(--acid); font-style: normal; }

.nav__links { display: flex; gap: 26px; margin-left: auto; }
.nav__links a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  position: relative;
  padding-block: 4px;
  transition: color .2s ease;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--acid);
  transition: width .25s ease;
}
.nav__links a:hover { color: var(--text); }
.nav__links a:hover::after { width: 100%; }

.nav__cta { display: flex; gap: 10px; margin-left: 26px; }

.nav__burger {
  display: none;
  margin-left: auto;
  width: 44px; height: 40px;
  background: transparent;
  border: 2px solid var(--line);
  border-radius: var(--r);
  cursor: pointer;
  padding: 9px 10px;
  flex-direction: column;
  justify-content: space-between;
}
.nav__burger span { display: block; height: 2px; background: var(--text); transition: transform .25s ease, opacity .2s ease; }
.nav__burger.is-open span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* ============ HERO ============ */
.hero {
  position: relative;
  padding: clamp(120px, 17vw, 190px) 0 clamp(50px, 7vw, 90px);
  overflow: hidden;
}
.hero__glow {
  position: absolute;
  width: 900px; height: 900px;
  right: -220px; top: -260px;
  background: radial-gradient(circle, rgba(185, 242, 39, .14), transparent 62%);
  filter: blur(30px);
  pointer-events: none;
}
.hero__inner {
  position: relative;
  width: min(100% - 44px, var(--wrap));
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(30px, 5vw, 66px);
  align-items: center;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--olive-lt);
  border: 1px solid var(--line);
  background: rgba(79, 107, 42, .12);
  border-radius: 100px;
  padding: 7px 15px;
  margin-bottom: 22px;
}
.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 0 0 rgba(185, 242, 39, .6);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  70%  { box-shadow: 0 0 0 10px rgba(185, 242, 39, 0); }
  100% { box-shadow: 0 0 0 0 rgba(185, 242, 39, 0); }
}

.hero h1 {
  margin: 0 0 20px;
  font-size: clamp(58px, 9.5vw, 132px);
  line-height: .86;
  letter-spacing: 2px;
  text-shadow: 0 6px 0 rgba(0, 0, 0, .45);
}
.hero h1 .outline {
  color: transparent;
  -webkit-text-stroke: 2px var(--acid);
  text-shadow: none;
}

.hero__lead { font-size: clamp(17px, 2vw, 21px); color: var(--sand); margin: 0 0 8px; max-width: 46ch; }
.hero__lead strong { color: var(--acid); }
.hero__sub { color: var(--muted); margin: 0 0 26px; max-width: 46ch; }

/* contract address box */
.ca {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  background: var(--panel);
  border: 2px dashed var(--line);
  border-radius: var(--r);
  padding: 12px 14px;
  margin-bottom: 26px;
  max-width: 560px;
}
.ca__label { font-size: 11px; letter-spacing: 2px; color: var(--olive-lt); }
.ca__value {
  font-family: "Chakra Petch", monospace;
  font-size: 14px;
  color: var(--text);
  word-break: break-all;
  flex: 1 1 200px;
  opacity: .92;
}
.ca__copy {
  font-family: var(--font-head);
  font-size: 12px;
  letter-spacing: 1.5px;
  background: var(--acid);
  color: #131a06;
  border: none;
  border-radius: 3px;
  padding: 8px 15px;
  cursor: pointer;
  transition: background .2s ease, transform .15s ease;
}
.ca__copy:hover { transform: translateY(-1px); background: #cbff3f; }
.ca__copy.is-copied { background: var(--olive-lt); color: #0b0e07; }
.ca--sm { margin: 14px 0 0; padding: 10px 12px; background: rgba(0, 0, 0, .3); }

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

.hero__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 38px 0 0;
  max-width: 560px;
}
.hero__stats li {
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: rgba(21, 27, 15, .7);
  padding: 12px 8px;
  text-align: center;
}
.hero__stats b {
  display: block;
  font-family: var(--font-head);
  font-weight: 400;
  font-size: clamp(15px, 2vw, 19px);
  color: var(--acid);
}
.hero__stats span { font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted); }

/* hero image frame */
.hero__art { position: relative; }
.frame {
  position: relative;
  border: 2px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0, 0, 0, .6);
  transform: rotate(1deg);
}
.frame img { width: 100%; height: auto; filter: saturate(1.05) contrast(1.05); }
.frame__scan {
  position: absolute; inset: 0;
  background: repeating-linear-gradient(to bottom, rgba(0, 0, 0, .18) 0 1px, transparent 1px 4px);
  mix-blend-mode: overlay;
  pointer-events: none;
}
.frame__hud { position: absolute; inset: 12px; pointer-events: none; }
.hud__corner {
  position: absolute;
  width: 26px; height: 26px;
  border: 2px solid var(--acid);
  opacity: .85;
}
.hud__corner.tl { top: 0; left: 0; border-right: 0; border-bottom: 0; }
.hud__corner.tr { top: 0; right: 0; border-left: 0; border-bottom: 0; }
.hud__corner.bl { bottom: 0; left: 0; border-right: 0; border-top: 0; }
.hud__corner.br { bottom: 0; right: 0; border-left: 0; border-top: 0; }
.hud__tag {
  position: absolute;
  left: 0; bottom: -2px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  background: rgba(11, 14, 7, .82);
  border: 1px solid var(--line);
  color: var(--acid);
  padding: 5px 10px;
}

/* ============ MARQUEE ============ */
.marquee {
  border-block: 2px solid var(--line);
  background: linear-gradient(90deg, rgba(79, 107, 42, .18), rgba(180, 85, 31, .14));
  overflow: hidden;
  padding: 13px 0;
}
.marquee__track {
  display: flex;
  gap: 34px;
  white-space: nowrap;
  width: max-content;
  animation: slide 34s linear infinite;
}
.marquee__track span {
  font-family: var(--font-head);
  font-size: 17px;
  letter-spacing: 3px;
  color: var(--sand);
}
.marquee__track span:nth-child(even) { color: var(--acid); }
@keyframes slide { to { transform: translateX(-50%); } }

/* ============ SECTIONS ============ */
.section { padding: clamp(64px, 9vw, 118px) 0; position: relative; }
.section--alt {
  background: linear-gradient(180deg, rgba(16, 21, 12, .0), rgba(16, 21, 12, .85) 12%, rgba(16, 21, 12, .85) 88%, rgba(16, 21, 12, 0));
  border-block: 1px solid rgba(43, 54, 32, .6);
}

.head { margin-bottom: clamp(34px, 5vw, 56px); }
.kicker {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 3px;
  color: var(--rust);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.head h2 {
  margin: 0;
  font-size: clamp(34px, 6vw, 62px);
  line-height: 1;
  letter-spacing: 2px;
}
.head h2::after {
  content: "";
  display: block;
  width: 74px; height: 5px;
  background: var(--acid);
  margin-top: 16px;
}
.head__sub { color: var(--muted); margin: 14px 0 0; max-width: 60ch; }

/* ============ STORY ============ */
.story { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 4vw, 56px); }
.story__col {
  background: rgba(21, 27, 15, .55);
  border: 1px solid var(--line);
  border-left: 4px solid var(--olive);
  border-radius: var(--r);
  padding: clamp(22px, 3vw, 34px);
}
.story h3 {
  margin: 26px 0 8px;
  font-size: 19px;
  letter-spacing: 1.5px;
  color: var(--acid);
}
.story h3:first-child { margin-top: 0; }
.story p { margin: 0; color: #cfd4c2; }
.story em { color: var(--sand); }
.story strong { color: var(--white); }
.story blockquote {
  margin: 22px 0 0;
  padding: 16px 20px;
  border-left: 4px solid var(--rust);
  background: rgba(180, 85, 31, .10);
  font-family: var(--font-head);
  font-size: 19px;
  letter-spacing: 1px;
  color: var(--sand);
}

/* ============ CARDS ============ */
.grid { display: grid; gap: 20px; }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.card {
  position: relative;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 30px 24px 26px;
  overflow: hidden;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.card::before {
  content: "";
  position: absolute;
  inset: auto auto 0 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--acid), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
}
.card:hover { transform: translateY(-6px); border-color: var(--olive); box-shadow: 0 18px 40px rgba(0, 0, 0, .45); }
.card:hover::before { transform: scaleX(1); }
.card__num {
  position: absolute;
  top: 10px; right: 14px;
  font-size: 34px;
  color: rgba(185, 242, 39, .12);
}
.card h3 { margin: 0 0 8px; font-size: 20px; color: var(--acid); letter-spacing: 1px; }
.card p { margin: 0; color: var(--muted); font-size: 15px; }

.doctrine__note {
  position: relative;
  margin-top: 24px;
  display: flex;
  gap: 22px;
  align-items: center;
  flex-wrap: wrap;
  border: 2px dashed var(--olive);
  border-radius: var(--r);
  background: rgba(79, 107, 42, .10);
  padding: 26px;
}
.doctrine__badge {
  font-family: var(--font-head);
  font-size: 15px;
  letter-spacing: 2px;
  color: #131a06;
  background: var(--acid);
  padding: 10px 18px;
  border-radius: 3px;
  transform: rotate(-2deg);
}
.doctrine__note p { margin: 0; flex: 1 1 320px; color: #cfd4c2; font-size: 15.5px; }
.doctrine__note strong { color: var(--white); }

/* ============ STEPS ============ */
.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  counter-reset: step;
}
.step {
  position: relative;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 30px 26px 26px 78px;
  transition: border-color .2s ease, transform .2s ease;
}
.step:hover { border-color: var(--olive); transform: translateY(-4px); }
.step__n {
  position: absolute;
  left: 24px; top: 28px;
  width: 38px; height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--acid);
  color: #131a06;
  font-size: 18px;
}
.step h3 { margin: 0 0 8px; font-size: 20px; letter-spacing: 1px; }
.step p { margin: 0; color: var(--muted); font-size: 15.5px; }
.step strong { color: var(--sand); }

/* ============ TIMELINE / CRATES ============ */
.timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.crate {
  background: var(--panel);
  border: 1px solid var(--line);
  border-top: 4px solid var(--olive);
  border-radius: var(--r);
  padding: 22px;
  transition: transform .2s ease, border-color .2s ease;
}
.crate:hover { transform: translateY(-6px); border-color: var(--olive-lt); }
.crate__top { display: flex; justify-content: space-between; align-items: center; gap: 10px; margin-bottom: 12px; }
.crate__id { font-size: 12px; letter-spacing: 2px; color: var(--muted); }
.crate__status {
  font-size: 10px;
  letter-spacing: 1.5px;
  padding: 4px 9px;
  border-radius: 100px;
  border: 1px solid var(--line);
  color: var(--muted);
}
.crate__status.is-done { background: rgba(185, 242, 39, .16); border-color: var(--acid); color: var(--acid); }
.crate__status.is-live { background: rgba(180, 85, 31, .18); border-color: var(--rust); color: #f0a271; }
.crate h3 { margin: 0 0 12px; font-size: 18px; letter-spacing: 1px; color: var(--sand); }
.crate ul { margin: 0; padding-left: 18px; color: var(--muted); font-size: 15px; }
.crate li { margin-bottom: 6px; }
.crate li::marker { color: var(--acid); }

/* ============ CTA ============ */
.cta__inner {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: clamp(24px, 4vw, 50px);
  align-items: center;
  background: linear-gradient(120deg, rgba(79, 107, 42, .20), rgba(180, 85, 31, .12));
  border: 2px solid var(--line);
  border-radius: 8px;
  padding: clamp(28px, 5vw, 54px);
}
.cta h2 { margin: 0 0 12px; font-size: clamp(30px, 5vw, 50px); line-height: 1; letter-spacing: 2px; }
.cta p { color: var(--sand); margin: 0 0 26px; max-width: 48ch; }
.cta__img {
  width: 100%;
  border-radius: 8px;
  border: 2px solid var(--line);
  box-shadow: 0 20px 50px rgba(0, 0, 0, .5);
  transform: rotate(-2deg);
}

/* ============ FAQ ============ */
.faq details {
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: var(--panel);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color .2s ease;
}
.faq details[open] { border-color: var(--olive); }
.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 52px 18px 22px;
  font-weight: 700;
  font-size: 16.5px;
  position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 20px; top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-head);
  color: var(--acid);
  font-size: 22px;
  transition: transform .2s ease;
}
.faq details[open] summary::after { content: "−"; }
.faq summary:hover { color: var(--acid); }
.faq p { margin: 0; padding: 0 22px 20px; color: var(--muted); font-size: 15.5px; }

/* ============ FOOTER ============ */
.footer {
  border-top: 2px solid var(--line);
  background: rgba(9, 12, 6, .8);
  padding: 46px 0 30px;
  margin-top: 20px;
}
.footer__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}
.footer__brand { display: flex; align-items: center; gap: 12px; }
.footer__brand img { border-radius: 4px; border: 1px solid var(--line); }
.footer__brand strong { display: block; font-family: var(--font-head); font-weight: 400; letter-spacing: 1.5px; }
.footer__brand span { font-size: 13px; color: var(--muted); }

.footer__ca {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  border: 1px dashed var(--line);
  border-radius: var(--r);
  padding: 8px 12px;
}
.footer__ca span { font-size: 11px; letter-spacing: 2px; color: var(--olive-lt); font-family: var(--font-head); }
.footer__ca code { font-size: 13px; color: var(--muted); word-break: break-all; }

.footer__social { display: flex; gap: 10px; }
.footer__social a {
  width: 44px; height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--r);
  color: var(--muted);
  transition: color .2s ease, border-color .2s ease, background .2s ease, transform .2s ease;
}
.footer__social a:hover { color: var(--acid); border-color: var(--olive); background: rgba(127, 160, 60, .12); transform: translateY(-2px); }

.footer__legal { padding-top: 22px; }
.footer__legal p { font-size: 12.5px; color: #6f7860; margin: 0 0 8px; line-height: 1.6; }
.footer__copy { letter-spacing: 1px; }

/* ============ BACK TO TOP ============ */
.totop {
  position: fixed;
  right: 20px; bottom: 20px;
  width: 46px; height: 46px;
  border-radius: var(--r);
  border: 2px solid var(--line);
  background: rgba(21, 27, 15, .9);
  color: var(--acid);
  font-size: 20px;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity .25s ease, transform .25s ease, border-color .2s ease;
  z-index: 90;
}
.totop.is-visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.totop:hover { border-color: var(--acid); }

/* ============ TOAST ============ */
.toast {
  position: fixed;
  left: 50%; bottom: 28px;
  transform: translate(-50%, 20px);
  background: var(--acid);
  color: #131a06;
  font-family: var(--font-head);
  font-size: 14px;
  letter-spacing: 1.5px;
  padding: 12px 22px;
  border-radius: var(--r);
  box-shadow: 0 14px 34px rgba(0, 0, 0, .5);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
  z-index: 200;
}
.toast.is-visible { opacity: 1; transform: translate(-50%, 0); }

/* ============ REVEAL ============ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-in { opacity: 1; transform: none; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .grid--4, .timeline { grid-template-columns: repeat(2, 1fr); }
  .hero__inner { grid-template-columns: 1fr; }
  .hero__art { max-width: 560px; margin-inline: auto; }
  .cta__inner { grid-template-columns: 1fr; }
  .cta__img { max-width: 320px; margin-inline: auto; }
}

@media (max-width: 860px) {
  .nav__links {
    position: fixed;
    inset: 68px 0 auto 0;
    flex-direction: column;
    gap: 0;
    background: rgba(11, 14, 7, .98);
    border-bottom: 1px solid var(--line);
    padding: 8px 24px 20px;
    display: none;
  }
  .nav__links.is-open { display: flex; }
  .nav__links a { padding: 14px 0; border-bottom: 1px solid rgba(43, 54, 32, .6); font-size: 16px; }
  .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .story, .steps { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  body { font-size: 16px; }
  .grid--4, .timeline { grid-template-columns: 1fr; }
  .hero__stats { grid-template-columns: repeat(2, 1fr); }
  .hero h1 { letter-spacing: 1px; }
  .frame { transform: none; }
  .btn--lg { width: 100%; justify-content: center; }
  .hero__btns { width: 100%; }
  .footer__inner { justify-content: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; transition: none; }
}
