:root {
  color-scheme: dark;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #f2ead8;
  background: #071d17;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
}

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

body {
  min-height: 100svh;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 44%, rgba(21, 79, 61, 0.38), transparent 35rem),
    linear-gradient(145deg, #061813 0%, #09241c 52%, #04120f 100%);
}

body::before {
  position: fixed;
  inset: 0;
  content: "";
  pointer-events: none;
  opacity: 0.18;
  background-image: repeating-radial-gradient(circle at 50% 45%, transparent 0 10px, rgba(240, 219, 174, 0.08) 10.5px 11px);
  -webkit-mask-image: radial-gradient(circle at 50% 45%, #000, transparent 64%);
  mask-image: radial-gradient(circle at 50% 45%, #000, transparent 64%);
}

main {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 100svh;
  padding: 2rem;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  animation: arrive 900ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.brand-logo {
  display: block;
  width: min(86vw, 43rem);
  height: auto;
  filter: drop-shadow(0 1.5rem 3rem rgba(0, 0, 0, 0.24));
}

p {
  margin: clamp(1.2rem, 3vw, 1.8rem) 0 0;
  color: rgba(242, 234, 216, 0.72);
  font-size: clamp(0.82rem, 2vw, 1rem);
  font-weight: 500;
  letter-spacing: 0.08em;
}

@keyframes arrive {
  from {
    opacity: 0;
    transform: translateY(0.75rem);
    filter: blur(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@media (max-width: 480px) {
  main {
    padding: 1.5rem;
  }

  p {
    max-width: 18rem;
    line-height: 1.6;
  }
}

@media (prefers-reduced-motion: reduce) {
  main {
    animation: none;
  }
}
