html, body {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.content {
  flex: 1;
}
/* Marketing pages read at a narrower measure than the app UI. The navbar and
   footer containers live outside .content, so they are capped here too — otherwise
   they keep the global 1600px and overhang the content beneath them on wide screens. */
.content .container,
.navbar .container,
footer .container {
  max-width: 1200px;
}
footer {
  position: sticky;
  top: 100vh;
}

.strength-circle {
  width: 140px;
  height: 140px;
}

.card.border-2 {
	border-width: 2px !important;
}

.promo-badge {
  background: #ff9800;
  color: white;
  font-size: 14px;
  padding: 10px;
  border-radius: 5px;
  margin-bottom: 20px;
  display: inline-block;
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease-out forwards;
  animation-delay: 0.2s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: none;
  }
}

/* Honeypot field - hide from humans but not from bots */
.h0neyp0t-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.testimonial-mark {
  font-size: 2.5rem;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  object-fit: cover;
}

ul.feature-tabs {
  display: inline-flex;
  gap: 0.25rem;
  padding: 0.25rem;
  border-radius: 999px;
  background-color: var(--bs-secondary-bg);
}

.feature-tabs .nav-link {
  padding: 0.25rem 0.9rem;
  border: 0;
  border-radius: 999px;
  background: none;
  color: var(--bs-secondary-color);
  font-size: 0.875rem;
}

.feature-tabs .nav-link:hover {
  color: var(--bs-body-color);
}

.feature-tabs .nav-link.active {
  background-color: var(--bs-body-bg);
  color: var(--bs-body-color);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.12);
}
