:root {
  color-scheme: dark;
  font-family: Arial, Helvetica, sans-serif;
  background: #0b0d0f;
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  overflow-x: hidden;
  background: #0b0d0f;
}

.landing {
  min-height: 100vh;
  display: grid;
  place-items: center;
}

.artboard {
  position: relative;
  width: min(100vw, calc(100vh * 1.776833));
  aspect-ratio: 1672 / 941;
  background: #0b0d0f;
}

.landing-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-mask {
  position: absolute;
  inset: 0 auto auto 0;
  width: 21.5%;
  height: 12.35%;
  background: linear-gradient(110deg, #0b0d0f 0%, #101316 100%);
}

.brand-logo {
  position: absolute;
  left: 4.35%;
  top: 1.25%;
  width: 13.2%;
  height: 10.2%;
  object-fit: contain;
  object-position: center;
}

.primary-link {
  position: absolute;
  left: 36.75%;
  top: 77.9%;
  width: 26.45%;
  height: 7.1%;
  border-radius: 999px;
}

.primary-link:focus-visible {
  outline: 4px solid #fff;
  outline-offset: 4px;
}

.favorites-link {
  position: absolute;
  left: 42.7%;
  top: 86.45%;
  width: 14.7%;
  height: 3.8%;
  padding: 0;
  border: 0;
  background: transparent;
  color: transparent;
  cursor: pointer;
}

.favorites-link:focus-visible {
  outline: 3px solid #101317;
  outline-offset: 2px;
}

.redirect-countdown {
  position: absolute;
  left: 36%;
  top: 90.2%;
  width: 28%;
  margin: 0;
  color: #62676d;
  font-size: clamp(.72rem, 1.05vw, 1rem);
  line-height: 1.25;
  text-align: center;
}

.redirect-countdown strong {
  color: #e75b00;
  font-variant-numeric: tabular-nums;
}

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

dialog {
  width: min(30rem, calc(100vw - 2rem));
  padding: 2rem;
  border: 0;
  border-radius: 1rem;
  color: #15171a;
  background: #fff;
  box-shadow: 0 1rem 4rem rgb(0 0 0 / 45%);
}

dialog::backdrop { background: rgb(0 0 0 / 70%); }
dialog h2 { margin: 0 2rem .75rem 0; font-size: 1.6rem; }
dialog p { margin: 0 0 1.5rem; line-height: 1.5; }
dialog a { color: #c84e00; font-weight: 700; }

.dialog-close {
  position: absolute;
  top: .75rem;
  right: .75rem;
  width: 2.5rem;
  height: 2.5rem;
  border: 0;
  border-radius: 50%;
  font-size: 1.7rem;
  line-height: 1;
  color: #15171a;
  background: #f0f1f2;
  cursor: pointer;
}

@media (max-aspect-ratio: 1672 / 941) {
  .landing { align-items: start; }
  .artboard { width: 100vw; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; }
}
