:root {
  --site-footer-bg-top: #11182d;
  --site-footer-bg-bottom: #0e1428;
  --site-footer-text: #eef4ff;
  --site-footer-text-soft: rgba(238, 244, 255, 0.83);
  --site-footer-text-muted: rgba(238, 244, 255, 0.62);
  --site-footer-line: rgba(255, 255, 255, 0.16);
}

.site-footer {
  position: relative;
  margin-top: 20px;
  padding: 18px 0 18px;
  color: var(--site-footer-text);
  background:
    radial-gradient(860px 320px at 10% 0, rgba(27, 191, 148, 0.2), transparent 65%),
    linear-gradient(180deg, var(--site-footer-bg-top) 0%, var(--site-footer-bg-bottom) 100%);
}

.site-footer-inner,
.site-footer-copy {
  position: relative;
  z-index: 1;
}

.site-footer-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.site-footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 12px;
  margin-bottom: 8px;
}

.site-footer-about {
  max-width: 420px;
}

.site-footer-links {
  align-self: start;
}

.site-footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: #ffffff;
  font-size: 23px;
}

.site-footer-brand .logo-mark {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.14);
}

.site-footer-grid p,
.site-footer-grid a {
  display: block;
  margin-top: 5px;
  color: var(--site-footer-text-soft);
  text-decoration: none;
  font-size: 13px;
  line-height: 1.42;
}

.site-footer-grid a:hover {
  color: #ffffff;
}

@media (min-width: 701px) {
  .site-footer {
    padding: 34px 0 26px;
  }

  .site-footer-inner {
    width: min(1340px, calc(100% - 64px));
  }

  .site-footer-grid {
    grid-template-columns: minmax(390px, 1.08fr) minmax(600px, 1fr);
    gap: 72px;
    align-items: start;
    margin-bottom: 18px;
  }

  .site-footer-brand {
    font-size: 26px;
  }

  .site-footer-about p {
    margin-top: 12px;
    max-width: 35ch;
    font-size: 15px;
    line-height: 1.58;
  }

  .site-footer-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 38px;
    row-gap: 8px;
  }

  .site-footer-links a {
    margin-top: 0;
    font-size: 15px;
    line-height: 1.58;
  }

  .site-footer-copy {
    font-size: 13px;
  }
}

.site-footer-copy {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--site-footer-line);
  color: var(--site-footer-text-muted);
  font-size: 12px;
  text-align: center;
}

@media (max-width: 700px) {
  .site-footer-grid {
    grid-template-columns: 1fr;
  }
}

/* Logo pulse */
.logo-dot { transform-origin: center; }
.logo-dot.good { animation: logoPulseGood 3s ease-in-out infinite; }
.logo-dot.ok   { animation: logoPulseOk   3s ease-in-out infinite; }
.logo-dot.bad  { animation: logoPulseBad  3s ease-in-out infinite; }
@keyframes logoPulseGood {
  0%,6%,100%{transform:scale(1);box-shadow:none}
  3%{transform:scale(1.9);box-shadow:0 0 0 4px rgba(20,180,20,.28)}
}
@keyframes logoPulseOk {
  0%,6%,18%,100%{transform:scale(1);box-shadow:none}
  12%{transform:scale(1.9);box-shadow:0 0 0 4px rgba(255,222,0,.28)}
}
@keyframes logoPulseBad {
  0%,18%,30%,100%{transform:scale(1);box-shadow:none}
  24%{transform:scale(1.9);box-shadow:0 0 0 4px rgba(255,0,0,.28)}
}
@media(prefers-reduced-motion:reduce){.logo-dot{animation:none!important}}
