/* ═══════════════════════════════════════════════
   Blueberry Client — landing page styles
   Palette pulled from the launcher + logo:
   blueberry blue, royal purple, electric cyan
   ═══════════════════════════════════════════════ */

:root {
  /* base */
  --bg:        #07070f;
  --bg-2:      #0c0c1a;
  --surface:   rgba(31, 31, 45, 0.55);
  --surface-2: rgba(46, 46, 66, 0.45);
  --border:    rgba(139, 92, 246, 0.16);
  --border-2:  rgba(255, 255, 255, 0.08);

  /* brand */
  --blue:      #3b82f6;
  --blue-lt:   #60a5fa;
  --berry:     #2d7fe0;
  --purple:    #8b5cf6;
  --purple-lt: #9d72f7;
  --cyan:      #2dd4ff;
  --cyan-hot:  #33ffff;
  --navy:      #0d1b3e;

  /* text */
  --text:      #f5f7fb;
  --muted:     #b8b8c8;
  --faint:     #7b7b90;

  /* gradients */
  --grad-brand: linear-gradient(120deg, var(--blue) 0%, var(--purple) 55%, var(--cyan) 100%);
  --grad-warm:  linear-gradient(135deg, var(--purple) 0%, var(--blue) 100%);

  --radius:    18px;
  --radius-lg: 26px;
  --maxw:      1180px;
  --ease:      cubic-bezier(0.22, 1, 0.36, 1);
}

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

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

body {
  font-family: "Inter", system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .brand__text { font-family: "Sora", "Inter", sans-serif; }

a { color: inherit; text-decoration: none; }

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

::selection { background: var(--purple); color: #fff; }

/* ─── Animated backdrop ─────────────────────── */
.backdrop { position: fixed; inset: 0; z-index: -1; overflow: hidden; background: radial-gradient(140% 120% at 50% -10%, #14122a 0%, var(--bg) 60%); }

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.5;
  animation: drift 22s ease-in-out infinite;
}
.blob--1 { width: 620px; height: 620px; top: -180px; left: -120px; background: radial-gradient(circle, rgba(59,130,246,0.55), transparent 70%); }
.blob--2 { width: 560px; height: 560px; top: 18%; right: -160px; background: radial-gradient(circle, rgba(139,92,246,0.5), transparent 70%); animation-delay: -7s; }
.blob--3 { width: 500px; height: 500px; bottom: -160px; left: 28%; background: radial-gradient(circle, rgba(45,212,255,0.35), transparent 70%); animation-delay: -14s; }

@keyframes drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%      { transform: translate(60px, -40px) scale(1.08); }
  66%      { transform: translate(-40px, 50px) scale(0.95); }
}

.grid-overlay {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(139,92,246,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(139,92,246,0.05) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(120% 90% at 50% 0%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(120% 90% at 50% 0%, #000 30%, transparent 75%);
}

.noise {
  position: absolute; inset: 0; opacity: 0.035; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ─── Layout helpers ────────────────────────── */
.section {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(70px, 11vw, 140px) 24px;
}
.section--narrow { max-width: 820px; }

.section__head { text-align: center; max-width: 680px; margin: 0 auto clamp(40px, 6vw, 70px); }
.section__title { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 800; line-height: 1.08; letter-spacing: -0.02em; }
.section__lead { margin-top: 18px; color: var(--muted); font-size: 1.08rem; }

.eyebrow {
  display: inline-block;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--cyan); margin-bottom: 14px;
}

.grad-text {
  background: var(--grad-brand);
  background-size: 220% auto;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: text-shimmer 7s linear infinite;
}
@keyframes text-shimmer { to { background-position: 220% center; } }

/* ─── Buttons ───────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-weight: 600; font-family: "Sora", sans-serif;
  border: 1px solid transparent; border-radius: 13px; cursor: pointer;
  transition: transform 0.2s var(--ease), box-shadow 0.25s var(--ease), background 0.25s, border-color 0.25s;
  white-space: nowrap;
}
.btn--sm  { padding: 9px 16px;  font-size: 0.9rem; }
.btn      { padding: 12px 22px; font-size: 0.98rem; }
.btn--lg  { padding: 15px 30px; font-size: 1.05rem; border-radius: 15px; }

.btn--primary {
  position: relative; overflow: hidden;
  background: var(--grad-warm); color: #fff;
  box-shadow: 0 10px 30px -8px rgba(139,92,246,0.6), inset 0 1px 0 rgba(255,255,255,0.2);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 16px 40px -10px rgba(139,92,246,0.75); }
/* sheen sweep on hover */
.btn--primary::after {
  content: ""; position: absolute; top: 0; left: -130%; width: 55%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,0.4), transparent);
  transform: skewX(-20deg); pointer-events: none; transition: left 0.65s var(--ease);
}
.btn--primary:hover::after { left: 150%; }

.btn--ghost {
  background: rgba(255,255,255,0.05); color: var(--text);
  border-color: var(--border-2); backdrop-filter: blur(10px);
}
.btn--ghost:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.2); transform: translateY(-2px); }

/* ─── Navbar ────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background 0.3s, backdrop-filter 0.3s, border-color 0.3s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(8, 8, 18, 0.72);
  backdrop-filter: blur(18px) saturate(140%);
  border-bottom-color: var(--border-2);
}
.nav__inner {
  max-width: var(--maxw); margin: 0 auto; padding: 14px 24px;
  display: flex; align-items: center; gap: 24px;
}

.brand { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.brand__mark { width: 38px; height: 38px; filter: drop-shadow(0 4px 12px rgba(59,130,246,0.5)); }
.brand__text { font-weight: 800; font-size: 1.22rem; letter-spacing: -0.02em; }
.brand__sub { color: var(--cyan); margin-left: 2px; }

.nav__links { display: flex; gap: 6px; margin-left: auto; }
.nav__links a {
  padding: 8px 14px; border-radius: 10px; font-size: 0.94rem; font-weight: 500; color: var(--muted);
  transition: color 0.2s, background 0.2s;
}
.nav__links a:hover { color: var(--text); background: rgba(255,255,255,0.06); }

.nav__actions { display: flex; align-items: center; gap: 10px; }

.nav__burger { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav__burger span { width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: transform 0.3s, opacity 0.3s; }
.nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── Hero ──────────────────────────────────── */
.hero {
  max-width: var(--maxw); margin: 0 auto;
  padding: clamp(130px, 18vw, 190px) 24px clamp(50px, 8vw, 90px);
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 50px; align-items: center;
}

.pill {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 7px 15px; border-radius: 999px;
  background: rgba(139,92,246,0.1); border: 1px solid var(--border);
  font-size: 0.84rem; font-weight: 500; color: var(--muted); margin-bottom: 26px;
}
.pill__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 12px var(--cyan); animation: pulse 2s infinite; }
@keyframes pulse { 50% { opacity: 0.4; transform: scale(0.8); } }

.hero__title { font-size: clamp(2.6rem, 6.5vw, 4.6rem); font-weight: 800; line-height: 1.02; letter-spacing: -0.03em; }
.hero__sub { margin-top: 24px; font-size: clamp(1.05rem, 2vw, 1.2rem); color: var(--muted); max-width: 540px; }

.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }

.hero__stats { display: flex; align-items: center; gap: 26px; margin-top: 50px; }
.stat { display: flex; flex-direction: column; }
.stat__num { font-family: "Sora"; font-size: clamp(1.7rem, 3.5vw, 2.3rem); font-weight: 800; line-height: 1; background: var(--grad-brand); background-size: 220% auto; -webkit-background-clip: text; background-clip: text; color: transparent; animation: text-shimmer 7s linear infinite; }
.stat__label { font-size: 0.82rem; color: var(--faint); margin-top: 6px; letter-spacing: 0.02em; }
.stat__divider { width: 1px; height: 42px; background: var(--border-2); }

/* hero visual */
.hero__visual { position: relative; display: grid; place-items: center; min-height: 380px; }
.orb { position: relative; width: clamp(240px, 32vw, 340px); aspect-ratio: 1; display: grid; place-items: center; }
.orb__logo { width: 64%; z-index: 2; filter: drop-shadow(0 20px 50px rgba(59,130,246,0.55)); animation: bob 6s ease-in-out infinite; }
@keyframes bob { 50% { transform: translateY(-16px); } }
.orb__glow { position: absolute; inset: 8%; border-radius: 50%; background: radial-gradient(circle, rgba(59,130,246,0.4), transparent 65%); filter: blur(30px); }
.orb__ring { position: absolute; border-radius: 50%; border: 1px solid; inset: 0; }
.orb__ring--1 { border-color: rgba(139,92,246,0.3); animation: spin 18s linear infinite; }
.orb__ring--2 { inset: 12%; border-color: rgba(45,212,255,0.25); border-style: dashed; animation: spin 26s linear infinite reverse; }
@keyframes spin { to { transform: rotate(360deg); } }

.float-card {
  position: absolute; display: flex; flex-direction: column;
  padding: 12px 18px; border-radius: 16px;
  background: var(--surface); border: 1px solid var(--border-2);
  backdrop-filter: blur(14px);
  box-shadow: 0 16px 40px -16px rgba(0,0,0,0.7);
  animation: bob 5s ease-in-out infinite;
}
.float-card__label { font-size: 0.72rem; color: var(--faint); text-transform: uppercase; letter-spacing: 0.1em; }
.float-card__val { font-family: "Sora"; font-size: 1.5rem; font-weight: 700; color: var(--cyan); }
.float-card__val small { font-size: 0.7rem; color: var(--muted); }
.float-card--fps { top: 8%; right: -6%; animation-delay: -1s; }
.float-card--ping { bottom: 10%; left: -8%; animation-delay: -3s; }
.float-card--ping .float-card__val { color: var(--purple-lt); }

/* ─── Pillars ───────────────────────────────── */
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.pillar {
  position: relative; overflow: hidden;
  padding: 32px 28px; border-radius: var(--radius-lg);
  background: var(--surface); border: 1px solid var(--border-2);
  backdrop-filter: blur(12px); transform-style: preserve-3d;
  transition: transform 0.4s var(--ease), border-color 0.3s, box-shadow 0.3s;
}
.pillar:hover { transform: translateY(-6px); border-color: var(--border); box-shadow: 0 26px 50px -24px rgba(139,92,246,0.5); }
/* cursor spotlight (shared by pillars & mods) */
.pillar::after, .mod::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
  opacity: 0; transition: opacity 0.35s var(--ease);
  background: radial-gradient(220px circle at var(--mx, 50%) var(--my, 50%), rgba(255,255,255,0.10), transparent 60%);
}
.pillar:hover::after, .mod:hover::after { opacity: 1; }
.pillar > *, .mod > * { position: relative; z-index: 1; }
.pillar__icon { width: 54px; height: 54px; border-radius: 16px; display: grid; place-items: center; margin-bottom: 20px; }
.pillar__icon svg { width: 26px; height: 26px; color: #fff; }
.pillar__icon--blue   { background: linear-gradient(135deg, var(--blue), var(--berry)); box-shadow: 0 10px 26px -8px rgba(59,130,246,0.7); }
.pillar__icon--purple { background: linear-gradient(135deg, var(--purple), var(--purple-lt)); box-shadow: 0 10px 26px -8px rgba(139,92,246,0.7); }
.pillar__icon--cyan   { background: linear-gradient(135deg, var(--cyan), var(--blue-lt)); box-shadow: 0 10px 26px -8px rgba(45,212,255,0.6); }
.pillar h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 10px; }
.pillar p { color: var(--muted); font-size: 0.98rem; }

/* ─── Mods grid ─────────────────────────────── */
.mods { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.mod {
  position: relative; padding: 22px 20px; border-radius: var(--radius);
  background: var(--surface); border: 1px solid var(--border-2);
  backdrop-filter: blur(10px); overflow: hidden; transform-style: preserve-3d;
  transition: transform 0.4s var(--ease), border-color 0.28s, background 0.28s;
}
.mod::before {
  content: ""; position: absolute; inset: 0; opacity: 0;
  background: radial-gradient(120% 100% at 0% 0%, rgba(139,92,246,0.18), transparent 60%);
  transition: opacity 0.3s;
}
.mod:hover { transform: translateY(-4px); border-color: var(--border); }
.mod:hover::before { opacity: 1; }
.mod__icon { width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center; margin-bottom: 14px; background: rgba(139,92,246,0.14); border: 1px solid var(--border); position: relative; }
.mod__icon svg { width: 21px; height: 21px; color: var(--cyan); }
.mod__name { font-family: "Sora"; font-weight: 600; font-size: 1.02rem; position: relative; }
.mod__desc { color: var(--faint); font-size: 0.86rem; margin-top: 5px; position: relative; }

/* ─── Split sections ────────────────────────── */
.section--split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 80px); align-items: center; }
.section--reverse .split__text { order: 2; }
.split__text .section__title { text-align: left; }

.checklist { list-style: none; margin-top: 26px; display: grid; gap: 14px; }
.checklist li { display: flex; align-items: center; gap: 12px; color: var(--muted); font-size: 1rem; }
.checklist li::before {
  content: "✓"; flex-shrink: 0; width: 24px; height: 24px; border-radius: 7px;
  display: grid; place-items: center; font-size: 0.8rem; font-weight: 700; color: #fff;
  background: var(--grad-warm);
}

/* bars */
.bars { padding: 34px; border-radius: var(--radius-lg); background: var(--surface); border: 1px solid var(--border-2); backdrop-filter: blur(12px); }
.bars__row { display: grid; grid-template-columns: 86px 1fr 46px; align-items: center; gap: 14px; margin-bottom: 22px; }
.bars__name { font-size: 0.9rem; color: var(--muted); font-weight: 500; }
.bars__track { height: 14px; border-radius: 999px; background: rgba(255,255,255,0.06); overflow: hidden; }
.bars__fill { height: 100%; width: 0; border-radius: 999px; transition: width 1.3s var(--ease); }
.bars__fill--muted { background: rgba(255,255,255,0.22); }
.bars__fill--hot { background: var(--grad-brand); box-shadow: 0 0 20px rgba(59,130,246,0.6); }
.bars__val { font-family: "Sora"; font-weight: 700; text-align: right; }
.bars__caption { grid-column: 1 / -1; font-size: 0.82rem; color: var(--faint); margin-top: 6px; }

/* ─── CTA ───────────────────────────────────── */
.cta { position: relative; text-align: center; padding: clamp(50px, 8vw, 86px) 30px; border-radius: 34px; background: linear-gradient(150deg, rgba(31,31,45,0.85), rgba(20,18,40,0.85)); border: 1px solid var(--border); overflow: hidden; backdrop-filter: blur(12px); }
.cta__glow { position: absolute; inset: -2px; background: radial-gradient(60% 80% at 50% 0%, rgba(139,92,246,0.35), transparent 60%); pointer-events: none; }
.cta__title { position: relative; font-size: clamp(1.9rem, 4.5vw, 3rem); font-weight: 800; letter-spacing: -0.02em; }
.cta__sub { position: relative; max-width: 560px; margin: 18px auto 0; color: var(--muted); font-size: 1.08rem; }
.cta__actions { position: relative; display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 34px; }
.cta__note { position: relative; margin-top: 22px; font-size: 0.85rem; color: var(--faint); }

/* ─── FAQ ───────────────────────────────────── */
.faq { display: grid; gap: 12px; }
.faq__item { border: 1px solid var(--border-2); border-radius: var(--radius); background: var(--surface); backdrop-filter: blur(10px); overflow: hidden; transition: border-color 0.25s; }
.faq__item.open { border-color: var(--border); }
.faq__q { width: 100%; text-align: left; background: none; border: 0; color: var(--text); cursor: pointer; padding: 20px 24px; font-family: "Sora"; font-size: 1.05rem; font-weight: 600; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq__q::after { content: "+"; font-size: 1.5rem; font-weight: 400; color: var(--cyan); transition: transform 0.3s; flex-shrink: 0; }
.faq__item.open .faq__q::after { transform: rotate(45deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height 0.35s var(--ease); }
.faq__a p { padding: 0 24px 22px; color: var(--muted); }

/* ─── Footer ────────────────────────────────── */
.footer { border-top: 1px solid var(--border-2); margin-top: 40px; }
.footer__inner { max-width: var(--maxw); margin: 0 auto; padding: 54px 24px 30px; display: flex; flex-wrap: wrap; gap: 30px; justify-content: space-between; align-items: center; }
.footer__brand { display: flex; align-items: center; gap: 14px; }
.footer__mark { width: 46px; height: 46px; }
.footer__name { font-family: "Sora"; font-weight: 700; font-size: 1.1rem; }
.footer__tag { color: var(--faint); font-size: 0.88rem; }
.footer__links { display: flex; flex-wrap: wrap; gap: 22px; }
.footer__links a { color: var(--muted); font-size: 0.94rem; transition: color 0.2s; }
.footer__links a:hover { color: var(--cyan); }
.footer__base { max-width: var(--maxw); margin: 0 auto; padding: 22px 24px 40px; border-top: 1px solid var(--border-2); display: flex; flex-wrap: wrap; gap: 10px; justify-content: space-between; color: var(--faint); font-size: 0.84rem; }

/* ─── Toast ─────────────────────────────────── */
.toast {
  position: fixed; bottom: 28px; left: 50%; transform: translate(-50%, 120px);
  background: rgba(13,13,26,0.92); border: 1px solid var(--border); color: var(--text);
  padding: 13px 22px; border-radius: 13px; font-size: 0.94rem; font-weight: 500;
  backdrop-filter: blur(14px); box-shadow: 0 16px 40px -12px rgba(0,0,0,0.8);
  z-index: 200; opacity: 0; transition: transform 0.4s var(--ease), opacity 0.4s; pointer-events: none;
}
.toast.show { transform: translate(-50%, 0); opacity: 1; }

/* ─── Scroll reveal ─────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(34px); filter: blur(8px);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease), filter 0.85s var(--ease);
}
.reveal[data-reveal="left"]  { transform: translateX(-52px); }
.reveal[data-reveal="right"] { transform: translateX(52px); }
.reveal[data-reveal="scale"] { transform: scale(0.9); }
.reveal[data-reveal="up-lg"] { transform: translateY(66px) scale(0.97); }
.reveal.in { opacity: 1; transform: none; filter: none; }

/* ─── Motion & craft ────────────────────────── */
/* scroll progress bar */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 100%; z-index: 120;
  transform: scaleX(0); transform-origin: 0 50%;
  background: var(--grad-brand); box-shadow: 0 0 12px rgba(59,130,246,0.7);
  will-change: transform;
}

/* scroll-spy active nav link */
.nav__links a { position: relative; }
.nav__links a.active { color: var(--text); }
.nav__links a.active::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 4px; height: 2px;
  border-radius: 2px; background: var(--grad-brand);
}

/* branded loader intro */
.loader {
  position: fixed; inset: 0; z-index: 999; display: grid; place-items: center; gap: 22px;
  grid-auto-flow: row; background: var(--bg);
  transition: opacity 0.6s var(--ease), visibility 0.6s;
}
.loader.done { opacity: 0; visibility: hidden; pointer-events: none; }
.loader.done .loader__logo, .loader.done .loader__bar span { animation: none; }
.loader__logo { width: 84px; filter: drop-shadow(0 10px 30px rgba(59,130,246,0.55)); animation: loader-pulse 1.4s var(--ease) infinite; }
@keyframes loader-pulse { 0%, 100% { transform: scale(0.92); opacity: 0.75; } 50% { transform: scale(1.04); opacity: 1; } }
.loader__bar { width: 140px; height: 4px; border-radius: 999px; background: rgba(255,255,255,0.1); overflow: hidden; }
.loader__bar span { display: block; height: 100%; width: 40%; border-radius: 999px; background: var(--grad-brand); animation: loader-slide 1.1s var(--ease) infinite; }
@keyframes loader-slide { 0% { transform: translateX(-120%); } 100% { transform: translateX(360%); } }

/* ─── Responsive ────────────────────────────── */
@media (max-width: 920px) {
  .hero { grid-template-columns: 1fr; text-align: center; }
  .hero__sub { margin-inline: auto; }
  .hero__cta, .hero__stats { justify-content: center; }
  .hero__visual { order: -1; min-height: 320px; }
  .pillars { grid-template-columns: 1fr; }
  .mods { grid-template-columns: repeat(2, 1fr); }
  .section--split { grid-template-columns: 1fr; }
  .section--reverse .split__text { order: 0; }
  .split__text .section__title, .split__text .eyebrow { text-align: center; display: block; }
  .split__text .section__lead { text-align: center; }
  .checklist { max-width: 360px; margin-inline: auto; }
  .split__text .btn { display: inline-flex; }
  .split__text { text-align: center; }
}

@media (max-width: 680px) {
  .nav__links {
    position: fixed; top: 68px; left: 12px; right: 12px;
    flex-direction: column; gap: 4px; padding: 14px;
    background: rgba(10,10,20,0.96); backdrop-filter: blur(18px);
    border: 1px solid var(--border-2); border-radius: var(--radius);
    transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: opacity 0.25s, transform 0.25s;
  }
  .nav__links.open { opacity: 1; transform: none; pointer-events: auto; }
  .nav__links a { padding: 12px 14px; }
  .nav__burger { display: flex; }
  .nav__actions .btn--ghost { display: none; }
  .hero__stats { gap: 16px; flex-wrap: wrap; }
  .mods { grid-template-columns: 1fr; }
  .footer__base { flex-direction: column; text-align: center; }
  .footer__inner { justify-content: center; text-align: center; }
}

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