:root {
  --poto-orange: #ff5500;
  --poto-ink: #202020;
  --poto-white: #fff;
}

.poto-header {
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100px;
  padding: 40px 5%;
  pointer-events: none;
  font-family: Inter, OpenSans, Arial, sans-serif;
  background: transparent;
  transition: background 220ms ease, backdrop-filter 220ms ease;
}

.poto-header__brand,
.poto-header__actions,
.poto-header__nav,
.poto-header__menu,
.poto-header__cta {
  pointer-events: auto;
}

.poto-header__actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

.poto-header__brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: max-content;
  color: var(--poto-white);
  text-decoration: none;
  line-height: 32px;
}

.poto-header--inner .poto-header__brand {
  gap: 12px;
  color: var(--poto-orange);
}

.poto-header__mark {
  display: block;
  width: 40px;
  height: 40px;
  color: currentColor;
  transition: color 220ms ease;
}

.poto-header__mark svg {
  display: block;
  width: 100%;
  height: 100%;
}

.poto-header__wordmark {
  display: flex;
  padding: 0 0 10px 8px;
  overflow: hidden;
  white-space: nowrap;
  font-size: 28px;
  line-height: 32px;
  transition: opacity 220ms ease, max-width 280ms ease, transform 280ms ease;
}

.poto-header__wordmark-light,
.poto-header__wordmark-regular {
  display: block;
  color: currentColor;
  font-family: Inter, sans-serif;
  font-size: 28px;
  line-height: 32px;
  margin: 20px 0 10px;
}

.poto-header__wordmark-light {
  font-weight: 300;
}

.poto-header__wordmark-regular {
  font-weight: 400;
}

.poto-header__nav {
  display: flex;
  align-items: center;
  box-sizing: border-box;
  height: 56px;
  gap: 60px;
  padding: 16px 24px;
  color: var(--poto-white);
  font-family: OpenSans, Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  transition: opacity 220ms ease, transform 280ms ease;
}

.poto-header__nav a {
  color: currentColor;
  text-decoration: none;
  transition: color 160ms ease;
}

.poto-header__nav a:hover {
  color: var(--poto-orange);
}

.poto-header--home .poto-header__nav a.is-active {
  color: var(--poto-white);
}

.poto-header--inner .poto-header__nav {
  color: var(--poto-ink);
  justify-content: space-between;
  width: 591px;
  gap: 0;
}

.poto-header--inner .poto-header__nav a.is-active {
  color: var(--poto-orange);
}

.poto-header__menu {
  display: inline-flex;
  flex-flow: column;
  justify-content: center;
  align-items: flex-end;
  gap: 6px;
  box-sizing: border-box;
  width: 52px;
  height: 56px;
  padding: 18px 12px;
  border: 0;
  background: rgba(255, 255, 255, 0.2);
  cursor: w-resize;
  opacity: 0;
  transition: opacity 220ms ease, background 220ms ease;
}

.poto-header--inner .poto-header__menu {
  background: #1f1f1f;
}

.poto-header__menu span {
  display: block;
  width: 30px;
  height: 0;
  margin: 0;
  border-top: 1px solid #fff;
  background: #fff;
  transition: transform 180ms ease, opacity 180ms ease;
}

.poto-header__menu span:nth-child(3) {
  width: 15px;
}

.poto-header__menu[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.poto-header__menu[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.poto-header__menu[aria-expanded="true"] span:nth-child(3) {
  width: 30px;
  transform: translateY(-7px) rotate(-45deg);
}

.poto-header__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-sizing: border-box;
  width: 156px;
  height: 56px;
  padding: 16px 18px;
  background: #ff5500;
  color: #fff;
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 20px;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  opacity: 1;
  transition: opacity 220ms ease, transform 280ms ease;
}

.poto-header__cta-icon {
  display: block;
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  object-fit: contain;
}

.poto-header.is-scrolled .poto-header__brand {
  color: var(--poto-orange);
}

.poto-header.is-scrolled .poto-header__wordmark,
.poto-header.is-scrolled .poto-header__nav {
  opacity: 0;
  pointer-events: none;
  transform: translateX(-20px);
}

.poto-header.is-scrolled .poto-header__menu,
.poto-header.is-scrolled .poto-header__cta {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

.poto-mobile-menu {
  position: fixed;
  z-index: 34;
  top: 0;
  right: 0;
  display: grid;
  gap: 18px;
  width: min(330px, 88vw);
  min-height: 100vh;
  padding: 112px 28px 28px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
  transform: translateX(104%);
  transition: transform 260ms ease;
}

.poto-mobile-menu.is-open {
  transform: translateX(0);
}

.poto-mobile-menu a {
  padding-bottom: 12px;
  border-bottom: 1px solid #ececec;
  color: var(--poto-ink);
  font-size: 24px;
}

.poto-mobile-menu a.is-active {
  color: var(--poto-orange);
}

@media (max-width: 1200px) {
  .poto-header {
    gap: 22px;
    padding-left: 48px;
    padding-right: 48px;
  }

  .poto-header__nav {
    gap: 32px;
    padding-left: 16px;
    padding-right: 16px;
  }
}

@media (max-width: 860px) {
  .poto-header {
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    height: 92px;
    padding: 18px 24px;
  }

  .poto-header__wordmark,
  .poto-header__nav,
  .poto-header__cta {
    display: none;
  }

  .poto-header__mark {
    width: 40px;
    height: 40px;
  }

  .poto-header__menu {
    width: 56px;
    height: 56px;
    opacity: 1;
    background: #1f1f1f;
  }
}

.poto-shared-header .section-95,
.poto-shared-header .section-118 {
  display: none !important;
}
