/*
Theme Name: Adstelligence
Theme URI: https://adstelligence.pl/
Author: Adstelligence
Author URI: https://adstelligence.pl/
Description: Lekki, szybki motyw WordPress dla Adstelligence.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: adstelligence
Tags: custom-logo, custom-menu, featured-images, blog
*/

/* =========================================================
   1) TOKENS / VARIABLES (DEFAULT = DARK)
   ========================================================= */

:root{
  --container: 1160px;
  --pad: 20px;
  --radius: 14px;

  /* Brand */
  --brand-navy: #0b1633;
  --brand-lime: #c8ff00;
  --brand-cyan: #38bdf8;

  /* Default (DARK) */
  --bg: #070c1e;
  --bg-soft: rgba(255,255,255,.06);

  --text: rgba(255,255,255,.92);
  --muted: rgba(255,255,255,.72);
  --border: rgba(255,255,255,.12);

  --primary: var(--brand-lime);
  --primary-contrast: #061027;

  --header-h: 72px;
  --shadow: 0 18px 80px rgba(0,0,0,.28);

  --ease: cubic-bezier(.2,.8,.2,1);
  --dur: 260ms;

  /* Glass tokens */
  --glass-bg: rgba(255,255,255,.06);
  --glass-border: rgba(255,255,255,.10);
  --glass-blur: 14px;
}

/* Opcjonalny wariant jasny (użyj: body.theme-light) */
body.theme-light{
  --bg: #ffffff;
  --bg-soft: #f6f7f9;

  --text: #0b1633;
  --muted: rgba(11,22,51,.72);
  --border: rgba(11,22,51,.12);

  --shadow: 0 10px 30px rgba(0,0,0,.10);

  --glass-bg: rgba(11,22,51,.04);
  --glass-border: rgba(11,22,51,.10);
}

/* =========================================================
   2) RESET / BASE
   ========================================================= */

*{ box-sizing: border-box; }
html, body{ margin:0; padding:0; }
html, body{ overflow-x: hidden; }

html,
body{
  background-color: var(--bg); /* ważne: eliminuje białe flash’e */
  color: var(--text);
}

body{
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Liberation Sans", sans-serif;
  line-height: 1.55;
  text-rendering: geometricPrecision;
}

img{ max-width: 100%; height: auto; display:block; }

a{
  color: inherit;
  text-decoration: none;
}
a:hover{ text-decoration: none; }

.container{
  width: min(var(--container), 100% - (var(--pad) * 2));
  margin-inline: auto;
}

/* =========================================================
   3) ACCESSIBILITY
   ========================================================= */

.screen-reader-text{
  border: 0; clip: rect(1px,1px,1px,1px);
  clip-path: inset(50%);
  height: 1px; margin: -1px; overflow: hidden;
  padding: 0; position: absolute !important;
  width: 1px; white-space: nowrap;
}

.skip-link:focus{
  clip: auto !important;
  clip-path: none;
  height: auto; width: auto;
  margin: 12px; padding: 10px 12px;
  position: absolute;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 10px;
  z-index: 9999;
}

/* Focus ring spójny z hero */
:where(a, button, input, textarea, select):focus-visible{
  outline: none;
  box-shadow: 0 0 0 4px rgba(200,255,0,.14);
  border-radius: 12px;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  *{
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* =========================================================
   4) UI ELEMENTS
   ========================================================= */

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 11px 14px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(10px);
  color: var(--text);
  font-weight: 650;
  cursor:pointer;
  transition: transform var(--dur) var(--ease),
              filter var(--dur) var(--ease),
              background var(--dur) var(--ease),
              border-color var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease);
}

.btn:hover{
  filter: brightness(1.03);
  transform: translateY(-1px);
}

.btn--primary{
  background: var(--primary);
  color: var(--primary-contrast);
  border-color: transparent;
  box-shadow: 0 16px 34px rgba(200,255,0,.18);
}

.btn--primary:hover{
  filter: brightness(.98);
}

.btn--full{ width: 100%; }

/* =========================================================
   5) GLOBAL TYPOGRAPHY HELPERS
   ========================================================= */

h1,h2,h3,h4{
  line-height: 1.15;
  letter-spacing: -0.2px;
}

p{ margin: 0 0 1em; }

/* =========================================================
   6) HEADER / FOOTER SAFETY BASE
   ========================================================= */

.site-header,
.site-footer{
  position: relative;
}

.site-nav__list,
.site-drawer__list{
  list-style: none;
  margin: 0;
  padding: 0;
}

/* =========================================================
   7) FRONT / HERO BACKGROUND (wrapper)
   Jeśli używasz wrappera .front-unified w front-page.php
   ========================================================= */

.front-unified{
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(900px 420px at 75% 20%, rgba(56,189,248,.14), transparent 60%),
    radial-gradient(700px 360px at 15% 70%, rgba(200,255,0,.10), transparent 55%),
    linear-gradient(180deg, rgba(11,22,51,1) 0%, rgba(7,12,30,1) 100%);
}

/* Delikatna siatka jak w hero */
.front-unified::before{
  content:"";
  position:absolute;
  inset:-2px;
  background:
    repeating-linear-gradient(
      135deg,
      rgba(255,255,255,.06) 0px,
      rgba(255,255,255,.06) 1px,
      transparent 1px,
      transparent 12px
    );
  opacity:.08;
  pointer-events:none;
}

.front-unified > *{
  position: relative;
  z-index: 1;
}

/* Zabezpieczenie przed “białymi paskami” jeśli sekcje mają własne tła */
.front-unified section{
  background: transparent;
}

/* =========================
   HEADER — smooth + stabilny
   ========================= */

.site-header{
  position: sticky;
  top: 0;
  z-index: 999;

  padding: 14px 0;
  transition: transform .22s ease;

  isolation: isolate;
  will-change: transform;
}

.site-header::before{
  content:"";
  position:absolute;
  inset: 0;
  background: rgba(7,12,30,.28);
  border-bottom: 1px solid rgba(255,255,255,.08);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  pointer-events:none;

  transition: background .22s ease, border-color .22s ease, transform .22s ease;
  will-change: transform;
}

.site-header::after{
  content:"";
  position:absolute;
  inset: 0;
  background:
    radial-gradient(520px 160px at 20% 0%, rgba(56,189,248,.12), transparent 62%),
    radial-gradient(520px 160px at 80% 100%, rgba(200,255,0,.08), transparent 60%);
  opacity: .9;
  pointer-events:none;

  transition: opacity .22s ease, transform .22s ease;
  will-change: transform, opacity;
}

.site-header.is-scrolled{
  transform: translateY(-2px);
}
.site-header.is-scrolled::before{
  background: rgba(7,12,30,.40);
  border-bottom-color: rgba(255,255,255,.10);
  transform: translateY(-2px);
}
.site-header.is-scrolled::after{
  opacity: 1;
  transform: translateY(-2px);
}

.site-header__inner{
  position: relative;
  z-index: 1;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 14px;
}

/* Brand */
.site-header__logoLink{ display:inline-flex; align-items:center; text-decoration:none; }
.site-header__logoImg{
  width: 220px;
  height: auto;
  display:block;
  opacity: .96;
  filter: saturate(1.05) contrast(1.02);
}

/* Desktop nav */
.site-nav__list{
  display:flex;
  align-items:center;
  gap: 10px;
  list-style:none;
  margin:0;
  padding: 6px;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.site-nav__list a{
  color: rgba(255,255,255,.80);
  text-decoration:none;
  font-size: 13px;
  letter-spacing: .15px;
  padding: 10px 12px;
  border-radius: 999px;
  transition: background .18s ease, color .18s ease, transform .18s ease, border-color .18s ease;
  display:inline-flex;
  align-items:center;
}

.site-nav__list a:hover{
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.92);
  transform: translateY(-1px);
}

/* Actions */
.site-header__actions{
  display:flex;
  align-items:center;
  gap: 10px;
}

/* Social */
.site-social{
  display:flex;
  align-items:center;
  gap: 6px;
  padding: 6px;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.site-social__link{
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  color: rgba(255,255,255,.78);
  transition: background .18s ease, color .18s ease, transform .18s ease;
}

.site-social__link:hover{
  background: rgba(200,255,0,.12);
  color: #eaff9a;
  transform: translateY(-1px);
}

/* Hamburger */
.nav-toggle{
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.06);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  cursor:pointer;
  transition: transform .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease;
  display:inline-flex;
  align-items:center;
  justify-content:center;
}

.nav-toggle:hover{
  transform: translateY(-1px);
  border-color: rgba(200,255,0,.22);
  background: rgba(200,255,0,.10);
  box-shadow: 0 10px 40px rgba(0,0,0,.25);
}

.nav-toggle__icon{
  width: 18px;
  height: 12px;
  position: relative;
  display:block;
}
.nav-toggle__icon span{
  position:absolute;
  left:0; right:0;
  height: 2px;
  border-radius: 999px;
  background: rgba(255,255,255,.88);
  transform-origin: center;
  transition: transform .22s ease, top .22s ease, opacity .18s ease;
}
.nav-toggle__icon span:nth-child(1){ top: 0; }
.nav-toggle__icon span:nth-child(2){ top: 5px; opacity: .9; }
.nav-toggle__icon span:nth-child(3){ top: 10px; opacity: .85; }

body.nav-open .nav-toggle__icon span:nth-child(1){ top: 5px; transform: rotate(45deg); }
body.nav-open .nav-toggle__icon span:nth-child(2){ opacity: 0; }
body.nav-open .nav-toggle__icon span:nth-child(3){ top: 5px; transform: rotate(-45deg); }

/* =========================
   DRAWER
   ========================= */

.site-drawer{
  position: fixed;
  inset: 0;
  z-index: 2000; /* ponad header */
  visibility: hidden;
  pointer-events: none;
}

.site-drawer__overlay{
  position:absolute;
  inset:0;
  background: rgba(0,0,0,.56);
  opacity: 0;
  transition: opacity .28s ease;
}

.site-drawer__panel{
  position:absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: min(420px, 92vw);

  opacity: 0;
  transform: translateX(18px);
  transition: transform .32s cubic-bezier(.2,.8,.2,1), opacity .22s ease;

  background: rgba(7,12,30,.68);
  border-left: 1px solid rgba(255,255,255,.10);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  box-shadow: -18px 0 80px rgba(0,0,0,.45);

  padding: 14px;
  display:flex;
  flex-direction: column;
  gap: 14px;
  overflow: hidden;
}

.site-drawer__panel::before{
  content:"";
  position:absolute;
  inset:-30%;
  background:
    radial-gradient(circle at 25% 20%, rgba(56,189,248,.18), transparent 55%),
    radial-gradient(circle at 75% 80%, rgba(200,255,0,.12), transparent 58%);
  opacity: .75;
  pointer-events:none;
}

.site-drawer__panel > *{ position: relative; z-index: 1; }

body.nav-open .site-drawer{
  visibility: visible;
  pointer-events: auto;
}
body.nav-open .site-drawer__overlay{ opacity: 1; }
body.nav-open .site-drawer__panel{ transform: translateX(0); opacity: 1; }

.site-drawer__top{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px;
  border-radius: 18px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.site-drawer__logo{ width: 220px; height:auto; display:block; opacity:.95; }

.site-drawer__close{
  width: 44px; height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.06);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  cursor:pointer;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
  display:inline-flex;
  align-items:center;
  justify-content:center;
}
.site-drawer__close:hover{
  transform: translateY(-1px);
  border-color: rgba(200,255,0,.22);
  background: rgba(200,255,0,.10);
}

.site-drawer__closeIcon{
  width: 18px; height: 18px;
  position: relative; display:block;
}
.site-drawer__closeIcon::before,
.site-drawer__closeIcon::after{
  content:"";
  position:absolute;
  left: 0; right: 0;
  top: 50%;
  height: 2px;
  border-radius: 999px;
  background: rgba(255,255,255,.88);
}
.site-drawer__closeIcon::before{ transform: translateY(-50%) rotate(45deg); }
.site-drawer__closeIcon::after{ transform: translateY(-50%) rotate(-45deg); }

.site-drawer__nav{
  padding: 10px;
  border-radius: 18px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.site-drawer__list{
  list-style:none;
  margin:0; padding:0;
  display:grid;
  gap: 8px;
}

.site-drawer__list > li{
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .28s ease, transform .28s ease;
  will-change: transform, opacity;
}
body.nav-open .site-drawer__list > li{ opacity: 1; transform: translateY(0); }
body.nav-open .site-drawer__list > li:nth-child(1){ transition-delay: 50ms; }
body.nav-open .site-drawer__list > li:nth-child(2){ transition-delay: 90ms; }
body.nav-open .site-drawer__list > li:nth-child(3){ transition-delay: 130ms; }
body.nav-open .site-drawer__list > li:nth-child(4){ transition-delay: 170ms; }
body.nav-open .site-drawer__list > li:nth-child(5){ transition-delay: 210ms; }
body.nav-open .site-drawer__list > li:nth-child(6){ transition-delay: 250ms; }

.site-drawer__list a{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px;
  border-radius: 14px;
  text-decoration:none;

  color: rgba(255,255,255,.86);
  background: rgba(0,0,0,.14);
  border: 1px solid rgba(255,255,255,.08);
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}
.site-drawer__list a:hover{
  transform: translateX(2px);
  border-color: rgba(56,189,248,.18);
  background: rgba(56,189,248,.10);
}

.site-drawer__bottom{
  margin-top: auto;
  padding: 10px;
  border-radius: 18px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  display:grid;
  gap: 10px;
}

.btn--full{ width:100%; justify-content:center; }

.site-drawer__meta{
  display:flex;
  align-items:center;
  gap: 10px;
  color: rgba(255,255,255,.70);
}
.site-drawer__metaDot{
  width:8px; height:8px;
  border-radius: 99px;
  background:#c8ff00;
  box-shadow: 0 0 0 4px rgba(200,255,0,.14);
}

@media (max-width: 980px){
  .site-nav{ display:none; }
  .site-header__cta{ display:none; }
  .site-social{ display:none; }
  .site-header__logoImg{ width: 200px; }
}

@media (prefers-reduced-motion: reduce){
  .site-header,
  .site-header::before,
  .site-header::after,
  .site-drawer__overlay,
  .site-drawer__panel,
  .site-drawer__list > li,
  .nav-toggle,
  .nav-toggle__icon span{
    transition: none !important;
    animation: none !important;
  }
}

/* =========================
   FOOTER — HERO STYLE
   (ten sam “język” co hero)
   ========================= */

.site-footer--hero{
  position: relative;
  color: #fff;
  padding: clamp(42px, 5vw, 70px) 0 26px;
  overflow: hidden;

  /* Dokładnie jak hero: gradienty + baza */
  background:
    radial-gradient(900px 420px at 75% 20%, rgba(56,189,248,.14), transparent 60%),
    radial-gradient(700px 360px at 15% 70%, rgba(200,255,0,.10), transparent 55%),
    linear-gradient(180deg, rgba(11,22,51,1) 0%, rgba(7,12,30,1) 100%);
}

/* Animated sheen jak w hero */
.site-footer--hero::before{
  content:"";
  position:absolute;
  inset:-2px;
  background:
    linear-gradient(90deg, transparent, rgba(255,255,255,.08), transparent),
    repeating-linear-gradient(
      135deg,
      rgba(255,255,255,.06) 0px,
      rgba(255,255,255,.06) 1px,
      transparent 1px,
      transparent 12px
    );
  opacity:.10;
  transform: translateX(-40%);
  animation: sfSheen 10s linear infinite;
  pointer-events:none;
}

@keyframes sfSheen{
  0%{ transform: translateX(-40%); }
  100%{ transform: translateX(40%); }
}

.site-footer__inner{
  position: relative;
  z-index: 1;
}

/* Grid */
.site-footer__grid{
  display:grid;
  grid-template-columns: 1.2fr .9fr .9fr;
  gap: clamp(14px, 2.4vw, 26px);
  align-items: start;
}

/* Brand */
.site-footer__brandLink{
  display:inline-flex;
  align-items:center;
  text-decoration:none;
}

.site-footer__logo{
  width: min(320px, 100%);
  height: auto;
  display:block;
  opacity: .94;
  filter: saturate(1.04) contrast(1.02);
}

.site-footer__meta{
  margin: 12px 0 14px;
  color: rgba(255,255,255,.78);
  max-width: 56ch;
  font-size: 14px;
  line-height: 1.55;
}

/* Eyebrow pill (jak badge w hero) */
.site-footer__eyebrow{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  backdrop-filter: blur(10px);
  font-size: 13px;
  letter-spacing: .2px;
  margin: 0 0 12px;
}

.sf-dot{
  width:8px; height:8px;
  border-radius: 99px;
  background: #38bdf8;
  box-shadow: 0 0 0 4px rgba(56,189,248,.12);
}

.sf-dot--lime{
  background: #c8ff00;
  box-shadow: 0 0 0 4px rgba(200,255,0,.14);
}

/* Chips (spójne z hero) */
.site-footer__chips{
  display:flex;
  flex-wrap: wrap;
  gap: 8px;
}

.site-footer__chip{
  display:inline-flex;
  align-items:center;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(0,0,0,.16);
  border: 1px solid rgba(255,255,255,.10);
  color: rgba(255,255,255,.78);
  font-size: 12px;
  line-height: 1;
}

/* Menu */
.site-footer__menu{
  margin: 0;
  padding: 0;
  list-style: none;
  display:grid;
  gap: 10px;
}

.site-footer__menu a{
  color: rgba(255,255,255,.84);
  text-decoration: none;
  font-size: 14px;
  opacity: .92;
  transition: opacity .18s ease, transform .18s ease;
}

.site-footer__menu a:hover{
  opacity: 1;
  transform: translateX(2px);
}

/* Contact */
.site-footer__contact{
  margin: 0;
  padding: 0;
  list-style: none;
  display:grid;
  gap: 10px;
  color: rgba(255,255,255,.76);
  font-size: 14px;
  line-height: 1.45;
}

.site-footer__contact strong{
  color: rgba(255,255,255,.90);
  font-weight: 700;
}

/* =========================
   COPY BUTTON + TOOLTIP
   ========================= */

.site-footer__contact--copy{
  gap: 10px;
}

.sf-copy{
  width: 100%;
  display:flex;
  align-items:flex-start;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  backdrop-filter: blur(12px);
  color: rgba(255,255,255,.78);
  cursor: pointer;
  text-align: left;
  position: relative;
  transition: transform .16s ease, border-color .16s ease, background .16s ease;
}

.sf-copy:hover{
  transform: translateY(-1px);
  border-color: rgba(200,255,0,.25);
  background: rgba(255,255,255,.08);
}

.sf-copy:active{
  transform: translateY(0px);
}

.sf-copy:focus-visible{
  outline: none;
  box-shadow:
    0 0 0 3px rgba(56,189,248,.25),
    0 0 0 1px rgba(255,255,255,.14) inset;
}

.sf-copy__label{
  min-width: 56px;
  color: rgba(255,255,255,.66);
  font-size: 13px;
  line-height: 1.35;
}

.sf-copy__value{
  color: rgba(255,255,255,.86);
  font-size: 14px;
  line-height: 1.35;
}

/* Tooltip */
.sf-copy__hint{
  position:absolute;
  top: -10px;
  right: 10px;
  transform: translateY(-100%);
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(0,0,0,.35);
  border: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.86);
  font-size: 12px;
  line-height: 1;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity .14s ease, transform .14s ease;
  backdrop-filter: blur(10px);
}

.sf-copy__hint::after{
  content:"";
  position:absolute;
  right: 16px;
  bottom: -6px;
  width: 10px;
  height: 10px;
  background: rgba(0,0,0,.35);
  border-right: 1px solid rgba(255,255,255,.14);
  border-bottom: 1px solid rgba(255,255,255,.14);
  transform: rotate(45deg);
}

/* Show tooltip on hover/focus */
.sf-copy:hover .sf-copy__hint,
.sf-copy:focus-visible .sf-copy__hint{
  opacity: 1;
  transform: translateY(-108%);
}

/* Copied state */
.sf-copy.is-copied{
  border-color: rgba(200,255,0,.32);
}

.sf-copy.is-copied .sf-copy__hint{
  opacity: 1;
  transform: translateY(-108%);
  border-color: rgba(200,255,0,.28);
}

/* Bottom bar (glass, jak karty w hero) */
.site-footer__bottom{
  margin-top: 18px;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 14px;
  border-radius: 18px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  backdrop-filter: blur(14px);
}

.site-footer__copy{
  color: rgba(255,255,255,.66);
  font-size: 13px;
}

.site-footer__link{
  color: rgba(255,255,255,.80);
  text-decoration: none;
  font-size: 13px;
  padding-bottom: 2px;
  border-bottom: 1px solid rgba(255,255,255,.20);
  transition: opacity .18s ease, border-color .18s ease;
}

.site-footer__link:hover{
  opacity: 1;
  border-color: rgba(200,255,0,.35);
}

/* Responsive */
@media (max-width: 980px){
  .site-footer__grid{
    grid-template-columns: 1fr;
  }
  .site-footer__bottom{
    flex-direction: column;
    align-items: flex-start;
  }
  .site-footer__logo{
    width: min(280px, 100%);
  }
}