#desktop-landing {
  position: fixed;
  inset: 0;
  z-index: 250;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 35%, rgba(184,184,184,0.11), transparent 32%),
    #050505;
}

#desktop-landing[hidden] {
  display: none;
}

.dl-content {
  position: relative;
  z-index: 1;
  width: min(88vw, 760px);
  display: grid;
  gap: 26px;
  text-align: center;
}

.dl-kicker {
  color: var(--text-sec, #b8b8b8);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.dl-content h1 {
  max-width: 680px;
  margin: 0 auto;
  font-family: var(--font-display, "Russo One", sans-serif);
  font-size: 54px;
  line-height: 1;
  font-weight: 400;
  text-transform: uppercase;
}

.dl-content p {
  max-width: 500px;
  margin: -10px auto 0;
  color: var(--text-sec, #b8b8b8);
  font-size: 17px;
  line-height: 1.5;
}

.dl-qr-row {
  width: min(100%, 500px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 220px 1fr;
  align-items: stretch;
  gap: 12px;
}

.dl-qr {
  padding: 14px;
  border-radius: 8px;
  background: #fff;
  line-height: 0;
}

.dl-qr img,
.dl-qr canvas {
  width: 192px;
  height: 192px;
  display: block;
  image-rendering: pixelated;
}

.dl-meta {
  min-width: 0;
  display: grid;
  gap: 8px;
}

.dl-meta span {
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  border: 1px solid rgba(244,244,244,0.12);
  border-radius: 8px;
  background: rgba(255,255,255,0.045);
  color: #f4f4f4;
  font-weight: 900;
  overflow-wrap: anywhere;
}

body.desktop-page {
  min-height: 100vh;
  margin: 0;
  background: #050505;
  color: #f4f4f4;
  font-family: "Inter", system-ui, sans-serif;
  overflow: hidden;
}

body.desktop-page #desktop-landing {
  display: grid;
}

body.desktop-page .dl-content {
  width: min(88vw, 760px);
}

@media (max-width: 700px) {
  .dl-content h1 {
    font-size: 36px;
  }

  .dl-qr-row {
    grid-template-columns: 1fr;
  }

  .dl-qr {
    width: 220px;
    margin: 0 auto;
  }
}
