:root {
  --gm-shell-bg: rgba(247, 247, 249, 0.86);
  --gm-shell-text: #1d1d1f;
  --gm-shell-muted: #6e6e73;
  --gm-shell-line: rgba(0, 0, 0, 0.07);
  --gm-shell-max: 1240px;
}

.site-header,
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  background: var(--gm-shell-bg);
  border-bottom: 1px solid var(--gm-shell-line);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.site-header .header-inner,
.nav .nav-inner {
  width: 100%;
  max-width: var(--gm-shell-max);
  min-height: 58px;
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.site-header .brand-link,
.site-header .site-brand,
.nav .brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gm-shell-text);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.site-header .brand-link img,
.site-header .site-brand img,
.nav .brand img {
  width: 32px;
  height: 32px;
  object-fit: cover;
  border-radius: 9px;
  box-shadow: none;
}

.site-header .header-nav,
.site-header .site-nav,
.nav .links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  color: var(--gm-shell-muted);
  font-size: 14px;
}

.site-header .header-nav a,
.site-header .site-nav a,
.nav .links a {
  color: inherit;
  text-decoration: none;
}

.site-header .header-nav a:hover,
.site-header .site-nav a:hover,
.nav .links a:hover {
  color: var(--gm-shell-text);
}

.site-header .header-cta,
.site-header .site-cta {
  padding: 8px 13px;
  border-radius: 10px;
  background: #111;
  color: #fff !important;
  font-weight: 650;
}

.site-footer,
body > footer {
  width: 100%;
  margin: 0;
  padding: 30px 24px 42px;
  border-top: 1px solid var(--gm-shell-line);
  background: #f7f7f9;
  color: var(--gm-shell-muted);
  font-size: 14px;
  line-height: 1.7;
  text-align: left;
}

.site-footer .footer-inner,
body > footer .footer-inner {
  max-width: var(--gm-shell-max);
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.site-footer a,
body > footer a {
  color: inherit;
  text-decoration: none;
}

.site-footer a:hover,
body > footer a:hover {
  color: var(--gm-shell-text);
}

.site-footer strong,
body > footer strong {
  color: var(--gm-shell-text);
}

@media (max-width: 720px) {
  .site-header .header-inner,
  .nav .nav-inner {
    min-height: 54px;
    padding: 10px 16px;
  }

  .site-header .header-nav,
  .site-header .site-nav,
  .nav .links {
    gap: 12px;
    font-size: 13px;
  }

  .site-header .product-nav > a:not(.header-cta),
  .site-header .site-nav > a:not(.site-cta):not(:last-child) {
    display: none;
  }

  .site-footer,
  body > footer {
    text-align: center;
  }

  .site-footer .footer-inner,
  body > footer .footer-inner {
    justify-content: center;
    text-align: center;
  }
}
