/* ===================================
   Homepage Specific Styles
   =================================== */

/* Hero Text Content */
.hero__content {
  text-align: left;
}

.hero__title {
  font-size: var(--text-4xl);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: var(--space-6);
  color: var(--color-text);
}

.hero__title--gradient {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-size: var(--text-lg);
  color: var(--color-text-light);
  line-height: 1.6;
  margin-bottom: var(--space-8);
  max-width: 600px;
}

.hero__actions {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  gap: var(--space-4);
}

/* Hero Visual/Animation */
.hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 300px;
}

.hero__placeholder {
  width: 100%;
  max-width: 400px;
  height: 300px;
  background: var(--color-placeholder);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero__animation {
  display: flex;
  gap: var(--space-3);
}

.hero__animation span {
  width: 40px;
  height: 120px;
  background: linear-gradient(180deg, var(--color-primary-light) 0%, var(--color-primary) 100%);
  border-radius: var(--radius-md);
  animation: heroBar 2s ease-in-out infinite;
}

.hero__animation span:nth-child(1) { animation-delay: 0s; height: 60px; }
.hero__animation span:nth-child(2) { animation-delay: 0.2s; height: 100px; }
.hero__animation span:nth-child(3) { animation-delay: 0.4s; height: 80px; }
.hero__animation span:nth-child(4) { animation-delay: 0.6s; height: 120px; }
.hero__animation span:nth-child(5) { animation-delay: 0.8s; height: 90px; }

@keyframes heroBar {
  0%, 100% { transform: translateY(0); opacity: 0.8; }
  50% { transform: translateY(-20px); opacity: 1; }
}
