.vp-footer {
  background: radial-gradient(circle at top left, rgba(37, 99, 235, 0.08), transparent 55%), radial-gradient(circle at bottom right, rgba(250, 204, 21, 0.12), transparent 55%), #020617;
  color: #e5e7eb;
  margin-top: 4rem;
}

.vp-footer-top {
  padding-top: 2.5rem;
  padding-bottom: 2rem;
}

.vp-footer-grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 2rem;
}

.vp-footer-col {
  min-width: 0;
}

.vp-footer-brand {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  margin-bottom: 1rem;
}

.vp-footer-logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.3rem;
  height: 2.3rem;
  border-radius: 999px;
  background: radial-gradient(circle at 20% 0, #fef3c7, transparent 55%), linear-gradient(135deg, #1d4ed8, #0ea5e9);
  color: #0b1120;
  font-weight: 700;
  font-family: "Space Grotesk", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.95rem;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.9);
}

.vp-footer-title {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.vp-footer-tagline {
  margin-top: 0.25rem;
  font-size: 0.85rem;
  color: #9ca3af;
  max-width: 20rem;
}

.vp-footer-download {
  margin-top: 0.75rem;
  font-size: 0.82rem;
  padding-inline: 1.1rem;
}

.vp-footer-download-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.vp-footer-download-icon i {
  font-size: 0.95rem;
}

.vp-footer-heading {
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 0.85rem;
  color: #bfdbfe;
}

.vp-footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.9rem;
}

.vp-footer-links a {
  color: #e5e7eb;
}

.vp-footer-links a:hover,
.vp-footer-links a:focus-visible {
  color: #fbbf24;
}

.vp-footer-bottom {
  border-top: 1px solid rgba(148, 163, 184, 0.45);
}

.vp-footer-bottom-inner {
  padding-top: 1rem;
  padding-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.vp-footer-copy {
  font-size: 0.8rem;
  color: #9ca3af;
}

.vp-footer-disclaimer {
  font-size: 0.78rem;
  color: #6b7280;
  max-width: 46rem;
}

@media (min-width: 640px) {
  .vp-footer-grid {
    grid-template-columns: minmax(0, 1.4fr) repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 960px) {
  .vp-footer-grid {
    grid-template-columns: minmax(0, 1.4fr) repeat(4, minmax(0, 1fr));
  }

  .vp-footer-bottom-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.vp-cookie-banner {
  position: fixed;
  inset-inline: 0;
  bottom: 0;
  z-index: 60;
  padding: 0.75rem 0;
  background: radial-gradient(circle at top left, rgba(37, 99, 235, 0.4), transparent 55%), #020617;
  color: #e5e7eb;
  box-shadow: 0 -16px 40px rgba(15, 23, 42, 0.8);
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.vp-cookie-banner.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.vp-cookie-banner.is-hidden {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}

.vp-cookie-inner {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.vp-cookie-text {
  max-width: 40rem;
}

.vp-cookie-title {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.vp-cookie-desc {
  font-size: 0.8rem;
  color: #cbd5f5;
  margin-bottom: 0.25rem;
}

.vp-cookie-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.8rem;
  color: #bfdbfe;
}

.vp-cookie-link::after {
  content: "\f061";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 0.7rem;
}

.vp-cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.vp-cookie-btn {
  font-size: 0.78rem;
  padding: 0.55rem 1.05rem;
}

#cookie-reject {
  border-color: rgba(148, 163, 184, 0.9);
  background-color: transparent;
  color: #e5e7eb;
}

#cookie-reject:hover {
  background-color: rgba(15, 23, 42, 0.75);
}

@media (min-width: 768px) {
  .vp-cookie-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .vp-cookie-banner {
    padding: 0.9rem 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .vp-cookie-banner {
    transition: none;
  }
}
