/**
 * Hero Component
 * Hero section styles for homepage
 */

.hero {
  position: relative;
  padding: var(--space-12) 0;
  background: linear-gradient(135deg, var(--midnight-canvas) 0%, var(--midnight-elevated) 100%);
  overflow: hidden;
}

/* Subtle dot grid pattern */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(
    circle at 1px 1px,
    rgba(230, 232, 235, 0.03) 1px,
    transparent 0
  );
  background-size: 24px 24px;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.hero-eyebrow {
  font-family: var(--font-code);
  font-size: var(--text-sm);
  color: var(--syntax-gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-3);
  font-weight: 600;
}

.hero-title {
  font-size: var(--text-6xl);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: var(--space-4);
  background: linear-gradient(
    135deg,
    var(--frost-white) 0%,
    var(--frost-secondary) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: var(--text-xl);
  color: var(--frost-secondary);
  line-height: 1.6;
  margin-bottom: var(--space-2);
  max-width: 60ch;
  margin-left: auto;
  margin-right: auto;
}

.hero-description {
  font-size: var(--text-lg);
  color: var(--frost-tertiary);
  line-height: 1.7;
  max-width: 55ch;
  margin: 0 auto var(--space-6);
}

.hero-cta {
  display: flex;
  gap: var(--space-3);
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.hero-meta {
  margin: var(--space-6) auto 0;
  padding-top: var(--space-6);
  border-top: 1px solid rgba(230, 232, 235, 0.1);
  font-family: var(--font-code);
  font-size: var(--text-sm);
  color: var(--comment-gray);
  text-align: center;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero {
    padding: var(--space-8) 0;
  }
  
  .hero-title {
    font-size: var(--text-4xl);
  }
  
  .hero-subtitle {
    font-size: var(--text-lg);
  }
  
  .hero-cta {
    flex-direction: column;
    width: 100%;
  }
}
