/* Home specific */
.hero {
  position: relative;
  overflow: hidden;
}
.hero-inner {
  display: grid;
  gap: 30px;
  align-items: center;
  padding: 56px 0;
  grid-template-columns: 1fr;
}
@media (min-width: 980px) {
  .hero-inner {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

/* Add animations to hero elements */
.hero-copy {
  animation: fadeInLeft 0.8s ease-out;
}

.hero-title {
  font-size: 48px;
  line-height: 1.1;
  margin: 0 0 10px;
}
@media (min-width: 980px) {
  .hero-title {
    font-size: 56px;
  }
}
.hero-title .accent {
  color: var(--primary);
  /* Add pulse animation to accent text */
  display: inline-block;
  animation: pulse 2s ease-in-out infinite;
}
.hero-sub {
  color: var(--muted);
  margin: 0 0 18px;
  /* Add fade in with delay */
  animation: fadeInUp 0.8s ease-out 0.2s both;
}
.hero-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  /* Add fade in with delay */
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-art {
  position: relative;
  /* Add fade and scale animation */
  animation: scaleIn 0.9s ease-out 0.3s both;
}
.pane {
  position: relative;
  border-radius: 18px;
  background: var(--card);
  border: 1px solid var(--border);
  padding: 14px;
  box-shadow: var(--shadow);
}
.pane-bar {
  height: 36px;
  background: linear-gradient(90deg, var(--primary) 0 40%, #e5e7eb 40% 100%);
  border-radius: 12px;
  margin-bottom: 12px;
}
.pane-body {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(3, 1fr);
}
.pane-card {
  height: 80px;
  background: #e5e7eb;
  border-radius: 10px;
}
.bubble {
  position: absolute;
  border-radius: 999px;
  opacity: 0.85;
  /* Add floating animation */
  animation: float 3s ease-in-out infinite;
}
.bubble.one {
  width: 18px;
  height: 18px;
  right: -8px;
  top: 20px;
  background: #f59e0b;
  animation-delay: 0s;
}
.bubble.two {
  width: 28px;
  height: 28px;
  left: -12px;
  top: 80px;
  background: #22c55e;
  animation-delay: 0.5s;
}
.bubble.three {
  width: 22px;
  height: 22px;
  right: 12px;
  bottom: -10px;
  background: #f43f5e;
  animation-delay: 1s;
}

/* Add animation to section title */
.section-title {
  animation: fadeInUp 0.7s ease-out both;
}

.section-sub {
  animation: fadeInUp 0.7s ease-out 0.1s both;
}

/* Featured cards keep shared styles */
