:root {
  color-scheme: dark;
  font-family: "Segoe UI", system-ui, sans-serif;
  background: #07090f;
}

* { box-sizing: border-box; }

body { margin: 0; }

.entry {
  min-height: 100svh;
  position: relative;
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
  background: #07090f;
}

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

.entry-art {
  object-fit: cover;
  object-position: 66% center;
  z-index: -2;
  animation: arrive 1.2s ease-out both;
}

.entry-shade {
  z-index: -1;
  background: linear-gradient(90deg, rgba(4, 7, 13, 0.92) 0%, rgba(4, 7, 13, 0.68) 34%, rgba(4, 7, 13, 0.16) 72%), linear-gradient(0deg, rgba(4, 7, 13, 0.7), transparent 52%);
}

.entry-copy {
  padding: clamp(2rem, 7vw, 7rem);
  padding-bottom: clamp(3rem, 11vh, 7rem);
  max-width: 46rem;
}

.entry-copy p {
  color: #ed9fc5;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  margin: 0 0 0.8rem;
  text-transform: uppercase;
}

h1 {
  color: #f6f8ff;
  font-size: clamp(2.5rem, 6vw, 5.6rem);
  font-weight: 650;
  letter-spacing: 0;
  line-height: 1.03;
  margin: 0 0 2rem;
  text-wrap: balance;
}

.enter-button {
  align-items: center;
  background: #eb6faf;
  border: 1px solid #ffc6df;
  color: #160a12;
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
  min-height: 3.25rem;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  transition: background-color 160ms ease, transform 160ms ease;
}

.enter-button:hover,
.enter-button:focus-visible {
  background: #ffc0dc;
  transform: translateY(-2px);
}

.enter-button:focus-visible { outline: 3px solid #75e1e3; outline-offset: 4px; }

@keyframes arrive { from { opacity: 0; transform: scale(1.025); } to { opacity: 1; transform: scale(1); } }

@media (max-width: 640px) {
  .entry-art { object-position: 61% center; }
  .entry-shade { background: linear-gradient(0deg, rgba(4, 7, 13, 0.94) 0%, rgba(4, 7, 13, 0.26) 74%); }
  .entry-copy { padding: 2rem 1.25rem 2.75rem; }
}

@media (prefers-reduced-motion: reduce) { .entry-art { animation: none; } .enter-button { transition: none; } }
