.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent-dark);
}

.eyebrow-light {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent);
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 60px;
}

.section-head h2 {
  font-size: clamp(30px, 4.2vw, 46px);
  font-weight: 800;
  letter-spacing: -.025em;
  line-height: 1.08;
  margin: 14px 0 0;
}

.section-head p {
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 16px 0 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 700;
  font-size: 16px;
  padding: 16px 26px;
  border-radius: 13px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: filter .15s ease, transform .15s ease;
}

.btn-accent {
  background: var(--accent);
  color: var(--ink);
}
.btn-accent:hover { filter: brightness(1.06); transform: translateY(-1px); }

.btn-ghost {
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .16);
  color: #fff;
}
.btn-ghost:hover { background: rgba(255, 255, 255, .12); }

.stat-block { display: flex; flex-direction: column; }
.stat-block .stat-value { font-size: 24px; font-weight: 800; }
.stat-block .stat-label { font-size: 13px; color: rgba(255, 255, 255, .55); }

.stat-divider {
  width: 1px;
  height: 34px;
  background: rgba(255, 255, 255, .14);
}

.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 32px;
  transition: box-shadow .2s ease, transform .2s ease;
}
.card:hover {
  box-shadow: 0 20px 44px -22px rgba(0, 0, 0, .2);
  transform: translateY(-3px);
}

.icon-tile {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--ink);
  display: grid;
  place-items: center;
  color: var(--accent);
}
