/* ============================================================
   KAY2 Studios — design system
   dark / gold / collectible-streetwear. Vanilla, no build step.
   ============================================================ */
:root {
  --bg: #0b0c10;
  --bg2: #101218;
  --card: #161922;
  --card2: #1d212c;
  --line: rgba(148, 163, 184, .14);
  --line-strong: rgba(148, 163, 184, .24);
  --ink: #f5f7fa;
  --mut: #9aa5b4;
  --dim: #67707e;
  --gold: #e8b64c;
  --gold2: #f6d989;
  --gold3: #b8821e;
  --gold-glow: rgba(232, 182, 76, .32);
  --hivis: #c6f24e;
  --stan: #ff9f43;
  --purp: #b48cff;
  --max: 1200px;
  --ease: cubic-bezier(.22, .61, .36, 1);
  --pop: cubic-bezier(.34, 1.45, .64, 1);
  --shadow: 0 24px 60px rgba(0, 0, 0, .5);
  --shadow-sm: 0 10px 30px rgba(0, 0, 0, .35);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Space Grotesk", system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
h1, h2, h3, h4, .dsp { font-family: Archivo, sans-serif; letter-spacing: -.025em; line-height: 1.04; text-wrap: balance; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font: inherit; color: inherit; border: 0; background: none; cursor: pointer; }
::selection { background: var(--gold); color: #1a1205; }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 6px;
}

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
@media (max-width: 560px) { .wrap { padding: 0 18px; } }

/* anchored sections clear the fixed header */
section[id] { scroll-margin-top: 84px; }

/* ---------- ambient layers ---------- */
.blob-field {
  position: fixed; inset: -20vh; z-index: 0; pointer-events: none;
  background:
    radial-gradient(42% 46% at 14% 16%, rgba(232, 182, 76, .13), transparent 58%),
    radial-gradient(34% 40% at 88% 10%, rgba(180, 140, 255, .10), transparent 55%),
    radial-gradient(46% 52% at 72% 90%, rgba(232, 182, 76, .06), transparent 55%);
  filter: blur(70px);
  animation: drift 26s var(--ease) infinite alternate;
}
@keyframes drift {
  from { transform: translate3d(-2%, -1%, 0) scale(1); }
  to { transform: translate3d(3%, 2%, 0) scale(1.07); }
}
.grain {
  position: fixed; inset: 0; z-index: 1; pointer-events: none; opacity: .05; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
/* lift page content above the ambient layers WITHOUT clobbering
   position:fixed on .top / .dock / #prog (specificity trap) */
main, footer, .marquee { position: relative; z-index: 2; }

/* ---------- scroll progress ---------- */
#prog {
  position: fixed; top: 0; left: 0; height: 2px; width: 100%; z-index: 200;
  transform-origin: left; transform: scaleX(0);
  background: linear-gradient(90deg, var(--gold3), var(--gold), var(--gold2));
}

/* ---------- header ---------- */
.top {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  border-bottom: 1px solid transparent;
  transition: background .3s, border-color .3s;
}
.top.scrolled {
  background: rgba(11, 12, 16, .78);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  backdrop-filter: blur(16px) saturate(1.4);
  border-bottom-color: var(--line);
}
.top .bar { display: flex; align-items: center; gap: 16px; height: 68px; }
.logo {
  font-family: Archivo, sans-serif;
  font-weight: 900; font-size: 17px; letter-spacing: .02em;
  display: flex; align-items: center; gap: 10px;
  white-space: nowrap;
}
.logo .gem {
  width: 13px; height: 13px; flex: none;
  background: linear-gradient(135deg, var(--gold2), var(--gold3));
  box-shadow: 0 0 14px var(--gold-glow);
  animation: gemspin 9s linear infinite;
}
@keyframes gemspin { from { transform: rotate(45deg); } to { transform: rotate(405deg); } }
.logo b { color: var(--gold); }
.top nav { margin-left: auto; display: flex; gap: 4px; }
.top nav a {
  font-size: 13px; font-weight: 500; color: var(--mut);
  padding: 8px 12px; border-radius: 999px;
  transition: color .2s, background .2s;
}
.top nav a:hover { color: var(--ink); background: rgba(148, 163, 184, .08); }
.top .actions { display: flex; gap: 10px; margin-left: auto; }
.top nav + .actions { margin-left: 8px; }
@media (max-width: 880px) { .top nav { display: none; } }
@media (max-width: 460px) {
  .top .actions .btn-ghost { display: none; }
  .top .bar { height: 60px; }
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 22px; border-radius: 999px;
  font-family: Archivo, sans-serif; font-weight: 800; font-size: 13px;
  letter-spacing: .04em;
  transition: transform .2s var(--pop), box-shadow .25s, background .2s, border-color .2s, color .2s;
  white-space: nowrap;
}
.btn:active { transform: scale(.97); }
.btn-gold {
  background: linear-gradient(160deg, var(--gold2) 0%, var(--gold) 55%, var(--gold3) 130%);
  color: #211603;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .45), 0 8px 26px rgba(232, 182, 76, .28);
}
.btn-gold:hover {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .45), 0 12px 34px rgba(232, 182, 76, .45);
  transform: translateY(-2px);
}
.btn-ghost {
  border: 1px solid var(--line-strong);
  color: var(--ink);
  background: rgba(22, 25, 34, .55);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { border-color: var(--gold3); color: var(--gold); transform: translateY(-2px); }
.btn-sm { padding: 9px 15px; font-size: 11.5px; }

/* ---------- marquee ---------- */
.marquee {
  margin-top: 68px;
  border-block: 1px solid var(--line);
  background: linear-gradient(90deg, #12141b, #0e1015 50%, #12141b);
  overflow: hidden;
  user-select: none;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
@media (max-width: 460px) { .marquee { margin-top: 60px; } }
.marquee-track {
  display: flex; width: max-content;
  animation: scroll 30s linear infinite;
  font-family: Archivo, sans-serif;
  font-weight: 800; font-size: 11px;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--dim);
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span { padding: 11px 26px; white-space: nowrap; }
.marquee-track b { color: var(--gold); font-weight: 800; }
@keyframes scroll { to { transform: translateX(-50%); } }

/* ---------- hero ---------- */
.hero { padding: 64px 0 84px; overflow: hidden; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.06fr .94fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 920px) {
  .hero { padding: 40px 0 64px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-art { order: -1; max-width: 400px; margin: 0 auto; width: 100%; }
}
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 15px; border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: rgba(22, 25, 34, .7);
  font-size: 10.5px; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--mut);
  margin-bottom: 22px;
}
.pill .live {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--hivis);
  box-shadow: 0 0 10px var(--hivis);
  animation: pulse 2s ease infinite;
}
@keyframes pulse { 50% { opacity: .35; transform: scale(.8); } }
.hero h1 {
  font-weight: 900;
  font-size: clamp(38px, 4.9vw, 62px);
  margin-bottom: 20px;
}
@media (max-width: 920px) { .hero h1 { font-size: clamp(38px, 9vw, 58px); } }
.hero h1 em {
  font-style: normal;
  background: linear-gradient(100deg, var(--gold3) 0%, var(--gold) 35%, var(--gold2) 65%, var(--gold) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero .lede {
  font-size: clamp(16px, 2vw, 18px);
  color: var(--mut);
  max-width: 44ch;
  margin-bottom: 28px;
}
.hero .lede strong { color: var(--ink); font-weight: 600; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 36px; }

.stat-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
@media (max-width: 560px) { .stat-row { grid-template-columns: repeat(2, 1fr); } }
.stat {
  position: relative;
  background: linear-gradient(180deg, var(--card2), var(--card));
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 15px 16px 13px;
  overflow: hidden;
}
.stat::before {
  content: ""; position: absolute; top: 0; left: 12px; right: 12px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-glow), transparent);
}
.stat b {
  display: block;
  font-family: Archivo, sans-serif; font-weight: 900;
  font-size: 26px; color: var(--gold);
  line-height: 1.1;
  font-variant-numeric: tabular-nums;
}
.stat span { font-size: 10.5px; color: var(--dim); text-transform: uppercase; letter-spacing: .1em; }

/* hero art stack */
.hero-art { position: relative; }
.hero-art .stack { position: relative; width: 100%; max-width: 420px; margin: 0 auto; padding: 24px 0 12px; }
.hero-art .stack::before {
  content: ""; position: absolute; inset: 8% -4% 4% -4%;
  background: radial-gradient(60% 55% at 62% 42%, var(--gold-glow), transparent 70%);
  filter: blur(30px);
  z-index: 0;
}
.hero-art img { position: relative; background: #14161d; }
.hero-art .main {
  width: 74%; margin-left: auto;
  border-radius: 24px;
  border: 1px solid rgba(232, 182, 76, .35);
  box-shadow: 0 0 0 6px rgba(232, 182, 76, .06), var(--shadow);
  transform: rotate(2.5deg);
  animation: float 6s ease-in-out infinite;
  z-index: 2;
}
.hero-art .side {
  position: absolute; left: 0; bottom: 6%;
  width: 46%;
  border-radius: 18px;
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow);
  transform: rotate(-6deg);
  animation: float 6s ease-in-out infinite reverse;
  animation-delay: .4s;
  z-index: 3;
}
.hero-art .stan {
  position: absolute; right: -3%; top: 2%;
  width: 31%;
  border-radius: 50%;
  border: 2px solid rgba(232, 182, 76, .55);
  box-shadow: 0 0 0 5px rgba(232, 182, 76, .08), 0 14px 34px rgba(0, 0, 0, .5);
  animation: bob 3.4s ease-in-out infinite;
  z-index: 4;
}
@keyframes float { 50% { transform: rotate(2.5deg) translateY(-10px); } }
@keyframes bob { 50% { transform: translateY(-8px) rotate(4deg); } }
.sticker {
  position: absolute; left: -3%; top: 10%; z-index: 5;
  background: var(--hivis); color: #1a2208;
  font-family: Archivo, sans-serif; font-weight: 900;
  font-size: 11px; letter-spacing: .08em;
  padding: 9px 13px; border-radius: 10px;
  transform: rotate(-10deg);
  box-shadow: 0 10px 24px rgba(198, 242, 78, .25);
}

/* ---------- sections ---------- */
section { padding: 84px 0; }
@media (max-width: 720px) { section { padding: 60px 0; } }
.section-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 20px; flex-wrap: wrap;
  margin-bottom: 34px;
}
.section-head h2 { font-size: clamp(30px, 4.2vw, 46px); font-weight: 900; margin-top: 12px; }
.section-head p { color: var(--mut); max-width: 40ch; font-size: 14.5px; padding-bottom: 4px; }
.tag {
  display: inline-block;
  font-family: Archivo, sans-serif;
  font-size: 10px; font-weight: 800;
  letter-spacing: .16em; text-transform: uppercase;
  padding: 5px 11px; border-radius: 999px;
}
.tag-live { background: rgba(198, 242, 78, .1); color: var(--hivis); border: 1px solid rgba(198, 242, 78, .3); }
.tag-soon { background: rgba(255, 159, 67, .1); color: var(--stan); border: 1px solid rgba(255, 159, 67, .3); }
.tag-lock { background: rgba(154, 163, 176, .08); color: var(--mut); border: 1px solid var(--line-strong); }

/* ---------- passport ---------- */
.passport {
  position: relative;
  background:
    radial-gradient(90% 120% at 0% 0%, rgba(232, 182, 76, .07), transparent 50%),
    linear-gradient(165deg, #1a1712 0%, var(--card) 40%, var(--bg2) 100%);
  border: 1px solid var(--line-strong);
  border-radius: 26px;
  padding: 30px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.passport::before {
  content: ""; position: absolute; top: 0; left: 24px; right: 24px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(232, 182, 76, .45), transparent);
}
@media (max-width: 560px) { .passport { padding: 20px 16px; border-radius: 20px; } }
.passport-top {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
  margin-bottom: 24px; padding-bottom: 20px;
  border-bottom: 1px dashed var(--line-strong);
}
.passport-top h3 { font-size: 22px; font-weight: 900; }
.passport-top .id { font-size: 12px; color: var(--dim); font-family: ui-monospace, SFMono-Regular, monospace; margin-top: 2px; }
.perks { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
@media (max-width: 860px) { .perks { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .perks { grid-template-columns: 1fr; } }
.perk {
  position: relative;
  background: rgba(29, 33, 44, .72);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
  cursor: pointer;
  transition: transform .25s var(--pop), border-color .2s, background .2s, box-shadow .25s;
  text-align: left;
}
.perk:hover { transform: translateY(-3px); border-color: var(--line-strong); background: #232836; }
.perk.on {
  border-color: rgba(232, 182, 76, .55);
  background: linear-gradient(180deg, rgba(232, 182, 76, .09), rgba(29, 33, 44, .8));
  box-shadow: 0 8px 26px rgba(0, 0, 0, .35);
}
.perk .ico {
  width: 42px; height: 42px; border-radius: 13px;
  display: grid; place-items: center;
  font-size: 19px; margin-bottom: 12px;
  background: rgba(232, 182, 76, .09);
  border: 1px solid rgba(232, 182, 76, .22);
}
.perk h4 { font-size: 15px; margin-bottom: 4px; }
.perk p { font-size: 12.5px; color: var(--mut); line-height: 1.45; }
.perk .status {
  margin-top: 12px;
  font-size: 9.5px; font-weight: 800;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--dim);
}
.perk.on .status { color: var(--hivis); }
.perk-detail {
  margin-top: 18px;
  padding: 17px 20px;
  border-radius: 15px;
  background: rgba(198, 242, 78, .05);
  border: 1px solid rgba(198, 242, 78, .18);
  font-size: 14px; line-height: 1.6;
  color: var(--mut);
  display: none;
}
.perk-detail.show { display: block; animation: fadein .3s var(--ease); }
.perk-detail strong { color: var(--ink); }
@keyframes fadein { from { opacity: 0; transform: translateY(6px); } }

/* ---------- drops ---------- */
.collections { display: grid; grid-template-columns: 1.15fr .85fr; gap: 18px; }
@media (max-width: 900px) { .collections { grid-template-columns: 1fr; } }
.drop-card {
  position: relative;
  display: flex; flex-direction: column;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  background: var(--card);
  transition: transform .3s var(--pop), box-shadow .3s, border-color .3s;
}
a.drop-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: rgba(232, 182, 76, .5);
}
.drop-card.featured {
  border-color: rgba(232, 182, 76, .4);
  box-shadow: 0 0 0 5px rgba(232, 182, 76, .05), var(--shadow-sm);
}
.drop-card .visual {
  position: relative;
  aspect-ratio: 16/11;
  overflow: hidden;
  background: #12141b;
}
.drop-card .visual img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 18%;
  transition: transform .6s var(--ease);
}
a.drop-card:hover .visual img { transform: scale(1.045); }
.drop-card .visual::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 62%, rgba(11, 12, 16, .55));
  pointer-events: none;
}
.drop-card .body { padding: 22px 24px 24px; display: flex; flex-direction: column; align-items: flex-start; gap: 0; }
.drop-card h3 { font-size: 26px; font-weight: 900; margin: 12px 0 6px; }
.drop-card .sub { color: var(--mut); font-size: 14px; margin-bottom: 16px; }
.drop-card .links { display: flex; flex-wrap: wrap; gap: 8px; }
.chip-link {
  font-size: 11px; font-weight: 700;
  padding: 7px 13px; border-radius: 999px;
  border: 1px solid var(--line-strong);
  color: var(--mut);
  transition: color .2s, border-color .2s;
}
.chip-link.hot { border-color: rgba(232, 182, 76, .5); color: var(--gold); background: rgba(232, 182, 76, .07); }
.lock-overlay {
  position: absolute; inset: 0; z-index: 2;
  display: grid; place-items: end center;
  padding-bottom: 18px;
  background: linear-gradient(180deg, rgba(8, 9, 12, .15), rgba(8, 9, 12, .5));
}
.lock-overlay span {
  font-family: Archivo, sans-serif;
  font-weight: 900; font-size: 12px;
  letter-spacing: .14em; text-transform: uppercase;
  padding: 11px 18px; border-radius: 999px;
  background: rgba(17, 13, 8, .75);
  border: 1px solid rgba(255, 159, 67, .45);
  color: var(--stan);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}

/* ---------- play zone ---------- */
.play-zone {
  background:
    radial-gradient(70% 90% at 50% 0%, rgba(180, 140, 255, .05), transparent 60%),
    var(--bg2);
  border-block: 1px solid var(--line);
}
.feature-game { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
@media (max-width: 860px) { .feature-game { grid-template-columns: 1fr; } }
.syn-card {
  position: relative;
  border-radius: 24px;
  border: 1px solid var(--line-strong);
  background:
    radial-gradient(120% 130% at 100% 0%, rgba(180, 140, 255, .10), transparent 55%),
    linear-gradient(150deg, #171b26, var(--card));
  padding: 28px;
  display: flex; flex-direction: column; justify-content: space-between;
  gap: 20px;
  min-height: 300px;
  overflow: hidden;
}
.syn-card::before {
  /* city-grid backdrop for the agent sim */
  content: ""; position: absolute; left: 0; right: 0; top: 40%; bottom: 0;
  background:
    linear-gradient(rgba(180, 140, 255, .07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(180, 140, 255, .07) 1px, transparent 1px);
  background-size: 44px 44px;
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 45%);
  mask-image: linear-gradient(180deg, transparent, #000 45%);
  transform: perspective(500px) rotateX(38deg);
  transform-origin: bottom;
  pointer-events: none;
}
.syn-card > * { position: relative; }
.syn-card h3 { font-size: 30px; font-weight: 900; margin: 12px 0 8px; }
.syn-card p { color: var(--mut); font-size: 14.5px; max-width: 42ch; }
.faction-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.faction-chips span {
  font-size: 11px; font-weight: 600;
  padding: 6px 11px; border-radius: 8px;
  border: 1px solid rgba(180, 140, 255, .25);
  color: var(--purp);
  background: rgba(180, 140, 255, .06);
}
.syn-note {
  font-family: Archivo, sans-serif; font-weight: 800; font-size: 11px;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--dim);
  display: inline-flex; align-items: center; gap: 8px;
}
.syn-note::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%;
  background: var(--stan); box-shadow: 0 0 8px rgba(255, 159, 67, .6);
}
.arcade-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
@media (max-width: 860px) { .arcade-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .arcade-grid { grid-template-columns: 1fr; } }
.arcade-card {
  border-radius: 18px;
  border: 1px solid var(--line);
  background: var(--card);
  padding: 18px;
  transition: transform .2s var(--pop), border-color .2s, box-shadow .25s;
}
a.arcade-card:hover {
  transform: translateY(-4px);
  border-color: rgba(232, 182, 76, .5);
  box-shadow: var(--shadow-sm);
}
.arcade-card .emoji { font-size: 26px; margin-bottom: 10px; }
.arcade-card h4 { font-size: 15.5px; margin-bottom: 4px; }
.arcade-card p { font-size: 12.5px; color: var(--mut); }
.arcade-card .foot {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 14px; padding-top: 12px;
  border-top: 1px solid var(--line);
  font-size: 11px; font-weight: 700; color: var(--dim);
}
a.arcade-card .foot .go { color: var(--gold); }

/* ---------- aim ---------- */
.aim { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; counter-reset: aim; }
@media (max-width: 860px) { .aim { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .aim { grid-template-columns: 1fr; } }
.aim-card {
  counter-increment: aim;
  padding: 22px 20px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, var(--card2), var(--card));
  transition: transform .25s var(--pop), border-color .2s;
}
.aim-card:hover { transform: translateY(-3px); border-color: rgba(232, 182, 76, .35); }
.aim-card::before {
  content: "0" counter(aim);
  display: block;
  font-family: Archivo, sans-serif; font-weight: 900; font-size: 12px;
  letter-spacing: .12em;
  color: var(--gold3);
  margin-bottom: 14px;
}
.aim-card b {
  display: block;
  font-family: Archivo, sans-serif; font-weight: 800;
  font-size: 15.5px;
  margin-bottom: 6px;
  color: var(--ink);
}
.aim-card span { font-size: 13px; color: var(--mut); line-height: 1.5; }

/* ---------- wallet band ---------- */
.wallet-band {
  text-align: center;
  padding: 96px 0;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(55% 75% at 50% 108%, rgba(232, 182, 76, .16), transparent 70%),
    var(--bg);
}
.wallet-band h2 { font-size: clamp(30px, 5vw, 54px); font-weight: 900; margin-bottom: 14px; }
.wallet-band p { color: var(--mut); max-width: 46ch; margin: 0 auto 28px; font-size: 15px; }
.wallet-band .btns { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; }

/* ---------- footer ---------- */
footer {
  border-top: 1px solid var(--line);
  padding: 34px 0 110px;
  color: var(--dim);
  font-size: 13px;
}
footer .row { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
footer .links { display: flex; gap: 20px; flex-wrap: wrap; }
footer a { transition: color .2s; }
footer a:hover { color: var(--gold); }
@media (min-width: 721px) { footer { padding-bottom: 40px; } }

/* ---------- mobile dock ---------- */
.dock {
  position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 90;
  display: none;
  padding: 10px 12px 10px 16px;
  border-radius: 18px;
  background: rgba(16, 18, 24, .9);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow);
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
.dock span { font-size: 12px; font-weight: 600; color: var(--mut); }
@media (max-width: 720px) { .dock { display: flex; } }

/* ---------- reveal ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
[data-reveal].in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
  [data-reveal] { opacity: 1; transform: none; }
}
