/* Shared homepage navigation and footer. */
.home-v4-topbar {
  position: relative;
  z-index: 50;
  background: rgba(253, 253, 253, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgb(243, 244, 246);
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.08);
}

.home-v4-topbar__inner {
  max-width: 1152px;
  margin: 0px auto;
  padding: 1px 21px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: var();
}

.home-v4-topbar__brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.home-v4-topbar__menu-toggle {
  display: none;
  appearance: none;
  border: medium;
  background: rgba(255, 255, 255, 0.92);
  color: rgb(17, 24, 39);
  width: 42px;
  height: 42px;
  border-radius: 12px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
}

.home-v4-topbar__menu-icon {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
}

.home-v4-topbar__menu-icon span {
  display: block;
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: currentcolor;
  transition: transform 0.2s, opacity 0.2s;
}

.home-v4-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0px, 0px, 0px, 0px);
  white-space: nowrap;
  border: 0px;
}

.home-v4-topbar__badge {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgb(17, 24, 39);
  color: rgb(255, 255, 255);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
}

.home-v4-topbar__logo {
  width: 33px;
  height: 33px;
  border-radius: 8px;
  display: block;
  object-fit: cover;
  flex-shrink: 0;
}

.home-v4-topbar__text {
  display: flex;
  flex-direction: column;
}

.home-v4-topbar__title {
  font-size: 17px;
  color: rgb(17, 24, 39);
}

.home-v4-topbar__subtitle {
  font-size: 10px;
  color: rgb(156, 163, 175);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
}

.home-v4-topbar__nav {
  display: flex;
  gap: 32px;
}

.home-v4-topbar__nav a {
  color: rgb(107, 114, 128);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}

.home-v4-topbar__nav a:hover {
  color: rgb(17, 24, 39);
}

.home-v4-topbar__nav a.home-v4-topbar__nav-highlight {
  color: rgb(29, 78, 216);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.home-v4-topbar__nav a.home-v4-topbar__nav-highlight::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgb(34, 197, 94);
  box-shadow: rgba(34, 197, 94, 0.55) 0px 0px 0px 0px;
  animation: 2s infinite home-v4-nav-pulse;
}

.home-v4-topbar__nav a.home-v4-topbar__nav-highlight:hover {
  color: rgb(30, 58, 138);
}

@keyframes home-v4-nav-pulse {
  0% {
      box-shadow: rgba(34, 197, 94, 0.55) 0px 0px 0px 0px;
  }

  70% {
      box-shadow: rgba(34, 197, 94, 0) 0px 0px 0px 6px;
  }

  100% {
      box-shadow: rgba(34, 197, 94, 0) 0px 0px 0px 0px;
  }
}

@media (prefers-reduced-motion: reduce) {
.home-v4-topbar__nav a.home-v4-topbar__nav-highlight::before {
      animation: auto;
  }

}

@media (max-width: 1024px) {
.home-v4-topbar__inner {
      padding: 14px 18px;
      gap: 14px 18px;
      flex-wrap: wrap;
  }

.home-v4-topbar__nav {
      width: 100%;
      gap: 12px 18px;
      flex-wrap: wrap;
  }

}

@media (max-width: 768px) {
.home-v4-topbar__inner {
      position: relative;
      padding: 12px 16px;
      flex-wrap: nowrap;
      justify-content: space-between;
  }

.home-v4-topbar__brand {
      gap: 10px;
      min-width: 0px;
  }

.home-v4-topbar__logo {
      width: 34px;
      height: 34px;
  }

.home-v4-topbar__title {
      font-size: 16px;
  }

.home-v4-topbar__subtitle {
      font-size: 10px;
  }

.home-v4-topbar__menu-toggle {
      display: inline-flex;
  }

.home-v4-topbar.is-menu-open .home-v4-topbar__menu-icon span:nth-child(1) {
      transform: translateY(6px) rotate(45deg);
  }

.home-v4-topbar.is-menu-open .home-v4-topbar__menu-icon span:nth-child(2) {
      opacity: 0;
  }

.home-v4-topbar.is-menu-open .home-v4-topbar__menu-icon span:nth-child(3) {
      transform: translateY(-6px) rotate(-45deg);
  }

.home-v4-topbar__nav {
      position: absolute;
      top: calc(100%);
      left: 181px;
      right: 16px;
      display: none;
      flex-direction: column;
      gap: 6px;
      padding: 10px;
      border: 1px solid rgb(229, 231, 235);
      border-radius: 0px 0px 0px 18px;
      background: rgba(255, 255, 255, 0.98);
      box-shadow: rgba(15, 23, 42, 0.12) 0px 20px 40px;
      overflow: hidden;
      backdrop-filter: blur(14px);
      z-index: 80;
  }

.home-v4-topbar.is-menu-open .home-v4-topbar__nav {
      display: flex;
  }

.home-v4-topbar__nav::-webkit-scrollbar {
      display: none;
  }

.home-v4-topbar__nav a {
      display: block;
      width: 100%;
      padding: 12px 14px;
      border-radius: 12px;
      font-size: 13px;
      line-height: 1.4;
      white-space: normal;
      box-sizing: border-box;
  }

.home-v4-topbar__nav a:hover {
      background: rgb(249, 250, 251);
  }

}

@media (max-width: 520px) {
.home-v4-topbar__subtitle {
      display: none;
  }

}

.subscription-landing__footer a:focus-visible {
  outline: 2px solid;
  outline-offset: 6px;
}

.subscription-landing__footer {
  padding: 16px 32px 30px;
  color: rgb(17, 17, 17);
  background: rgb(255, 255, 255);
}

.subscription-landing__footer-inner {
  max-width: 1120px;
  margin: 0px auto;
}

.subscription-landing__footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  padding-bottom: 38px;
}

.subscription-landing__footer-brand > a {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 11px;
  color: rgb(24, 43, 66);
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
}

.subscription-landing__footer-brand img {
  border-radius: 8px;
}

.subscription-landing__footer-brand p {
  margin: 15px 0px 0px;
  font-size: 13px;
  color: rgb(112, 129, 151);
}

.subscription-landing__footer-links {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 18px 36px;
  padding-top: 5px;
}

.subscription-landing__footer a {
  text-decoration: none;
}

.subscription-landing__footer-links a {
  color: rgb(73, 96, 119);
  font-size: 13px;
}

.subscription-landing__footer a:hover {
  color: rgb(31, 93, 187);
}

.subscription-landing__footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 22px;
  border-top: 0px;
}

.subscription-landing__footer-bottom p {
  margin: 0px;
  color: rgb(116, 131, 151);
  font-size: 12px;
  line-height: 1.8;
}

.subscription-landing__footer-bottom nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.subscription-landing__footer-bottom a {
  color: rgb(17, 17, 17);
  font-size: 12px;
}

.subscription-landing__compliance {
  display: flex;
  flex-wrap: wrap;
  margin-top: 14px;
}

.subscription-landing__compliance a {
  color: rgb(131, 145, 162);
  font-size: 11px;
  line-height: 1.7;
}

@media (max-width: 768px) {
.subscription-landing__footer {
      padding: 36px 24px 26px;
  }

.subscription-landing__footer-top {
      flex-direction: column;
      gap: 30px;
      padding-bottom: 28px;
  }

.subscription-landing__footer-links {
      width: 100%;
      grid-template-columns: repeat(3, minmax(0px, 1fr));
      gap: 20px 14px;
  }

.subscription-landing__footer-bottom {
      flex-direction: column;
      align-items: flex-start;
      gap: 15px;
  }

.subscription-landing__compliance {
      flex-direction: column;
      gap: 5px;
      margin-top: 20px;
  }

}

.subscription-landing__footer-info > .subscription-landing__footer-detail {
  margin: 0px;
  color: rgb(139, 139, 139);
  font-size: 15px;
}

.subscription-landing__footer-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.subscription-landing__payment {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin: 16px 0;
  color: #111;
  font-size: 14px;
}

.subscription-landing__payment img {
  display: block;
  width: 114px;
  height: 40px;
  object-fit: contain;
}

.subscription-landing__footer-logo {
  border-radius: 8px;
  display: block;
  outline: 1px solid rgb(209, 213, 219);
}

.subscription-landing__footer-name {
  color: rgb(17, 17, 17);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
}

.subscription-landing__footer-info .subscription-landing__compliance {
  margin-top: 0px;
  flex-direction: column;
  align-items: flex-start;
}

.subscription-landing__compliance > span {
  color: rgb(111, 111, 111);
  font-size: 15px;
}

.subscription-landing__footer .subscription-landing__footer-policies {
  padding-top: 0px;
  margin-bottom: 28px;
}
