/* ============================================================
   MIRECLIENT landing v2 — deep mire
   hitam-hijau lumut + cyan + amber · canvas partikel · spotlight card
   ============================================================ */

:root {
  --bg: #080C09;
  --bg2: #0B110D;
  --panel: #101711;
  --line: rgba(150, 220, 170, 0.12);
  --line2: rgba(150, 220, 170, 0.26);
  --text: #E4EEE5;
  --muted: #93A496;
  --cyan: #40E8D6;
  --cyan-soft: rgba(64, 232, 214, 0.12);
  --amber: #F0B44C;
  --red: #FF7A66;
  --green: #5FE88A;
  --r-lg: 18px;
  --r-md: 12px;
  --fd: "Chakra Petch", sans-serif;
  --fm: "JetBrains Mono", monospace;
  --fb: "Space Grotesk", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--fb);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

::selection { background: var(--cyan); color: #04120E; }

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #1C2A1F; border-radius: 8px; border: 2px solid var(--bg); }
::-webkit-scrollbar-thumb:hover { background: #2A3E30; }

canvas#bgfx {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.wrap { max-width: 1180px; margin-inline: auto; padding-inline: clamp(20px, 4vw, 48px); position: relative; z-index: 1; }
main { position: relative; z-index: 1; }

h1, h2, h3 { font-family: var(--fd); letter-spacing: -0.015em; }
.h-display { font-weight: 700; line-height: 1.02; }

kbd {
  font-family: var(--fm); font-size: 13px;
  border: 1px solid var(--line2); border-bottom-width: 3px;
  border-radius: 8px; padding: 3px 12px;
  color: var(--cyan); background: #101811;
}

code { font-family: var(--fm); font-size: 0.9em; color: var(--cyan); }

/* ================= NAV ================= */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: 68px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px;
  padding-inline: clamp(20px, 4vw, 48px);
  background: rgba(8, 12, 9, 0.55);
  backdrop-filter: blur(16px) saturate(1.3);
  -webkit-backdrop-filter: blur(16px) saturate(1.3);
  border-bottom: 1px solid rgba(150, 220, 170, 0.08);
  transition: background .3s;
}
.nav.scrolled { background: rgba(8, 12, 9, 0.85); border-bottom-color: rgba(150, 220, 170, 0.14); }

.brand { display: flex; align-items: center; gap: 11px; text-decoration: none; }
.brand-word {
  font-family: var(--fd); font-weight: 700; font-size: 17px;
  letter-spacing: 0.09em; color: var(--text);
}
.nav-links { display: flex; gap: clamp(14px, 2.6vw, 34px); }
.nav-links a {
  color: var(--muted); text-decoration: none; font-size: 14px;
  font-family: var(--fb); font-weight: 500;
  position: relative; transition: color .18s;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -6px;
  width: 0; height: 2px; background: var(--cyan); border-radius: 2px;
  transition: width .25s cubic-bezier(.16,1,.3,1);
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { width: 100%; }

.nav-right { display: flex; align-items: center; gap: 14px; }

.lang {
  display: flex; gap: 3px;
  background: #121A13; border: 1px solid var(--line);
  border-radius: 999px; padding: 3px;
}
.lang-btn {
  font-family: var(--fm); font-size: 11.5px; font-weight: 700;
  padding: 5px 13px; border-radius: 999px; border: none;
  background: transparent; color: var(--muted); cursor: pointer;
  transition: all .18s;
}
.lang-btn:hover { color: var(--text); }
.lang-btn.on { background: var(--cyan); color: #04120E; }

.btn-nav {
  font-family: var(--fd); font-weight: 600; font-size: 14px;
  color: #04120E; text-decoration: none;
  background: var(--cyan);
  padding: 8px 20px; border-radius: 10px;
  transition: transform .18s cubic-bezier(.16,1,.3,1), background .18s;
}
.btn-nav:hover { background: #67F2E2; transform: translateY(-1px); }

/* ================= HERO ================= */
.hero {
  min-height: 100dvh;
  display: flex; align-items: center;
  position: relative;
  padding-top: 90px;
}
.hero-inner {
  max-width: 1280px;
  margin-inline: auto;
  width: 100%;
  padding: 24px clamp(20px, 4vw, 48px) 60px;
  display: grid;
  grid-template-columns: minmax(0, 6.4fr) minmax(0, 5.2fr);
  gap: clamp(36px, 6vw, 90px);
  align-items: center;
}

.eyebrow {
  font-family: var(--fm); font-size: 11.5px; font-weight: 500;
  letter-spacing: 0.22em; color: var(--amber);
  margin-bottom: 26px;
  display: inline-flex; align-items: center; gap: 10px;
}
.eyebrow::before {
  content: ""; width: 22px; height: 1px;
  background: linear-gradient(90deg, var(--amber), transparent);
}

.hero h1 {
  font-size: clamp(52px, 7.2vw, 104px);
  line-height: 0.95;
  font-weight: 700;
}
.hero h1 .line { display: block; overflow: hidden; }
.hero h1 .line > * { animation: none; }
.line-accent {
  color: transparent;
  -webkit-text-stroke: 2px var(--cyan);
  text-shadow: 0 0 42px rgba(64, 232, 214, 0.28);
}

.hero-sub {
  margin-top: 28px;
  max-width: 50ch;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.cta-row { margin-top: 38px; display: flex; gap: 15px; flex-wrap: wrap; align-items: center; }

.btn-primary {
  display: inline-flex; align-items: center; gap: 11px;
  font-family: var(--fd); font-weight: 700; font-size: 16px;
  color: #04120E; text-decoration: none;
  background: var(--cyan);
  padding: 16px 30px;
  border-radius: 14px;
  position: relative; overflow: hidden;
  transition: transform .2s cubic-bezier(.16,1,.3,1), box-shadow .2s;
  box-shadow: 0 8px 32px -8px rgba(64, 232, 214, 0.45);
}
.btn-primary small { font-family: var(--fm); font-size: 11px; font-weight: 400; opacity: 0.72; }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 14px 44px -10px rgba(64, 232, 214, 0.55); }
.btn-primary:active { transform: translateY(-1px) scale(0.985); }
.shine::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.35) 50%, transparent 60%);
  transform: translateX(-120%);
  animation: sweep 3.6s ease-in-out infinite;
}
@keyframes sweep { 0%, 60% { transform: translateX(-120%); } 85%, 100% { transform: translateX(120%); } }

.btn-outline {
  display: inline-flex; align-items: center;
  font-family: var(--fd); font-weight: 600; font-size: 15px;
  color: var(--text); text-decoration: none;
  border: 1px solid var(--line2);
  padding: 15px 28px; border-radius: 14px;
  backdrop-filter: blur(6px);
  transition: all .2s cubic-bezier(.16,1,.3,1);
}
.btn-outline:hover { border-color: var(--cyan); color: var(--cyan); transform: translateY(-3px); background: var(--cyan-soft); }
.btn-outline.big, .btn-primary.big { padding: 18px 34px; font-size: 17px; }

/* ---------- stage / gui demo ---------- */
.stage { perspective: 1400px; position: relative; }
.gui-glow {
  position: absolute; inset: -12%;
  background: radial-gradient(closest-side, rgba(64,232,214,0.14), transparent 70%);
  filter: blur(30px);
  z-index: 0;
  animation: glow-breathe 5s ease-in-out infinite;
}
@keyframes glow-breathe { 0%,100% { opacity: .6; } 50% { opacity: 1; } }

.tilt {
  position: relative; z-index: 1;
  transform-style: preserve-3d;
  transition: transform .45s cubic-bezier(.16,1,.3,1);
  will-change: transform;
}

.gui-demo {
  background: linear-gradient(165deg, rgba(23, 33, 25, 0.92), rgba(13, 19, 15, 0.94));
  border: 1px solid rgba(150, 220, 170, 0.22);
  border-radius: 20px;
  padding: 18px;
  box-shadow:
    0 40px 90px -30px rgba(0, 0, 0, 0.85),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
}

.gui-head {
  display: flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--fd); font-weight: 700; font-size: 13.5px;
  letter-spacing: 0.14em; color: var(--amber);
  padding-bottom: 15px;
  border-bottom: 1px dashed rgba(150, 220, 170, 0.15);
  margin-bottom: 13px;
}
.gui-dot { width: 7px; height: 7px; background: var(--amber); clip-path: polygon(50% 0, 100% 100%, 0 100%); }
.gui-ver { margin-left: auto; font-family: var(--fm); font-size: 10px; color: var(--muted); letter-spacing: 0; }

.gui-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }

.gbtn {
  font-family: var(--fd); font-weight: 600; font-size: 13px;
  padding: 11px 8px; border-radius: 10px;
  cursor: pointer; border: 1px solid transparent;
  transition: transform .14s cubic-bezier(.16,1,.3,1), background .14s, box-shadow .14s;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.gbtn:hover { transform: translateY(-2px) scale(1.02); }
.gbtn:active { transform: scale(0.96); }
.gbtn.on {
  background: rgba(95, 232, 138, 0.12); color: var(--green);
  border-color: rgba(95, 232, 138, 0.4);
  box-shadow: inset 0 0 18px rgba(95, 232, 138, 0.07), 0 0 14px -4px rgba(95, 232, 138, 0.35);
}
.gbtn.off {
  background: rgba(255, 122, 102, 0.09); color: var(--red);
  border-color: rgba(255, 122, 102, 0.35);
}
.gbtn.act {
  background: rgba(64, 232, 214, 0.1); color: var(--cyan);
  border-color: rgba(64, 232, 214, 0.38);
}

.gui-back {
  margin-top: 10px; width: 42%; margin-inline: auto;
  display: block;
  font-family: var(--fd); font-weight: 600; font-size: 12.5px;
  padding: 9px; border-radius: 10px; cursor: pointer;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line2);
  color: var(--muted);
  transition: all .16s;
}
.gui-back:hover { color: var(--text); border-color: var(--cyan); }

.stage-hint {
  text-align: center; margin-top: 18px;
  font-family: var(--fm); font-size: 11.5px; color: var(--muted);
  opacity: 0.8;
}

.ver-badge {
  margin-top: 24px;
  font-family: var(--fm); font-size: 12px;
  color: var(--cyan); opacity: 0.85;
  letter-spacing: 0.03em;
}
.hero-fade {
  position: absolute; bottom: 0; left: 0; right: 0; height: 120px;
  background: linear-gradient(transparent, var(--bg));
  pointer-events: none;
}

/* ================= STATS BAR ================= */
.stats-bar {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding-block: 56px 40px;
  border-top: 1px solid var(--line);
}
.stat b {
  font-family: var(--fd); font-weight: 700;
  font-size: clamp(40px, 5vw, 62px); line-height: 1;
  color: var(--cyan); display: block;
}
.stat b[data-suffix]::after { content: attr(data-suffix); }
.stat span { color: var(--muted); font-size: 13px; letter-spacing: 0.03em; display: block; margin-top: 8px; }

/* ================= SECTION HEADS ================= */
section { padding-block: clamp(70px, 9vh, 120px); position: relative; }

.sec-tag {
  font-family: var(--fm); font-size: 11.5px; letter-spacing: 0.24em;
  color: var(--amber); margin-bottom: 20px;
}
.sec-head h2 { font-size: clamp(36px, 4.8vw, 62px); }
.sec-sub { margin-top: 20px; color: var(--muted); max-width: 54ch; font-size: 16px; }

/* ================= BENTO FITUR ================= */
.bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 56px;
}
.bcard {
  position: relative;
  background: linear-gradient(170deg, rgba(21, 31, 24, 0.72), rgba(13, 19, 15, 0.85));
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px 26px;
  min-height: 210px;
  display: flex; flex-direction: column;
  overflow: hidden;
  transition: border-color .25s, transform .25s cubic-bezier(.16,1,.3,1);
}
.bcard::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(480px circle at var(--mx, 50%) var(--my, 50%), rgba(64, 232, 214, 0.09), transparent 45%);
  opacity: 0; transition: opacity .3s;
  pointer-events: none;
}
.bcard:hover { border-color: rgba(64, 232, 214, 0.35); transform: translateY(-4px); }
.bcard:hover::before { opacity: 1; }
.bcard.wide { grid-column: span 2; grid-row: span 1; }

.bnum {
  font-family: var(--fm); font-size: 11px; color: var(--muted);
  opacity: 0.55; margin-bottom: auto;
}
.bcard h3 { font-size: 19px; font-weight: 600; margin: 18px 0 9px; }
.bcard p { color: var(--muted); font-size: 13.5px; line-height: 1.7; }

.mini-outline { margin-top: 22px; display: flex; gap: 10px; }
.mini-outline span {
  width: 46px; height: 46px;
  border: 2px solid var(--cyan);
  border-radius: 9px;
  box-shadow: 0 0 16px -3px rgba(64, 232, 214, 0.5);
}
.mini-outline span:nth-child(2) { border-color: var(--amber); box-shadow: 0 0 16px -3px rgba(240, 180, 76, 0.5); transform: rotate(6deg); }
.mini-outline span:nth-child(3) { border-color: var(--green); box-shadow: 0 0 16px -3px rgba(95, 232, 138, 0.5); transform: rotate(-4deg); }

/* ================= MODS ================= */
.mod-groups { display: flex; flex-direction: column; gap: 26px; margin-top: 52px; }
.mg-title {
  font-family: var(--fm); font-size: 11px; letter-spacing: 0.22em;
  color: var(--cyan); margin-bottom: 14px;
  display: flex; align-items: center; gap: 12px;
}
.mg-title::after { content: ""; flex: 1; height: 1px; background: var(--line); }
.chips { display: flex; flex-wrap: wrap; gap: 9px; }
.chips span {
  font-family: var(--fm); font-size: 13px;
  color: var(--text);
  background: rgba(21, 31, 24, 0.7);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 18px;
  transition: all .18s;
  cursor: default;
}
.chips span:hover {
  border-color: var(--cyan); color: var(--cyan);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px -8px rgba(64, 232, 214, 0.4);
}

.mods-note {
  margin-top: 30px; font-family: var(--fm);
  font-size: 12px; color: var(--muted); opacity: 0.7;
}

/* ================= DOWNLOAD PANEL ================= */
.dl-card {
  border: 1px solid rgba(64, 232, 214, 0.3);
  border-radius: 24px;
  padding: clamp(32px, 5vw, 56px);
  display: grid; grid-template-columns: 1.5fr 1fr;
  gap: 44px;
  background:
    radial-gradient(700px 340px at 12% 0%, rgba(64, 232, 214, 0.09), transparent),
    radial-gradient(500px 300px at 95% 100%, rgba(240, 180, 76, 0.06), transparent),
    var(--panel);
  position: relative; overflow: hidden;
}
.dl-version { font-family: var(--fm); font-size: 12px; letter-spacing: 0.2em; color: var(--cyan); margin-bottom: 20px; }
.dl-left h2 { font-size: clamp(32px, 4vw, 52px); }

.dl-meta {
  display: flex; flex-direction: column; justify-content: center;
  gap: 13px;
  border-left: 1px solid var(--line);
  padding-left: clamp(24px, 3vw, 48px);
}
.dl-meta div {
  display: flex; justify-content: space-between; align-items: baseline;
  font-size: 13.5px;
  border-bottom: 1px dashed rgba(150, 220, 170, 0.12);
  padding-bottom: 11px;
}
.dl-meta div:last-child { border-bottom: none; padding-bottom: 0; }
.dl-meta span { color: var(--muted); }
.dl-meta b { font-family: var(--fd); font-size: 15px; }
.dl-meta .free { color: var(--green); }


/* version picker */
.dl-pick {
  font-family: var(--fm); font-size: 12px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--muted);
  margin: 26px 0 14px;
}
.ver-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}
.ver-btn {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  font-family: var(--fd); font-weight: 700; font-size: 17px;
  color: var(--text); text-decoration: none;
  background: rgba(21, 31, 24, 0.6);
  border: 1px solid var(--line2);
  border-radius: 14px;
  padding: 16px 8px;
  transition: all .18s cubic-bezier(.16,1,.3,1);
}
.ver-btn span {
  font-family: var(--fm); font-size: 10px; font-weight: 400;
  color: var(--muted); letter-spacing: 0.08em;
}
.ver-btn:hover {
  border-color: var(--cyan); color: var(--cyan);
  transform: translateY(-3px);
  box-shadow: 0 10px 28px -10px rgba(64, 232, 214, 0.45);
  background: var(--cyan-soft);
}
.ver-btn.rec {
  border-color: var(--cyan);
  background: var(--cyan-soft);
  color: var(--cyan);
}
.ver-btn.rec span { color: var(--cyan); }
@media (max-width: 640px) {
  .ver-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ================= INSTALL ================= */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.step {
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px;
  background: linear-gradient(175deg, rgba(21, 31, 24, 0.5), rgba(11, 17, 13, 0.9));
  display: flex; flex-direction: column; gap: 20px;
  transition: border-color .25s, transform .25s cubic-bezier(.16,1,.3,1);
}
.step:hover { border-color: rgba(64, 232, 214, 0.3); transform: translateY(-4px); }
.s-num {
  font-family: var(--fd); font-weight: 700; font-size: 14px;
  color: var(--amber); letter-spacing: 0.2em;
}
.step p:not(.s-num) { color: var(--muted); font-size: 13.5px; line-height: 1.7; }

.term {
  background: #060A07;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 15px 17px;
  font-family: var(--fm); font-size: 12px;
  min-height: 50px;
  display: flex; gap: 10px; align-items: baseline;
}
.tp { color: var(--green); user-select: none; }
.tcmd { color: var(--text); word-break: break-word; }
.tcmd.done::after { content: "▌"; color: var(--cyan); animation: blink 1s step-end infinite; margin-left: 2px; }
@keyframes blink { 50% { opacity: 0; } }

.keycaps { min-height: 50px; display: flex; align-items: center; }
.keycaps kbd { font-size: 17px; padding: 12px 24px; box-shadow: 0 6px 0 -2px #060A07, 0 0 24px -6px rgba(64,232,214,.35); }

/* ================= FAQ ================= */
.faq details { border-top: 1px solid var(--line); }
.faq details:last-of-type { border-bottom: 1px solid var(--line); }
.faq summary {
  list-style: none; cursor: pointer;
  padding: 24px 6px;
  font-family: var(--fd); font-weight: 600; font-size: 17px;
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  transition: color .16s;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; font-family: var(--fm); font-weight: 400;
  color: var(--cyan); font-size: 22px; line-height: 1;
  flex-shrink: 0;
  transition: transform .25s cubic-bezier(.16,1,.3,1);
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq summary:hover { color: var(--cyan); }
.faq details p { padding: 0 6px 26px; color: var(--muted); max-width: 70ch; }

/* ================= FOOTER ================= */

/* developer card */
.dev-card {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 34px 38px 0;
  margin-bottom: 52px;
  background:
    radial-gradient(500px 260px at 80% 100%, rgba(64, 232, 214, 0.10), transparent),
    linear-gradient(170deg, rgba(21, 31, 24, 0.6), rgba(11, 17, 13, 0.9));
  overflow: hidden;
}
.dev-renders {
  display: flex;
  align-items: flex-end;
}
.dev-renders img {
  display: block;
  height: 260px;
  filter: drop-shadow(0 0 26px rgba(64, 232, 214, 0.22));
  transition: transform .3s cubic-bezier(.16,1,.3,1);
}
.dev-renders img:hover { transform: translateY(-10px); }
.dev-info { text-align: right; padding-bottom: 34px; }
.dev-label {
  font-family: var(--fm); font-size: 11px; letter-spacing: 0.24em;
  color: var(--amber); margin-bottom: 10px;
}
.dev-name {
  font-family: var(--fd); font-weight: 700; font-size: clamp(28px, 3.4vw, 44px);
  color: var(--text); line-height: 1;
}
@media (max-width: 640px) {
  .dev-card { flex-direction: column; align-items: center; padding-top: 28px; }
  .dev-renders img { height: 170px; }
  .dev-info { text-align: center; padding-bottom: 10px; }
}

/* footer top */
.footer {
  border-top: 1px solid var(--line);
  background: linear-gradient(var(--bg2), var(--bg));
  padding-block: 60px 34px;
  position: relative; z-index: 1;
}
.foot-top {
  display: flex; justify-content: space-between; gap: 32px; flex-wrap: wrap;
  padding-bottom: 40px;
}
.brand-foot { font-family: var(--fd); font-weight: 700; font-size: 22px; letter-spacing: 0.1em; }
.foot-tag { color: var(--muted); font-size: 13.5px; margin-top: 8px; }
.foot-links { display: flex; gap: 28px; align-items: center; }
.foot-links a { color: var(--muted); text-decoration: none; font-size: 14px; transition: color .16s; }
.foot-links a:hover { color: var(--cyan); }
.foot-legal {
  padding-top: 26px; border-top: 1px solid var(--line);
  font-size: 12px; color: var(--muted); opacity: 0.65;
}

/* ================= REVEAL ================= */
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity .8s cubic-bezier(.16,1,.3,1), transform .8s cubic-bezier(.16,1,.3,1);
}
.reveal.in { opacity: 1; transform: none; }

/* hero load-in */
.hero-copy > * , .stage {
  opacity: 0; transform: translateY(24px);
  animation: rise .9s cubic-bezier(.16,1,.3,1) forwards;
}
.hero-copy .eyebrow { animation-delay: .05s; }
.hero-copy h1 { animation-delay: .15s; }
.hero-copy .hero-sub { animation-delay: .3s; }
.hero-copy .cta-row { animation-delay: .42s; }
.hero-copy .hero-note { animation-delay: .55s; }
.stage { animation-delay: .35s; }
@keyframes rise { to { opacity: 1; transform: none; } }

/* ================= RESPONSIVE ================= */
@media (max-width: 1020px) {
  .hero-inner { grid-template-columns: 1fr; padding-top: 40px; }
  .hero { min-height: unset; }
  .gui-demo { max-width: 520px; }
  .bento { grid-template-columns: repeat(2, 1fr); }
  .dl-card { grid-template-columns: 1fr; gap: 30px; }
  .dl-meta { border-left: none; padding-left: 0; border-top: 1px solid var(--line); padding-top: 26px; }
  .steps { grid-template-columns: 1fr; }
  .nav-links { display: none; }
}
@media (max-width: 640px) {
  .bento { grid-template-columns: 1fr; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); gap: 34px 16px; }
  .lang { order: 1; }
  .btn-nav { padding: 7px 14px; font-size: 13px; }
}

/* ================= REDUCED MOTION ================= */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  canvas#bgfx { display: none; }
  .shine::before { animation: none; }
  .gui-glow { animation: none; }
  .reveal, .hero-copy > *, .stage { opacity: 1 !important; transform: none !important; animation: none !important; }
  .tilt { transition: none; }
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
