/* ============================================
   VNESYS EARN — ALL-IN-ONE CSS (Correctif de Visibilité & Dark OLED Theme)
   Design: Dark OLED (#000000) & Amber Gold (#F59E0B)
============================================ */

/* --------------------------------------------
   1. VARIABLES & RESET
-------------------------------------------- */
:root {
  --gold:          #F59E0B;
  --gold-hover:    #D97706;
  --gold-glow:     rgba(245, 158, 11, 0.25);
  --bg:            #000000;
  --bg2:           #0E0E10;
  --surface:       #151518;
  --surface2:      #1A1A1E;
  --text:          #FFFFFF;
  --muted:         #A1A1AA;
  --muted2:        #71717A;
  --border:        #242429;
  --border-subtle: #1C1C20;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  font-family: 'DM Sans', 'Plus Jakarta Sans', sans-serif;
  color: var(--text);
  overflow-x: hidden;
  cursor: none;
  -webkit-font-smoothing: antialiased;
  opacity: 1 !important;
  visibility: visible !important;
}

/* NOISE OVERLAY */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.35;
  pointer-events: none;
  z-index: 1;
}

/* --------------------------------------------
   2. CUSTOM CURSOR
-------------------------------------------- */
.cursor {
  position: fixed;
  width: 10px;
  height: 10px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s;
  box-shadow: 0 0 10px rgba(245, 158, 11, 0.6);
}

.cursor-ring {
  position: fixed;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(245, 158, 11, 0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s;
}

.cursor.hovered {
  width: 18px;
  height: 18px;
}

.cursor-ring.hovered {
  width: 54px;
  height: 54px;
  border-color: var(--gold);
}

/* --------------------------------------------
   3. TOP NAVBAR (Glassmorphism Dark)
-------------------------------------------- */
.top-navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 68px;
  background: rgba(10, 10, 12, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
  border-bottom: 1px solid var(--border-subtle);
  z-index: 1000;
  display: flex;
  align-items: center;
  padding: 0 2em;
}

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
}

.navbar-logo img {
  height: 100px;
  width: auto;
  display: block;
  object-fit: contain;
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 0.4em;
  list-style: none;
}

.navbar-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.92em;
  font-weight: 600;
  padding: 0.5em 1.1em;
  border-radius: 100px;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.navbar-links a:hover {
  background: var(--surface);
  color: var(--gold);
}

.navbar-links a.nav-cta {
  background: linear-gradient(135deg, var(--gold) 0%, #D97706 100%);
  color: #000000 !important;
  font-weight: 700;
  padding: 0.5em 1.3em;
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.35);
  margin-left: 0.4em;
}

.navbar-links a.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.55);
}

.navbar-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 42px;
  height: 42px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  cursor: pointer;
  gap: 5px;
}

.navbar-toggle span {
  display: block;
  height: 2px;
  width: 20px;
  background: var(--gold);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.navbar-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar-toggle.open span:nth-child(2) { opacity: 0; }
.navbar-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  top: 68px;
  left: 0;
  width: 100%;
  background: rgba(8, 8, 10, 0.98);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0.8em 0 1.2em;
  z-index: 999;
}

.mobile-menu.open {
  display: block;
}

.mobile-menu ul {
  list-style: none;
  padding: 0 1.5em;
}

.mobile-menu li {
  border-bottom: 1px solid var(--border-subtle);
}

.mobile-menu li:last-child {
  border-bottom: none;
}

.mobile-menu a {
  display: block;
  padding: 0.85em 0.5em;
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.98em;
  transition: color 0.2s;
}

.mobile-menu a:hover {
  color: var(--gold);
}

@media (max-width: 900px) {
  .navbar-links { display: none; }
  .navbar-toggle { display: flex; }
}

/* --------------------------------------------
   4. HERO SECTION
-------------------------------------------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 130px 5% 80px;
  position: relative;
  overflow: hidden;
  text-align: center;
  background: radial-gradient(circle at 50% 25%, #171412 0%, #08080A 65%, #000000 100%);
}

.hero::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.12) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.3);
  color: #FBBF24;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 32px;
  position: relative;
  z-index: 2;
  font-weight: 700;
  box-shadow: 0 0 20px rgba(245, 158, 11, 0.15);
  /* SÉCURITÉ : Reste visible par défaut */
  opacity: 1;
}

.hero-eyebrow .dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse-dot 1.5s infinite;
  box-shadow: 0 0 8px var(--gold);
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.4; transform: scale(0.7); }
}

.hero h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.02em;
  position: relative;
  z-index: 2;
  opacity: 1;
}

.hero h1 em {
  font-style: normal;
  color: var(--gold);
  text-shadow: 0 0 35px rgba(245, 158, 11, 0.35);
}

.hero h1 .outline {
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.25);
  color: transparent;
}

.hero-sub {
  margin-top: 24px;
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 480px;
  line-height: 1.7;
  position: relative;
  z-index: 2;
  opacity: 1;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 44px;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
  z-index: 2;
  opacity: 1;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, #D97706 100%);
  color: #000000;
  padding: 15px 36px;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: box-shadow 0.3s, transform 0.2s, filter 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 25px rgba(245, 158, 11, 0.4);
}

.btn-primary:hover {
  box-shadow: 0 8px 35px rgba(245, 158, 11, 0.55);
  transform: translateY(-2px);
  filter: brightness(1.06);
}

.btn-secondary {
  background: var(--surface);
  color: #fff;
  padding: 15px 36px;
  border: 1px solid var(--border);
  border-radius: 100px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: border-color 0.3s, transform 0.2s, background 0.2s, color 0.2s;
}

.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
  background: var(--surface2);
}

.scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--muted2);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  z-index: 2;
}

.scroll-hint .arrow {
  animation: bounce-y 2s infinite;
  color: var(--gold);
}

@keyframes bounce-y {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(6px); }
}

.hero-video-wrap {
  position: relative;
  z-index: 2;
  margin-top: 60px;
  width: min(520px, 90%);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 40px 80px rgba(0,0,0,0.75), 0 0 0 1px rgba(255,255,255,0.04);
  opacity: 1;
}

.hero-video-wrap video {
  width: 100%;
  display: block;
}

.hero-video-wrap .video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(0,0,0,0.85));
}

/* --------------------------------------------
   5. STATS STRIP
-------------------------------------------- */
.stats-strip {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 40px 5%;
}

.stats-inner {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}

.stat-item {
  text-align: center;
}

.stat-value {
  font-family: 'Syne', sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.stat-value span {
  color: var(--gold);
  text-shadow: 0 0 20px rgba(245, 158, 11, 0.3);
}

.stat-label {
  font-size: 0.8rem;
  color: var(--muted2);
  margin-top: 6px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}

/* --------------------------------------------
   6. ROADMAP SECTION
-------------------------------------------- */
.section {
  padding: 120px 5%;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  font-weight: 700;
}

.section-label::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--gold);
}

.section-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.section-title em {
  font-style: normal;
  color: var(--gold);
}

.section-desc {
  color: var(--muted);
  font-size: 1rem;
  max-width: 460px;
  line-height: 1.7;
  margin-bottom: 70px;
}

.roadmap {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2px;
  position: relative;
  background: var(--border);
}

/* CORRECTION : Toujours visible par défaut si ScrollTrigger tarde */
.rm-card {
  background: var(--surface);
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s, opacity 0.6s ease, transform 0.6s ease;
  opacity: 1;
}

.rm-card:hover {
  background: var(--surface2);
}

.rm-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: transparent;
  transition: background 0.3s;
}

.rm-card:hover::before {
  background: var(--gold);
  box-shadow: 0 0 10px var(--gold);
}

.rm-number {
  font-family: 'Syne', sans-serif;
  font-size: 4rem;
  font-weight: 800;
  color: rgba(245, 158, 11, 0.1);
  line-height: 1;
  margin-bottom: 20px;
  transition: color 0.3s;
}

.rm-card:hover .rm-number {
  color: rgba(245, 158, 11, 0.3);
}

.rm-badge {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.25);
  color: var(--gold);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 100px;
  margin-bottom: 16px;
  font-weight: 700;
}

.rm-title {
  font-family: 'Syne', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #fff;
}

.rm-desc {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
}

/* --------------------------------------------
   7. EARN SECTION (Grid Cards)
-------------------------------------------- */
.earn-section {
  background: var(--bg2);
  padding: 120px 5%;
}

.earn-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  margin-top: 60px;
}

/* CORRECTION : Toujours visible par défaut */
.earn-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s, background 0.3s, opacity 0.6s ease;
  opacity: 1;
  cursor: pointer;
}

.earn-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(245, 158, 11, 0.08), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
}

.earn-card:hover {
  transform: translateY(-6px);
  border-color: rgba(245, 158, 11, 0.4);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  background: var(--surface2);
}

.earn-card:hover::after {
  opacity: 1;
}

.earn-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
}

.earn-name {
  font-family: 'Syne', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
}

.earn-desc {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.6;
  flex: 1;
}

.earn-pts {
  font-family: 'Syne', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--gold);
  text-shadow: 0 0 20px rgba(245, 158, 11, 0.25);
}

.earn-pts small {
  font-size: 0.75rem;
  color: var(--muted2);
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  text-shadow: none;
}

.earn-card.featured {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, var(--surface) 60%);
  border-color: rgba(245, 158, 11, 0.35);
  grid-column: span 1;
}

.featured-tag {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, var(--gold) 0%, #D97706 100%);
  color: #000000;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  font-weight: 800;
}

/* --------------------------------------------
   8. CTA SECTION
-------------------------------------------- */
.cta-section {
  padding: 140px 5%;
  text-align: center;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 50%, rgba(23, 20, 18, 0.55) 0%, rgba(0, 0, 0, 0.85) 70%),
    url('../../img/earn/participation.webp');
  background-size: auto, cover;
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.cta-section h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  position: relative;
}

.cta-section p {
  color: var(--muted);
  font-size: 1.1rem;
  margin-bottom: 44px;
  position: relative;
}

.cta-section .btn-primary {
  font-size: 1rem;
  padding: 18px 48px;
}

/* --------------------------------------------
   9. FOOTER
-------------------------------------------- */
footer {
  border-top: 1px solid var(--border-subtle);
  background: #050507;
  padding: 40px 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

footer .logo img {
  height: 32px;
  opacity: 0.6;
  filter: brightness(2);
}

footer p {
  font-size: 0.8rem;
  color: var(--muted2);
}

footer nav a {
  color: var(--muted2);
  text-decoration: none;
  font-size: 0.8rem;
  margin-left: 20px;
  transition: color 0.2s;
}

footer nav a:hover {
  color: var(--gold);
}

footer > a {
  color: var(--muted2);
  text-decoration: none;
  font-size: 0.8rem;
  transition: color 0.2s;
}

footer > a:hover {
  color: var(--gold);
}

/* --------------------------------------------
   10. RESPONSIVE MOBILE
-------------------------------------------- */
@media (max-width: 768px) {
  .nav-links, .nav-cta {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .hero h1 {
    font-size: 3rem;
  }
  .section, .earn-section {
    padding: 80px 5%;
  }
  .stats-inner {
    gap: 20px;
  }
  .stat-value {
    font-size: 2rem;
  }
  footer {
    flex-direction: column;
    text-align: center;
  }
  footer nav a {
    margin: 0 10px;
  }
}

.hr {
  height: 1px;
  background: var(--border-subtle);
}

.count-up {
  display: inline-block;
}

/* ===== Extracted from earn.html inline <style> blocks ===== */

/* Hero video sound toggle — click-to-unmute button */
.hero-video-wrap { position: relative; }
  .hero-video-wrap .video-overlay { pointer-events: none; }
  .video-sound-btn {
    position: absolute;
    right: 1em; bottom: 1em;
    width: 42px; height: 42px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    background: rgba(10,10,12,0.75);
    border: 1px solid rgba(245,158,11,0.4);
    color: #fff;
    font-size: 1.1em;
    cursor: pointer;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    transition: border-color 0.2s, transform 0.2s, background 0.2s;
    z-index: 3;
  }
  .video-sound-btn:hover { border-color: var(--gold); transform: scale(1.08); }
  .video-sound-btn.is-unmuted { background: var(--gold); border-color: var(--gold); color: #000; }

/* FAQ accordion — page-specific tokens (--surface, --border, --muted, --gold) */
.faq-section {
    background: var(--bg2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 100px 5%;
  }
  .faq-inner { max-width: 900px; margin: 0 auto; }
  .faq-item { border-bottom: 1px solid var(--border); overflow: hidden; }
  .faq-item:first-of-type { border-top: 1px solid var(--border); }
  .faq-toggle {
    width: 100%; display: flex; justify-content: space-between; align-items: center;
    padding: 1.4em 0; background: none; border: none; cursor: pointer; text-align: left;
    font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.05em; font-weight: 700;
    color: var(--text); transition: color 0.2s; gap: 1em;
  }
  .faq-toggle:hover { color: var(--gold); }
  .faq-toggle-icon {
    width: 30px; height: 30px; min-width: 30px; background: var(--surface);
    border: 1px solid var(--border); border-radius: 50%; display: flex;
    align-items: center; justify-content: center; flex-shrink: 0;
    transition: transform 0.35s ease, background 0.2s, border-color 0.2s;
    font-size: 1.1em; color: var(--gold); font-weight: 700;
  }
  .faq-toggle.open .faq-toggle-icon {
    transform: rotate(45deg); background: var(--gold); color: #000000;
    border-color: var(--gold); box-shadow: 0 0 12px var(--gold-glow);
  }
  .faq-body { max-height: 0; overflow: hidden; transition: max-height 0.5s cubic-bezier(0.4,0,0.2,1); }
  .faq-body.open { max-height: 400px; }
  .faq-body-inner { padding-bottom: 1.8em; font-size: 0.98em; color: var(--muted); line-height: 1.85; }

/* Program / accessibility / motion */
.program-note {
    max-width: 760px;
    margin: 1.25rem auto 0;
    padding: 0 1.25rem;
    text-align: center;
    color: var(--muted);
    font-size: 0.82rem;
    line-height: 1.55;
  }
  .format-note {
    max-width: 760px;
    margin: 0.5rem auto 2rem;
    padding: 0 1.25rem;
    text-align: center;
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.65;
  }
  .points-explainer {
    background:
      radial-gradient(circle at 50% 0%, rgba(245, 158, 11, 0.12), transparent 58%),
      linear-gradient(rgba(14, 14, 16, 0.86), rgba(14, 14, 16, 0.86)),
      url('../../img/earn/next.webp');
    background-size: auto, auto, cover;
    background-position: center, center, center;
    background-repeat: no-repeat, no-repeat, no-repeat;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }
  .points-explainer__inner {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
  }
  .cta-note {
    margin-top: 1rem;
    font-size: 0.8rem;
    color: var(--muted);
  }
  @media (pointer: coarse) {
    .cursor,
    .cursor-ring {
      display: none !important;
    }
  }
  @media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
      scroll-behavior: auto !important;
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
    }
    .cursor,
    .cursor-ring {
      display: none !important;
    }
  }
