/* ============================================================
   9BIT STUDIO — Glow Maze Escape Puzzle
   Palette drawn from the game: obsidian void, golden maze, cyan orb
   ============================================================ */

:root {
  --bg: #050508;
  --bg-soft: #0a0a12;
  --card: rgba(255, 255, 255, 0.03);
  --card-border: rgba(255, 255, 255, 0.08);
  --text: #eef0f6;
  --text-dim: #9aa0b4;
  --gold: #ffb347;
  --gold-hi: #ffd76a;
  --gold-deep: #ff8c00;
  --cyan: #35e6f0;
  --cyan-deep: #0fb8c4;
  --font-display: "Orbitron", sans-serif;
  --font-body: "Space Grotesk", sans-serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --nav-h: 72px;
}

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

html { scroll-behavior: smooth; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

::selection { background: var(--gold); color: #120a00; }

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

/* ---------- background canvas ---------- */
#orb-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}
#orb-canvas.is-interactive { pointer-events: auto; }

/* static fallback when WebGL / motion is unavailable */
.hero-fallback {
  position: fixed;
  inset: 0;
  z-index: 0;
  display: none;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.hero-fallback img {
  width: min(46vw, 380px);
  height: auto;
  filter: drop-shadow(0 0 80px rgba(255, 179, 71, 0.45));
}
body.no-webgl .hero-fallback { display: flex; }
body.no-webgl #orb-canvas { display: none; }
body.no-webgl .hero-fallback::before {
  content: "";
  position: absolute;
  width: 70vmin;
  height: 70vmin;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 179, 71, 0.14), transparent 65%);
}

/* ---------- preloader ---------- */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 22px;
  transition: opacity 0.6s var(--ease-out), visibility 0.6s;
}
.preloader.is-done { opacity: 0; visibility: hidden; }
.preloader-orb {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid transparent;
  border-top-color: var(--gold);
  border-right-color: var(--gold-deep);
  animation: spin 0.9s linear infinite;
  position: relative;
}
.preloader-orb::after {
  content: "";
  position: absolute;
  inset: 16px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 18px var(--cyan);
}
.preloader-text {
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.5em;
  color: var(--text-dim);
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- custom cursor (fine pointers only) ---------- */
.cursor-dot, .cursor-ring { display: none; }
@media (pointer: fine) {
  body.has-cursor { cursor: none; }
  body.has-cursor a, body.has-cursor button { cursor: none; }
  body.has-cursor .cursor-dot,
  body.has-cursor .cursor-ring {
    display: block;
    position: fixed;
    top: 0; left: 0;
    z-index: 99;
    pointer-events: none;
    border-radius: 50%;
    will-change: transform;
  }
  body.has-cursor .cursor-dot {
    width: 6px; height: 6px;
    background: var(--cyan);
    box-shadow: 0 0 10px var(--cyan);
  }
  body.has-cursor .cursor-ring {
    width: 34px; height: 34px;
    border: 1px solid rgba(255, 179, 71, 0.6);
    transition: width 0.25s var(--ease-out), height 0.25s var(--ease-out), border-color 0.25s;
  }
  body.has-cursor .cursor-ring.is-hover {
    width: 56px; height: 56px;
    border-color: var(--gold-hi);
  }
}

/* ---------- layout primitives ---------- */
.container {
  width: min(1140px, 92vw);
  margin-inline: auto;
}
.section {
  position: relative;
  z-index: 1;
  padding: clamp(90px, 14vh, 150px) 0;
}

.section-kicker {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.45em;
  color: var(--gold);
  margin-bottom: 18px;
  text-shadow: 0 2px 18px rgba(2, 2, 6, 0.85);
}
.section-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.9rem, 4.6vw, 3.4rem);
  line-height: 1.12;
  text-transform: uppercase;
  margin-bottom: 22px;
  text-shadow: 0 4px 28px rgba(2, 2, 6, 0.9);
}
.section-lede {
  color: var(--text-dim);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  max-width: 560px;
  margin-bottom: 48px;
  text-shadow: 0 2px 16px rgba(2, 2, 6, 0.85);
}

/* Gradient text: text-shadow would paint through the transparent glyphs
   and muddy the color — use drop-shadow on the element instead. */
.gradient-gold {
  background: linear-gradient(100deg, var(--gold-hi), var(--gold-deep));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: none;
  filter: drop-shadow(0 4px 22px rgba(2, 2, 6, 0.85));
}
.gradient-cyan {
  background: linear-gradient(100deg, #8ff5fb, var(--cyan-deep));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: none;
  filter: drop-shadow(0 4px 22px rgba(2, 2, 6, 0.85));
}

/* ---------- reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
  transition-delay: var(--d, 0s);
}
.reveal.is-in { opacity: 1; transform: none; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: 0;
  border-radius: 14px;
  padding: 14px 26px;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out), background 0.3s;
  will-change: transform;
}
.btn-primary {
  background: linear-gradient(120deg, var(--gold-hi), var(--gold-deep));
  color: #171000;
  box-shadow: 0 4px 26px rgba(255, 152, 0, 0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 34px rgba(255, 152, 0, 0.5);
}
.btn-play {
  background: linear-gradient(120deg, var(--gold-hi), var(--gold-deep));
  color: #171000;
  padding: 14px 30px;
  border-radius: 16px;
  box-shadow: 0 6px 32px rgba(255, 152, 0, 0.38);
}
.btn-play:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 44px rgba(255, 152, 0, 0.55);
}
.btn-play span { display: flex; flex-direction: column; line-height: 1.2; text-align: left; }
.btn-play small {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  opacity: 0.75;
}
.btn-ghost {
  background: transparent;
  color: var(--cyan);
  border: 1px solid rgba(53, 230, 240, 0.4);
}
.btn-ghost:hover {
  background: rgba(53, 230, 240, 0.08);
  transform: translateY(-2px);
}

/* ---------- nav ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  gap: 34px;
  padding-inline: clamp(18px, 4vw, 48px);
  transition: background 0.4s, backdrop-filter 0.4s, border-color 0.4s;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(6, 6, 12, 0.72);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom-color: var(--card-border);
}
.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.14em;
  margin-right: auto;
}
.nav-logo img { border-radius: 8px; }
.nav-logo em { font-style: normal; color: var(--gold); }
.nav-links { display: flex; gap: 30px; }
.nav-links a {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  position: relative;
  transition: color 0.3s;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, var(--gold-hi), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease-out);
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta { padding: 10px 20px; font-size: 0.88rem; }
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  padding: 8px;
}
.nav-burger span {
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s var(--ease-out), 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 {
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
}
.hero-inner {
  width: min(1140px, 92vw);
  margin-inline: auto;
}
.hero-kicker {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.5em;
  color: var(--cyan);
  margin-bottom: 20px;
  text-shadow: 0 2px 18px rgba(2, 2, 6, 0.85);
}
.hero-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(3rem, 10vw, 7.2rem);
  line-height: 0.98;
  letter-spacing: 0.02em;
  display: flex;
  flex-direction: column;
  text-shadow: 0 6px 40px rgba(2, 2, 6, 0.9);
}
.hero-title span { display: block; }
.hero-sub {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(0.9rem, 2vw, 1.3rem);
  letter-spacing: 0.65em;
  color: var(--text-dim);
  margin-top: 14px;
  text-transform: uppercase;
  text-shadow: 0 2px 16px rgba(2, 2, 6, 0.85);
}
.hero-tag {
  color: var(--text-dim);
  font-size: clamp(0.98rem, 1.6vw, 1.12rem);
  margin-top: 26px;
  text-shadow: 0 2px 16px rgba(2, 2, 6, 0.85);
}
.hero-cta {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.hero-qr {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-dim);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
}
.hero-qr img {
  border-radius: 10px;
  border: 1px solid var(--card-border);
  background: #fff;
  padding: 5px;
}
.hero-qr span { max-width: 60px; line-height: 1.35; }

.scroll-hint {
  position: absolute;
  left: 50%;
  bottom: 30px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0.55;
}
.scroll-hint-wheel {
  width: 22px;
  height: 36px;
  border: 1.5px solid var(--text-dim);
  border-radius: 12px;
  position: relative;
}
.scroll-hint-wheel::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 7px;
  width: 3px; height: 7px;
  border-radius: 2px;
  background: var(--gold);
  transform: translateX(-50%);
  animation: wheel 1.6s ease-in-out infinite;
}
.scroll-hint-label {
  font-size: 0.65rem;
  letter-spacing: 0.4em;
  color: var(--text-dim);
  text-transform: uppercase;
}
@keyframes wheel {
  0%, 100% { transform: translate(-50%, 0); opacity: 1; }
  70% { transform: translate(-50%, 12px); opacity: 0; }
}

/* ---------- cards ---------- */
.card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 30px 28px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--ease-out), border-color 0.4s, box-shadow 0.4s;
}
.card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(140deg, rgba(255, 179, 71, 0.35), transparent 40%, transparent 65%, rgba(53, 230, 240, 0.25));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.5);
}
.card:hover::before { opacity: 1; }
.card h3 {
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}
.card p { color: var(--text-dim); font-size: 0.95rem; }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
}

/* feature glyphs — pure CSS neon marks */
.card-glyph {
  width: 46px; height: 46px;
  margin-bottom: 20px;
  border-radius: 12px;
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--card-border);
}
.card-glyph::before, .card-glyph::after {
  content: "";
  position: absolute;
}
.glyph-maze::before {
  inset: 10px;
  border: 2px solid var(--gold);
  border-right-color: transparent;
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(255, 179, 71, 0.6);
}
.glyph-maze::after {
  inset: 19px;
  background: var(--cyan);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--cyan);
}
.glyph-clock::before {
  inset: 9px;
  border: 2px solid var(--cyan);
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(53, 230, 240, 0.5);
}
.glyph-clock::after {
  left: 21px; top: 14px;
  width: 2px; height: 10px;
  background: var(--gold-hi);
  transform-origin: bottom;
  transform: rotate(40deg);
}
.glyph-moves::before {
  left: 10px; top: 21px;
  width: 26px; height: 2px;
  background: linear-gradient(90deg, var(--gold-hi), var(--gold-deep));
  box-shadow: 0 0 10px rgba(255, 179, 71, 0.7);
}
.glyph-moves::after {
  right: 9px; top: 16px;
  width: 10px; height: 10px;
  border-top: 2px solid var(--gold-hi);
  border-right: 2px solid var(--gold-hi);
  transform: rotate(45deg);
}
.glyph-spark::before {
  inset: 13px;
  background: linear-gradient(140deg, var(--gold-hi), var(--gold-deep));
  clip-path: polygon(50% 0%, 63% 37%, 100% 50%, 63% 63%, 50% 100%, 37% 63%, 0% 50%, 37% 37%);
  filter: drop-shadow(0 0 8px rgba(255, 179, 71, 0.8));
}

/* ---------- screenshots ---------- */
.shots-layout {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: clamp(40px, 7vw, 100px);
  align-items: center;
}
.shots-nav { display: flex; gap: 12px; margin-bottom: 20px; }
.shot-dot {
  width: 34px; height: 5px;
  border-radius: 3px;
  border: 0;
  background: rgba(255, 255, 255, 0.14);
  cursor: pointer;
  transition: background 0.35s;
  padding: 0;
}
.shot-dot.is-active {
  background: linear-gradient(90deg, var(--gold-hi), var(--gold-deep));
  box-shadow: 0 0 12px rgba(255, 179, 71, 0.6);
}
.shot-caption {
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  color: var(--cyan);
  text-transform: uppercase;
  min-height: 2.4em;
}

.phone {
  width: clamp(230px, 24vw, 300px);
  border-radius: 38px;
  border: 2px solid rgba(255, 255, 255, 0.12);
  background: #0b0b12;
  padding: 10px;
  position: relative;
  box-shadow:
    0 0 0 5px rgba(10, 10, 18, 0.9),
    0 30px 80px rgba(0, 0, 0, 0.65),
    0 0 90px rgba(255, 165, 0, 0.12);
  transition: transform 0.5s var(--ease-out);
}
.phone:hover { transform: rotate(-1.5deg) translateY(-6px); }
.phone-screen {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16; /* matches the Play Store captures exactly — no cropping */
  border-radius: 28px;
  overflow: hidden;
  background: #000;
}
.phone-screen .shot {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: contain;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}
.phone-screen .shot.is-active { opacity: 1; transform: none; }

/* ---------- lab ---------- */
.lab-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 22px;
}
.lab-card h3 {
  letter-spacing: 0.12em;
  margin-top: 16px;
}
.lab-status {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--cyan);
  border: 1px solid rgba(53, 230, 240, 0.35);
  border-radius: 999px;
  padding: 5px 12px;
}
.lab-bar {
  margin-top: 22px;
  height: 4px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.07);
  overflow: hidden;
}
.lab-bar span {
  display: block;
  height: 100%;
  width: var(--p, 20%);
  border-radius: inherit;
  background: linear-gradient(90deg, var(--cyan-deep), var(--gold-hi));
  box-shadow: 0 0 12px rgba(255, 179, 71, 0.5);
}

/* ---------- about ---------- */
.about-layout {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
.about-stats {
  list-style: none;
  display: grid;
  gap: 18px;
}
.about-stats li {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 20px 24px;
  display: flex;
  align-items: baseline;
  gap: 16px;
}
.about-stats strong {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 900;
  background: linear-gradient(120deg, var(--gold-hi), var(--gold-deep));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.about-stats span { color: var(--text-dim); font-size: 0.92rem; }

/* ---------- outro ---------- */
.outro { text-align: center; padding-bottom: 140px; }
.outro-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
}
.outro-icon {
  border-radius: 24px;
  box-shadow: 0 0 60px rgba(255, 165, 0, 0.35);
}

/* ---------- footer ---------- */
.footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--card-border);
  background: rgba(5, 5, 8, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 34px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.footer-links {
  display: flex;
  gap: 24px;
  margin-inline: auto;
}
.footer-links a {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--gold-hi); }
.footer-copy { color: var(--text-dim); font-size: 0.8rem; }

/* ---------- static pages (privacy / 404) ---------- */
.page {
  position: relative;
  z-index: 1;
  width: min(760px, 92vw);
  margin-inline: auto;
  padding: calc(var(--nav-h) + 60px) 0 100px;
}
.page h1 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  margin-bottom: 10px;
}
.page h2 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.05em;
  margin: 36px 0 12px;
  color: var(--gold-hi);
}
.page p, .page li { color: var(--text-dim); }
.page ul { padding-left: 22px; margin: 10px 0; }
.page a { color: var(--cyan); }
.page-updated { font-size: 0.85rem; margin-bottom: 30px; }

.err-wrap {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 20px;
  position: relative;
  z-index: 1;
  padding: 20px;
}
.err-code {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(5rem, 18vw, 10rem);
  line-height: 1;
  background: linear-gradient(120deg, var(--gold-hi), var(--gold-deep));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 80px rgba(255, 165, 0, 0.25);
}

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .shots-layout { grid-template-columns: 1fr; }
  .phone { margin-inline: auto; }
  .about-layout { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .section { padding: 72px 0; }
  .section-lede { margin-bottom: 34px; }
  .hero { padding-top: calc(var(--nav-h) + 10px); }
  .hero-cta { gap: 18px; margin-top: 32px; }
  .feature-grid, .lab-grid { gap: 16px; }
  .card { padding: 24px 20px; }
  .phone { width: min(78vw, 280px); }
  .footer-inner { justify-content: center; text-align: center; }
  .nav { gap: 18px; }
  .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .nav-links {
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 18px 0 26px;
    background: rgba(6, 6, 12, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--card-border);
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.35s var(--ease-out), opacity 0.35s, visibility 0.35s;
  }
  .nav-links.is-open {
    transform: none;
    opacity: 1;
    visibility: visible;
  }
  .nav-links a { padding: 10px 0; font-size: 1.05rem; }
  .hero-qr { display: none; }
  .scroll-hint { display: none; }
}

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