:root {
  --gold: #f2cc70;
  --gold-soft: #ffe29a;
  --shadow: rgba(0, 0, 0, 0.78);
}

html {
  min-height: 100%;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--gold);
  background: #050302;
  font-family: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

.site-shell {
  display: flex;
  min-height: 100vh;
  flex-direction: column;
}

main {
  flex: 1 0 auto;
  min-height: calc(100vh - 36px);
}

.landing {
  position: relative;
  min-height: calc(100vh - 36px);
  overflow: hidden;
  isolation: isolate;
}

.squinky-status-bar {
  --aetheon-status-bar-background: #050302;
  --aetheon-status-bar-border-color: #050302;
  flex: 0 0 auto;
  color: var(--gold);
}

.squinky-status-bar .aetheon-status-bar__section--center {
  color: rgba(242, 204, 112, 0.68);
}

.landing::before {
  position: absolute;
  inset: 0 0 auto;
  z-index: -1;
  height: 100px;
  content: "";
  background: linear-gradient(180deg, #020101 0%, rgba(2, 1, 1, 0.9) 36%, rgba(2, 1, 1, 0) 100%);
}

.landing::after {
  position: absolute;
  inset: 0;
  z-index: -2;
  content: "";
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.86) 0%, rgba(0, 0, 0, 0.58) 29rem, rgba(0, 0, 0, 0.08) 58rem),
    linear-gradient(0deg, rgba(0, 0, 0, 0.32), rgba(0, 0, 0, 0));
}

.landing__background {
  position: absolute;
  inset: 0;
  z-index: -3;
  display: block;
}

.landing__background img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
}

.landing__header {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 4.75rem;
  padding: 1rem 1.35rem;
}

.landing__brand {
  display: flex;
  align-items: center;
  gap: 0.95rem;
  min-width: 0;
}

.landing__brand-text {
  color: var(--gold);
  font-size: 1.45rem;
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: 0;
  text-shadow: 0 0.16rem 0.85rem var(--shadow), 0 0 1.4rem rgba(0, 0, 0, 0.72);
  white-space: nowrap;
}

.site-menu {
  position: relative;
  flex: 0 0 auto;
}

.site-menu summary {
  list-style: none;
}

.site-menu summary::-webkit-details-marker {
  display: none;
}

.icon-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  color: var(--gold);
  background: rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(242, 204, 112, 0.26);
  border-radius: 50%;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease;
}

.icon-button:hover,
.icon-button:focus-visible {
  color: var(--gold-soft);
  background: rgba(0, 0, 0, 0.42);
  border-color: rgba(255, 226, 154, 0.54);
  outline: none;
}

.icon-button--menu {
  flex-direction: column;
  gap: 0.28rem;
}

.icon-button--menu span {
  width: 1.1rem;
  height: 1px;
  background: currentColor;
}

.icon-button--login svg {
  width: 1.35rem;
  height: 1.35rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.45;
}

.site-menu__panel {
  position: absolute;
  top: calc(100% + 0.75rem);
  left: 0;
  min-width: 10.5rem;
  padding: 0.45rem;
  background: rgba(0, 0, 0, 0.82);
  border: 1px solid rgba(242, 204, 112, 0.28);
  border-radius: 0.35rem;
  box-shadow: 0 1.25rem 2.5rem rgba(0, 0, 0, 0.4);
}

.site-menu__panel a {
  display: block;
  padding: 0.75rem 0.85rem;
  color: var(--gold);
  border-radius: 0.25rem;
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.25;
  text-decoration: none;
}

.site-menu__panel a:hover,
.site-menu__panel a:focus-visible {
  color: var(--gold-soft);
  background: rgba(242, 204, 112, 0.12);
  outline: none;
}

.landing__content {
  position: relative;
  z-index: 1;
  width: min(100% - 2rem, 56rem);
  margin: 0 auto 0 0;
  padding: 22vh 0 7rem 4.6rem;
  text-shadow: 0 0.16rem 0.85rem var(--shadow), 0 0 2.2rem rgba(0, 0, 0, 0.68);
}

.landing__content h1 {
  margin: 0;
  color: var(--gold-soft);
  font-size: 6rem;
  font-weight: 300;
  line-height: 0.98;
  letter-spacing: 0;
  white-space: nowrap;
}

.landing__content p {
  max-width: 27rem;
  margin: 1.2rem 0 0;
  color: var(--gold);
  font-size: 1.45rem;
  font-weight: 300;
  line-height: 1.42;
  letter-spacing: 0;
}

@media (max-width: 64rem) {
  .landing::after {
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.45) 25rem, rgba(0, 0, 0, 0.08) 100%),
      linear-gradient(0deg, rgba(0, 0, 0, 0.32), rgba(0, 0, 0, 0));
  }

  .landing__content {
    padding-left: 2rem;
  }

  .landing__content h1 {
    font-size: 4.8rem;
  }
}

@media (max-width: 47.9375rem) {
  .landing::after {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.14) 0%, rgba(0, 0, 0, 0.08) 32%, rgba(0, 0, 0, 0.74) 100%),
      linear-gradient(90deg, rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.36));
  }

  .landing__background img {
    object-position: center center;
  }

  .landing__header {
    min-height: 4.35rem;
    padding: 0.85rem 1rem;
  }

  .landing__brand {
    gap: 0.72rem;
  }

  .landing__brand-text {
    font-size: 1.08rem;
  }

  .landing__content {
    width: min(100% - 2rem, 22rem);
    margin: 0 auto;
    padding: 61vh 0 2.5rem;
    text-align: left;
  }

  .landing__content h1 {
    font-size: 3.35rem;
    white-space: normal;
  }

  .landing__content p {
    max-width: 19rem;
    font-size: 1.08rem;
    line-height: 1.4;
  }
}

@media (max-width: 22.5rem) {
  .landing__content h1 {
    font-size: 2.85rem;
  }

  .landing__content p {
    font-size: 1rem;
  }
}
