/* ============================================================
   ZCode × AI Creators Roundtable — "show off" edition
   ============================================================ */

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

:root {
  --bg: #08050a;
  --bg-soft: #120a14;
  --text: #f8f4f6;
  --text-dim: #c2b0b8;
  --text-faint: #7c6a74;
  --accent-1: #ff2d55;   /* REC red */
  --accent-2: #ffb340;   /* amber   */
  --accent-3: #b14dff;   /* violet  */
  --glass: rgba(255, 255, 255, 0.045);
  --glass-border: rgba(255, 255, 255, 0.09);
  --glass-border-bright: rgba(255, 255, 255, 0.18);
  --radius: 18px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

html, body {
  height: 100%;
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  overflow: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Hide native cursor when custom cursor active (fine pointers only) */
@media (hover: hover) and (pointer: fine) {
  body { cursor: none; }
  a, button, [data-tilt] { cursor: none; }
}

/* ===== Custom cursor ===== */
.cursor-dot, .cursor-ring {
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9999;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
}
.cursor-dot {
  width: 8px; height: 8px;
  background: #fff;
  transition: width 0.2s, height 0.2s;
}
.cursor-ring {
  width: 38px; height: 38px;
  border: 1.5px solid rgba(255,255,255,0.6);
  transition: width 0.3s var(--ease), height 0.3s var(--ease), border-color 0.3s;
}
.cursor-ring.hovering { width: 60px; height: 60px; border-color: var(--accent-1); }
@media (hover: none), (pointer: coarse) {
  .cursor-dot, .cursor-ring { display: none; }
}

/* ===== Particle canvas ===== */
.particles {
  position: fixed; inset: 0; z-index: 1;
  pointer-events: none; opacity: 0.55;
}

/* ===== Animated aurora background ===== */
.aurora { position: fixed; inset: 0; overflow: hidden; z-index: 0; }
.aurora-blob {
  position: absolute; border-radius: 50%;
  filter: blur(100px); opacity: 0.5; mix-blend-mode: screen; will-change: transform;
}
.blob-1 {
  width: 55vw; height: 55vw;
  background: radial-gradient(circle at 30% 30%, var(--accent-1), transparent 70%);
  top: -15%; left: -10%; animation: drift1 22s var(--ease) infinite alternate;
}
.blob-2 {
  width: 50vw; height: 50vw;
  background: radial-gradient(circle at 70% 70%, var(--accent-2), transparent 70%);
  bottom: -20%; right: -10%; animation: drift2 26s var(--ease) infinite alternate;
}
.blob-3 {
  width: 40vw; height: 40vw;
  background: radial-gradient(circle at 50% 50%, var(--accent-3), transparent 70%);
  top: 30%; left: 35%; animation: drift3 30s var(--ease) infinite alternate;
}
@keyframes drift1 { to { transform: translate(18vw, 12vh) scale(1.15); } }
@keyframes drift2 { to { transform: translate(-15vw, -10vh) scale(1.1); } }
@keyframes drift3 { to { transform: translate(10vw, -18vh) scale(0.9); } }

.grain {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' /%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.35'/%3E%3C/svg%3E");
  opacity: 0.045; pointer-events: none;
}

/* ===== Global spotlight (cursor-follow) ===== */
.spotlight {
  position: fixed; inset: 0; z-index: 1; pointer-events: none;
  background: radial-gradient(420px circle at var(--mx, 50%) var(--my, 50%),
    rgba(255,45,85,0.08), transparent 60%);
  transition: background 0.15s linear;
}

/* ===== Top bar ===== */
.top-bar {
  position: fixed; top: 20px; left: 28px; right: 28px;
  display: flex; align-items: center; justify-content: space-between;
  z-index: 50; pointer-events: none;
}
.rec-badge {
  display: flex; align-items: center; gap: 9px;
  padding: 7px 13px 7px 11px;
  border: 1px solid var(--glass-border); border-radius: 999px;
  background: var(--glass); backdrop-filter: blur(12px);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px; font-weight: 600; letter-spacing: 0.15em; color: var(--text);
  pointer-events: auto;
}
.rec-dot {
  width: 10px; height: 10px; border-radius: 50%; background: var(--accent-1);
  box-shadow: 0 0 0 0 rgba(255,45,85,0.7); animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255,45,85,0.7); }
  70% { box-shadow: 0 0 0 12px rgba(255,45,85,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,45,85,0); }
}
/* Mini equalizer next to REC */
.eq { display: flex; align-items: flex-end; gap: 2px; height: 13px; margin-left: 3px; }
.eq span {
  width: 2.5px; background: var(--accent-2); border-radius: 1px;
  animation: eqBounce 0.9s ease-in-out infinite;
}
.eq span:nth-child(1) { height: 60%; animation-delay: 0s; }
.eq span:nth-child(2) { height: 90%; animation-delay: 0.15s; }
.eq span:nth-child(3) { height: 45%; animation-delay: 0.3s; }
.eq span:nth-child(4) { height: 75%; animation-delay: 0.45s; }
@keyframes eqBounce {
  0%, 100% { transform: scaleY(0.4); }
  50% { transform: scaleY(1); }
}
.brand-mark {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px; letter-spacing: 0.04em; color: var(--text-faint);
  pointer-events: auto;
}
.brand-mark .x { color: var(--accent-1); margin: 0 2px; font-weight: 600; }

/* ===== Progress bar ===== */
.progress { position: fixed; top: 0; left: 0; right: 0; height: 3px; background: rgba(255,255,255,0.06); z-index: 50; }
.progress-fill {
  height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--accent-1), var(--accent-2), var(--accent-3));
  transition: width 0.6s var(--ease); box-shadow: 0 0 14px rgba(255,45,85,0.7);
}

/* ===== Slide counter ===== */
.counter {
  position: fixed; top: 22px; right: 28px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px; letter-spacing: 0.08em; color: var(--text-faint); z-index: 50;
}

/* ===== Dot navigation (right side) ===== */
.dot-nav {
  position: fixed; right: 30px; top: 50%; transform: translateY(-50%);
  display: flex; flex-direction: column; gap: 11px; z-index: 45;
}
.dot-nav button {
  width: 9px; height: 9px; border-radius: 50%;
  border: 1px solid var(--glass-border-bright); background: transparent;
  padding: 0; cursor: inherit;
  transition: all 0.3s var(--ease);
}
.dot-nav button:hover { background: var(--accent-2); border-color: var(--accent-2); transform: scale(1.3); }
.dot-nav button.active {
  background: var(--accent-1); border-color: var(--accent-1);
  box-shadow: 0 0 12px rgba(255,45,85,0.8); transform: scale(1.25);
}

/* ===== Deck ===== */
.deck { position: relative; z-index: 2; height: 100vh; }
.slide {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  padding: 10vh 8vw;
  opacity: 0;
  transform: translateY(40px) scale(0.96);
  filter: blur(8px);
  transition: opacity 0.8s var(--ease-out), transform 0.9s var(--ease-out), filter 0.7s var(--ease-out);
  pointer-events: none;
}
.slide.active { opacity: 1; transform: none; filter: blur(0); pointer-events: auto; }
.slide.prev { opacity: 0; transform: translateY(-40px) scale(0.96); filter: blur(8px); }
.slide-inner { max-width: 1000px; width: 100%; }
.slide-inner.center { text-align: center; }

/* ===== Reveal animation ===== */
.reveal { opacity: 0; transform: translateY(26px); }
.slide.active .reveal {
  animation: revealUp 0.85s var(--ease-out) forwards;
  animation-delay: var(--d, 0s);
}
@keyframes revealUp { to { opacity: 1; transform: none; } }

/* ===== Typography ===== */
.eyebrow {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--accent-2); margin-bottom: 1.4rem;
}
.title {
  font-family: 'Space Grotesk', sans-serif; font-weight: 700;
  font-size: clamp(3rem, 9vw, 7rem); line-height: 0.95; letter-spacing: -0.03em; margin-bottom: 1.5rem;
}
.title.small { font-size: clamp(2.5rem, 7vw, 5rem); }
.h2 {
  font-family: 'Space Grotesk', sans-serif; font-weight: 600;
  font-size: clamp(1.9rem, 5vw, 3.6rem); line-height: 1.05; letter-spacing: -0.02em; margin-bottom: 2rem;
}
.subtitle {
  font-size: clamp(1.05rem, 1.6vw, 1.3rem); color: var(--text-dim);
  max-width: 640px; line-height: 1.65; font-weight: 300;
}
.slide-inner.center .subtitle { margin: 0 auto 2rem; }
.subtitle b { font-weight: 500; color: var(--text); }
.lede {
  font-size: 1.1rem; color: var(--text-dim);
  margin-bottom: 1.8rem; font-weight: 300; line-height: 1.6;
}
.lede b { font-weight: 500; }
.grad-text {
  background: linear-gradient(100deg, var(--accent-1), var(--accent-2) 45%, var(--accent-3));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
/* Shimmer sweep on key headings */
.shimmer {
  background-size: 200% auto;
  animation: shimmerMove 4s linear infinite;
}
@keyframes shimmerMove {
  to { background-position: 200% center; }
}
.hint { margin-top: 2.5rem; font-size: 0.95rem; color: var(--text-faint); }
.kbd {
  display: inline-block; padding: 3px 10px;
  border: 1px solid var(--glass-border); border-radius: 7px; background: var(--glass);
  font-family: 'Space Grotesk', sans-serif; font-size: 0.85rem; color: var(--text); margin: 0 3px;
}

/* ============================================================
   3D TILT + spotlight glare (shared by all [data-tilt] cards)
   ============================================================ */
[data-tilt] {
  transform-style: preserve-3d;
  transition: transform 0.4s var(--ease-out), border-color 0.4s, background 0.4s, box-shadow 0.4s;
  position: relative;
}
[data-tilt]::before {
  /* spotlight glare that follows the pointer within the card */
  content: '';
  position: absolute; inset: 0; border-radius: inherit;
  background: radial-gradient(180px circle at var(--gx, 50%) var(--gy, 50%),
    rgba(255,255,255,0.10), transparent 55%);
  opacity: 0; transition: opacity 0.4s;
  pointer-events: none;
}
[data-tilt]:hover::before { opacity: 1; }

/* ===== Shift grid (slide 2) ===== */
.shift-grid { display: flex; align-items: stretch; gap: 1.5rem; }
.shift-col {
  flex: 1; background: var(--glass); border: 1px solid var(--glass-border);
  border-radius: var(--radius); padding: 1.6rem; backdrop-filter: blur(12px);
}
.shift-col.accent { border-color: rgba(255,45,85,0.45); background: rgba(255,45,85,0.05); }
.shift-label {
  font-family: 'Space Grotesk', sans-serif; font-size: 0.8rem;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-faint); margin-bottom: 1rem;
}
.shift-col.accent .shift-label { color: var(--accent-2); }
.shift-list { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.shift-list li {
  font-size: 1rem; color: var(--text-dim); padding-left: 1.4rem; position: relative; font-weight: 300;
}
.shift-list li::before { content: '◦'; position: absolute; left: 0; color: var(--text-faint); }
.shift-col.accent .shift-list li { color: var(--text); }
.shift-col.accent .shift-list li::before { content: '✓'; color: var(--accent-1); }
.shift-arrow {
  display: flex; align-items: center; justify-content: center;
  font-family: 'Space Grotesk', sans-serif; font-size: 2.5rem; font-weight: 300; color: var(--accent-2);
}

/* ===== Pillar grid (slide 3) ===== */
.pillar-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.pillar {
  background: var(--glass); border: 1px solid var(--glass-border); border-radius: var(--radius);
  padding: 1.6rem 1.3rem; backdrop-filter: blur(12px); position: relative; overflow: hidden;
}
.pillar:hover { border-color: rgba(255,45,85,0.5); box-shadow: 0 20px 50px rgba(255,45,85,0.12); }
/* glow blob inside each pillar */
.pillar-glow {
  position: absolute; top: -40%; right: -30%;
  width: 120px; height: 120px; border-radius: 50%;
  background: radial-gradient(circle, var(--accent-1), transparent 70%);
  opacity: 0; filter: blur(30px);
  transition: opacity 0.5s, transform 0.6s var(--ease);
}
.pillar:hover .pillar-glow { opacity: 0.5; transform: translate(-20%, 20%); }
.pillar-icon { font-size: 1.8rem; margin-bottom: 0.8rem; position: relative; }
.pillar-num {
  position: absolute; top: 1rem; right: 1.1rem;
  font-family: 'Space Grotesk', sans-serif; font-size: 0.8rem; color: var(--text-faint);
}
.pillar h3 { font-family: 'Space Grotesk', sans-serif; font-size: 1.2rem; margin-bottom: 0.5rem; }
.pillar p { font-size: 0.88rem; color: var(--text-dim); line-height: 1.5; font-weight: 300; }

/* ===== Usecase grid (slides 4 & 6) ===== */
.usecase-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.usecase {
  background: var(--glass); border: 1px solid var(--glass-border); border-radius: var(--radius);
  padding: 1.5rem; backdrop-filter: blur(12px); position: relative;
}
.usecase:hover { border-color: rgba(255,45,85,0.5); box-shadow: 0 16px 40px rgba(0,0,0,0.25); }
.uc-tag {
  display: inline-block; font-family: 'Space Grotesk', sans-serif; font-size: 0.7rem;
  letter-spacing: 0.15em; text-transform: uppercase; color: var(--accent-2);
  padding: 2px 8px; border: 1px solid var(--glass-border); border-radius: 6px; margin-bottom: 0.7rem;
}
.usecase h4 { font-family: 'Space Grotesk', sans-serif; font-size: 1.1rem; margin-bottom: 0.4rem; font-weight: 500; }
.usecase p { font-size: 0.9rem; color: var(--text-dim); line-height: 1.5; font-weight: 300; }

/* ===== Auto list (slide 5) ===== */
.auto-list { display: flex; flex-direction: column; gap: 0.6rem; }
.auto-row {
  display: flex; align-items: flex-start; gap: 1.2rem;
  padding: 1rem 1.2rem; border-radius: 14px;
  background: var(--glass); border: 1px solid var(--glass-border); backdrop-filter: blur(10px);
}
.auto-row:hover { background: rgba(255,255,255,0.07); border-color: var(--glass-border-bright); }
.auto-icon { font-size: 1.4rem; flex-shrink: 0; }
.auto-row b { font-family: 'Space Grotesk', sans-serif; font-size: 1.1rem; font-weight: 500; }
.auto-row p { color: var(--text-dim); font-size: 0.92rem; margin-top: 0.2rem; font-weight: 300; }

/* ===== Ship list (slide 7) ===== */
.ship-list { display: flex; flex-direction: column; gap: 0.6rem; }
.ship-row {
  display: flex; align-items: flex-start; gap: 1.2rem;
  padding: 1rem 1.2rem; border-radius: 14px;
  background: var(--glass); border: 1px solid var(--glass-border); backdrop-filter: blur(10px);
}
.ship-row:hover { background: rgba(255,255,255,0.07); border-color: var(--glass-border-bright); }
.ship-check {
  width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,45,85,0.15); border: 1px solid rgba(255,45,85,0.4); color: var(--accent-1);
  font-weight: 700; font-size: 0.9rem;
}
.ship-row b { font-family: 'Space Grotesk', sans-serif; font-size: 1.1rem; font-weight: 500; }
.ship-row p { color: var(--text-dim); font-size: 0.92rem; margin-top: 0.2rem; font-weight: 300; }

/* ===== Skill groups (slide 8) ===== */
.skill-groups { display: flex; flex-direction: column; gap: 1rem; }
.skill-group {
  display: flex; align-items: center; gap: 1.4rem; flex-wrap: wrap;
  padding: 1rem 1.2rem; background: var(--glass); border: 1px solid var(--glass-border);
  border-radius: 14px; backdrop-filter: blur(10px);
}
.skill-group:hover { border-color: var(--glass-border-bright); }
.sg-title {
  font-family: 'Space Grotesk', sans-serif; font-size: 0.85rem; font-weight: 600;
  letter-spacing: 0.08em; color: var(--accent-2); min-width: 140px;
}
.sg-chips { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.chip {
  padding: 0.45rem 0.95rem; border: 1px solid var(--glass-border); border-radius: 999px;
  background: var(--glass); font-size: 0.88rem; color: var(--text); backdrop-filter: blur(8px);
  transition: transform 0.3s var(--ease), border-color 0.3s, color 0.3s, background 0.3s;
  animation: chipIn 0.5s var(--ease) backwards;
}
@keyframes chipIn { from { opacity: 0; transform: translateY(12px) scale(0.9); } }
.chip:hover { transform: translateY(-3px) scale(1.05); border-color: var(--accent-1); color: #fff; background: rgba(255,45,85,0.12); }

/* ===== Task Launcher (slide 9) ===== */
.launcher {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 1.2rem;
  background: var(--glass); border: 1px solid var(--glass-border);
  border-radius: var(--radius); padding: 1.4rem; backdrop-filter: blur(12px);
}
.launcher-choices { display: flex; flex-direction: column; gap: 0.6rem; }
.launch-btn {
  text-align: left; padding: 0.9rem 1.1rem;
  border: 1px solid var(--glass-border); border-radius: 12px;
  background: rgba(255,255,255,0.02); color: var(--text);
  font-family: 'Inter', sans-serif; font-size: 0.95rem;
  transition: all 0.3s var(--ease);
}
.launch-btn:hover { border-color: var(--accent-1); background: rgba(255,45,85,0.06); transform: translateX(4px); }
.launch-btn.active {
  border-color: var(--accent-1); background: rgba(255,45,85,0.12);
  box-shadow: 0 0 0 1px var(--accent-1), 0 8px 24px rgba(255,45,85,0.15);
}
.launcher-output {
  background: rgba(0,0,0,0.3); border: 1px solid var(--glass-border); border-radius: 12px;
  padding: 1.3rem; min-height: 240px;
  font-family: 'Space Grotesk', sans-serif; overflow-y: auto;
}
.launcher-output::-webkit-scrollbar { width: 6px; }
.launcher-output::-webkit-scrollbar-thumb { background: var(--glass-border-bright); border-radius: 3px; }
.launcher-placeholder { color: var(--text-faint); font-size: 0.95rem; }
.launch-step {
  display: flex; gap: 0.7rem; margin-bottom: 0.7rem;
  opacity: 0; transform: translateX(-8px); animation: stepIn 0.4s var(--ease) forwards;
}
@keyframes stepIn { to { opacity: 1; transform: none; } }
.launch-step:last-child { margin-bottom: 0; }
.launch-icon { color: var(--accent-1); flex-shrink: 0; font-weight: 700; }
.launch-text { font-size: 0.9rem; line-height: 1.5; color: var(--text-dim); }
.launch-text b { color: var(--text); font-weight: 500; }

/* ===== Flow (slide 10) ===== */
.flow { display: flex; align-items: flex-start; gap: 0; flex-wrap: wrap; }
.flow-step { flex: 1; min-width: 150px; text-align: center; padding: 0 0.6rem; }
.flow-step:hover { background: rgba(255,255,255,0.03); border-radius: 12px; }
.flow-dot {
  width: 22px; height: 22px; margin: 0 auto 1rem; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
  box-shadow: 0 0 18px rgba(255,45,85,0.7);
}
.flow-step b { font-family: 'Space Grotesk', sans-serif; font-size: 1.1rem; display: block; margin-bottom: 0.4rem; }
.flow-step p { font-size: 0.9rem; color: var(--text-dim); font-weight: 300; }
.flow-line {
  flex: 0 0 40px; height: 2px; margin-top: 10px;
  background: linear-gradient(90deg, transparent, var(--glass-border-bright), transparent); align-self: flex-start;
}

/* ===== CTA / buttons ===== */
.cta-row { margin-top: 0.5rem; }
.action-btn {
  padding: 1rem 1.8rem; border: none; border-radius: 999px;
  font-family: 'Space Grotesk', sans-serif; font-size: 1rem; font-weight: 500; color: #fff;
  background: linear-gradient(100deg, var(--accent-1), var(--accent-3));
  cursor: none; text-decoration: none; display: inline-block;
  transition: transform 0.3s var(--ease), box-shadow 0.3s; box-shadow: 0 8px 30px rgba(255,45,85,0.35);
  position: relative; overflow: hidden;
}
/* sheen sweep across CTA */
.action-btn::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.25) 50%, transparent 70%);
  transform: translateX(-100%); transition: transform 0.6s;
}
.action-btn:hover::after { transform: translateX(100%); }
.action-btn:hover { box-shadow: 0 12px 40px rgba(177,77,255,0.45); }
.action-btn.big { padding: 1.1rem 2.4rem; font-size: 1.1rem; }

/* ===== Nav buttons ===== */
.nav {
  position: fixed; top: 50%; transform: translateY(-50%);
  width: 52px; height: 52px; border-radius: 50%;
  border: 1px solid var(--glass-border); background: var(--glass); color: var(--text);
  font-size: 1.8rem; line-height: 1; cursor: none; backdrop-filter: blur(10px); z-index: 40;
  transition: all 0.3s var(--ease); display: flex; align-items: center; justify-content: center;
}
.nav:hover { background: rgba(255,45,85,0.2); border-color: var(--accent-1); }
.nav:disabled { opacity: 0.25; }
.nav:disabled:hover { background: var(--glass); border-color: var(--glass-border); }
.nav-prev { left: 24px; }
.nav-next { right: 64px; }

/* ===== Responsive ===== */
@media (max-width: 860px) {
  .pillar-grid { grid-template-columns: repeat(2, 1fr); }
  .usecase-grid { grid-template-columns: 1fr; }
  .launcher { grid-template-columns: 1fr; }
  .dot-nav { display: none; }
  .nav-next { right: 24px; }
}
@media (max-width: 760px) {
  .shift-grid { flex-direction: column; }
  .shift-arrow { transform: rotate(90deg); height: 40px; }
  .flow { flex-direction: column; align-items: center; }
  .flow-line { width: 2px; height: 32px; flex: none; background: linear-gradient(180deg, transparent, var(--glass-border-bright), transparent); }
  .nav { width: 44px; height: 44px; font-size: 1.4rem; }
  .nav-prev { left: 12px; } .nav-next { right: 12px; }
  .top-bar { left: 14px; right: 14px; }
  .brand-mark { display: none; }
  .skill-group { flex-direction: column; align-items: flex-start; }
  .sg-title { min-width: auto; }
}

/* ===== Reduced motion ===== */
@media (prefers-reduced-motion: reduce) {
  .aurora-blob, .rec-dot, .reveal, .chip, .launch-step, .shimmer, .eq span, .action-btn::after { animation: none !important; }
  .reveal { opacity: 1; transform: none; }
  .slide { transition: opacity 0.3s; transform: none; filter: none; }
  .particles { display: none; }
}
