:root {
  --dl-bg: #101411;
  --dl-surface: #171d18;
  --dl-text: #f7f5ee;
  --dl-muted: rgba(247, 245, 238, 0.68);
  --dl-accent: #489D4A;
  --dl-accent-2: #489D4A;
}

* {
  box-sizing: border-box;
}

#desktop-landing,
.desktop-page {
  color: var(--dl-text);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

#desktop-landing {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 48px;
  background:
    linear-gradient(90deg, rgba(72, 157, 74, 0.06) 1px, transparent 1px),
    linear-gradient(0deg, rgba(72, 157, 74, 0.05) 1px, transparent 1px),
    linear-gradient(135deg, rgba(71, 155, 73, 0.18), transparent 44%),
    var(--dl-bg);
  background-size: 42px 42px, 42px 42px, auto, auto;
}

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

.desktop-page {
  min-height: 100vh;
  margin: 0;
  display: grid;
  place-items: center;
  padding: 48px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(72, 157, 74, 0.06) 1px, transparent 1px),
    linear-gradient(0deg, rgba(72, 157, 74, 0.05) 1px, transparent 1px),
    linear-gradient(135deg, rgba(71, 155, 73, 0.18), transparent 44%),
    var(--dl-bg);
  background-size: 42px 42px, 42px 42px, auto, auto;
}

.dl-content {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(100%, 980px);
  grid-template-columns: minmax(0, 1.25fr) 340px;
  gap: 42px;
  align-items: center;
}

.dl-copy {
  min-width: 0;
}

.dl-logo {
  display: block;
  width: 260px;
  height: auto;
  margin-bottom: 34px;
  padding: 14px;
  border-radius: 8px;
  background: var(--dl-accent);
}

.dl-kicker {
  margin: 0 0 12px;
  color: var(--dl-accent);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.dl-title {
  margin: 0;
  font-family: "Russo One", "Arial Black", system-ui, sans-serif;
  font-size: 104px;
  font-weight: 400;
  line-height: 0.9;
  text-transform: uppercase;
}

.dl-subtitle {
  max-width: 560px;
  margin: 22px 0 0;
  color: var(--dl-muted);
  font-size: 18px;
  line-height: 1.55;
}

.dl-panel {
  display: grid;
  justify-items: center;
  padding: 24px;
  border: 1px solid rgba(72, 157, 74, 0.26);
  border-radius: 8px;
  background: rgba(23, 29, 24, 0.86);
  box-shadow: 0 24px 90px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(18px);
}

.dl-qr {
  display: grid;
  place-items: center;
  padding: 14px;
  border-radius: 8px;
  background: #f7f5ee;
  line-height: 0;
}

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

.dl-instruction {
  margin: 16px 0 10px;
  color: var(--dl-text);
  font-weight: 850;
}

.dl-url {
  max-width: 100%;
  overflow: hidden;
  padding: 8px 10px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--dl-muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 13px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media (max-width: 760px) {
  #desktop-landing,
  .desktop-page {
    padding: 24px;
  }

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

  .dl-panel {
    width: min(100%, 340px);
  }

  .dl-title {
    font-size: 58px;
  }
}
