:root {
  color-scheme: dark;
  font-family: "Montserrat", system-ui, sans-serif;
  background: #09051a;
  color: #fff;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-width: 320px;
  min-height: 100%;
  margin: 0;
}

body {
  background: #09051a;
}

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

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  grid-template-rows: auto 1fr auto;
  overflow: hidden;
  isolation: isolate;
}

.hero__background,
.hero__shade {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero__background {
  background: #09051a url("landing.png") center / cover no-repeat;
  animation: reveal 1.4s cubic-bezier(.2,.8,.2,1) both;
}

.hero__shade {
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(4, 2, 18, .58) 0%, transparent 23%),
    linear-gradient(0deg, rgba(4, 2, 18, .75) 0%, transparent 28%),
    linear-gradient(90deg, rgba(5, 2, 20, .55), transparent 38%);
}

.site-header,
.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 28px clamp(24px, 5vw, 80px);
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .2em;
}

.wordmark__mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(244, 187, 73, .7);
  border-radius: 50%;
  background: rgba(11, 33, 65, .7);
  color: #f4bb49;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0;
  backdrop-filter: blur(10px);
}

.announcement {
  align-self: end;
  width: min(520px, calc(100% - 48px));
  margin: 0 0 clamp(96px, 13vh, 150px) clamp(24px, 7vw, 120px);
  animation: rise .9s .35s ease both;
}

.eyebrow {
  margin: 0 0 14px;
  color: #f2bd5b;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.announcement h1 {
  margin: 0;
  max-width: 500px;
  font-size: clamp(28px, 3.4vw, 52px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -.035em;
}

.announcement__copy {
  margin: 18px 0 26px;
  color: rgba(255, 255, 255, .68);
  font-size: 14px;
  line-height: 1.7;
}

.site-footer {
  position: absolute;
  bottom: 0;
  color: rgba(255, 255, 255, .48);
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.site-footer__status {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.site-footer__status i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #f2bd5b;
  box-shadow: 0 0 14px #f2bd5b;
  animation: pulse 2s infinite;
}

@keyframes reveal {
  from { opacity: 0; transform: scale(1.03); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes rise {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  50% { opacity: .35; }
}

@media (min-width: 900px) {
  .announcement {
    max-width: 430px;
  }
}

@media (max-width: 700px) {
  .hero__background {
    background-size: auto 100%;
    background-position: center;
  }

  .hero__shade {
    background:
      linear-gradient(180deg, rgba(4, 2, 18, .68) 0%, transparent 25%),
      linear-gradient(0deg, rgba(4, 2, 18, .92) 0%, rgba(4, 2, 18, .08) 55%);
  }

  .site-header,
  .site-footer {
    padding: 20px 22px;
  }

  .wordmark > span:last-child {
    display: none;
  }

  .announcement {
    align-self: end;
    margin: 0 24px 88px;
  }

  .announcement h1 {
    font-size: clamp(27px, 8vw, 38px);
  }

  .site-footer__status {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}
