/* ============================================================
   RV PAGES — MOTION TOKENS
   Fluid easing, no bounce/overshoot. Fades and gentle rises.
   ============================================================ */
:root{
  --ease:   cubic-bezier(.22,.61,.36,1); /* @kind other */
  --spring: cubic-bezier(.22,1,.36,1);   /* @kind other */ /* smooth, fluid (no overshoot) */
  --dur:    240ms; /* @kind other */
  --dur-slow: 450ms; /* @kind other */
}

@keyframes rise{ from{ opacity:0; transform:translateY(16px); } to{ opacity:1; transform:none; } }
@keyframes shimmer{ from{ background-position:0% center; } to{ background-position:200% center; } }
@keyframes breathe{ 0%,100%{ opacity:.85; transform:translate(-50%,-50%) scale(1); } 50%{ opacity:1; transform:translate(-50%,-50%) scale(1.07); } }
@keyframes pulse{ 70%{ box-shadow:0 0 0 7px rgba(255,77,77,0); } 100%{ box-shadow:0 0 0 0 rgba(255,77,77,0); } }
@keyframes pulseGreen{ 70%{ box-shadow:0 0 0 7px rgba(52,211,153,0); } 100%{ box-shadow:0 0 0 0 rgba(52,211,153,0); } }
