@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500;600;700&family=DM+Sans:opsz,wght@9..40,400;9..40,500&display=swap');

:root {
  color-scheme: dark;
  font-family: 'DM Sans', system-ui, sans-serif;
  background: #030303;
  color: #f8f2e6;
}

* { box-sizing: border-box; }

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

body { background: #030303; }

.hero {
  position: relative;
  isolation: isolate;
  min-height: min(56rem, 100svh);
  overflow: hidden;
  display: grid;
  place-items: center;
  background: #030303;
}

.hero-art, .hero-fade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-art {
  z-index: -2;
  object-fit: contain;
  object-position: center;
}

/* Layered linear fades give every edge a predictable, seamless falloff to black. */
.hero-fade {
  z-index: -1;
  background:
    linear-gradient(90deg,
      #030303 0%,
      rgba(3, 3, 3, .94) 7%,
      transparent 27%,
      transparent 73%,
      rgba(3, 3, 3, .94) 93%,
      #030303 100%),
    linear-gradient(0deg,
      #030303 0%,
      rgba(3, 3, 3, .8) 11%,
      transparent 32%,
      transparent 73%,
      rgba(3, 3, 3, .72) 91%,
      #030303 100%);
}

.hero-content {
  position: relative;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.coming-soon {
  display: grid;
  min-height: 9rem;
  place-items: center;
  background: #030303;
  color: #907545;
  font-family: Cinzel, Georgia, serif;
  font-size: .7rem;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.coming-soon p {
  margin: 0;
  text-align: center;
}

.anjopa-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .42rem;
  width: fit-content;
  margin: .85rem auto 0;
  color: #7c6b4a;
  font: 500 .58rem/1 'DM Sans', system-ui, sans-serif;
  letter-spacing: .12em;
  text-decoration: none;
}

.anjopa-link img {
  display: block;
  width: 4.4rem;
  height: auto;
  opacity: .9;
  transition: opacity .2s ease, transform .2s ease;
}

.anjopa-link:hover img,
.anjopa-link:focus-visible img {
  opacity: 1;
  transform: translateY(-1px);
}

@media (max-width: 38rem) {
  /* The Kickstarter artwork is landscape: keep its full title visible on phones. */
  .hero {
    min-height: 0;
    aspect-ratio: 1672 / 941;
  }
  .hero-art { object-fit: cover; }
  .hero-fade {
    background:
      linear-gradient(90deg,
        #030303 0%,
        rgba(3, 3, 3, .82) 7%,
        transparent 20%,
        transparent 80%,
        rgba(3, 3, 3, .82) 93%,
        #030303 100%),
      linear-gradient(0deg,
        #030303 0%,
        rgba(3, 3, 3, .72) 12%,
        transparent 35%,
        transparent 73%,
        rgba(3, 3, 3, .6) 91%,
        #030303 100%);
  }
}
