body {
  font-family: 'Public Sans', sans-serif;
}

html {
  scroll-behavior: smooth;
}

.glass-card {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: 0 20px 60px rgba(17, 82, 212, 0.10);
}

.section-shell {
  position: relative;
  overflow: hidden;
}

.section-shell::before {
  content: "";
  position: absolute;
  inset: auto -120px -120px auto;
  width: 260px;
  height: 260px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(17,82,212,0.10), transparent 70%);
  pointer-events: none;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(16,22,34,0.82) 0%, rgba(16,22,34,0.54) 42%, rgba(16,22,34,0.10) 100%);
}

.text-balance {
  text-wrap: balance;
}
.consent-banner[hidden] {
  display: none !important;
}

.consent-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 9999;
  pointer-events: none;
}

.consent-banner__box {
  max-width: 1100px;
  margin: 0 auto;
  background: rgba(16, 22, 34, 0.96);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  pointer-events: auto;
}

.consent-banner__content h3 {
  margin: 0 0 6px;
  font-size: 1rem;
  font-weight: 800;
}

.consent-banner__content p {
  margin: 0;
  color: rgba(255,255,255,0.82);
  line-height: 1.55;
  font-size: 0.95rem;
  max-width: 760px;
}

.consent-banner__actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.consent-btn {
  appearance: none;
  border: 0;
  border-radius: 12px;
  padding: 11px 16px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.2s ease;
}

.consent-btn--primary {
  background: #1152d4;
  color: #fff;
}

.consent-btn--primary:hover {
  background: #0e46b5;
}

.consent-btn--secondary {
  background: rgba(255,255,255,0.10);
  color: #fff;
}

.consent-btn--secondary:hover {
  background: rgba(255,255,255,0.16);
}

@media (max-width: 768px) {
  .consent-banner__box {
    flex-direction: column;
    align-items: flex-start;
  }

  .consent-banner__actions {
    width: 100%;
  }

  .consent-btn {
    width: 100%;
  }
}