/* === Layout === */
.container {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  padding: var(--space-6) var(--space-4) var(--space-8);
}

/* === Hero === */
.hero {
  background: var(--gradient-signature);
  min-height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-8) var(--space-4);
}

.hero-content {
  max-width: 600px;
}

.hero-title {
  font-size: clamp(28px, 5vw, 42px);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-tight);
  color: var(--color-text-inverse);
  margin-bottom: var(--space-2);
  letter-spacing: -0.02em;
}

.hero-subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(16px, 2.5vw, 19px);
  font-weight: var(--font-weight-regular);
  line-height: var(--line-height-relaxed);
}

