/*
  Canonical Pluginchatbot public site shell.
  Source design: homepage header + homepage footer.
  Loaded last on every public page so page-specific CSS cannot fork the shell.
*/

/* Shared shell fallbacks for future standalone public pages. */
:root {
  --pc-font: Inter, "Plus Jakarta Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --pc-ink: #151514;
  --pc-red: #d92f24;
  --pc-red-dark: #a71e16;
  --pc-ease: cubic-bezier(.4, 0, .2, 1);
}

.pc-scroll-progress {
  position: fixed;
  inset: 0 auto auto 0;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left center;
  background: linear-gradient(90deg, rgba(217,47,36,0), rgba(217,47,36,.95) 10%, #ff594f 50%, rgba(217,47,36,.95) 90%, rgba(217,47,36,0));
  box-shadow: 0 0 12px rgba(217,47,36,.78), 0 0 28px rgba(217,47,36,.35);
  z-index: 100;
  pointer-events: none;
}

.pc-site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 80;
  border-bottom: 1px solid rgba(255,255,255,.08);
  background: rgba(5,5,5,.12);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: background .24s var(--pc-ease), border-color .24s var(--pc-ease), transform .24s var(--pc-ease);
}

body[data-pc-header-solid] .pc-site-header {
  background: rgba(5,5,5,.88);
  border-bottom-color: rgba(255,255,255,.13);
}

.pc-site-header.is-scrolled,
.pc-site-header.is-open {
  background: rgba(5,5,5,.88);
  border-bottom-color: rgba(255,255,255,.13);
}

.pc-header-shell {
  width: min(calc(100% - clamp(40px, 9vw, 156px)), 1572px);
  height: 98px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: clamp(18px, 2vw, 42px);
}

.pc-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0;
  white-space: nowrap;
}

.pc-logo img {
  width: 61.3375816345px;
  height: 60.1910820007px;
  object-fit: contain;
  filter: drop-shadow(0 0 14px rgba(217,47,36,.45));
}

.pc-logo-dark { color: var(--pc-ink); }

.pc-desktop-nav {
  flex: 0 1 587px;
  width: min(587px, 100%);
  margin-left: auto;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 30px;
}

.pc-desktop-nav a,
.pc-mobile-nav a {
  color: rgba(255,255,255,.78);
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  text-transform: capitalize;
  transition: color .22s var(--pc-ease), transform .22s var(--pc-ease);
}

.pc-desktop-nav a:hover,
.pc-mobile-nav a:hover {
  color: #fff;
  transform: translateY(-1px);
}

.pc-nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 51px;
}

.pc-nav-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.pc-nav-trigger .pc-nav-chevron {
  width: 10px;
  height: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  transform: translateY(1px);
  transition: transform .22s var(--pc-ease);
}

.pc-nav-trigger .pc-nav-chevron svg {
  width: 10px;
  height: 7px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pc-nav-dropdown:hover .pc-nav-trigger .pc-nav-chevron,
.pc-nav-dropdown:focus-within .pc-nav-trigger .pc-nav-chevron {
  transform: translateY(1px) rotate(180deg);
}

.pc-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  min-width: 246px;
  padding: 10px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(5,5,5,.94);
  box-shadow: 0 24px 70px rgba(0,0,0,.35);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 12px);
  transition: opacity .22s var(--pc-ease), visibility .22s var(--pc-ease), transform .22s var(--pc-ease);
}

.pc-dropdown-menu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -13px;
  height: 13px;
}

.pc-nav-dropdown:hover .pc-dropdown-menu,
.pc-nav-dropdown:focus-within .pc-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.pc-dropdown-menu a {
  display: flex;
  align-items: center;
  min-height: 38px;
  padding: 0 12px;
  border-bottom: 1px solid rgba(255,255,255,.07);
  color: rgba(255,255,255,.72);
  font-size: 14px;
  line-height: 1.15;
  white-space: nowrap;
  text-transform: none;
}

.pc-dropdown-menu a:last-child { border-bottom: 0; }
.pc-dropdown-menu a:hover {
  color: #fff;
  background: rgba(217,47,36,.13);
  transform: translateX(2px);
}

.pc-header-demo.pc-arrow-button {
  width: 190px;
  height: 51px;
  min-height: 51px;
  flex: 0 0 190px;
  display: inline-flex;
  align-items: stretch;
  border: 0;
  background: #fff;
  color: #101010;
  font-size: 14px;
  font-weight: 600;
  transition: transform .24s var(--pc-ease), box-shadow .24s var(--pc-ease), background .24s var(--pc-ease);
}

.pc-header-demo.pc-arrow-button > span:first-child {
  min-width: auto;
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
}

.pc-header-demo.pc-arrow-button > span:last-child {
  width: 51px;
  display: grid;
  place-items: center;
  background: var(--pc-red);
  color: #fff;
  font-size: 22px;
  line-height: 1;
  font-weight: 500;
  overflow: hidden;
  transition: background .24s var(--pc-ease);
}

.pc-header-demo.pc-arrow-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0,0,0,.08);
}
.pc-header-demo.pc-arrow-button:hover > span:last-child {
  background: var(--pc-red-dark);
  text-indent: 5px;
}

.pc-menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  margin-left: auto;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.04);
  color: #fff;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.pc-menu-toggle span {
  width: 18px;
  height: 2px;
  background: currentColor;
  transition: transform .22s var(--pc-ease), opacity .22s var(--pc-ease);
}

.pc-site-header.is-open .pc-menu-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.pc-site-header.is-open .pc-menu-toggle span:nth-child(2) { opacity: 0; }
.pc-site-header.is-open .pc-menu-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.pc-mobile-nav {
  display: none;
  width: min(calc(100% - clamp(40px, 9vw, 156px)), 1572px);
  margin: 0 auto;
  padding: 0 0 26px;
  flex-direction: column;
  gap: 17px;
  background: transparent;
}

.pc-mobile-demo {
  display: inline-flex;
  width: fit-content;
  padding: 12px 16px;
  background: var(--pc-red);
  color: #fff !important;
  font-weight: 800 !important;
}

.pc-mobile-dropdown { color: rgba(255,255,255,.78); }
.pc-mobile-dropdown summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(255,255,255,.78);
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  text-transform: capitalize;
}
.pc-mobile-dropdown summary::-webkit-details-marker { display: none; }
.pc-mobile-dropdown summary::marker { content: ""; font-size: 0; }
.pc-mobile-dropdown summary::after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform .22s cubic-bezier(.4, 0, .2, 1);
  opacity: .7;
}
.pc-mobile-dropdown[open] summary::after {
  transform: translateY(1px) rotate(-135deg);
}
.pc-mobile-dropdown a {
  display: block;
  margin: 0;
  padding: 11px 0 11px 16px;
  font-size: 14px;
  line-height: 1.2;
  color: rgba(255,255,255,.58);
}
.pc-mobile-dropdown[open] > summary {
  margin-bottom: 4px;
}

/* Global mobile header: logo + hamburger only (hide desktop nav, demo button,
   and profile). Applies to every page so all headers behave consistently. */
@media (max-width: 980px) {
  .pc-site-header .pc-desktop-nav,
  .pc-site-header .pc-header-demo,
  .pc-site-header .pc-header-profile {
    display: none !important;
  }
  .pc-site-header .pc-menu-toggle {
    display: inline-flex !important;
    margin-left: auto;
  }
}

.pc-header-profile {
  position: relative;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
}

.pc-header-profile[hidden],
.pc-mobile-auth[hidden],
.pc-header-demo[hidden],
.pc-mobile-demo[hidden],
[data-auth-demo][hidden],
[data-auth-mobile-demo][hidden] {
  display: none !important;
}

.pc-profile-toggle,
.pc-mobile-profile-toggle {
  width: 51px;
  height: 51px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.04);
  color: #fff;
  padding: 0;
  transition: border-color .22s var(--pc-ease), background .22s var(--pc-ease), transform .22s var(--pc-ease);
}

.pc-profile-toggle:hover,
.pc-header-profile:focus-within .pc-profile-toggle,
.pc-mobile-profile-toggle:hover,
.pc-mobile-auth.is-open .pc-mobile-profile-toggle {
  border-color: rgba(217,47,36,.58);
  background: rgba(217,47,36,.16);
  transform: translateY(-1px);
}

.pc-profile-avatar {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: var(--pc-red);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 0 18px rgba(217,47,36,.45);
}

.pc-profile-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  min-width: 168px;
  padding: 8px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(5,5,5,.96);
  box-shadow: 0 24px 70px rgba(0,0,0,.35);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity .22s var(--pc-ease), visibility .22s var(--pc-ease), transform .22s var(--pc-ease);
}

.pc-profile-dropdown::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -13px;
  height: 13px;
}

.pc-header-profile:hover .pc-profile-dropdown,
.pc-header-profile:focus-within .pc-profile-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.pc-profile-dropdown a,
.pc-profile-dropdown button,
.pc-mobile-profile-dropdown a,
.pc-mobile-profile-dropdown button {
  width: 100%;
  min-height: 38px;
  display: flex;
  align-items: center;
  padding: 0 12px;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
  background: transparent;
  color: rgba(255,255,255,.76) !important;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.15;
  text-align: left;
  white-space: nowrap;
  transition: color .22s var(--pc-ease), background .22s var(--pc-ease), transform .22s var(--pc-ease);
}

.pc-profile-dropdown a:last-child,
.pc-profile-dropdown button:last-child,
.pc-mobile-profile-dropdown a:last-child,
.pc-mobile-profile-dropdown button:last-child { border-bottom: 0; }

.pc-profile-dropdown a:hover,
.pc-profile-dropdown button:hover,
.pc-mobile-profile-dropdown a:hover,
.pc-mobile-profile-dropdown button:hover {
  color: #fff !important;
  background: rgba(217,47,36,.13);
  transform: translateX(2px);
}

.pc-mobile-auth {
  position: relative;
  width: fit-content;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  padding-top: 8px;
}

.pc-mobile-profile-toggle {
  min-height: 51px;
}

.pc-mobile-profile-dropdown {
  min-width: 168px;
  margin-top: 10px;
  padding: 8px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(5,5,5,.96);
  box-shadow: 0 22px 64px rgba(0,0,0,.34);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  display: none;
}

.pc-mobile-auth.is-open .pc-mobile-profile-dropdown { display: block; }

.pc-footer {
  padding: 24px 0 28px;
  background: #fff;
  border-top: 1px solid #e8e2da;
}

.pc-footer > .pc-container {
  width: min(calc(100% - 144px), 1280px);
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 3;
}

.pc-footer .pc-footer-grid {
  display: grid;
  grid-template-columns: minmax(300px, 1.45fr) minmax(140px, .78fr) minmax(225px, 1.05fr) minmax(235px, 1.05fr) minmax(140px, .78fr);
  justify-content: stretch;
  gap: clamp(34px, 4.2vw, 62px);
  align-items: start;
  padding: 0 0 24px;
}

.pc-footer .pc-footer-grid > div { min-width: 0; }

.pc-footer .pc-footer-brand .pc-logo-dark {
  width: 180px;
  height: 60.19px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #302e2e;
}

.pc-footer .pc-footer-brand .pc-logo-dark img {
  width: 60.19px;
  height: 60.19px;
  object-fit: contain;
}

.pc-footer .pc-footer-brand .pc-logo-dark span {
  width: 119px;
  color: #302e2e;
  font-family: Inter, var(--pc-font);
  font-size: 17.05px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
  letter-spacing: 0;
  text-transform: capitalize;
}

.pc-footer .pc-footer-brand p {
  width: min(100%, 363px);
  min-height: 48px;
  max-width: 363px;
  margin: 12px 0 0;
  color: #404040;
  font-family: Inter, var(--pc-font);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0;
}

.pc-footer h3 {
  min-height: 24px;
  margin: 0 0 8px;
  color: #404040;
  font-family: Inter, var(--pc-font);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: .1em;
  text-transform: none;
}

.pc-footer a:not(.pc-logo) {
  display: block;
  min-height: 24px;
  margin: 0 0 6px;
  color: #404040;
  font-family: Inter, var(--pc-font);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.42;
  letter-spacing: 0;
  transition: color .2s var(--pc-ease), transform .2s var(--pc-ease);
}

.pc-footer .pc-footer-grid a:not(.pc-logo):last-child { margin-bottom: 0; }
.pc-footer a:hover { color: #111; transform: translateX(2px); }

.pc-footer .pc-footer-bottom {
  min-height: 44px;
  margin-top: 0;
  padding-top: 20px;
  border-top: 1px solid #e8e2da;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  color: #404040;
  font-family: Inter, var(--pc-font);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0;
  text-transform: none;
}

.pc-footer .pc-footer-bottom span:last-child {
  display: flex;
  gap: 22px;
}

.pc-footer .pc-footer-bottom a {
  min-height: 24px;
  margin: 0 !important;
  color: #404040;
  font-family: Inter, var(--pc-font);
  font-size: 16px !important;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0;
}

.pc-footer-bottom .pc-nafcorp-link {
  display: inline !important;
  color: #1f1e1e !important;
  font-weight: 800 !important;
  text-decoration: none;
  transform: none !important;
  transition: color .22s var(--pc-ease), opacity .22s var(--pc-ease);
}

.pc-footer-bottom .pc-nafcorp-link:hover,
.pc-footer-bottom .pc-nafcorp-link:focus-visible {
  color: var(--pc-red) !important;
}

.pc-footer-bottom .pc-footer-socials {
  display: inline-flex !important;
  align-items: center;
  gap: 18px !important;
}

.pc-footer-bottom .pc-footer-socials a {
  width: 22px;
  height: 22px;
  min-height: 0;
  display: inline-grid !important;
  place-items: center;
  margin: 0 !important;
  color: rgba(31, 30, 30, .58) !important;
  transform: none !important;
  transition: color .22s var(--pc-ease), transform .22s var(--pc-ease);
}

.pc-footer-bottom .pc-footer-socials a:hover,
.pc-footer-bottom .pc-footer-socials a:focus-visible {
  color: var(--pc-red) !important;
  transform: translateY(-2px) !important;
}

.pc-footer-bottom .pc-social-icon {
  display: block;
  width: 19px;
  height: 19px;
  background-color: currentColor;
  -webkit-mask: var(--pc-social-mask) center / contain no-repeat;
  mask: var(--pc-social-mask) center / contain no-repeat;
}

.pc-footer-bottom .pc-social-github {
  --pc-social-mask: url("https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@6.5.2/svgs/brands/github.svg");
}
.pc-footer-bottom .pc-social-facebook {
  --pc-social-mask: url("https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@6.5.2/svgs/brands/facebook.svg");
}
.pc-footer-bottom .pc-social-instagram {
  --pc-social-mask: url("https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@6.5.2/svgs/brands/instagram.svg");
}
.pc-footer-bottom .pc-social-linkedin {
  --pc-social-mask: url("https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@6.5.2/svgs/brands/linkedin.svg");
}
.pc-footer-bottom .pc-social-tiktok {
  --pc-social-mask: url("https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@6.5.2/svgs/brands/tiktok.svg");
}

/* Neutralize legacy About-only shell overrides. The page content remains untouched. */
.pc-about-page .pc-site-header,
.pc-about-page .pc-site-header.is-scrolled,
.pc-about-page .pc-site-header.is-open {
  border-bottom: 1px solid rgba(255,255,255,.08);
  background: rgba(5,5,5,.12);
  box-shadow: none;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.pc-about-page .pc-site-header.is-scrolled,
.pc-about-page .pc-site-header.is-open {
  background: rgba(5,5,5,.88);
  border-bottom-color: rgba(255,255,255,.13);
}
.pc-about-page .pc-header-shell {
  width: min(calc(100% - clamp(40px, 9vw, 156px)), 1572px);
  height: 98px;
  gap: clamp(18px, 2vw, 42px);
}
.pc-about-page .pc-logo {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  gap: 10px;
}
.pc-about-page .pc-logo img {
  width: 61.3375816345px;
  height: 60.1910820007px;
  filter: drop-shadow(0 0 14px rgba(217,47,36,.45));
}
.pc-about-page .pc-desktop-nav {
  flex: 0 1 587px;
  width: min(587px, 100%);
  margin-left: auto;
  justify-content: flex-end;
  gap: 30px;
}
.pc-about-page .pc-desktop-nav a,
.pc-about-page .pc-mobile-nav a,
.pc-about-page .pc-mobile-dropdown summary {
  color: rgba(255,255,255,.78);
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
}
.pc-about-page .pc-desktop-nav a:hover,
.pc-about-page .pc-desktop-nav a:focus-visible,
.pc-about-page .pc-mobile-nav a:hover,
.pc-about-page .pc-mobile-dropdown summary:hover,
.pc-about-page .pc-site-header .pc-desktop-nav a[href="/about"] {
  color: #fff;
}
.pc-about-page .pc-dropdown-menu,
.pc-about-page .pc-profile-dropdown,
.pc-about-page .pc-mobile-profile-dropdown {
  background: rgba(5,5,5,.94);
  border-color: rgba(255,255,255,.12);
  box-shadow: 0 24px 70px rgba(0,0,0,.35);
}
.pc-about-page .pc-dropdown-menu a,
.pc-about-page .pc-profile-dropdown a,
.pc-about-page .pc-profile-dropdown button,
.pc-about-page .pc-mobile-profile-dropdown a,
.pc-about-page .pc-mobile-profile-dropdown button {
  color: rgba(255,255,255,.76) !important;
  border-bottom-color: rgba(255,255,255,.07);
}
.pc-about-page .pc-dropdown-menu a:hover,
.pc-about-page .pc-dropdown-menu a:focus-visible {
  color: #fff;
  background: rgba(217,47,36,.13);
}
.pc-about-page .pc-header-demo {
  width: 190px;
  height: 51px;
  min-height: 51px;
  flex: 0 0 190px;
  background: #fff;
  color: #101010;
  font-size: 14px;
  font-weight: 600;
}
.pc-about-page .pc-header-demo > span:first-child { padding: 0 18px; }
.pc-about-page .pc-header-demo > span:last-child { width: 51px; }
.pc-about-page .pc-profile-toggle,
.pc-about-page .pc-mobile-profile-toggle,
.pc-about-page .pc-menu-toggle {
  border-color: rgba(255,255,255,.16);
  background: rgba(255,255,255,.04);
  color: #fff;
}
.pc-about-page .pc-mobile-nav {
  width: min(calc(100% - clamp(40px, 9vw, 156px)), 1572px);
  background: transparent;
}
.pc-about-page .pc-footer > .pc-container {
  width: min(calc(100% - 144px), 1280px);
}

/* Light header treatment for public content pages. Auth pages keep their existing shell. */
body[data-pc-header-solid]:not(.pc-auth-page) .pc-site-header,
body[data-pc-header-solid]:not(.pc-auth-page) .pc-site-header.is-scrolled,
body[data-pc-header-solid]:not(.pc-auth-page) .pc-site-header.is-open {
  background: rgba(255,255,255,.96);
  border-bottom-color: rgba(17,17,17,.10);
  box-shadow: 0 10px 30px rgba(17,17,17,.06);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

body[data-pc-header-solid]:not(.pc-auth-page) .pc-logo {
  color: #1f1f1f;
}

body[data-pc-header-solid]:not(.pc-auth-page) .pc-site-header .pc-desktop-nav > a[href],
body[data-pc-header-solid]:not(.pc-auth-page) .pc-site-header .pc-nav-trigger,
body[data-pc-header-solid]:not(.pc-auth-page) .pc-site-header .pc-mobile-nav > a[href],
body[data-pc-header-solid]:not(.pc-auth-page) .pc-site-header .pc-mobile-dropdown > summary {
  color: rgba(17,17,17,.76);
}

body[data-pc-header-solid]:not(.pc-auth-page) .pc-desktop-nav > a:hover,
body[data-pc-header-solid]:not(.pc-auth-page) .pc-desktop-nav > a:focus-visible,
body[data-pc-header-solid]:not(.pc-auth-page) .pc-nav-trigger:hover,
body[data-pc-header-solid]:not(.pc-auth-page) .pc-nav-trigger:focus-visible,
body[data-pc-header-solid]:not(.pc-auth-page) .pc-mobile-nav > a:hover,
body[data-pc-header-solid]:not(.pc-auth-page) .pc-mobile-nav > a:focus-visible,
body[data-pc-header-solid]:not(.pc-auth-page) .pc-mobile-dropdown > summary:hover,
body[data-pc-header-solid]:not(.pc-auth-page) .pc-mobile-dropdown > summary:focus-visible {
  color: #111111;
}

body[data-pc-header-solid]:not(.pc-auth-page) .pc-mobile-dropdown a {
  color: rgba(17,17,17,.64);
}

body[data-pc-header-solid]:not(.pc-auth-page) .pc-mobile-dropdown a:hover,
body[data-pc-header-solid]:not(.pc-auth-page) .pc-mobile-dropdown a:focus-visible {
  color: #111111;
}

body[data-pc-header-solid]:not(.pc-auth-page) .pc-menu-toggle,
body[data-pc-header-solid]:not(.pc-auth-page) .pc-profile-toggle,
body[data-pc-header-solid]:not(.pc-auth-page) .pc-mobile-profile-toggle {
  border-color: rgba(17,17,17,.14);
  background: rgba(17,17,17,.035);
  color: #111111;
}

body[data-pc-header-solid]:not(.pc-auth-page) .pc-menu-toggle:hover,
body[data-pc-header-solid]:not(.pc-auth-page) .pc-menu-toggle:focus-visible {
  border-color: rgba(217,47,36,.35);
  background: rgba(217,47,36,.07);
}

body[data-pc-header-solid]:not(.pc-auth-page) .pc-header-demo {
  box-shadow: inset 0 0 0 1px rgba(17,17,17,.10), 0 8px 24px rgba(17,17,17,.07);
}

@media (max-width: 1180px) {
  .pc-desktop-nav,
  .pc-about-page .pc-desktop-nav { gap: 20px; }
  .pc-header-demo > span:first-child,
  .pc-about-page .pc-header-demo > span:first-child { padding-inline: 12px; }
  .pc-footer > .pc-container,
  .pc-about-page .pc-footer > .pc-container {
    width: min(calc(100% - 80px), 1280px);
  }
  .pc-footer .pc-footer-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 34px 44px;
  }
  .pc-footer .pc-footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 1080px) {
  .pc-header-profile { display: none; }
}

@media (max-width: 980px) {
  .pc-desktop-nav,
  .pc-header-demo,
  .pc-about-page .pc-desktop-nav,
  .pc-about-page .pc-header-demo { display: none; }

  .pc-menu-toggle,
  .pc-about-page .pc-menu-toggle { display: inline-flex; }

  .pc-site-header.is-open .pc-mobile-nav,
  .pc-about-page .pc-site-header.is-open .pc-mobile-nav { display: flex; }

  .pc-about-page .pc-header-shell {
    width: min(calc(100% - clamp(40px, 9vw, 156px)), 1572px);
    height: 98px;
  }
  .pc-about-page .pc-mobile-nav {
    width: min(calc(100% - clamp(40px, 9vw, 156px)), 1572px);
  }
}

@media (max-width: 720px) {
  .pc-header-shell,
  .pc-about-page .pc-header-shell { height: 76px; }

  .pc-logo,
  .pc-about-page .pc-logo { font-size: 15px; }

  .pc-logo img,
  .pc-about-page .pc-logo img {
    width: 44px;
    height: 43px;
  }

  .pc-footer > .pc-container,
  .pc-about-page .pc-footer > .pc-container {
    width: calc(100% - 40px);
  }

  .pc-footer .pc-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px 36px;
  }

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

@media (max-width: 640px) {
  .pc-footer-bottom .pc-social-icon {
    width: 18px;
    height: 18px;
  }
}

@media (max-width: 460px) {
  .pc-footer .pc-footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}
