﻿/* ========================================
   SUMMIT 2026 — Complete Animations
   Workplace Bullying & Culture Shift Summit
   ======================================== */

:root {
  --gold: #F5C000;
  --gold-soft: #f7d44a;
  --gold-glow: rgba(245, 192, 0, 0.3);
  --teal: #28AFB0;
  --teal-soft: #5cc5c6;
  --teal-glow: rgba(40, 175, 176, 0.3);
  --steel: #3C5E80;
  --steel-light: #5a7a9a;
  --bg-cream: #f5f3ef;
  --text-dark: #1e2a3a;
  --gradient-gold-teal: linear-gradient(135deg, #F5C000, #28AFB0);
  --gradient-steel-gold: linear-gradient(135deg, #3C5E80, #F5C000);
  --gradient-teal-steel: linear-gradient(135deg, #28AFB0, #3C5E80);
}

/* === 1. TEXT-SHIMMER === */
.text-shimmer {
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-soft) 20%, var(--teal-soft) 40%, var(--gold-soft) 60%, var(--gold) 80%, var(--teal) 100%);
  background-size: 300% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmerText 4s linear infinite;
  will-change: background-position;
}

@keyframes shimmerText {
  0%   { background-position: 0% center; }
  100% { background-position: 300% center; }
}

/* === 2. BTN-GOLD === */
.btn-gold {
  display: inline-block;
  padding: 16px 40px;
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  color: var(--text-dark);
  font-weight: 700;
  font-size: 16px;
  border-radius: 50px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  will-change: transform;
}

.btn-gold::before {
  content: '';
  position: absolute;
  inset: -4px;
  background: linear-gradient(135deg, var(--gold), var(--teal), var(--gold));
  border-radius: 54px;
  z-index: -1;
  filter: blur(16px);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.btn-gold:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 12px 48px var(--gold-glow);
}

.btn-gold:hover::before {
  opacity: 1;
}

.btn-gold:active {
  transform: translateY(-1px) scale(1.01);
}

/* === 3. BTN-TEAL === */
.btn-teal {
  display: inline-block;
  padding: 16px 40px;
  background: linear-gradient(135deg, var(--teal), var(--teal-soft));
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  border-radius: 50px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  will-change: transform;
}

.btn-teal::before {
  content: '';
  position: absolute;
  inset: -4px;
  background: linear-gradient(135deg, var(--teal), var(--steel-light), var(--teal));
  border-radius: 54px;
  z-index: -1;
  filter: blur(16px);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.btn-teal:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 12px 48px var(--teal-glow);
}

.btn-teal:hover::before {
  opacity: 1;
}

.btn-teal:active {
  transform: translateY(-1px) scale(1.01);
}

/* === 4. BTN-OUTLINE === */
.btn-outline {
  display: inline-block;
  padding: 15px 39px;
  background: transparent;
  color: var(--gold);
  font-weight: 600;
  font-size: 16px;
  border-radius: 50px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid var(--gold);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: color 0.3s ease, border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  will-change: transform;
}

.btn-outline::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-gold-teal);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
  border-radius: 50px;
}

.btn-outline:hover {
  color: #fff;
  border-color: var(--teal);
  transform: translateY(-3px);
  box-shadow: 0 8px 32px var(--gold-glow);
}

.btn-outline:hover::before {
  opacity: 1;
}

/* === 5. GOLD-TEXT === */
.gold-text {
  background: var(--gradient-gold-teal);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  will-change: background-position;
}

/* === 6. TEAL-TEXT === */
.teal-text {
  color: var(--teal);
}

/* === 7. TILT-CARD === */
.tilt-card {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  transform-style: preserve-3d;
  perspective: 1000px;
  will-change: transform;
  border: 1px solid rgba(40, 175, 176, 0.15);
  border-radius: 16px;
}

.tilt-card:hover {
  transform: perspective(1000px) rotateX(3deg) rotateY(5deg) translateY(-10px);
  box-shadow: 0 30px 60px var(--teal-glow), 0 0 0 1px var(--teal);
}

.tilt-card .tilt-card-content {
  transform: translateZ(40px);
  transition: transform 0.4s ease;
}

.tilt-card:hover .tilt-card-content {
  transform: translateZ(60px);
}

/* === 8. HOVER-LIFT === */
.hover-lift {
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  will-change: transform;
}

.hover-lift:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 24px 56px var(--teal-glow), 0 0 0 1px rgba(40, 175, 176, 0.25);
}

/* === 9. GLOW-BORDER === */
.glow-border {
  position: relative;
  border-radius: 16px;
}

.glow-border::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 18px;
  background: conic-gradient(from 0deg, var(--gold), var(--teal), var(--steel-light), var(--gold-soft), var(--gold));
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
  animation: borderSpin 4s linear infinite;
  will-change: transform;
}

.glow-border:hover::before {
  opacity: 1;
}

.glow-border::after {
  content: '';
  position: absolute;
  inset: 2px;
  border-radius: 14px;
  background: var(--bg-cream);
  z-index: -1;
}

@keyframes borderSpin {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* === 10. PULSE-GLOW === */
.pulse-glow {
  animation: pulseGlowGold 2.5s ease-in-out infinite;
  will-change: box-shadow;
}

@keyframes pulseGlowGold {
  0%, 100% {
    box-shadow: 0 0 12px var(--gold-glow), 0 0 24px rgba(245, 192, 0, 0.1);
  }
  50% {
    box-shadow: 0 0 24px var(--gold-glow), 0 0 48px rgba(245, 192, 0, 0.25), 0 0 80px rgba(245, 192, 0, 0.1);
  }
}

/* === 11. MORPH-BG === */
.morph-bg {
  position: relative;
  overflow: hidden;
}

.morph-bg::before {
  content: '';
  position: absolute;
  inset: -100%;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(40, 175, 176, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(60, 94, 128, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 80%, rgba(245, 192, 0, 0.05) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(60, 94, 128, 0.03) 0%, transparent 50%);
  animation: morphBgMove 20s ease-in-out infinite alternate;
  z-index: 0;
  pointer-events: none;
  will-change: transform;
}

.morph-bg > * {
  position: relative;
  z-index: 1;
}

@keyframes morphBgMove {
  0%   { transform: scale(1) rotate(0deg); }
  25%  { transform: scale(1.1) rotate(3deg); }
  50%  { transform: scale(1.05) rotate(-2deg); }
  75%  { transform: scale(1.15) rotate(4deg); }
  100% { transform: scale(1) rotate(0deg); }
}

/* === 12. SECTION-CURVE === */
.section-curve {
  position: relative;
}

.section-curve::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 80px;
  background: var(--bg-cream);
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 1440 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,80 C360,0 1080,0 1440,80 L1440,80 L0,80 Z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 1440 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,80 C360,0 1080,0 1440,80 L1440,80 L0,80 Z'/%3E%3C/svg%3E");
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  pointer-events: none;
}

.section-curve-top {
  position: relative;
}

.section-curve-top::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 80px;
  background: var(--bg-cream);
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 1440 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,0 C360,80 1080,80 1440,0 L1440,0 L0,0 Z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 1440 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,0 C360,80 1080,80 1440,0 L1440,0 L0,0 Z'/%3E%3C/svg%3E");
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  pointer-events: none;
  z-index: 2;
}

/* === 13. FLOAT-3D === */
.float-3d {
  animation: float3d 6s ease-in-out infinite;
  transform-style: preserve-3d;
  will-change: transform;
}

@keyframes float3d {
  0%, 100% {
    transform: perspective(800px) rotateX(0deg) rotateY(0deg) translateY(0);
  }
  20% {
    transform: perspective(800px) rotateX(2deg) rotateY(-3deg) translateY(-8px);
  }
  40% {
    transform: perspective(800px) rotateX(-1deg) rotateY(2deg) translateY(-3px);
  }
  60% {
    transform: perspective(800px) rotateX(3deg) rotateY(-1deg) translateY(-6px);
  }
  80% {
    transform: perspective(800px) rotateX(-2deg) rotateY(1deg) translateY(-2px);
  }
}

/* === 14. STAGGER-REVEAL === */
.stagger-reveal > * {
  opacity: 0;
  animation: staggerFadeIn 0.7s ease-out forwards;
}

.stagger-reveal > *:nth-child(1)  { animation-delay: 0s; }
.stagger-reveal > *:nth-child(2)  { animation-delay: 0.08s; }
.stagger-reveal > *:nth-child(3)  { animation-delay: 0.16s; }
.stagger-reveal > *:nth-child(4)  { animation-delay: 0.24s; }
.stagger-reveal > *:nth-child(5)  { animation-delay: 0.32s; }
.stagger-reveal > *:nth-child(6)  { animation-delay: 0.4s; }
.stagger-reveal > *:nth-child(7)  { animation-delay: 0.48s; }
.stagger-reveal > *:nth-child(8)  { animation-delay: 0.56s; }
.stagger-reveal > *:nth-child(9)  { animation-delay: 0.64s; }
.stagger-reveal > *:nth-child(10) { animation-delay: 0.72s; }
.stagger-reveal > *:nth-child(11) { animation-delay: 0.8s; }
.stagger-reveal > *:nth-child(12) { animation-delay: 0.88s; }
.stagger-reveal > *:nth-child(13) { animation-delay: 0.96s; }
.stagger-reveal > *:nth-child(14) { animation-delay: 1.04s; }
.stagger-reveal > *:nth-child(15) { animation-delay: 1.12s; }
.stagger-reveal > *:nth-child(16) { animation-delay: 1.2s; }
.stagger-reveal > *:nth-child(17) { animation-delay: 1.28s; }
.stagger-reveal > *:nth-child(18) { animation-delay: 1.36s; }
.stagger-reveal > *:nth-child(19) { animation-delay: 1.44s; }
.stagger-reveal > *:nth-child(20) { animation-delay: 1.52s; }

@keyframes staggerFadeIn {
  0%   { opacity: 0; transform: translateY(24px) scale(0.96); filter: blur(6px); }
  100% { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
}

/* === 15. COUNTUP-NUMBER === */
.countup-number {
  display: inline-block;
  will-change: transform;
}

.countup-number.pop {
  animation: countPop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.countup-number.pop-delay-1 { animation-delay: 0.05s; }
.countup-number.pop-delay-2 { animation-delay: 0.1s; }
.countup-number.pop-delay-3 { animation-delay: 0.15s; }
.countup-number.pop-delay-4 { animation-delay: 0.2s; }
.countup-number.pop-delay-5 { animation-delay: 0.25s; }
.countup-number.pop-delay-6 { animation-delay: 0.3s; }

@keyframes countPop {
  0%   { transform: scale(0.2) translateY(20px); opacity: 0; }
  40%  { transform: scale(1.3) translateY(-4px); opacity: 1; color: var(--gold); }
  70%  { transform: scale(0.95) translateY(2px); }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}

/* === 16. CONFETTI === */
.confetti-container {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.confetti-piece {
  position: absolute;
  top: -16px;
  width: 10px;
  height: 10px;
  opacity: 0;
  animation: confettiFall 7s ease-in infinite;
}

.confetti-piece:nth-child(1)  { left: 3%;  width: 8px;  height: 8px;  background: var(--gold);         animation-duration: 5.5s; animation-delay: 0s;    border-radius: 2px; }
.confetti-piece:nth-child(2)  { left: 12%; width: 6px;  height: 6px;  background: var(--teal);         animation-duration: 6.5s; animation-delay: 0.4s;  border-radius: 50%; }
.confetti-piece:nth-child(3)  { left: 22%; width: 12px; height: 12px; background: var(--gold-soft);    animation-duration: 7.5s; animation-delay: 0.8s;  border-radius: 2px; }
.confetti-piece:nth-child(4)  { left: 32%; width: 7px;  height: 7px;  background: var(--teal-soft);    animation-duration: 6s;   animation-delay: 1.2s;  border-radius: 50%; }
.confetti-piece:nth-child(5)  { left: 42%; width: 10px; height: 10px; background: var(--gold);         animation-duration: 8s;   animation-delay: 1.6s;  border-radius: 3px; }
.confetti-piece:nth-child(6)  { left: 52%; width: 5px;  height: 5px;  background: var(--steel-light);  animation-duration: 5s;   animation-delay: 2s;    border-radius: 50%; }
.confetti-piece:nth-child(7)  { left: 62%; width: 11px; height: 11px; background: var(--gold-soft);    animation-duration: 7s;   animation-delay: 2.4s;  border-radius: 2px; }
.confetti-piece:nth-child(8)  { left: 72%; width: 8px;  height: 8px;  background: var(--teal);         animation-duration: 8.5s; animation-delay: 2.8s;  border-radius: 50%; }
.confetti-piece:nth-child(9)  { left: 82%; width: 6px;  height: 6px;  background: var(--gold);         animation-duration: 6s;   animation-delay: 3.2s;  border-radius: 2px; }
.confetti-piece:nth-child(10) { left: 92%; width: 9px;  height: 9px;  background: var(--teal-soft);    animation-duration: 7.5s; animation-delay: 3.6s;  border-radius: 50%; }
.confetti-piece:nth-child(11) { left: 8%;  width: 14px; height: 4px;  background: var(--gold-soft);    animation-duration: 9s;   animation-delay: 0.6s;  border-radius: 2px; }
.confetti-piece:nth-child(12) { left: 48%; width: 5px;  height: 5px;  background: var(--steel);        animation-duration: 5.5s; animation-delay: 1s;    border-radius: 50%; }
.confetti-piece:nth-child(13) { left: 68%; width: 10px; height: 10px; background: var(--gold);         animation-duration: 8s;   animation-delay: 2.2s;  border-radius: 2px; }
.confetti-piece:nth-child(14) { left: 28%; width: 7px;  height: 7px;  background: var(--teal);         animation-duration: 6.5s; animation-delay: 3s;    border-radius: 50%; }
.confetti-piece:nth-child(15) { left: 78%; width: 12px; height: 12px; background: var(--gold-soft);    animation-duration: 7s;   animation-delay: 4s;    border-radius: 2px; }

@keyframes confettiFall {
  0%   { transform: translateY(-20px) rotate(0deg)   scale(0);  opacity: 0; }
  10%  { transform: translateY(20px)  rotate(40deg)  scale(1);  opacity: 1; }
  85%  { transform: translateY(85vh)  rotate(720deg) scale(0.8); opacity: 0.7; }
  100% { transform: translateY(calc(100vh + 20px)) rotate(900deg) scale(0); opacity: 0; }
}

/* === 17. SCROLL-PROGRESS === */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--teal), var(--steel-light));
  z-index: 9999;
  width: 0%;
  transition: width 0.05s linear;
  box-shadow: 0 0 10px var(--gold-glow), 0 0 20px var(--teal-glow);
  will-change: width;
}

/* === 18. SCALE-IN === */
.scale-in {
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  will-change: transform, opacity;
}

.scale-in.visible {
  opacity: 1;
  transform: scale(1);
}

/* === 19. GLITCH-TEXT === */
.glitch-text {
  position: relative;
  display: inline-block;
}

.glitch-text::before,
.glitch-text::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.glitch-text::before {
  color: var(--teal);
  z-index: -1;
  clip-path: inset(0 0 65% 0);
  animation: glitchOffset1 0.3s ease-in-out infinite alternate;
  will-change: transform;
}

.glitch-text::after {
  color: var(--gold);
  z-index: -2;
  clip-path: inset(65% 0 0 0);
  animation: glitchOffset2 0.35s ease-in-out infinite alternate;
  will-change: transform;
}

.glitch-text:hover::before {
  animation-duration: 0.08s;
}

.glitch-text:hover::after {
  animation-duration: 0.12s;
}

@keyframes glitchOffset1 {
  0%   { transform: translate(0); }
  20%  { transform: translate(-3px, 2px); }
  40%  { transform: translate(3px, -1px); }
  60%  { transform: translate(-2px, 3px); }
  80%  { transform: translate(2px, -2px); }
  100% { transform: translate(0); }
}

@keyframes glitchOffset2 {
  0%   { transform: translate(0); }
  20%  { transform: translate(3px, -2px); }
  40%  { transform: translate(-3px, 2px); }
  60%  { transform: translate(2px, -3px); }
  80%  { transform: translate(-2px, 1px); }
  100% { transform: translate(0); }
}

/* === 20. SHIMMER-CARD === */
.shimmer-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}

.shimmer-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg,
    transparent 30%,
    rgba(245, 192, 0, 0.08) 42%,
    rgba(245, 192, 0, 0.15) 45%,
    rgba(40, 175, 176, 0.08) 48%,
    transparent 60%
  );
  animation: shimmerCard 3.5s ease-in-out infinite;
  pointer-events: none;
  will-change: transform;
}

.shimmer-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--teal), var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

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

@keyframes shimmerCard {
  0%   { transform: translateX(-100%) skewX(-15deg); }
  50%  { transform: translateX(100%) skewX(-15deg); }
  100% { transform: translateX(100%) skewX(-15deg); }
}

/* === 21. TYPEWRITER === */
.typewriter {
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
  border-right: 3px solid var(--gold);
  animation: typewriter 3s steps(30) 1s forwards, blinkCursor 0.75s step-end infinite;
  max-width: 0;
  will-change: max-width, border-color;
}

@keyframes typewriter {
  0%   { max-width: 0; }
  100% { max-width: 100%; }
}

@keyframes blinkCursor {
  0%, 100% { border-color: var(--gold); }
  50%      { border-color: transparent; }
}

/* === 22. SHAKE === */
.shake {
  animation: shake 0.6s cubic-bezier(.36,.07,.19,.97) both;
  will-change: transform;
}

.shake-loop {
  animation: shake 1.5s ease-in-out infinite;
  will-change: transform;
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  10%      { transform: translateX(-8px) rotate(-1deg); }
  20%      { transform: translateX(8px) rotate(1deg); }
  30%      { transform: translateX(-6px) rotate(-0.5deg); }
  40%      { transform: translateX(6px) rotate(0.5deg); }
  50%      { transform: translateX(-4px); }
  60%      { transform: translateX(4px); }
  70%      { transform: translateX(-2px); }
  80%      { transform: translateX(2px); }
  90%      { transform: translateX(-1px); }
}

/* === 23. HEARTBEAT === */
.heartbeat {
  animation: heartbeat 1.5s ease-in-out infinite;
  will-change: transform;
}

@keyframes heartbeat {
  0%   { transform: scale(1); }
  14%  { transform: scale(1.15); }
  28%  { transform: scale(1); }
  42%  { transform: scale(1.12); }
  56%  { transform: scale(1); }
  100% { transform: scale(1); }
}

/* === 24. WOBBLE === */
.wobble {
  animation: wobble 2s ease-in-out infinite;
  will-change: transform;
}

@keyframes wobble {
  0%, 100% { transform: translateX(0); }
  15%      { transform: translateX(-6px) rotate(-2deg); }
  30%      { transform: translateX(4px) rotate(1.5deg); }
  45%      { transform: translateX(-3px) rotate(-1deg); }
  60%      { transform: translateX(2px) rotate(0.5deg); }
  75%      { transform: translateX(-1px); }
}

/* === 25. FLASH === */
.flash {
  animation: flash 1.5s ease-in-out infinite;
}

@keyframes flash {
  0%, 50%, 100% { opacity: 1; }
  25%, 75%      { opacity: 0.2; }
}

/* === 26. BOUNCE-IN === */
.bounce-in {
  animation: bounceIn 0.8s cubic-bezier(0.68, -0.55, 0.27, 1.55) forwards;
  will-change: transform, opacity;
}

@keyframes bounceIn {
  0%   { transform: scale(0.3); opacity: 0; }
  40%  { transform: scale(1.08); opacity: 1; }
  60%  { transform: scale(0.95); }
  80%  { transform: scale(1.02); }
  100% { transform: scale(1); opacity: 1; }
}

/* === 27. SWING === */
.swing {
  animation: swing 2s ease-in-out infinite;
  transform-origin: top center;
  will-change: transform;
}

@keyframes swing {
  0%, 100% { transform: rotate(0deg); }
  20%      { transform: rotate(8deg); }
  40%      { transform: rotate(-6deg); }
  60%      { transform: rotate(4deg); }
  80%      { transform: rotate(-2deg); }
}

/* === 28. RIPPLE === */
.ripple {
  position: relative;
  overflow: hidden;
}

.ripple::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid var(--gold);
  border-radius: inherit;
  animation: rippleExpand 2s ease-out infinite;
  pointer-events: none;
}

@keyframes rippleExpand {
  0%   { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.25); opacity: 0; }
}

/* === 29. RUBBER-BAND === */
.rubber-band {
  animation: rubberBand 1.2s ease-in-out infinite;
  will-change: transform;
}

@keyframes rubberBand {
  0%, 100% { transform: scaleX(1) scaleY(1); }
  15%      { transform: scaleX(1.25) scaleY(0.75); }
  30%      { transform: scaleX(0.85) scaleY(1.15); }
  45%      { transform: scaleX(1.1) scaleY(0.9); }
  60%      { transform: scaleX(0.95) scaleY(1.05); }
  75%      { transform: scaleX(1.02) scaleY(0.98); }
}

/* === 30. TADA === */
.tada {
  animation: tada 1.5s ease-in-out infinite;
  will-change: transform;
}

@keyframes tada {
  0%, 100% { transform: scale(1) rotate(0deg); }
  10%      { transform: scale(0.9) rotate(-3deg); }
  20%      { transform: scale(1.1) rotate(3deg); }
  30%      { transform: scale(1.1) rotate(-3deg); }
  40%      { transform: scale(1.1) rotate(3deg); }
  50%      { transform: scale(1) rotate(0deg); }
}

/* === 31. DRIFT === */
.drift {
  animation: drift 4s ease-in-out infinite;
  will-change: transform;
}

@keyframes drift {
  0%, 100% { transform: translateY(0) translateX(0); }
  25%      { transform: translateY(-10px) translateX(5px); }
  50%      { transform: translateY(0) translateX(-3px); }
  75%      { transform: translateY(-5px) translateX(3px); }
}

/* === 32. ICON-SPIN === */
.icon-spin {
  animation: iconSpin 3s linear infinite;
  display: inline-block;
}

@keyframes iconSpin {
  0%   { transform: rotate(0deg); }
  25%  { transform: rotate(90deg); }
  50%  { transform: rotate(180deg); }
  75%  { transform: rotate(270deg); }
  100% { transform: rotate(360deg); }
}

/* === 33. PULSE-BURST === */
.pulse-burst {
  animation: pulseBurst 2s ease-in-out infinite;
  will-change: transform, box-shadow;
}

@keyframes pulseBurst {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(245, 192, 0, 0.4);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 0 20px rgba(245, 192, 0, 0);
  }
}

/* === 34. TILT-DANCE === */
.tilt-dance {
  animation: tiltDance 0.3s ease-in-out infinite alternate;
  will-change: transform;
}

@keyframes tiltDance {
  0%   { transform: rotate(-1deg) translateY(-1px); }
  100% { transform: rotate(1deg) translateY(1px); }
}

/* === 35. FADE-UP-AGGRESSIVE === */
.fade-up-agg {
  opacity: 0;
  animation: fadeUpAgg 0.7s cubic-bezier(0.68, -0.55, 0.27, 1.55) forwards;
  will-change: transform, opacity;
}

@keyframes fadeUpAgg {
  0%   { opacity: 0; transform: translateY(60px) scale(0.9); }
  60%  { opacity: 1; transform: translateY(-10px) scale(1.05); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

/* === 36. GLOW-PULSE-TEXT === */
.glow-pulse-text {
  animation: glowPulseText 1.5s ease-in-out infinite;
  will-change: text-shadow;
}

@keyframes glowPulseText {
  0%, 100% { text-shadow: 0 0 8px var(--gold-glow), 0 0 16px transparent; }
  50%      { text-shadow: 0 0 16px var(--gold-glow), 0 0 32px rgba(245,192,0,0.2), 0 0 48px rgba(40,175,176,0.1); }
}

/* === 37. BOUNCE-ARROW === */
.bounce-arrow {
  animation: bounceArrow 1.5s ease-in-out infinite;
}

@keyframes bounceArrow {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(8px); }
}

/* === 38. COUNTDOWN-TICK === */
.countdown-tick {
  animation: countdownTick 1s steps(1) infinite;
}

@keyframes countdownTick {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.6; transform: scale(1.02); }
}

/* === UTILITY === */
.gold-focus:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.gold-selection ::selection {
  background: var(--gold);
  color: var(--text-dark);
}

.teal-selection ::selection {
  background: var(--teal);
  color: #fff;
}