@font-face {
  font-family: josefin;
  src: url("/fonts/josefin-sans.ttf");
}
.button {
  font-size: 1.2em;
  padding: 0.7em 1em;
  width: 100%;
  outline: none !important;
  cursor: pointer;
  border: none;
  transition: background-color 0.15s ease;
}
.button--small {
  font-size: 0.8rem;
  padding: 0.3em 0.6em;
}
.button--inline {
  display: inline;
}
.button[disabled] {
  pointer-events: none;
}
.button--dark {
  background-color: #453278;
  border-radius: 0.3rem;
  color: white;
}
.button--dark:hover, .button--dark:focus {
  background-color: #4f3a8a;
}
.button--dark:active {
  background-color: #3b2b66;
}
.button--dark[disabled] {
  background-color: #1c1430;
}
.button--ghost {
  background-color: transparent;
}
.button--ghost:hover {
  background-color: transparent;
}
.button__status {
  display: inline-grid;
  width: 0;
  overflow: hidden;
  transition: width 0.2s ease;
}
.button__status[status=loading] {
  animation: spin 1s infinite linear;
}
.button__status--show {
  width: 2em;
}
.button .mdi {
  vertical-align: middle;
  display: inline-flex;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.footer {
  background-color: black;
  color: white;
  padding-top: 2rem;
  padding-bottom: 6rem;
  font-size: 0.7rem;
}
.footer__sections {
  display: flex;
}
.footer__section {
  display: flex;
  flex-direction: column;
  width: 50%;
  padding: 1rem;
}
.footer__section__spacer {
  height: 1rem;
}
.footer__copyright {
  margin-top: 2rem;
  text-align: center;
}
.footer__logo {
  width: 80%;
  max-width: 200px;
  flex: 0 0 auto;
  align-self: flex-end;
}
.footer a {
  margin-bottom: 0.3rem;
}

.hero {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 90%;
  height: 90vh;
  max-height: 900px;
  overflow: hidden;
}
.hero__planet {
  display: block;
  max-width: 100%;
  max-height: 100%;
  pointer-events: none;
  min-width: 1000px;
}
.hero__planet--masked {
  -webkit-mask-image: url(/videos/planet/planet_1_mask.png);
  -webkit-mask-position: center center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: auto 100%;
  mask-image: url(/videos/planet/planet_1_mask.png);
  mask-position: center center;
  mask-repeat: no-repeat;
  mask-size: auto 100%;
}
.hero__overlay {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  opacity: 0.5;
  transition: opacity 0.4s ease;
}
.hero__overlay:hover {
  opacity: 1;
}
@media (pointer: coarse) {
  .hero__overlay {
    opacity: 1;
  }
}
.hero__overlay__logo {
  max-width: 75%;
  max-height: 40%;
  transition: opacity 0.4s ease;
}
.hero__overlay__link {
  max-width: 75%;
  max-height: 40%;
  transition: opacity 0.4s ease;
  background-color: white;
  border-radius: 1rem;
  padding: 0.5rem 1rem 0.3rem;
  font-size: 1.2rem;
  opacity: 0.8;
  transition: opacity 0.2s ease;
  cursor: pointer;
  margin-bottom: 1rem;
}
.hero__overlay__link:hover {
  opacity: 1;
}
@media screen and (max-width: 599px) {
  .hero__overlay__link {
    margin-top: 2rem;
  }
}
@media screen and (min-width: 600px) and (max-width: 1079px) {
  .hero__overlay__link {
    margin-top: 1rem;
  }
}

.hex-canvas {
  user-select: none;
  pointer-events: none;
}
.hex-center {
  margin: 0 auto;
}
.hex-right {
  margin-left: auto;
}

form {
  display: grid;
  gap: 1.3rem;
  grid-template-columns: 1fr 1fr;
  margin: 0 auto;
  max-width: 600px;
}
form label {
  grid-column-start: 1;
  grid-column-end: 3;
}
form label.short {
  grid-column-end: 2;
}
form label.short.right {
  grid-column-start: 2;
  grid-column-end: 3;
}
form .button {
  grid-column-start: 1;
  grid-column-end: 3;
}

.input {
  font-size: 1.2em;
  padding: 0.7em 1em;
  width: 100%;
  outline: none !important;
  border: solid 0.11rem transparent;
  transition: border-color 0.15s ease;
  background-color: #c5bede;
  border-radius: 0.3rem;
  color: black;
}
.input:valid {
  border-color: #8f7cb1;
}
.input:focus {
  border-color: white;
}
.input[disabled] {
  opacity: 0.8;
  pointer-events: none;
}
.input--dark {
  background-color: #3b364c;
  border-radius: 0.3rem;
  color: white;
}
.input--dark:valid {
  border-color: #8f7cb1;
}
.input--dark:focus {
  border-color: white;
}

[lightbox] {
  cursor: pointer;
}

.lightbox {
  width: 100%;
  height: 100%;
  background-color: black;
  cursor: default;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.lightbox__container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(60, 60, 60, 0.4);
  transition: opacity 0.2s ease;
  cursor: pointer;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  z-index: 200;
}
.lightbox__container--active {
  opacity: 1;
  pointer-events: all;
}
.lightbox__text {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background-image: linear-gradient(0deg, rgba(0, 0, 0, 0), black);
  height: 6rem;
  color: white;
}
.lightbox__text__wrapper {
  max-width: 1080px;
  margin: 0 auto;
}
.lightbox__text__title {
  font-size: 2rem;
}
.lightbox__text__subtitle {
  font-size: 1.2rem;
}
.lightbox__content {
  flex-grow: 1;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  background-color: rgba(255, 255, 255, 0.2);
  position: relative;
}
.lightbox__content__previous, .lightbox__content__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: 3rem;
  line-height: 3rem;
  font-size: 3rem;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  border-radius: 0.4rem;
  backdrop-filter: blur(10px);
}
.lightbox__content__previous {
  left: 0;
}
.lightbox__content__next {
  right: 0;
}
.lightbox__content__actions {
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 0.5rem;
}
.lightbox__content__actions .button {
  opacity: 0.5;
}
.lightbox__content__actions .button:hover {
  opacity: 1;
}
.lightbox__actions {
  width: 100%;
  display: flex;
  justify-content: end;
  height: 3rem;
}
.lightbox__actions button {
  height: 3rem;
  padding: 0.5rem 1.2rem;
}
.lightbox__close {
  opacity: 0.7;
  cursor: pointer;
}
.lightbox__close:hover {
  opacity: 1;
}
.lightbox__item {
  border-radius: 0.5rem;
  background: white;
  width: 4rem;
  height: 4rem;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  flex-shrink: 0;
}
.lightbox__item--active {
  box-shadow: 0px 0px 0px 2px white;
}
.lightbox__item__list {
  width: fit-content;
  max-width: 100%;
  overflow-x: auto;
  display: flex;
  padding: 0.6rem 2rem;
  gap: 0.4rem;
}
.lightbox__item__container {
  display: flex;
  justify-content: center;
}

.login__button {
  margin: 0 auto;
  background-color: #5865F2;
  color: white;
  width: fit-content;
  padding: 0.6rem 1rem;
  cursor: pointer;
  display: none;
}

.mailer__container {
  margin: 2rem auto;
  width: 75%;
  max-width: 600px;
  padding: 3rem 2rem;
  border-radius: 1rem;
  background-color: #1f1b29;
  color: white;
}
.mailer__title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
}
.mailer__subtitle {
  opacity: 0.7;
}
.mailer__extra {
  margin-top: 1.5rem;
  font-size: 1.2rem;
  opacity: 0.8;
  margin-bottom: 1rem;
}
.mailer__list {
  padding-left: 1rem;
}
.mailer__item {
  padding: 0.3rem 0;
  opacity: 0.8;
}

.table {
  width: 100%;
  border-spacing: 0;
  border-collapse: collapse;
  text-align: left;
}
.table img {
  height: 2rem;
}
.table__container {
  overflow-x: auto;
  max-width: 100%;
}
.table th {
  background-color: rgba(69, 50, 120, 0.8);
  color: white;
  padding: 0.7rem 0.5rem 0.5rem;
}
.table th:first-child {
  border-top-left-radius: 1rem;
}
.table th:last-child {
  border-top-right-radius: 1rem;
}
.table td {
  padding: 0.5rem;
  border-bottom: solid 1px rgba(69, 50, 120, 0.1);
}

.topbar {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  height: 3.5rem;
}
.topbar .topbar__text:hover {
  background-color: rgba(51, 102, 153, 0.5);
}
@media screen and (max-width: 599px) {
  .topbar .topbar__text {
    display: none;
  }
}
.topbar--user {
  font-size: 0.8em;
  padding: 0 0.2rem;
}
.topbar--user__container {
  width: 100%;
  position: relative;
  z-index: 2;
  border-top: solid 1px rgba(51, 102, 153, 0.3);
}
.topbar--user__container .topbar__text {
  background-color: #050a0f;
}
.topbar__gap {
  margin-right: auto;
}
.topbar__toggle {
  display: flex;
  align-items: center;
  font-size: 1.4rem;
  padding: 0 1rem;
  cursor: pointer;
}
@media screen and (min-width: 600px) {
  .topbar__toggle {
    display: none;
  }
}
.topbar__logo {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-grow: 1;
  position: relative;
  z-index: 1;
}
.topbar__logo img {
  height: 2rem;
}
@media screen and (max-width: 360px) {
  .topbar__logo img {
    height: 1.5rem;
  }
}
@media screen and (min-width: 600px) {
  .topbar__logo {
    display: none;
  }
}
.topbar__drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 80%;
  max-width: 320px;
  height: 100dvh;
  background-color: rgba(0, 0, 0, 0.9);
  display: flex;
  flex-direction: column;
  z-index: 14;
  margin-top: 3.5rem;
  transform: translateX(-100%);
  transition: transform 0.2s ease-in-out;
  list-style-type: none;
  padding-left: 0;
}
.topbar__drawer > li {
  padding-left: 1rem;
}
.topbar__drawer > li:hover {
  background-color: rgba(51, 102, 153, 0.5);
}
.topbar__drawer__overlay {
  position: fixed;
  top: 3.5rem;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(5px);
  z-index: 13;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.topbar__drawer__container--open .topbar__drawer {
  transform: translateX(0%);
}
.topbar__drawer__container--open .topbar__drawer__overlay {
  opacity: 1;
  pointer-events: all;
}
@media screen and (min-width: 600px) {
  .topbar__drawer {
    display: none;
  }
}
.topbar__drawer .topbar__text {
  color: white;
}
.topbar__text {
  padding: 1em;
  z-index: 1;
  text-shadow: -1px -1px 0 black, 1px -1px 0 black, -1px 1px 0 black, 1px 1px 0 black;
  display: flex;
  align-items: center;
}
.topbar__container {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #050a0f;
  color: white;
  border-bottom: solid 1px rgba(51, 102, 153, 0.3);
  z-index: 11;
  height: 3.5rem;
}
.topbar__container .hex-canvas {
  position: absolute;
  top: 0px;
  left: 0px;
}
.topbar__user-icon {
  height: 2.6em;
  width: 2.6em;
  margin: -0.8em;
  margin-left: 0.5em;
  background-size: cover;
  background-position: center;
  border-radius: 100%;
}

.video {
  border: none;
  width: 90%;
  aspect-ratio: 1.7785;
  max-width: 1080px;
}
.video__container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin: 4rem 0;
}
.video__button {
  flex: 1;
  min-width: 200px;
  max-width: 400px;
  background-color: #404040;
  border-radius: 0.3rem;
  overflow: hidden;
  cursor: pointer;
  border: solid 2px black;
  transition: border-color 0.2s ease;
  user-select: none;
}
@media screen and (max-width: 599px) {
  .video__button {
    min-width: 40%;
  }
}
.video__button:hover {
  border-color: rgba(255, 255, 255, 0.4);
}
.video__button:active {
  border-color: #6699cc;
}
.video__button__image {
  aspect-ratio: 1.7785;
  width: 100%;
  background-position: center;
  background-size: cover;
}
.video__button__content {
  color: white;
  padding: 1rem 0.4rem;
}
.video__button__title {
  font-size: 0.9rem;
}
.video__button__subtitle {
  margin-top: 0.6rem;
  font-size: 0.7rem;
  opacity: 0.7;
}
.video__button__container {
  display: flex;
  justify-content: center;
  gap: 1rem;
  width: 90%;
  max-width: 1080px;
  flex-wrap: wrap;
  margin-top: 2rem;
}
.video__button--current {
  border-color: #336699;
}
.video__button--current:hover {
  border-color: #6699cc;
}

.press {
  display: flex;
  justify-content: center;
  position: relative;
}
.press .container {
  display: flex;
  gap: 20px;
  width: 1000px;
}
@media screen and (max-width: 599px) {
  .press .container {
    flex-direction: column;
  }
}
.press .container h2, .press .container p {
  margin: 0px;
}
.press .container a {
  color: #0053ee;
}
.press .container__header {
  padding: 20px 0 0 0;
  flex: 1;
}
.press .container__fullwidth {
  padding: 0 0 0 0;
  flex: 1;
}
.press .container__fullwidth hr {
  width: 100%;
}
.press .container__fullwidth iframe {
  width: 100%;
  aspect-ratio: 1.7777777778;
}
.press .container__fullwidth--letterbox {
  object-fit: cover;
  width: 50%;
  min-width: 200px;
  aspect-ratio: 2;
  padding: 0px 3px;
}
@media screen and (max-width: 599px) {
  .press .container__fullwidth--letterbox {
    width: 100%;
  }
}
.press .container .column {
  flex: 1;
}
.press .container .column.left {
  max-width: 25%;
}
.press__container {
  width: 100%;
  background-color: white;
}

.spacer {
  height: 40px;
}

.logo {
  display: flex;
  justify-content: center;
  position: relative;
}
.logo__title {
  margin: 0 4rem;
  position: relative;
  top: 2rem;
}
.logo__title img {
  max-width: 100%;
}
.logo__title--button {
  position: absolute;
  top: -5px;
  right: -5px;
  cursor: pointer;
}

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

html, body {
  margin: 0;
  padding: 0;
  font-family: josefin, "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  width: 100%;
  height: auto;
  min-height: 100vh;
}

html {
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
}

body {
  display: flex;
  flex-direction: column;
}

.site {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

.mdi--svg {
  height: 1rem;
  display: inline-flex;
  vertical-align: sub;
}
.mdi--svg svg {
  height: 1rem;
  color: inherit;
  fill: currentColor;
}