/* Badges */

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(229, 231, 235, 0.9);
  font-size: 12px;
  color: var(--text-muted);
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #ffffff, #34c759 40%, #15803d 100%);
}

/* Buttons */

.btn {
  border-radius: 999px;
  padding: 10px 18px;
  font-size: 14px;
  cursor: pointer;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  transition: var(--transition-fast);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, #007aff, #34c759);
  color: #fff;
  box-shadow: 0 18px 40px rgba(37, 99, 235, 0.35);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 24px 60px rgba(37, 99, 235, 0.45);
}

.btn-ghost {
  background: #ffffff;
  color: var(--text-main);
  border: 1px solid rgba(148, 163, 184, 0.7);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

.btn-ghost:hover {
  background: #f9fafb;
  transform: translateY(-1px);
}

/* Strip cards */

.strip-card {
  border-radius: var(--radius-lg);
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  padding: 16px;
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.08);
  font-size: 13px;
  color: var(--text-muted);
}

.strip-headline {
  font-size: 15px;
  color: var(--text-main);
  margin-bottom: 6px;
}

/* Headings */

.headline-hero {
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 700;
  letter-spacing: -0.06em;
  text-align: center;
}

.headline-hero .accent {
  background: linear-gradient(120deg, #007aff, #34c759);
  -webkit-background-clip: text;
  color: transparent;
}

.subhead-hero {
  font-size: 16px;
  color: var(--text-muted);
  text-align: center;
  max-width: 540px;
}

/* Offer */

.offer-badge {
  padding: 4px 10px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid rgba(209, 213, 219, 0.9);
  font-size: 11px;
  color: var(--text-soft);
}

.offer-heading {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 8px;
}

.offer-subhead {
  font-size: 14px;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
}