/* ============================================================
   hero.css — Hero / above-the-fold section
   DriftMind v0.7  |  last updated 2026-06-20
   ============================================================ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-32) var(--space-8) var(--space-24);
  overflow: hidden;
}

/* Particle canvas background */
#drift-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.55;
  pointer-events: none;
}

/* Eyebrow label */
.hero__eyebrow {
  font-size: var(--text-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-8);
  position: relative;
}

.hero__eyebrow::before,
.hero__eyebrow::after {
  content: '';
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--color-accent);
  vertical-align: middle;
  opacity: 0.5;
  margin: 0 var(--space-3);
}

/* Main heading */
.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 7vw, 6rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.02em;
  max-width: 820px;
  margin-bottom: 1.75rem;
  position: relative;
}

.hero__title em {
  font-style: italic;
  color: var(--color-accent);
}

/* Subtitle */
.hero__sub {
  font-size: var(--text-lg);
  color: var(--color-text-mid);
  max-width: 520px;
  line-height: 1.75;
  margin-bottom: var(--space-12);
  position: relative;
  font-weight: 300;
}

/* CTA row */
.hero__cta {
  display: flex;
  gap: var(--space-4);
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
}
