/* ==========================================================================
   Hero
   ========================================================================== */

.hero{
  position: relative;
  padding-top: clamp(56px, 8vw, 104px);
  padding-bottom: clamp(48px, 6vw, 88px);
}

.hero-grid{
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}

.hero-badge{
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  padding: 7px var(--s4) 7px var(--s3);
  margin-bottom: var(--s5);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  font: 500 12.5px/1 var(--mono);
  color: var(--text-2);
}

.hero-badge .dot{
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
  animation: pulse 2.4s ease-in-out infinite;
}

@keyframes pulse{
  0%,100%{ box-shadow: 0 0 0 3px var(--accent-soft); }
  50%    { box-shadow: 0 0 0 7px transparent; }
}

.hero-title{
  font-size: clamp(38px, 5.8vw, 72px);
  letter-spacing: -.035em;
  margin-bottom: var(--s5);
}

.hero-title span{ display: block; }

.hero-sub{
  color: var(--text-2);
  font-size: clamp(16px, 1.7vw, 19px);
  max-width: 50ch;
  margin-bottom: var(--s7);
}

.hero-actions{
  display: flex;
  flex-wrap: wrap;
  gap: var(--s3);
}

/* --- Meta strip -------------------------------------------------------- */

.hero-meta{ margin-top: clamp(48px, 6vw, 84px); }

.hero-meta dl{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s5);
  padding-top: var(--s5);
  border-top: 1px solid var(--border);
}

.hero-meta dt{
  font: 500 11px/1 var(--mono);
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: var(--s2);
}

.hero-meta dd{ font-size: 15px; }

/* --- Narrow ------------------------------------------------------------ */

@media (max-width: 940px){
  .hero-grid{ grid-template-columns: 1fr; }
}

@media (max-width: 620px){
  .hero-meta dl{ grid-template-columns: repeat(2, 1fr); gap: var(--s4) var(--s5); }
  .hero-actions .btn{ flex: 1 1 auto; }
}
