.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  padding: 8px clamp(22px, 4vw, 58px);
  border-bottom: 1px solid transparent;
  background: transparent;
  transition: min-height 420ms cubic-bezier(.22, 1, .36, 1), padding 420ms cubic-bezier(.22, 1, .36, 1), background 420ms cubic-bezier(.22, 1, .36, 1), border-color 420ms cubic-bezier(.22, 1, .36, 1), box-shadow 420ms cubic-bezier(.22, 1, .36, 1);
}

body.has-scrolled .site-header,
body.is-menu-open .site-header {
  min-height: 60px;
  padding-top: 5px;
  padding-bottom: 5px;
  border-bottom-color: rgba(0, 242, 255, .16);
  background: rgba(11, 14, 20, .88);
  box-shadow: 0 18px 50px rgba(0, 0, 0, .18);
  backdrop-filter: blur(12px);
}

.site-header .brand img {
  display: block;
  width: clamp(150px, 17vw, 210px);
  height: auto;
  aspect-ratio: 554 / 95;
  filter: drop-shadow(0 0 .5px rgba(255, 255, 255, .8));
  transition: width 420ms cubic-bezier(.22, 1, .36, 1);
}

body.has-scrolled .site-header .brand img,
body.is-menu-open .site-header .brand img {
  width: clamp(116px, 11vw, 144px);
}

.site-header .site-nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 3vw, 48px);
}

.site-header .site-nav > a {
  color: rgba(255, 255, 255, .9);
  font: 500 clamp(14px, 1.1vw, 17px)/1 Montserrat, Arial, sans-serif;
  text-decoration: none;
  transition: color 220ms ease, text-shadow 220ms ease, font-size 420ms cubic-bezier(.22, 1, .36, 1);
}

body.has-scrolled .site-header .site-nav > a,
body.is-menu-open .site-header .site-nav > a {
  font-size: clamp(13px, .95vw, 15px);
}

.site-header .site-nav > a:not(.header-demo-cta):hover,
.site-header .site-nav > a:not(.header-demo-cta):focus-visible,
.site-header .site-nav > a.is-active {
  color: #00f2ff;
  text-shadow: 0 0 7px rgba(0, 242, 255, .36);
}

.site-header .site-nav .header-demo-cta,
body.has-scrolled .site-header .site-nav .header-demo-cta,
body.is-menu-open .site-header .site-nav .header-demo-cta {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  min-width: 180px;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 5px;
  color: #fff;
  background: #7000ff;
  box-shadow: 0 0 28px rgba(112, 0, 255, .3);
  font-size: 15px;
}

.site-header .site-nav .header-demo-cta:hover,
.site-header .site-nav .header-demo-cta:focus-visible {
  box-shadow: 0 0 24px rgba(0, 242, 255, .24), 0 0 40px rgba(112, 0, 255, .42);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(0, 242, 255, .24);
  border-radius: 5px;
  background: transparent;
  color: #fff;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.draft-page {
  padding-top: 96px;
}

.site-footer {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  padding: 28px clamp(20px, 5vw, 64px);
  border-top: 1px solid rgba(0, 242, 255, .18);
  background: #0b0e14;
  color: rgba(255, 255, 255, .68);
}

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

.site-footer nav {
  grid-column: 3;
  grid-row: 1;
  display: flex;
  gap: 18px;
  justify-self: end;
}

.site-footer nav a {
  font: 500 20px/1.3 Montserrat, Arial, sans-serif;
  transition: color 180ms ease, text-shadow 180ms ease;
}

.site-footer nav a:hover,
.site-footer nav a:focus-visible {
  color: #00f2ff;
  text-shadow: 0 0 10px rgba(0, 242, 255, .58);
}

.site-footer .footer-left {
  grid-column: 1;
  grid-row: 1;
  display: grid;
  grid-template-columns: auto auto;
  grid-template-rows: auto auto;
  align-items: center;
  column-gap: 24px;
}

.site-footer .footer-brand {
  grid-column: 1;
  grid-row: 1;
  transform: translateY(-5px);
}

.site-footer .footer-brand img {
  display: block;
  width: 130px;
  height: auto;
}

.site-footer .trust-seal {
  grid-column: 2;
  grid-row: 1 / 3;
  transform: translate(-4px, -5px);
}

.site-footer .trust-seal img {
  display: block;
  width: 112px;
  height: auto;
}

.site-footer .footer-left > p {
  grid-column: 1;
  grid-row: 2;
  justify-self: center;
  margin: -5px 0 0;
  font-size: 15px;
}

.site-footer .footer-instagram {
  grid-column: 2;
  grid-row: 1;
  display: inline-grid;
  width: 38px;
  height: 38px;
  margin-right: 176px;
  place-items: center;
  justify-self: end;
}

.site-footer .footer-instagram svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
}

.site-footer .instagram-dot {
  fill: currentColor;
  stroke: none;
}

@media (max-width: 1100px) {
  .site-header .site-nav { gap: 20px; }
  .site-header .site-nav .header-demo-cta { min-width: 154px; }
}

@media (max-width: 720px) {
  .site-header {
    inset: 8px 10px auto;
    min-height: 60px;
    padding-inline: 14px;
  }

  .site-header .brand img { width: 132px; }
  .nav-toggle { display: block; }

  .site-header .site-nav {
    position: absolute;
    top: 58px;
    right: -1px;
    left: -1px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 20px;
    border: 1px solid rgba(0, 242, 255, .13);
    border-radius: 0 0 7px 7px;
    background: rgba(11, 14, 20, .97);
  }

  .site-header .site-nav.is-open { display: flex; }

  .site-header .site-nav > a,
  body.has-scrolled .site-header .site-nav > a,
  body.is-menu-open .site-header .site-nav > a {
    font-size: 18px;
  }

  .site-header .site-nav .header-demo-cta,
  body.has-scrolled .site-header .site-nav .header-demo-cta,
  body.is-menu-open .site-header .site-nav .header-demo-cta {
    width: 100%;
    min-width: 0;
    margin-top: 6px;
    font-size: 16px;
  }

  .draft-page { padding-top: 78px; }

  .site-footer {
    grid-template-columns: minmax(0, 1fr);
    row-gap: 18px;
  }

  .site-footer .footer-left {
    grid-column: 1;
    grid-row: 1;
    justify-self: center;
  }

  .site-footer nav {
    grid-column: 1;
    grid-row: 2;
    justify-self: center;
    gap: 14px;
  }

  .site-footer nav a { font-size: 11px; }

  .site-footer .footer-instagram {
    grid-column: 1;
    grid-row: 3;
    justify-self: center;
    margin-right: 0;
  }
}
