:root {
  --dock-night: #031e18;
  --dock-green: #07573a;
  --dock-aqua: #72e7c3;
  --dock-orange: #f28c28;
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.glass-site-header,
.site-topbar.glass-site-header {
  position: sticky;
  top: 0;
  z-index: 110;
  width: 100%;
  padding: 12px 0;
  color: #fff;
  background: transparent;
  border: 0;
  pointer-events: none;
}

.site-topbar.glass-site-header {
  position: absolute;
  inset: 0 0 auto;
}

.glass-dock {
  position: relative;
  display: flex;
  width: min(1720px, calc(100% - 48px));
  min-height: 66px;
  align-items: center;
  gap: 0;
  margin: 0 auto;
  padding: 8px 0;
  overflow: visible;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  pointer-events: auto;
  isolation: isolate;
}

.glass-dock::before {
  content: none;
}

.glass-dock::after {
  content: none;
}

.dock-brand {
  display: grid;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  place-items: center;
  padding: 4px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 15px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.22);
}

.dock-brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 10px;
}

.dock-divider {
  display: none;
}

.dock-links {
  display: flex;
  min-width: 0;
  flex: 0 1 auto;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(18px, 2.2vw, 44px);
  margin-left: auto;
}

.dock-link {
  position: relative;
  display: inline-flex;
  min-width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 0 12px;
  overflow: hidden;
  color: rgba(232, 255, 248, 0.77);
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid transparent;
  border-radius: 15px;
  text-decoration: none;
  transition:
    color 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.dock-icon {
  display: grid;
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  place-items: center;
}

.dock-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.dock-label {
  max-width: 0;
  margin-left: 0;
  overflow: hidden;
  opacity: 0;
  color: inherit;
  font-size: 13px;
  font-weight: 820;
  letter-spacing: -0.01em;
  white-space: nowrap;
  transition: max-width 240ms ease, margin-left 180ms ease, opacity 150ms ease;
}

.dock-link:hover,
.dock-link:focus-visible,
.dock-link[aria-current="page"] {
  color: #f3fffb;
  background:
    linear-gradient(135deg, rgba(114, 231, 195, 0.22), rgba(255, 255, 255, 0.07));
  border-color: rgba(153, 255, 224, 0.24);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 8px 22px rgba(2, 24, 18, 0.25),
    0 0 24px rgba(67, 215, 172, 0.08);
  transform: translateY(-2px);
}

.dock-link:hover .dock-label,
.dock-link:focus-visible .dock-label {
  max-width: 190px;
  margin-left: 9px;
  opacity: 1;
}

.dock-link[aria-current="page"] .dock-icon {
  color: var(--dock-aqua);
}

.dock-link--accent {
  color: #fff;
  background: linear-gradient(135deg, rgba(67, 215, 172, 0.2), rgba(242, 140, 40, 0.1));
  border-color: rgba(148, 255, 218, 0.18);
}

.future-footer,
.site-footer.future-footer {
  position: relative;
  overflow: hidden;
  color: rgba(235, 255, 249, 0.7);
  background:
    radial-gradient(circle at 12% 0%, rgba(67, 215, 172, 0.17), transparent 24rem),
    radial-gradient(circle at 86% 115%, rgba(242, 140, 40, 0.11), transparent 21rem),
    var(--dock-night);
  border-top: 1px solid rgba(114, 231, 195, 0.16);
}

.future-footer::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(114, 231, 195, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(114, 231, 195, 0.045) 1px, transparent 1px);
  background-size: 48px 48px;
  content: "";
  mask-image: linear-gradient(to bottom, #000, transparent 92%);
}

.future-footer .footer-inner {
  position: relative;
  display: grid;
  width: min(1120px, calc(100% - 44px));
  grid-template-columns: 1.35fr 0.8fr 0.95fr;
  gap: 48px;
  margin: 0 auto;
  padding: 62px 0 38px;
}

.future-footer .footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: #fff;
  font-weight: 850;
}

.future-footer .footer-brand img {
  width: 44px;
  height: 44px;
  padding: 4px;
  object-fit: contain;
  background: #fff;
  border-radius: 13px;
}

.future-footer .footer-summary {
  max-width: 470px;
  margin: 17px 0 0;
  color: rgba(235, 255, 249, 0.65);
  font-size: 14px;
  line-height: 1.75;
}

.future-footer .footer-col h2 {
  margin: 0 0 16px;
  color: var(--dock-aqua);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.future-footer .footer-col a {
  display: block;
  margin: 10px 0;
  color: rgba(235, 255, 249, 0.72);
  font-size: 14px;
  line-height: 1.5;
  transition: color 160ms ease, transform 160ms ease;
}

.future-footer .footer-address {
  max-width: 290px;
  margin: 10px 0;
  color: rgba(235, 255, 249, 0.62);
  font-size: 14px;
  font-style: normal;
  line-height: 1.55;
}

.future-footer .footer-col a:hover,
.future-footer .footer-col a:focus-visible {
  color: #fff;
  transform: translateX(3px);
}

.future-footer .footer-bottom {
  position: relative;
  display: flex;
  width: min(1120px, calc(100% - 44px));
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 0 auto;
  padding: 20px 0 28px;
  color: rgba(235, 255, 249, 0.54);
  border-top: 1px solid rgba(114, 231, 195, 0.11);
  font-size: 12px;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 9px;
}

.footer-socials a {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--dock-aqua);
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(114, 231, 195, 0.16);
  border-radius: 12px;
}

.footer-socials svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (max-width: 780px) {
  .glass-site-header,
  .site-topbar.glass-site-header {
    padding: 7px 0;
  }

  .glass-dock {
    width: calc(100% - 14px);
    min-height: 58px;
    gap: 0;
    padding: 6px;
  }

  .dock-brand,
  .dock-divider {
    display: none;
  }

  .dock-links {
    width: 100%;
    flex: 1 1 auto;
    justify-content: space-between;
    gap: 3px;
    margin-left: 0;
  }

  .dock-link {
    width: clamp(36px, 11vw, 44px);
    min-width: 36px;
    height: 44px;
    flex: 0 1 clamp(36px, 11vw, 44px);
    padding: 0;
    border-radius: 13px;
  }

  .dock-link:hover,
  .dock-link:focus-visible {
    transform: none;
  }

  .dock-label,
  .dock-link:hover .dock-label,
  .dock-link:focus-visible .dock-label {
    display: none;
  }

  .future-footer .footer-inner {
    grid-template-columns: 1fr;
    gap: 34px;
    padding-top: 48px;
  }

  .future-footer .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  .dock-link,
  .dock-label,
  .future-footer a {
    transition: none !important;
  }
}
