@font-face {
  font-family: 'BSNotion';
  src: url('BSNotion.otf') format('opentype');
  font-weight: 600;
  font-style: normal;
}

*,
*::after,
*::before {
  box-sizing: border-box;
}

.splash-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100dvh;
  background-color: #020a1d;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  opacity: 1;
  transition: opacity 0.8s ease;
}

.logo-splash {
  max-width: 950px;
  max-height: 950px;
  width: 100%;
  height: auto;
  object-fit: contain;
}

body {
  margin: 0;
  font-family: 'BSNotion', sans-serif;
  text-align: center;
  overflow: hidden;
  background-color: rgb(2, 10, 29);
  height: 100dvh;
  width: 100vw;
  position: relative;
  color: rgb(170, 215, 255);
  transition: background-color 0.3s ease, color 0.3s ease;
}

.mobile-footer-wrapper {
  position: fixed;
  bottom: 167px;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: minmax(180px, auto) 1fr minmax(250px, auto);
  grid-template-rows: auto;
  gap: calc(30px * 1.618);
  padding: calc(30px * 1.618);
  align-items: start;
  z-index: 50;
}

.logo-container {
  position: static;
  transform: none;
  z-index: 20;
  max-width: 180px;
  mix-blend-mode: screen;
  pointer-events: none;
  grid-column: 1;
}

.logo {
  width: 100%;
  height: auto;
  mix-blend-mode: screen;
}

.center-text-block {
  position: static;
  transform: none;
  z-index: 3;
  text-align: left;
  font-family: 'BSNotion', sans-serif;
  font-weight: 600;
  color: #AAD7FF;
  mix-blend-mode: screen;
  pointer-events: none;
  grid-column: 2;
}

.center-text-block p {
  margin: 0;
  padding: 0;
  text-transform: uppercase;
  font-size: 15px;
  line-height: 15px;
}


.email-corner {
  position: static;
  z-index: 20;
  text-align: right;
  font-family: 'BSNotion', sans-serif;
  font-weight: 600;
  color: #AAD7FF;
  font-size: 15px;
  mix-blend-mode: screen;
  pointer-events: none;
  grid-column: 3;
  justify-self: end;
}

.email-corner a:link,
.email-corner a:visited {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
  pointer-events: auto;
}

.email-corner a:hover {
  color: #FFFFFF;
  border-bottom-color: #FFFFFF;
}

body.logo-white-mode {
  background-color: #FFFFFF;
  color: #AAD7FF;
}

body.logo-white-mode .center-text-block,
body.logo-white-mode .email-corner {
  color: #AAD7FF;
  mix-blend-mode: normal;
}

body.logo-white-mode .email-corner a:link,
body.logo-white-mode .email-corner a:visited {
  color: #AAD7FF;
}

body.logo-white-mode .email-corner a:hover {
  color: #AAD7FF;
  border-bottom-color: #AAD7FF;
}

body.logo-white-mode .logo-container,
body.logo-white-mode .logo,
body.logo-white-mode .center-text-block,
body.logo-white-mode .email-corner {
  mix-blend-mode: normal;
}

@media only screen and (min-width: 601px) {
  .splash-screen {
    justify-content: center;
    align-items: center;
  }

  .logo-container {
    pointer-events: auto;
  }

  .logo {
    cursor: pointer;
  }
}


@media only screen and (max-width: 600px) {

  html,
  body {
    overflow: hidden !important;
    padding: 0;
  }

  body {
    padding: 0;
  }

  body:not(.logo-white-mode) .mobile-footer-wrapper,
  body:not(.logo-white-mode) .mobile-footer-wrapper * {
    mix-blend-mode: screen;
  }

  body.logo-white-mode .mobile-footer-wrapper,
  body.logo-white-mode .mobile-footer-wrapper * {
    mix-blend-mode: normal;
  }

  .mobile-footer-wrapper {
    position: absolute;

    top: auto;
    bottom: 30px;
    padding: 0;
    left: 15px;
    right: 15px;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: calc(10pt / 1.618);
    z-index: 50;
  }

  .logo-container {
    position: static;

    max-width: 180px;
    left: auto;
    bottom: auto;
    pointer-events: auto;
    text-align: left;
    grid-column: auto;
  }

  .logo {
    cursor: pointer;
  }

  .center-text-block {
    position: static;
    display: block;
    margin: 0;
    text-align: left;
    left: auto;
    bottom: auto;
    pointer-events: none;
    grid-column: auto;
  }

  .center-text-block p {
    font-size: 19pt;
    line-height: 17pt;
  }

  .email-corner {
    position: static;

    text-align: left;
    font-size: 12pt;
    left: auto;
    bottom: auto;
    grid-column: auto;
    justify-self: auto;
  }
}