/* Final visual polish. Load after site.css and hardening.css. */
:root {
  --vc-font-sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  --vc-footer-bg: #17191d;
  --vc-footer-border: rgba(255, 255, 255, 0.1);
  --vc-footer-text: #c9ced6;
  --vc-footer-muted: #8e96a3;
}

html,
body,
button,
input,
optgroup,
select,
textarea,
summary,
a,
h1,
h2,
h3,
h4,
h5,
h6,
p,
.bnfree {
  font-family: var(--vc-font-sans);
}

body {
  font-kerning: normal;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Card copy remains visible; the extra green hover action does not. */
.card-cta {
  display: none !important;
}

/* Compact, in-flow footer which keeps the legacy page width intact. */
.footer {
  position: relative;
  inset: auto;
  height: auto;
  min-height: 0;
  padding: 0;
  overflow: visible;
  background: var(--vc-footer-bg);
  color: var(--vc-footer-text);
  border-top: 1px solid rgba(0, 0, 0, 0.16);
}

.footer-center {
  border-bottom: 1px solid var(--vc-footer-border);
}

.footer-center-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0;
  padding-top: 10px;
  padding-bottom: 10px;
}

.footer-column {
  box-sizing: border-box;
  min-width: 0;
  height: auto;
  padding: 8px 18px;
  border-right: 0;
}

.footer-column + .footer-column {
  border-left: 1px solid var(--vc-footer-border);
}

.footer .footer-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2px 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer .footer-list li,
.footer-center-inner .footer-list li {
  margin: 0;
}

.footer .footer-list a {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 2px 6px;
  border-radius: 6px;
  color: var(--vc-footer-text);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.35;
  text-decoration: none;
  transition: color 150ms ease, background-color 150ms ease;
}

.footer .footer-list a:hover,
.footer .footer-list a:focus-visible {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  text-decoration: none;
}

.footer-bottom {
  background: rgba(0, 0, 0, 0.1);
}

.footer .copyright {
  box-sizing: border-box;
  padding: 9px 18px 11px;
  color: var(--vc-footer-muted);
  font-size: 12px;
  line-height: 1.35;
}

@media (max-width: 720px) {
  .footer-center-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .footer-column {
    padding: 7px 8px;
  }

  .footer-column:nth-child(odd) {
    border-left: 0;
  }

  .footer-column:nth-child(n + 3) {
    border-top: 1px solid var(--vc-footer-border);
  }

  .footer .footer-list {
    gap: 1px 6px;
  }

  .footer .footer-list a {
    min-height: 26px;
    padding: 2px 4px;
    font-size: 12px;
  }

  .footer .copyright {
    padding: 8px 12px 10px;
    font-size: 11px;
  }
}

@media (max-width: 380px) {
  .footer-center-inner {
    grid-template-columns: 1fr;
  }

  .footer-column + .footer-column {
    border-top: 1px solid var(--vc-footer-border);
    border-left: 0;
  }
}
