:root {
  color-scheme: dark;
  --background: #050505;
  --foreground: #f4f4f1;
  --muted: #8a8a85;
  --line: rgba(255, 255, 255, 0.12);
}

* {
  box-sizing: border-box;
}

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

body {
  background: var(--background);
  color: var(--foreground);
  font-family: Arial, Helvetica, sans-serif;
}

.park-page {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-rows: 1fr auto;
  min-height: 100svh;
  overflow: hidden;
  padding: clamp(24px, 4vw, 56px);
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.075), transparent 34%),
    linear-gradient(180deg, #090909 0%, #020202 100%);
}

.park-page::before,
.park-page::after {
  position: absolute;
  z-index: -1;
  content: "";
  pointer-events: none;
}

.park-page::before {
  top: -14vw;
  left: 50%;
  width: 42vw;
  height: 110vh;
  transform: translateX(-50%) skewX(-13deg);
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(255, 255, 255, 0.045) 42%,
    transparent 100%
  );
}

.park-page::after {
  right: 7vw;
  bottom: -27vh;
  width: 1px;
  height: 85vh;
  transform: rotate(22deg);
  background: linear-gradient(transparent, var(--line), transparent);
}

.grain {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  opacity: 0.075;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.86' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.75'/%3E%3C/svg%3E");
}

.content {
  align-self: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: min(100%, 920px);
  margin: auto;
  text-align: center;
}

.logo {
  display: block;
  width: min(92vw, 680px);
  height: auto;
  margin: 0 auto;
  filter: invert(1);
}

.status {
  margin: clamp(18px, 3vw, 28px) 0 0;
  font-size: clamp(0.82rem, 1.45vw, 1rem);
  font-weight: 700;
  letter-spacing: 0.34em;
  line-height: 1.5;
  text-transform: uppercase;
}

.subline {
  margin: 15px 0 0;
  color: var(--muted);
  font-size: clamp(0.68rem, 1vw, 0.8rem);
  letter-spacing: 0.2em;
  line-height: 1.5;
  text-transform: uppercase;
}

footer {
  position: relative;
  z-index: 4;
  display: flex;
  justify-content: center;
  padding-top: 40px;
  color: #666662;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  clip-path: inset(50%);
}

@media (max-width: 560px) {
  .park-page {
    padding: 22px;
  }

  .logo {
    width: min(112vw, 570px);
  }

  .status {
    margin-top: 12px;
    letter-spacing: 0.23em;
  }

  .subline {
    letter-spacing: 0.13em;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .logo,
  .status,
  .subline {
    animation: reveal 900ms cubic-bezier(.2, .8, .2, 1) both;
  }

  .status {
    animation-delay: 120ms;
  }

  .subline {
    animation-delay: 220ms;
  }

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