:root {
  --ink: #1e1a24;
  --muted: rgba(30, 26, 36, 0.6);
  --soft-border: rgba(198, 198, 198, 0.6);
}

* {
  box-sizing: border-box;
}

body {
  font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  color: var(--ink);
}

h1,
h2,
h3,
.h-display {
  font-family: 'Bricolage Grotesque', 'Inter', sans-serif;
}

.brand-logo {
  width: 26px;
  height: 26px;
  max-width: 26px;
  max-height: 26px;
  border-radius: 6px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
  box-shadow: 0 10px 25px rgba(30, 26, 36, 0.2);
}

.cta-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 9999px;
  background: #1e1a24;
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 14px 30px rgba(30, 26, 36, 0.18);
}

.cta-pill:hover {
  transform: translateY(-1px);
}

.cta-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 9999px;
  border: 1px solid var(--soft-border);
  font-weight: 600;
  color: var(--ink);
  background: #fff;
}

.section-title {
  font-family: 'Bricolage Grotesque', 'Inter', sans-serif;
}

.hero-image {
  filter: drop-shadow(0 24px 50px rgba(30, 26, 36, 0.25));
}

.feature-card {
  background: #fff;
  border: 1px solid rgba(229, 231, 235, 0.8);
  border-radius: 20px;
  padding: 20px;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.feature-card.active {
  transform: scale(1.03);
  border-color: #1e1a24;
  background: #f3f4f6;
}

.rating-stars svg {
  width: 22px;
  height: 22px;
  fill: #1e1a24;
}

@media (max-width: 768px) {
  .cta-pill,
  .cta-outline {
    width: 100%;
  }
}
