:root{
  --site-shell-night:#090a0b;
  --site-shell-ink:#101411;
  --site-shell-acid:#b6f45f;
  --site-shell-coral:#ff654c;
  --site-shell-violet:#948adf;
}

body{
  font-family:"DM Sans",system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
}

.site-topbar{
  position:fixed;
  z-index:1000;
  top:14px;
  left:50%;
  width:min(1240px,calc(100% - 44px));
  min-height:0;
  height:72px;
  margin:0;
  padding:0 20px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  border:1px solid rgba(255,255,255,.13);
  border-radius:18px;
  background:rgba(12,13,14,.86);
  color:#fff;
  box-shadow:0 12px 40px rgba(0,0,0,.28);
  backdrop-filter:blur(18px);
  -webkit-backdrop-filter:blur(18px);
  transform:translateX(-50%) translateZ(0);
  isolation:isolate;
}

.site-topbar .brand,
.site-footer .brand{
  display:inline-flex;
  align-items:center;
  flex:0 0 auto;
  color:#fff;
  font:700 23px/1 "Space Grotesk",sans-serif;
  letter-spacing:-.055em;
  text-decoration:none;
}

.site-topbar .brand span,
.site-footer .brand span{
  display:inline-block;
  margin-left:6px;
  padding:4px 9px 3px;
  border-radius:6px;
  background:linear-gradient(100deg,var(--site-shell-coral),#ff8970 38%,var(--site-shell-violet));
  color:#080909;
}

.site-topbar .menu{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:32px;
}

.site-topbar .menu a{
  color:rgba(255,255,255,.66);
  font-family:"DM Sans",sans-serif;
  font-size:14px;
  font-weight:400;
  line-height:1.2;
  text-decoration:none;
  transition:color .2s;
}

.site-topbar .menu a:hover,
.site-topbar .menu a[aria-current="page"]{
  color:#fff;
}

.site-topbar .menu a[aria-current="page"]{
  font-weight:700;
}

.site-topbar .talk{
  display:inline-flex;
  align-items:center;
  flex:0 0 auto;
  gap:11px;
  color:#fff;
  font-family:"DM Sans",sans-serif;
  font-size:13px;
  font-weight:700;
  line-height:1.2;
  text-decoration:none;
}

.site-topbar .talk i{
  width:42px;
  height:42px;
  display:grid;
  place-items:center;
  border-radius:50%;
  background:var(--site-shell-acid);
  color:var(--site-shell-ink);
  font-style:normal;
}

.site-topbar .talk[aria-current="page"] span{
  color:var(--site-shell-acid);
}

.site-topbar a:focus-visible,
.site-footer a:focus-visible,
.site-footer button:focus-visible{
  outline:3px solid var(--site-shell-acid);
  outline-offset:4px;
}

.site-footer{
  padding:55px 0;
  background:var(--site-shell-night);
  color:rgba(255,255,255,.6);
}

.site-footer .footer-grid{
  width:min(1240px,calc(100% - 44px));
  margin-inline:auto;
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:40px;
}

.site-footer .footer-copy{
  max-width:420px;
  margin-top:14px;
  color:rgba(255,255,255,.54);
  font-size:13px;
  line-height:1.5;
}

.site-footer .footer-links{
  display:flex;
  flex-wrap:wrap;
  justify-content:flex-end;
  gap:18px 24px;
}

.site-footer .footer-links a,
.site-footer .footer-links button{
  margin:0;
  padding:0;
  border:0;
  background:none;
  color:rgba(255,255,255,.62);
  font:500 13px/1.35 "DM Sans",sans-serif;
  text-decoration:none;
  cursor:pointer;
}

.site-footer .footer-links a:hover,
.site-footer .footer-links button:hover{
  color:#fff;
}

@media(max-width:1050px){
  .site-topbar .menu{display:none}
}

@media(max-width:620px){
  .site-topbar{
    top:8px;
    width:calc(100% - 20px);
    height:60px;
    padding:0 12px;
    border-radius:15px;
  }
  .site-topbar .brand,
  .site-footer .brand{font-size:21px}
  .site-topbar .talk>span{display:none}
  .site-topbar .talk i{width:38px;height:38px;font-size:14px}
  .site-footer{padding:42px 0}
  .site-footer .footer-grid{
    width:calc(100% - 32px);
    align-items:flex-start;
    flex-direction:column;
    gap:28px;
  }
  .site-footer .footer-links{justify-content:flex-start;gap:15px 18px}
}
