/* Homepage Cinematic Styles - Rockstar inspired */

.home-page { overflow-x: hidden; }

/* CINEMATIC HERO */
.hero-cinematic {
  position: relative;
  min-height: min(72vh, 680px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 4.5rem 0 2rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-gradient {
  position: absolute;
  inset: -50%;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(255, 60, 120, 0.35) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 60%, rgba(192, 38, 211, 0.25) 0%, transparent 45%),
    radial-gradient(ellipse at 50% 90%, rgba(0, 206, 209, 0.15) 0%, transparent 40%),
    radial-gradient(ellipse at 80% 10%, rgba(255, 107, 53, 0.2) 0%, transparent 35%);
  animation: gradientDrift 18s ease-in-out infinite alternate;
}

.hero-gradient-2 {
  background:
    radial-gradient(ellipse at 60% 40%, rgba(124, 58, 237, 0.2) 0%, transparent 50%),
    radial-gradient(ellipse at 20% 80%, rgba(255, 60, 120, 0.15) 0%, transparent 45%);
  animation: gradientDrift 22s ease-in-out infinite alternate-reverse;
  opacity: 0.8;
}

@keyframes gradientDrift {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(3%, -2%) scale(1.08); }
}

.hero-skyline {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to top, var(--bg-primary) 0%, transparent 100%);
  opacity: 0.9;
}

.hero-skyline::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath fill='%231A1A2E' d='M0,120 L0,80 L40,60 L80,90 L120,50 L160,70 L200,40 L240,75 L280,45 L320,80 L360,35 L400,65 L440,30 L480,70 L520,40 L560,85 L600,25 L640,60 L680,45 L720,75 L760,35 L800,65 L840,50 L880,80 L920,40 L960,70 L1000,55 L1040,85 L1080,45 L1120,75 L1160,50 L1200,70 L1200,120 Z'/%3E%3C/svg%3E") repeat-x bottom;
  background-size: 1200px 120px;
  animation: skylineMove 40s linear infinite;
  opacity: 0.6;
}

@keyframes skylineMove {
  0% { background-position-x: 0; }
  100% { background-position-x: -1200px; }
}

.hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' 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)'/%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-scanline {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0, 0, 0, 0.03) 2px,
    rgba(0, 0, 0, 0.03) 4px
  );
  pointer-events: none;
  opacity: 0.5;
}

/* Marquee */
.hero-marquee {
  position: absolute;
  bottom: 80px;
  left: 0;
  right: 0;
  overflow: hidden;
  z-index: 2;
  opacity: 0.15;
  mask-image: linear-gradient(90deg, transparent, black 15%, black 85%, transparent);
}

.marquee-track {
  display: flex;
  gap: 2rem;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  letter-spacing: 0.15em;
  color: var(--gta6-pink);
}

.marquee-track span:nth-child(odd) { color: var(--gta6-teal); }
.marquee-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gta6-pink); display: inline-block; flex-shrink: 0; align-self: center; }

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.hero-cinematic .hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  width: 100%;
}

.hero-title {
  font-family: 'Bebas Neue', 'Inter', sans-serif;
  line-height: 0.95;
  margin-bottom: 1.25rem;
}

.hero-title-line {
  display: block;
  font-size: clamp(2.75rem, 8vw, 5.5rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--text-primary);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.55), 0 0 60px rgba(255, 60, 120, 0.3);
}

.hero-title-accent {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: titleGlow 4s ease-in-out infinite alternate;
}

@keyframes titleGlow {
  0% { filter: drop-shadow(0 0 20px rgba(255, 60, 120, 0.4)); }
  100% { filter: drop-shadow(0 0 40px rgba(192, 38, 211, 0.6)); }
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 580px;
  margin: 0 auto 1.5rem;
  line-height: 1.65;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.45);
}

.hero-cta {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}

.hero-cinematic .search-box {
  max-width: 520px;
  margin: 0 auto 1rem;
}

.hero-scroll-hint {
  position: relative;
  left: auto;
  bottom: auto;
  transform: none;
  margin-top: 1rem;
  z-index: 3;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: fadeInUp 1s ease 1.2s both;
  pointer-events: none;
}

/* Hero category pills — horizontal scroll, all categories */
.category-pills-wrap {
  max-width: 100%;
  margin-top: 0.75rem;
  text-align: left;
}

.category-pills-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
  padding: 0 0.15rem;
}

.category-pills-label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gta6-teal);
}

.category-pills-more {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gta6-pink);
  white-space: nowrap;
}

.category-pills-more:hover {
  text-decoration: underline;
}

.category-pills-scroll {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 0.25rem;
}

.category-pills-scroll::-webkit-scrollbar {
  display: none;
}

.hero-cinematic .category-pills {
  flex-wrap: nowrap;
  justify-content: flex-start;
  margin-top: 0;
  padding: 0.25rem 0;
  gap: 0.5rem;
  mask-image: none;
  -webkit-mask-image: none;
}

.category-pills-scroll {
  mask-image: linear-gradient(90deg, #000 0%, #000 90%, transparent);
  -webkit-mask-image: linear-gradient(90deg, #000 0%, #000 90%, transparent);
}

.category-pills-hint {
  font-size: 0.68rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 0.35rem;
  letter-spacing: 0.04em;
  transition: opacity 0.3s;
}

.hero-cinematic .category-pill {
  flex-shrink: 0;
  white-space: nowrap;
  font-size: 0.8rem;
  padding: 0.4rem 0.85rem;
}

.scroll-arrow {
  width: 24px;
  height: 24px;
  margin: 0.5rem auto 0;
  border-right: 2px solid var(--gta6-pink);
  border-bottom: 2px solid var(--gta6-pink);
  transform: rotate(45deg);
  animation: bounce 2s ease infinite;
}

@keyframes bounce {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50% { transform: rotate(45deg) translateY(8px); }
}

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-cinematic .reveal {
  opacity: 0;
  transform: translateY(30px);
}

.hero-cinematic .reveal.visible,
.hero-cinematic .hero-badge,
.hero-cinematic .hero-title,
.hero-cinematic .hero-sub,
.hero-cinematic .hero-cta,
.hero-cinematic .search-box,
.hero-cinematic .category-pills-wrap {
  animation: fadeInUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-cinematic .hero-badge { animation-delay: 0.1s; }
.hero-cinematic .hero-title { animation-delay: 0.25s; }
.hero-cinematic .hero-sub { animation-delay: 0.45s; }
.hero-cinematic .hero-cta { animation-delay: 0.6s; }
.hero-cinematic .search-box { animation-delay: 0.75s; }
.hero-cinematic .category-pills-wrap { animation-delay: 0.9s; }

.hero-cinematic .hero-badge,
.hero-cinematic .hero-title,
.hero-cinematic .hero-sub,
.hero-cinematic .hero-cta,
.hero-cinematic .search-box,
.hero-cinematic .category-pills-wrap {
  opacity: 0;
}

/* Stats Bar */
.stats-bar {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 2.5rem 0;
  position: relative;
  z-index: 5;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}

.stat-item { padding: 0.5rem; }

.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.75rem;
  letter-spacing: 0.05em;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.stat-lbl {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.35rem;
}

/* Section headers */
.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gta6-teal);
  margin-bottom: 0.5rem;
}

.section-heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  letter-spacing: 0.04em;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.section-desc {
  color: var(--text-secondary);
  max-width: 520px;
  margin: 0 auto;
  font-size: 0.95rem;
}

.section-dark {
  background: var(--bg-secondary);
}

/* Category Grid */
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
}

.category-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.25rem;
  text-align: center;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
}

.category-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 60, 120, 0.08) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
}

.category-card:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: rgba(255, 60, 120, 0.5);
  box-shadow: 0 20px 50px rgba(255, 60, 120, 0.15);
  color: inherit;
}

.category-card:hover::before { opacity: 1; }

.category-card-icon {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
  display: block;
  transition: transform 0.3s;
}

.category-card:hover .category-card-icon {
  transform: scale(1.15);
}

.category-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.category-card p {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.category-card-count {
  font-size: 0.72rem;
  color: var(--gta6-pink);
  margin-top: 0.5rem;
  font-weight: 600;
}

/* Stagger category pills */
.category-pills .category-pill {
  animation: pillPop 0.5s cubic-bezier(0.16, 1, 0.3, 1) backwards;
}

.category-pills .category-pill:nth-child(1) { animation-delay: 1s; }
.category-pills .category-pill:nth-child(2) { animation-delay: 1.05s; }
.category-pills .category-pill:nth-child(3) { animation-delay: 1.1s; }
.category-pills .category-pill:nth-child(4) { animation-delay: 1.15s; }
.category-pills .category-pill:nth-child(5) { animation-delay: 1.2s; }
.category-pills .category-pill:nth-child(6) { animation-delay: 1.25s; }
.category-pills .category-pill:nth-child(n+7) { animation-delay: 1.3s; }

@keyframes pillPop {
  from { opacity: 0; transform: scale(0.8); }
  to { opacity: 1; transform: scale(1); }
}

/* Promo Banner */
.promo-banner {
  position: relative;
  padding: 5rem 0;
  overflow: hidden;
}

.promo-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 36, 99, 0.6) 0%, rgba(192, 38, 211, 0.2) 50%, rgba(255, 60, 120, 0.15) 100%);
}

.promo-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0L60 30L30 60L0 30Z' fill='none' stroke='rgba(255,60,120,0.06)' stroke-width='1'/%3E%3C/svg%3E");
  animation: promoPattern 20s linear infinite;
}

@keyframes promoPattern {
  0% { transform: translate(0, 0); }
  100% { transform: translate(60px, 60px); }
}

.promo-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.promo-text h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: 0.03em;
  margin-bottom: 1rem;
}

.promo-text p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.7;
}

.promo-visual {
  position: relative;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.promo-card {
  position: absolute;
  width: 100px;
  height: 100px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  box-shadow: var(--shadow-neon);
  animation: floatCard 6s ease-in-out infinite;
}

.promo-card-1 { top: 20%; left: 20%; animation-delay: 0s; }
.promo-card-2 { top: 40%; right: 15%; animation-delay: 1s; font-size: 3rem; }
.promo-card-3 { bottom: 15%; left: 35%; animation-delay: 2s; }

@keyframes floatCard {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(3deg); }
}

/* Steps */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.step-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent-gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}

.step-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 60, 120, 0.35);
}

.step-card:hover::after { transform: scaleX(1); }

.step-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  color: var(--gta6-pink);
  opacity: 0.4;
  line-height: 1;
  margin-bottom: 0.75rem;
}

.step-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.step-card p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Tags cloud */
.tags-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.tag-item {
  padding: 0.55rem 1.1rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: all 0.25s;
}

.tag-item:hover {
  border-color: var(--gta6-pink);
  color: var(--gta6-pink);
  background: rgba(255, 60, 120, 0.08);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 60, 120, 0.12);
}

/* CTA Section */
.cta-section {
  position: relative;
  padding: 5rem 0;
  text-align: center;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background: var(--accent-gradient);
  opacity: 0.12;
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-content h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  letter-spacing: 0.04em;
  margin-bottom: 1rem;
}

.cta-content p {
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto 2rem;
  font-size: 1.05rem;
}

.cta-content .hero-cta { justify-content: center; }

/* FAQ */
.faq-list { max-width: 720px; margin: 0 auto; }

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: border-color 0.2s;
}

.faq-item[open] { border-color: rgba(255, 60, 120, 0.35); }

.faq-item summary {
  padding: 1.1rem 1.25rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.65rem;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  font-size: 1.25rem;
  color: var(--gta6-pink);
  transition: transform 0.2s;
}

.faq-item[open] summary::after { transform: rotate(45deg); }

.faq-item p {
  padding: 0 1.25rem 1.1rem;
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* Enhanced mod cards on home */
.home-page .mod-card {
  animation: cardReveal 0.6s cubic-bezier(0.16, 1, 0.3, 1) backwards;
}

.home-page .mods-grid .mod-card:nth-child(1) { animation-delay: 0.05s; }
.home-page .mods-grid .mod-card:nth-child(2) { animation-delay: 0.1s; }
.home-page .mods-grid .mod-card:nth-child(3) { animation-delay: 0.15s; }
.home-page .mods-grid .mod-card:nth-child(4) { animation-delay: 0.2s; }
.home-page .mods-grid .mod-card:nth-child(5) { animation-delay: 0.25s; }
.home-page .mods-grid .mod-card:nth-child(n+6) { animation-delay: 0.3s; }

@keyframes cardReveal {
  from { opacity: 0; transform: translateY(24px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* Navbar transparent on hero */
.home-page .navbar {
  background: rgba(10, 10, 18, 0.6);
  transition: background 0.3s, box-shadow 0.3s;
}

.home-page .navbar.scrolled {
  background: var(--bg-glass);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

/* Responsive */
@media (max-width: 900px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .promo-content { grid-template-columns: 1fr; }
  .promo-visual { height: 200px; }
  .hero-cinematic { min-height: auto; padding: 4rem 0 1.75rem; }
  .hero-marquee { bottom: 40px; opacity: 0.1; }
}

@media (max-width: 600px) {
  .hero-cinematic {
    min-height: auto;
    padding: 3.5rem 0 1.25rem;
    align-items: flex-start;
  }
  .hero-cinematic .hero-content {
    padding: 0 0.25rem;
  }
  .hero-badge {
    font-size: 0.75rem;
    padding: 0.35rem 0.75rem;
    margin-bottom: 0.75rem;
  }
  .hero-title-line {
    font-size: clamp(2.4rem, 11vw, 3.5rem);
    letter-spacing: 0.02em;
  }
  .hero-title { margin-bottom: 0.75rem; }
  .hero-sub {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.55;
    padding: 0 0.25rem;
  }
  .hero-sub br { display: none; }
  .hero-cta {
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 1rem;
    width: 100%;
  }
  .hero-cta .btn {
    width: 100%;
    max-width: 100%;
  }
  .hero-cinematic .search-box {
    max-width: 100%;
    margin-bottom: 0.75rem;
  }
  .hero-cinematic .category-pills {
    margin-top: 0.75rem;
    justify-content: flex-start;
    mask-image: linear-gradient(90deg, #000 0%, #000 88%, transparent);
    -webkit-mask-image: linear-gradient(90deg, #000 0%, #000 88%, transparent);
  }
  .hero-scroll-hint {
    margin-top: 0.65rem;
    font-size: 0.65rem;
  }
  .scroll-arrow {
    width: 18px;
    height: 18px;
  }
  .steps-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .stats-bar { padding: 1.75rem 0; }
  .stat-num { font-size: 2rem; }
  .stat-lbl { font-size: 0.72rem; }
  .hero-marquee { display: none; }
  .section { padding: 3rem 0; }
}

@media (max-width: 380px) {
  .stats-grid { grid-template-columns: 1fr; }
  .hero-scroll-hint { display: none; }
}

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