:root {
  color-scheme: light;
  --ink: #202124;
  --soft-ink: #555b61;
  --paper: #f8f9f8;
  --line: rgba(255, 255, 255, 0.92);
  --shadow: rgba(32, 33, 36, 0.18);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--paper);
}

body {
  min-height: 100vh;
  margin: 0;
  overflow: hidden;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(118, 118, 118, 0.78) 0%, rgba(226, 226, 226, 0.9) 42%, #ffffff 51%, rgba(226, 226, 226, 0.92) 60%, rgba(132, 132, 132, 0.84) 100%);
}

body::before,
body::after {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  content: "";
}

body::before {
  background:
    radial-gradient(ellipse at 50% 50%, rgba(255, 255, 255, 0.96) 0 9%, rgba(255, 255, 255, 0.58) 18%, rgba(255, 255, 255, 0) 40%),
    linear-gradient(90deg, rgba(248, 249, 248, 0.18), rgba(248, 249, 248, 0) 18% 82%, rgba(248, 249, 248, 0.2));
}

body::after {
  border: 1px solid rgba(32, 33, 36, 0.28);
  border-radius: 0.75rem;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.46);
}

.grid-scene {
  position: fixed;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.parking-page {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: clamp(1.5rem, 4vw, 4rem);
}

.brand-lockup {
  width: min(100%, 46rem);
  padding: clamp(1rem, 4vw, 2rem);
  display: grid;
  justify-items: center;
  gap: clamp(0.7rem, 1.8vw, 1.05rem);
  text-align: center;
  filter: drop-shadow(0 1px 0 rgba(255, 255, 255, 0.78)) drop-shadow(0 1rem 2.5rem rgba(32, 33, 36, 0.18));
}

.wordmark,
.tagline {
  display: block;
  max-width: 100%;
  height: auto;
  user-select: none;
  -webkit-user-drag: none;
}

.wordmark {
  width: min(76vw, 44rem);
}

.tagline {
  width: min(44vw, 16rem);
  opacity: 0.9;
}

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

@media (max-width: 640px) {
  body::after {
    border-radius: 0;
  }

  .brand-lockup {
    padding: 1rem;
  }

  .wordmark {
    width: min(88vw, 24rem);
  }

  .tagline {
    width: min(58vw, 12rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  .grid-scene {
    transform: none;
  }
}
