:root {
  color-scheme:dark;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background-color: #0b1120;
  color: #f5f7ff;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 1rem;
}

.splash-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 100vh;
}

.splash-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: min(100%, 900px);
  padding: 2rem;
  border-radius: 32px;
  background: rgb(0, 0, 0);
  box-shadow: 0 32px 90px rgb(0, 0, 0);
  backdrop-filter: blur(22px);
}

.splash-image {
  width: 100%;
  max-width: 720px;
  height: auto;
  border-radius: 24px;
  box-shadow: 0 22px 50px rgb(0, 0, 0);
  transform: translateY(-8px);
}

.splash-copy {
  text-align: center;
  margin-top: 1.5rem;
}

.splash-copy h1 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin: 0;
}

.splash-copy p {
  font-size: 1.05rem;
  opacity: 0.8;
  margin: 0.75rem 0 0;
}

@media (max-width: 640px) {
  .splash-card {
    padding: 1.25rem;
  }

  .splash-image {
    transform: translateY(0);
  }
}
