:root {
  --acid: #cdff00;
  --acid-soft: #a8d400;
  --black: #070807;
  --ink: #0d0f0c;
  --iron: #171a16;
  --iron-light: #242820;
  --paper: #e9eadf;
  --muted: #93988a;
  --copper: #b66a32;
  --line: rgba(205, 255, 0, .16);
  --shell: min(1180px, calc(100vw - 48px));
  --display: Impact, Haettenschweiler, "Arial Narrow Bold", "Arial Black", sans-serif;
  --body: "Arial Narrow", "Roboto Condensed", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--black); }
body {
  margin: 0;
  color: var(--paper);
  background:
    radial-gradient(circle at 70% 12%, rgba(205, 255, 0, .045), transparent 28%),
    var(--black);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
body.loaded .loader { opacity: 0; visibility: hidden; }
img { display: block; width: 100%; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { color: inherit; }

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

.skip-link {
  position: fixed; top: 8px; left: 8px; z-index: 10000;
  padding: 10px 14px; color: var(--black); background: var(--acid);
  transform: translateY(-140%); transition: transform .2s;
}
.skip-link:focus { transform: translateY(0); }

.shell { width: var(--shell); margin-inline: auto; }
.noise {
  position: fixed; inset: 0; z-index: 20; opacity: .055; pointer-events: none;
  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='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.85'/%3E%3C/svg%3E");
}
#sparks { position: fixed; inset: 0; z-index: 2; pointer-events: none; opacity: .55; }

.loader {
  position: fixed; inset: 0; z-index: 9999; display: grid; place-content: center; gap: 20px;
  background: #050605; transition: opacity .65s ease, visibility .65s;
}
.loader__mark { color: var(--acid); font: 900 34px/1 var(--display); letter-spacing: -.04em; text-align: center; }
.loader__track { width: 150px; height: 2px; overflow: hidden; background: #252a20; }
.loader__track span { display: block; width: 60%; height: 100%; background: var(--acid); animation: load 1.1s ease-in-out infinite; }
@keyframes load { from { transform: translateX(-120%); } to { transform: translateX(210%); } }

.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: 82px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
  padding: 0 max(24px, calc((100vw - 1180px) / 2));
  border-bottom: 1px solid transparent; transition: background .35s, border-color .35s, height .35s;
}
.site-header.scrolled { height: 68px; background: rgba(7, 8, 7, .9); border-color: rgba(255,255,255,.09); backdrop-filter: blur(18px); }
.brand { display: inline-flex; align-items: center; gap: 12px; width: max-content; }
.brand__seal { width: 38px; height: 38px; border-radius: 50%; overflow: hidden; border: 1px solid rgba(205,255,0,.4); background: var(--acid); }
.brand__seal img { height: 100%; object-fit: cover; }
.brand__name { font-family: var(--display); font-size: 18px; text-transform: uppercase; letter-spacing: .08em; }
.site-nav { display: flex; gap: 34px; align-items: center; }
.site-nav a { color: #c8cabb; font-size: 12px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; transition: color .2s; }
.site-nav a:hover, .site-nav a:focus-visible { color: var(--acid); }
.header-buy { justify-self: end; }
.menu-toggle { display: none; border: 0; padding: 10px; background: none; }

.btn {
  position: relative; isolation: isolate; display: inline-flex; align-items: center; justify-content: center; gap: 24px;
  min-height: 52px; padding: 0 24px; overflow: hidden; border: 1px solid var(--acid);
  color: #090a08; background: var(--acid); font-size: 12px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase;
  clip-path: polygon(9px 0, 100% 0, 100% calc(100% - 9px), calc(100% - 9px) 100%, 0 100%, 0 9px);
  transition: color .3s, transform .3s, box-shadow .3s;
}
.btn::before { content: ""; position: absolute; inset: 0; z-index: -1; background: #0b0d0a; transform: translateX(-102%); transition: transform .35s cubic-bezier(.7,0,.2,1); }
.btn:hover, .btn:focus-visible { color: var(--acid); transform: translateY(-2px); box-shadow: 0 10px 40px rgba(205,255,0,.15); }
.btn:hover::before, .btn:focus-visible::before { transform: translateX(0); }
.btn--small { min-height: 40px; padding-inline: 18px; gap: 16px; font-size: 11px; }
.btn--outline { color: var(--acid); background: transparent; }
.btn--outline::before { background: var(--acid); }
.btn--outline:hover { color: var(--black); }
.text-link { display: inline-flex; gap: 14px; align-items: center; padding-block: 8px; border-bottom: 1px solid rgba(255,255,255,.28); font-size: 12px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; transition: color .2s, border-color .2s; }
.text-link:hover { color: var(--acid); border-color: var(--acid); }

.eyebrow { margin: 0 0 20px; color: var(--acid); font-size: 11px; line-height: 1.2; font-weight: 900; letter-spacing: .2em; text-transform: uppercase; }
.eyebrow span { color: var(--muted); padding-inline: 7px; }
h2 { margin: 0; font-family: var(--display); font-size: clamp(42px, 5.2vw, 76px); line-height: .94; letter-spacing: -.025em; text-transform: uppercase; }
h2 em { color: transparent; -webkit-text-stroke: 1px var(--acid); font-style: normal; }

.hero { position: relative; min-height: 100svh; display: flex; align-items: center; overflow: hidden; background: #060706; }
.hero__image { position: absolute; inset: 0; height: 100%; object-fit: cover; object-position: 62% center; animation: hero-in 1.8s cubic-bezier(.2,.7,.1,1) both; }
@keyframes hero-in { from { transform: scale(1.08); opacity: .2; } to { transform: scale(1); opacity: 1; } }
.hero__shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(5,6,5,.98) 0%, rgba(5,6,5,.82) 33%, rgba(5,6,5,.15) 66%, rgba(5,6,5,.4) 100%), linear-gradient(0deg, rgba(5,6,5,.75), transparent 45%); }
.hero__content { position: relative; z-index: 3; padding-top: 80px; }
.metal-title {
  max-width: 720px; margin: 0; color: #cacbc1; font-family: var(--display); font-size: clamp(64px, 9vw, 130px); line-height: .72; letter-spacing: -.045em; text-transform: uppercase;
  background: linear-gradient(180deg, #fff 0%, #76786f 38%, #e6e7dc 52%, #494b45 66%, #a0a297 100%); -webkit-background-clip: text; background-clip: text; color: transparent;
  filter: drop-shadow(0 2px 0 #000) drop-shadow(0 8px 20px rgba(0,0,0,.8));
}
.metal-title span { margin-left: .55em; color: var(--acid); background: none; -webkit-text-fill-color: var(--acid); text-shadow: 0 0 38px rgba(205,255,0,.18); }
.hero__creed { margin: 30px 0 28px; color: #c5c8bc; font-size: 16px; line-height: 1.45; letter-spacing: .08em; text-transform: uppercase; }
.hero__actions { display: flex; align-items: center; gap: 32px; }
.hero__index { position: absolute; right: 24px; bottom: 29px; z-index: 3; color: rgba(255,255,255,.38); font-size: 10px; letter-spacing: .18em; }
.scroll-cue { position: absolute; z-index: 3; left: 50%; bottom: 23px; display: flex; align-items: center; gap: 12px; color: #a0a496; font-size: 9px; letter-spacing: .18em; text-transform: uppercase; transform: translateX(-50%); }
.scroll-cue span { display: block; width: 36px; height: 1px; background: var(--acid); transform-origin: left; animation: cue 1.8s ease-in-out infinite; }
@keyframes cue { 50% { transform: scaleX(.35); opacity: .45; } }

.ticker { position: relative; z-index: 4; overflow: hidden; padding: 15px 0 13px; color: #090a08; background: var(--acid); border-block: 1px solid #ebff9c; transform: rotate(-.7deg) scale(1.02); }
.ticker__track { display: flex; width: max-content; align-items: center; gap: 34px; animation: ticker 24s linear infinite; }
.ticker span { font-family: var(--display); font-size: 17px; letter-spacing: .12em; }
.ticker i { font-style: normal; font-size: 12px; }
@keyframes ticker { to { transform: translateX(-50%); } }

.section { padding-block: 130px; }
.section--lore { display: grid; grid-template-columns: .75fr 1.35fr .9fr; gap: 48px; align-items: end; }
.section-heading { align-self: start; padding-top: 34px; }
.section-heading h2 { font-size: clamp(38px, 4.3vw, 64px); }
.lore-visual { position: relative; margin: 0; overflow: hidden; background: var(--iron); clip-path: polygon(0 28px, 28px 0, 100% 0, 100% calc(100% - 28px), calc(100% - 28px) 100%, 0 100%); }
.lore-visual::after { content: ""; position: absolute; inset: 0; border: 1px solid rgba(205,255,0,.3); pointer-events: none; }
.lore-visual img { aspect-ratio: .92; object-fit: cover; filter: saturate(.78) contrast(1.08); transition: transform .8s cubic-bezier(.2,.7,.1,1); }
.lore-visual:hover img { transform: scale(1.035); }
.lore-visual figcaption { position: absolute; left: 0; right: 0; bottom: 0; display: flex; justify-content: space-between; padding: 26px; color: #d8dbcd; background: linear-gradient(transparent, rgba(0,0,0,.9)); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; }
.lore-visual figcaption span { color: var(--acid); }
.lore-copy { padding-bottom: 30px; }
.lore-copy p { margin: 0 0 18px; color: var(--muted); }
.lore-copy .dropcap { color: #d4d6cc; font-size: 18px; line-height: 1.55; }
.dropcap::first-letter { float: left; margin: 5px 8px 0 0; color: var(--acid); font: 64px/.65 var(--display); }
.signature { margin-top: 30px; color: var(--copper); font-family: cursive; font-size: 20px; transform: rotate(-5deg); }

.forge-section { position: relative; min-height: 680px; display: flex; align-items: center; overflow: hidden; }
.forge-section__image, .forge-section__veil { position: absolute; inset: 0; height: 100%; }
.forge-section__image { object-fit: cover; object-position: center; }
.forge-section__veil { background: linear-gradient(90deg, rgba(5,6,5,.16) 0%, rgba(5,6,5,.45) 45%, rgba(5,6,5,.97) 75%), linear-gradient(0deg, rgba(5,6,5,.75), transparent 60%); }
.forge-section__content { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: flex-end; text-align: right; }
.forge-section blockquote { max-width: 630px; margin: 0; color: #e3e4db; font-family: var(--display); font-size: clamp(46px, 6vw, 86px); line-height: .96; letter-spacing: -.03em; text-transform: uppercase; }
.forge-section__content > p:last-child { max-width: 390px; margin: 28px 0 0; color: #a4a99b; }

.token-section { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(60px, 9vw, 140px); align-items: center; }
.token-visual { position: relative; }
.token-visual::before { content: ""; position: absolute; z-index: -1; inset: -20px 20px 20px -20px; border: 1px solid var(--line); background: repeating-linear-gradient(135deg, transparent 0 5px, rgba(205,255,0,.025) 5px 6px); }
.token-visual img { aspect-ratio: 1.08; object-fit: cover; filter: saturate(.85); }
.token-visual__stamp { position: absolute; right: -32px; bottom: -32px; display: grid; place-content: center; width: 96px; height: 96px; color: var(--black); background: var(--acid); border-radius: 50%; font: 900 25px/1 var(--display); transform: rotate(9deg); box-shadow: 0 0 0 8px var(--black), 0 0 0 9px rgba(205,255,0,.4); }
.token-copy > p:not(.eyebrow) { max-width: 480px; margin: 26px 0 36px; color: var(--muted); }
.token-facts { margin: 0 0 28px; border-top: 1px solid rgba(255,255,255,.12); }
.token-facts div { display: grid; grid-template-columns: 110px 1fr; padding: 13px 0; border-bottom: 1px solid rgba(255,255,255,.12); }
.token-facts dt { color: #74796e; font-size: 10px; letter-spacing: .14em; text-transform: uppercase; }
.token-facts dd { margin: 0; color: #d7d9cf; font-size: 12px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.contract { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 14px 14px 14px 18px; border: 1px solid rgba(205,255,0,.3); background: rgba(205,255,0,.035); }
.contract > div { min-width: 0; }
.contract span { display: block; color: #777d70; font-size: 9px; letter-spacing: .14em; text-transform: uppercase; }
.contract code { display: block; max-width: 280px; margin-top: 4px; overflow: hidden; color: #e7e9de; font-size: 12px; text-overflow: ellipsis; white-space: nowrap; }
.copy-btn { min-width: 88px; height: 40px; padding: 0 14px; border: 0; color: var(--black); background: var(--acid); font-size: 10px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; cursor: pointer; }
.copy-btn__done { display: none !important; }
.copy-btn.copied .copy-btn__default { display: none; }
.copy-btn.copied .copy-btn__done { display: block !important; }
.token-actions { display: flex; align-items: center; gap: 28px; margin-top: 26px; }

.legion-section { display: grid; grid-template-columns: 1.2fr .8fr; min-height: 680px; background: #0b0d0a; }
.legion-section__media { position: relative; overflow: hidden; }
.legion-section__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, transparent 60%, #0b0d0a 100%), linear-gradient(0deg, rgba(0,0,0,.55), transparent 45%); }
.legion-section__media img { height: 100%; object-fit: cover; filter: saturate(.72) contrast(1.08); }
.legion-section__content { width: min(460px, calc(100% - 48px)); display: flex; flex-direction: column; justify-content: center; margin-left: 0; padding: 80px 30px; }
.legion-section__content p:not(.eyebrow) { margin: 28px 0 34px; color: var(--muted); }
.legion-section__content .btn { align-self: flex-start; }

.gallery-section { padding-bottom: 160px; }
.gallery-heading { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 54px; }
.gallery-heading > p { max-width: 300px; margin: 0 0 6px; color: var(--muted); }
.gallery { display: grid; grid-auto-flow: dense; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 260px; gap: 12px; }
.gallery-card { position: relative; padding: 0; overflow: hidden; border: 0; background: var(--iron); cursor: zoom-in; }
.gallery-card--wide { grid-column: span 2; }
.gallery-card--tall { grid-row: span 2; }
.gallery-card::after { content: "+"; position: absolute; top: 18px; right: 18px; display: grid; place-content: center; width: 34px; height: 34px; border: 1px solid rgba(205,255,0,.8); color: var(--acid); background: rgba(0,0,0,.45); opacity: 0; transform: rotate(-30deg); transition: opacity .3s, transform .3s; }
.gallery-card img { height: 100%; object-fit: cover; filter: saturate(.65) contrast(1.08); transition: transform .7s cubic-bezier(.2,.7,.1,1), filter .5s; }
.gallery-card span { position: absolute; left: 0; right: 0; bottom: 0; display: flex; align-items: center; gap: 12px; padding: 30px 18px 16px; color: #e7e9df; background: linear-gradient(transparent, rgba(0,0,0,.88)); font-size: 10px; letter-spacing: .1em; text-align: left; text-transform: uppercase; transform: translateY(8px); opacity: .75; transition: transform .3s, opacity .3s; }
.gallery-card b { color: var(--acid); font-size: 9px; }
.gallery-card:hover img, .gallery-card:focus-visible img { transform: scale(1.045); filter: saturate(.95) contrast(1.04); }
.gallery-card:hover::after, .gallery-card:focus-visible::after { opacity: 1; transform: rotate(0); }
.gallery-card:hover span, .gallery-card:focus-visible span { opacity: 1; transform: translateY(0); }

.finale { position: relative; min-height: 720px; display: flex; align-items: center; overflow: hidden; }
.finale > img, .finale__veil { position: absolute; inset: 0; height: 100%; }
.finale > img { object-fit: cover; object-position: 62% center; }
.finale__veil { background: linear-gradient(90deg, rgba(5,6,5,.98) 0%, rgba(5,6,5,.78) 36%, rgba(5,6,5,.08) 75%), linear-gradient(0deg, #070807 0%, transparent 35%); }
.finale__content { position: relative; z-index: 2; }
.finale__content h2 { font-size: clamp(48px, 6.2vw, 90px); }
.finale__actions { display: flex; align-items: center; gap: 26px; margin-top: 36px; }
.copy-inline { padding: 10px 0; border: 0; border-bottom: 1px solid #596052; color: #cdd0c4; background: transparent; font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; cursor: pointer; }
.copy-inline:hover { color: var(--acid); border-color: var(--acid); }

.site-footer { border-top: 1px solid rgba(255,255,255,.1); background: #050605; }
.site-footer__top { display: grid; grid-template-columns: 1fr 1fr 1fr; align-items: start; padding-block: 64px; }
.brand--footer .brand__seal { width: 52px; height: 52px; }
.site-footer__top > p { margin: 0; color: #aeb1a6; font-size: 13px; letter-spacing: .08em; text-transform: uppercase; }
.footer-links { display: flex; flex-direction: column; align-items: flex-end; gap: 8px; }
.footer-links a { color: #9da193; font-size: 11px; letter-spacing: .1em; text-transform: uppercase; }
.footer-links a:hover { color: var(--acid); }
.site-footer__bottom { display: flex; justify-content: space-between; gap: 24px; padding-block: 18px; border-top: 1px solid rgba(255,255,255,.08); color: #5e6359; font-size: 9px; letter-spacing: .11em; text-transform: uppercase; }

.lightbox { width: min(1120px, calc(100vw - 36px)); max-height: calc(100svh - 36px); padding: 0; overflow: visible; border: 1px solid rgba(205,255,0,.3); color: var(--paper); background: #080a07; }
.lightbox::backdrop { background: rgba(0,0,0,.9); backdrop-filter: blur(12px); }
.lightbox img { max-height: calc(100svh - 110px); object-fit: contain; }
.lightbox p { position: absolute; left: 18px; bottom: 12px; margin: 0; padding: 7px 10px; color: var(--acid); background: rgba(0,0,0,.7); font-size: 10px; letter-spacing: .14em; text-transform: uppercase; }
.lightbox__close { position: absolute; z-index: 2; top: -14px; right: -14px; display: grid; place-content: center; width: 42px; height: 42px; border: 1px solid var(--acid); color: var(--black); background: var(--acid); font-size: 24px; line-height: 1; cursor: pointer; }

.toast { position: fixed; z-index: 500; left: 50%; bottom: 24px; padding: 12px 18px; color: var(--black); background: var(--acid); font-size: 10px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; opacity: 0; pointer-events: none; transform: translate(-50%, 20px); transition: opacity .25s, transform .25s; }
.toast.show { opacity: 1; transform: translate(-50%, 0); }

.reveal { opacity: 0; transform: translateY(36px); transition: opacity .8s ease, transform .8s cubic-bezier(.2,.7,.1,1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.gallery .reveal:nth-child(2n) { transition-delay: .08s; }
.gallery .reveal:nth-child(3n) { transition-delay: .15s; }

@media (max-width: 980px) {
  .site-header { grid-template-columns: 1fr auto; }
  .header-buy { display: none; }
  .menu-toggle { position: relative; z-index: 2; display: grid; gap: 7px; }
  .menu-toggle span { display: block; width: 28px; height: 2px; background: var(--acid); transition: transform .3s; }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(4.5px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4.5px) rotate(-45deg); }
  .site-nav { position: fixed; inset: 0; display: flex; flex-direction: column; justify-content: center; gap: 25px; visibility: hidden; opacity: 0; background: rgba(5,6,5,.97); transition: opacity .3s, visibility .3s; }
  .site-nav.open { visibility: visible; opacity: 1; }
  .site-nav a { font: 900 34px/1 var(--display); letter-spacing: .02em; }
  .section--lore { grid-template-columns: 1fr 1.2fr; }
  .section-heading { grid-column: 1 / -1; }
  .token-section { gap: 60px; }
  .legion-section { grid-template-columns: 1fr; }
  .legion-section__media { min-height: 520px; }
  .legion-section__media::after { background: linear-gradient(0deg, #0b0d0a, transparent 35%); }
  .legion-section__content { width: var(--shell); margin: 0 auto; padding: 80px 0 110px; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 680px) {
  :root { --shell: calc(100vw - 32px); }
  .site-header { height: 68px; padding-inline: 16px; }
  .brand__name { font-size: 15px; }
  .hero { min-height: 780px; }
  .hero__image { object-position: 68% center; }
  .hero__shade { background: linear-gradient(0deg, rgba(5,6,5,.98) 0%, rgba(5,6,5,.78) 53%, rgba(5,6,5,.28) 100%); }
  .hero__content { align-self: flex-end; padding: 0 0 115px; }
  .metal-title { font-size: clamp(62px, 22vw, 92px); }
  .metal-title span { margin-left: .15em; }
  .hero__actions { align-items: flex-start; flex-direction: column; gap: 18px; }
  .scroll-cue { left: 16px; transform: none; }
  .hero__index { right: 16px; }
  .section { padding-block: 92px; }
  h2 { font-size: 45px; }
  .section--lore { grid-template-columns: 1fr; gap: 34px; }
  .section-heading { padding-top: 0; }
  .lore-visual img { aspect-ratio: 1 / 1.1; }
  .lore-copy { padding: 0; }
  .forge-section { min-height: 720px; align-items: flex-end; }
  .forge-section__image { object-position: 38% center; }
  .forge-section__veil { background: linear-gradient(0deg, rgba(5,6,5,.98) 0%, rgba(5,6,5,.75) 47%, rgba(5,6,5,.1) 78%); }
  .forge-section__content { align-items: flex-start; padding-bottom: 70px; text-align: left; }
  .forge-section blockquote { font-size: 47px; }
  .token-section { grid-template-columns: 1fr; gap: 70px; }
  .token-visual__stamp { right: 10px; }
  .token-facts div { grid-template-columns: 90px 1fr; }
  .contract { align-items: stretch; }
  .contract code { max-width: 180px; }
  .token-actions { align-items: flex-start; flex-direction: column; gap: 16px; }
  .legion-section__media { min-height: 450px; }
  .legion-section__media img { object-position: 60% center; }
  .gallery-heading { align-items: flex-start; flex-direction: column; }
  .gallery { grid-template-columns: 1fr; grid-auto-rows: 280px; }
  .gallery-card--wide { grid-column: span 1; }
  .gallery-card--tall { grid-row: span 1; }
  .finale { min-height: 690px; align-items: flex-end; }
  .finale > img { object-position: 67% center; }
  .finale__veil { background: linear-gradient(0deg, rgba(5,6,5,.98) 0%, rgba(5,6,5,.73) 55%, rgba(5,6,5,.08) 82%); }
  .finale__content { padding-bottom: 80px; }
  .finale__actions { align-items: flex-start; flex-direction: column; }
  .site-footer__top { grid-template-columns: 1fr; gap: 30px; }
  .footer-links { align-items: flex-start; }
  .site-footer__bottom { flex-direction: column; gap: 8px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
  #sparks { display: none; }
}
