/* Hallmark · macrostructure: Workbench · tone: editorial · anchor hue: 155
 * genre: editorial · family: DraftSOS
 * design-system: draftsos-family-design.md
 */

/* ============================================
   Hero — Editorial
   ============================================ */

.hero {
  position: relative;
  padding: calc(var(--space-3xl) + var(--nav-height)) 0 var(--space-3xl);
  background: var(--color-paper);
  overflow: hidden;
}

.hero .container {
  position: relative;
  z-index: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-lg);
}

/* ── Badge ── */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--color-border-default);
  border-radius: 999px;
  background: var(--color-accent-ghost);
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.3); }
}

/* ── Headline ── */
.hero h1 {
  max-width: 800px;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.hero h1 .text-accent {
  color: var(--color-accent);
}

.hero-subtitle {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 600px;
  line-height: 1.7;
}

/* ── CTAs ── */
.hero-ctas {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  justify-content: center;
}

/* ── Trust Bar Mount ── */
.hero-trust {
  margin-top: var(--space-xl);
  width: 100%;
  max-width: 700px;
}

/* ── Mobile ── */
@media (max-width: 768px) {
  .hero {
    padding: calc(var(--space-2xl) + var(--nav-height)) 0 var(--space-2xl);
  }
  .hero h1 { font-size: clamp(2rem, 8vw, 3rem); }
  .hero-ctas {
    flex-direction: column;
    width: 100%;
    max-width: 320px;
  }
  .hero-ctas .btn, .hero-ctas .btn-cta {
    width: 100%;
    justify-content: center;
  }
}
