:root {
  --ac-primary: #1f7a8c;
  --ac-primary-dark: #155d6b;
  --ac-bg-soft: #f4fbfd;
  --ac-text: #15202b;
  --ac-muted: #5b6975;
}

html {
  scroll-behavior: smooth;
}

body {
  color: var(--ac-text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  text-rendering: optimizeLegibility;
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: #000;
  color: #fff;
  padding: 8px 12px;
  z-index: 1000;
}

.skip-link:focus {
  top: 0;
}

.navbar-brand .brand-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ac-primary), #4db6c8);
}

.hero-section {
  background: radial-gradient(circle at 10% 20%, #e8f9fc 0%, #ffffff 55%);
}

.eyebrow {
  display: inline-block;
  font-weight: 600;
  color: var(--ac-primary-dark);
  letter-spacing: 0.03em;
}

.hero-card {
  background: #fff;
  border: 1px solid #e6edf0;
  border-radius: 16px;
  padding: 1.25rem;
}

.snapshot-item {
  padding: 0.5rem 0;
  color: var(--ac-muted);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  border-bottom: 1px dashed #e6edf0;
}

.snapshot-item:last-child {
  border-bottom: 0;
}

.snapshot-item i {
  color: var(--ac-primary);
}

.trend-up {
  color: #157347;
  font-weight: 600;
}

.feature-card {
  border: 1px solid #e6edf0;
  border-radius: 14px;
  padding: 1rem;
  background: #fff;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(20, 45, 55, 0.08);
}

.feature-icon {
  color: var(--ac-primary);
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
}

.step-card {
  border: 1px solid #dbe8ed;
  border-radius: 14px;
  padding: 1rem;
  background: #fff;
}

.step-number {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--ac-primary);
  color: #fff;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.cta-section {
  background: var(--ac-bg-soft);
}

.btn-primary {
  background: var(--ac-primary);
  border-color: var(--ac-primary);
}

.btn-primary:hover,
.btn-primary:focus {
  background: var(--ac-primary-dark);
  border-color: var(--ac-primary-dark);
}

a {
  color: var(--ac-primary-dark);
}

a:hover {
  color: var(--ac-primary);
}

.legal-page {
  max-width: 840px;
}

@media (max-width: 991.98px) {
  .hero-card {
    margin-top: 0.5rem;
  }
}

.badge-card {
  background: #fff;
  border: 1px solid #dbe8ed;
  border-radius: 999px;
  padding: 0.55rem 0.75rem;
  text-align: center;
  font-weight: 600;
  color: #25424f;
}

.mobile-showcase-wrapper {
  display: flex;
  justify-content: center;
}

.mobile-frame {
  width: min(320px, 84vw);
  aspect-ratio: 9 / 19.5;
  background: #111;
  border: 6px solid #0b0f14;
  border-radius: 2rem;
  padding: 0.4rem;
  position: relative;
  overflow: hidden;
}

.mobile-frame::before {
  content: "";
  position: absolute;
  width: 36%;
  height: 14px;
  border-radius: 0 0 12px 12px;
  background: #0b0f14;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.slide-img {
  object-fit: cover;
  object-position: center;
}

.mobile-frame .carousel-indicators button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
