.hero {
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero-canvas {
  position: absolute;
  inset: 0;
  z-index: var(--z-canvas);
}

.hero-content {
  position: relative;
  z-index: var(--z-content);
  text-align: center;
  max-width: 900px;
  padding: 0 var(--container-pad);
}

.hero-label {
  margin-bottom: 1.5rem;
}

.hero-headline {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: var(--fw-bold);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.hero-headline .char {
  display: inline-block;
  opacity: 0;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
}

.hero-logo {
  font-size: clamp(1.4rem, 3vw, 2rem);
  margin-bottom: 2.5rem;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .hero {
    min-height: 100svh;
  }

  .hero-headline {
    font-size: clamp(2rem, 8vw, 3.5rem);
  }
}
