/* ===================================================
   MINDBASE — Download Page  |  style.css
   =================================================== */

/* --- Reset & variables --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:        #080b14;
  --bg-2:      #0d1120;
  --bg-card:   rgba(255,255,255,.04);
  --border:    rgba(255,255,255,.08);
  --border-hl: rgba(0,212,255,.3);
  --accent:    #00d4ff;
  --accent-2:  #7c3aed;
  --accent-g:  linear-gradient(135deg, #00d4ff, #7c3aed);
  --text:      #e8eaf6;
  --text-dim:  #7a8ba4;
  --text-mute: #3d4f66;
  --win-blue:  #0078d4;
  --mac-gray:  #636366;
  --radius:    14px;
  --radius-sm: 8px;
  --shadow:    0 24px 64px rgba(0,0,0,.6);
  --font:      'Segoe UI', 'SF Pro Display', system-ui, sans-serif;
  --mono:      'Cascadia Code', 'Fira Code', 'Consolas', monospace;
}

html { scroll-behavior: smooth; }

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

/* --- Canvas particules --- */
#particles-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: .5;
}

/* --- Utilitaires --- */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }

.gradient-text {
  background: var(--accent-g);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(0,212,255,.1);
  border: 1px solid rgba(0,212,255,.2);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -.02em;
}

.section-header p {
  color: var(--text-dim);
  max-width: 560px;
  margin: 0 auto;
  font-size: 1.05rem;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: .95rem;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all .2s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent-g);
  color: #fff;
  box-shadow: 0 0 30px rgba(0,212,255,.25);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 0 50px rgba(0,212,255,.4); }

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); background: rgba(0,212,255,.05); }

.btn-nav {
  background: rgba(0,212,255,.12);
  color: var(--accent);
  border: 1px solid rgba(0,212,255,.25);
  padding: 8px 18px;
  font-size: .88rem;
}
.btn-nav:hover { background: rgba(0,212,255,.22); }

.btn-download {
  width: 100%;
  justify-content: center;
  padding: 15px;
  font-size: 1rem;
  border-radius: var(--radius-sm);
  background: var(--accent-g);
  color: #fff;
  box-shadow: 0 0 24px rgba(0,212,255,.2);
  margin-bottom: 4px;
}
.btn-download:hover { transform: translateY(-2px); box-shadow: 0 0 40px rgba(0,212,255,.35); }

.btn-macos {
  background: linear-gradient(135deg, #636366, #3a3a3c);
  box-shadow: 0 0 24px rgba(99,99,102,.2);
}
.btn-macos:hover { box-shadow: 0 0 40px rgba(99,99,102,.35); }

/* ===================================================
   NAVBAR
   =================================================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  transition: background .3s, backdrop-filter .3s, border-bottom .3s;
}

.navbar.scrolled {
  background: rgba(8,11,20,.85);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: .02em;
}

.logo-icon {
  font-size: 1.5rem;
  color: var(--accent);
  filter: drop-shadow(0 0 8px var(--accent));
}

.logo-text .accent { color: var(--accent); }

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
  margin-left: auto;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-dim);
  font-size: .9rem;
  transition: color .2s;
}
.nav-links a:hover { color: var(--text); }

/* ===================================================
   HERO
   =================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  padding: 120px 24px 80px;
  max-width: 1160px;
  margin: 0 auto;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: -1;
}
.hero-glow-left  { background: rgba(0,212,255,.12); top: 10%; left: -10%; }
.hero-glow-right { background: rgba(124,58,237,.1); bottom: 10%; right: -10%; }

.hero-content { z-index: 1; }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,212,255,.08);
  border: 1px solid rgba(0,212,255,.2);
  color: var(--accent);
  font-size: .82rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 24px;
}

.badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: .3; }
}

.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -.03em;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-dim);
  max-width: 480px;
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.hero-meta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  font-size: .82rem;
  color: var(--text-dim);
}
.hero-meta span { display: flex; align-items: center; gap: 6px; }

/* App Window mockup */
.hero-visual { z-index: 1; }

.app-window {
  background: rgba(13,17,32,.9);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow), 0 0 80px rgba(0,212,255,.06);
  overflow: hidden;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.window-titlebar {
  background: rgba(255,255,255,.04);
  border-bottom: 1px solid var(--border);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.dot {
  width: 12px; height: 12px;
  border-radius: 50%;
}
.dot.red    { background: #ff5f57; }
.dot.yellow { background: #ffbd2e; }
.dot.green  { background: #28c840; }

.window-title {
  flex: 1;
  text-align: center;
  font-size: .78rem;
  color: var(--text-mute);
}

.window-body { display: flex; height: 280px; }

.sidebar {
  width: 180px;
  background: rgba(0,0,0,.2);
  border-right: 1px solid var(--border);
  padding: 12px 8px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.sidebar-item {
  font-size: .78rem;
  padding: 7px 10px;
  border-radius: 6px;
  color: var(--text-dim);
  cursor: pointer;
  transition: background .15s, color .15s;
}

.sidebar-item.active {
  background: rgba(0,212,255,.12);
  color: var(--accent);
}

.sidebar-item:not(.active):hover {
  background: rgba(255,255,255,.04);
  color: var(--text);
}

.editor { flex: 1; padding: 16px; overflow: hidden; }

.editor-header { margin-bottom: 12px; }

.editor-breadcrumb {
  font-size: .72rem;
  color: var(--text-mute);
}

.editor-line {
  font-family: var(--mono);
  font-size: .78rem;
  color: var(--text);
  padding: 2px 0;
  min-height: 20px;
}
.editor-line.dim { color: var(--text-mute); }
.editor-line.title-line { color: var(--accent); font-size: .88rem; font-weight: 700; }

.cursor-blink {
  color: var(--accent);
  animation: blink .8s step-end infinite;
}
@keyframes blink { 50% { opacity: 0; } }

.tag-line { display: flex; gap: 6px; margin-top: 6px; }

.tag {
  font-family: var(--mono);
  font-size: .68rem;
  background: rgba(0,212,255,.1);
  color: var(--accent);
  border: 1px solid rgba(0,212,255,.2);
  border-radius: 4px;
  padding: 2px 7px;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: .72rem;
  color: var(--text-mute);
  letter-spacing: .1em;
  text-transform: uppercase;
  grid-column: 1 / -1;
}

.scroll-arrow {
  width: 20px; height: 20px;
  border-right: 2px solid var(--text-mute);
  border-bottom: 2px solid var(--text-mute);
  transform: rotate(45deg);
  animation: bounce-arrow 1.6s ease-in-out infinite;
}
@keyframes bounce-arrow {
  0%, 100% { transform: rotate(45deg) translateY(0); opacity: .8; }
  50%       { transform: rotate(45deg) translateY(6px); opacity: .3; }
}

/* ===================================================
   STATS BAND
   =================================================== */
.stats-band {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,.015);
  padding: 40px 0;
}

.stats-band .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.stat {
  flex: 1;
  min-width: 140px;
  text-align: center;
  padding: 16px 24px;
}

.stat-number {
  display: block;
  font-size: 2.2rem;
  font-weight: 900;
  background: var(--accent-g);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -.03em;
}

.stat-label {
  font-size: .8rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: .08em;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
  flex-shrink: 0;
}

/* ===================================================
   FEATURES
   =================================================== */
.features {
  position: relative;
  z-index: 1;
  padding: 100px 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color .25s, transform .25s, box-shadow .25s;
}

.feature-card:hover {
  border-color: var(--border-hl);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,.4);
}

.card-featured {
  border-color: rgba(0,212,255,.2);
  background: rgba(0,212,255,.04);
}

.card-glow {
  box-shadow: inset 0 1px 0 rgba(0,212,255,.1);
}

.feature-icon { font-size: 2rem; margin-bottom: 14px; }

.feature-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.feature-card p {
  color: var(--text-dim);
  font-size: .92rem;
  line-height: 1.65;
}

.feature-card code {
  font-family: var(--mono);
  font-size: .82rem;
  background: rgba(0,212,255,.1);
  color: var(--accent);
  padding: 1px 5px;
  border-radius: 4px;
}

.speed-bar {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.speed-bar span {
  font-size: .75rem;
  color: var(--text-dim);
  font-family: var(--mono);
}

.speed-fill {
  height: 4px;
  border-radius: 2px;
  background: var(--accent-g);
  width: 0;
  transition: width 1.5s cubic-bezier(.25,.46,.45,.94);
}

/* ===================================================
   DOWNLOAD
   =================================================== */
.download {
  position: relative;
  z-index: 1;
  padding: 100px 0;
  overflow: hidden;
}

.download-bg-glow {
  position: absolute;
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(0,212,255,.07) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.download-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 32px;
}

.download-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: border-color .25s, transform .25s;
}

.download-card:hover { border-color: var(--border-hl); transform: translateY(-3px); }

.primary-platform {
  border-color: rgba(0,120,212,.3);
  background: rgba(0,120,212,.04);
  box-shadow: inset 0 1px 0 rgba(0,120,212,.15);
}

.platform-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.platform-icon {
  width: 52px; height: 52px;
  background: rgba(255,255,255,.06);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--text-dim);
}

.platform-name {
  font-size: 1.25rem;
  font-weight: 800;
}

.platform-sub {
  font-size: .8rem;
  color: var(--text-dim);
  margin-top: 2px;
}

.platform-badge {
  margin-left: auto;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(0,212,255,.1);
  border: 1px solid rgba(0,212,255,.25);
  padding: 4px 10px;
  border-radius: 20px;
}

.download-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 16px;
  margin-bottom: 24px;
  padding: 16px;
  background: rgba(0,0,0,.2);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}

.info-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.info-label {
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-mute);
}

.info-value {
  font-size: .88rem;
  font-family: var(--mono);
  color: var(--text);
  font-weight: 500;
}

.download-progress {
  display: none;
  margin-top: 12px;
  padding: 12px;
  background: rgba(0,0,0,.2);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}

.download-progress.active { display: block; }

.progress-bar {
  height: 4px;
  background: rgba(255,255,255,.08);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 8px;
}

.progress-fill {
  height: 100%;
  width: 0%;
  background: var(--accent-g);
  border-radius: 2px;
  transition: width .15s linear;
}

.progress-label {
  font-size: .78rem;
  color: var(--text-dim);
  font-family: var(--mono);
}

.alt-links {
  margin-top: 14px;
  font-size: .8rem;
  color: var(--text-mute);
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}

.alt-link {
  color: var(--text-dim);
  text-decoration: none;
  transition: color .2s;
}
.alt-link:hover { color: var(--accent); }
.sep { color: var(--text-mute); }

.download-footer {
  text-align: center;
  font-size: .88rem;
  color: var(--text-dim);
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.link-underline {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ===================================================
   CHANGELOG
   =================================================== */
.changelog {
  position: relative;
  z-index: 1;
  padding: 100px 0;
}

.changelog-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.changelog-entry {
  border-left: 2px solid var(--border);
  padding: 0 0 40px 32px;
  position: relative;
}

.changelog-entry::before {
  content: '';
  position: absolute;
  left: -7px;
  top: 6px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--bg-2);
  border: 2px solid var(--border);
}

.changelog-entry.current::before {
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 0 10px var(--accent);
}

.changelog-entry.current { border-left-color: rgba(0,212,255,.3); }

.entry-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.version-badge {
  font-family: var(--mono);
  font-size: .82rem;
  font-weight: 700;
  color: var(--text);
  background: rgba(255,255,255,.06);
  border: 1px solid var(--border);
  padding: 3px 10px;
  border-radius: 6px;
}

.entry-date {
  font-size: .82rem;
  color: var(--text-mute);
}

.entry-label {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 4px;
}

.entry-label.stable {
  background: rgba(0,212,255,.1);
  color: var(--accent);
  border: 1px solid rgba(0,212,255,.2);
}

.entry-label:not(.stable) {
  background: rgba(255,255,255,.05);
  color: var(--text-mute);
  border: 1px solid var(--border);
}

.entry-changes {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.entry-changes li {
  font-size: .9rem;
  color: var(--text-dim);
  padding-left: 22px;
  position: relative;
}

.entry-changes li::before {
  position: absolute;
  left: 0;
  font-size: .72rem;
  font-weight: 700;
  padding: 1px 5px;
  border-radius: 4px;
}

li.feat::before  { content: 'NEW'; color: #3ecf8e; background: rgba(62,207,142,.1); }
li.fix::before   { content: 'FIX'; color: #f59e0b; background: rgba(245,158,11,.1); }
li.perf::before  { content: 'PERF'; color: var(--accent); background: rgba(0,212,255,.1); }

/* ===================================================
   REQUIREMENTS
   =================================================== */
.requirements {
  position: relative;
  z-index: 1;
  padding: 100px 0;
}

.req-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 860px;
  margin: 0 auto;
}

.req-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}

.req-icon {
  width: 48px; height: 48px;
  background: rgba(255,255,255,.05);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dim);
  margin-bottom: 16px;
}

.req-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 18px;
}

.req-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.req-list li {
  display: flex;
  gap: 12px;
  font-size: .88rem;
  align-items: baseline;
}

.req-key {
  font-family: var(--mono);
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-mute);
  min-width: 55px;
}

.req-list li span:last-child { color: var(--text-dim); }

.req-list code {
  font-family: var(--mono);
  font-size: .78rem;
  background: rgba(0,212,255,.08);
  color: var(--accent);
  padding: 1px 5px;
  border-radius: 4px;
}

/* ===================================================
   FOOTER
   =================================================== */
.footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
  background: rgba(0,0,0,.3);
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand p {
  color: var(--text-dim);
  font-size: .88rem;
  line-height: 1.6;
  margin-top: 14px;
  max-width: 200px;
}

.footer-links-group h4 {
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--text-mute);
  margin-bottom: 16px;
}

.footer-links-group ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links-group a {
  font-size: .88rem;
  color: var(--text-dim);
  text-decoration: none;
  transition: color .2s;
}
.footer-links-group a:hover { color: var(--text); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: .8rem;
  color: var(--text-mute);
}

.footer-legal {
  display: flex;
  gap: 20px;
}

.footer-legal a {
  color: var(--text-mute);
  text-decoration: none;
  transition: color .2s;
}
.footer-legal a:hover { color: var(--text-dim); }

/* ===================================================
   TOAST
   =================================================== */
.toast {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 999;
  background: rgba(13,17,32,.95);
  border: 1px solid var(--border-hl);
  border-radius: var(--radius-sm);
  padding: 14px 20px;
  font-size: .88rem;
  color: var(--text);
  box-shadow: 0 8px 32px rgba(0,0,0,.5);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  transform: translateY(100px);
  opacity: 0;
  transition: transform .35s cubic-bezier(.34,1.56,.64,1), opacity .35s ease;
  pointer-events: none;
  max-width: 360px;
}

.toast.show { transform: translateY(0); opacity: 1; }

/* ===================================================
   RESPONSIVE
   =================================================== */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 100px;
  }
  .hero-subtitle { margin-left: auto; margin-right: auto; }
  .hero-actions  { justify-content: center; }
  .hero-meta     { justify-content: center; }
  .hero-visual   { display: none; }
  .hero-scroll-hint { display: none; }

  .download-cards { grid-template-columns: 1fr; }
  .req-grid       { grid-template-columns: 1fr; }
  .footer-top     { grid-template-columns: 1fr 1fr; }
  .nav-links      { display: none; }
}

@media (max-width: 600px) {
  .stats-band .container { flex-direction: column; gap: 8px; }
  .stat-divider { width: 60px; height: 1px; }
  .footer-top   { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-legal  { justify-content: center; }
}

/* ===================================================
   SELECTION COLOR
   =================================================== */
::selection { background: rgba(0,212,255,.25); color: #fff; }
