@keyframes rotateOrbit {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes rotateOrbitReverse {
  0% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
}

@keyframes cardFloat1 {
  0%, 100% {
    transform: rotate(-7deg) translateY(0px);
  }
  50% {
    transform: rotate(-7deg) translateY(-8px);
  }
}

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

@keyframes cardFloat3 {
  0%, 100% {
    transform: rotate(-2deg) translateY(0px);
  }
  50% {
    transform: rotate(-2deg) translateY(-6px);
  }
}

.fin-card.c-blue {
  animation: cardFloat1 7s ease-in-out infinite;
}

.fin-card.c-gold {
  animation: cardFloat2 8.5s ease-in-out infinite;
}

.fin-card.c-obsidian {
  animation: cardFloat3 6.5s ease-in-out infinite;
}

/* Pause animation on hover */
.card-stage:hover .fin-card {
  animation-play-state: paused;
}

/* Subtle glow pulsing */
@keyframes pulseGlow {
  0%, 100% {
    opacity: 0.12;
    transform: scale(1);
  }
  50% {
    opacity: 0.18;
    transform: scale(1.05);
  }
}

.glow-top-right {
  animation: pulseGlow 9s ease-in-out infinite;
}

/* Typewriter Cursor & Prominent Headline Animation */
.hero-typewriter-wrap {
  display: inline-flex;
  align-items: baseline;
  white-space: nowrap;
  vertical-align: bottom;
  position: relative;
  max-width: 100%;
}

.typewriter-text {
  display: inline-block;
  white-space: nowrap;
}

.typewriter-cursor {
  display: inline-block;
  color: var(--accent-gold-light);
  font-weight: 300;
  margin-left: 2px;
  animation: blinkCursor 0.85s infinite;
  opacity: 1;
  vertical-align: baseline;
}

@keyframes blinkCursor {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* Dynamic Section Live Loading Header Bar */
.section-live-feed-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(12, 17, 30, 0.85);
  border: 1px solid rgba(56, 189, 248, 0.18);
  border-radius: var(--radius-sm);
  padding: 8px 16px;
  margin-bottom: 24px;
  font-size: 12px;
  color: var(--text-muted);
}

.live-feed-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.live-feed-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 10px #34d399;
  animation: livePulse 1.8s infinite;
  flex-shrink: 0;
}

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

.live-feed-badge {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 2px 7px;
  border-radius: 3px;
  background: rgba(56, 189, 248, 0.12);
  border: 1px solid rgba(56, 189, 248, 0.3);
  color: var(--accent-ice);
}

/* Dynamic Section Ambient Shimmer Sweep */
.dynamic-load-sweep {
  position: relative;
  overflow: hidden;
}

.dynamic-load-sweep::after {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 80%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(56, 189, 248, 0.07), rgba(223, 191, 122, 0.07), transparent);
  transform: skewX(-20deg);
  animation: sectionSweep 7s ease-in-out infinite;
  pointer-events: none;
}

@keyframes sectionSweep {
  0% { left: -150%; }
  35% { left: 150%; }
  100% { left: 150%; }
}


