/* Landing download / redirect — stile shell Corpore */
.download-gate {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}
.download-gate .wrap {
  width: min(640px, calc(100% - 2rem));
  margin-inline: auto;
}

.dg-top {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(20, 6, 31, 0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.dg-top__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0;
}
.dg-top__logo img {
  height: 30px;
  width: auto;
}
.dg-top__back {
  color: var(--muted);
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
}
.dg-top__back:hover { color: var(--lime); }

.dg-main {
  flex: 1;
  display: flex;
  align-items: center;
  padding: clamp(2rem, 5vw, 3.5rem) 0;
}

.dg-panel {
  width: 100%;
  text-align: center;
  animation: dg-in 0.5s cubic-bezier(0.22, 1, 0.36, 1) both;
}
@keyframes dg-in {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: none; }
}

.dg-eyebrow {
  margin: 0 0 0.65rem;
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(244, 238, 255, 0.55);
}
.dg-panel h1 {
  margin: 0 0 0.85rem;
  font-size: clamp(1.65rem, 4.5vw, 2.25rem);
  line-height: 1.15;
  color: var(--heading);
  font-weight: 700;
}
.dg-lede {
  margin: 0 auto 1.75rem;
  max-width: 34rem;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.55;
}

.dg-actions {
  display: grid;
  gap: 0.75rem;
  max-width: 22rem;
  margin: 0 auto 1.25rem;
}
.dg-actions .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 3rem;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  border: 1.5px solid transparent;
  transition: background 0.15s, border-color 0.15s, transform 0.15s;
}
.dg-actions .btn-primary {
  background: var(--lime);
  color: #fff;
}
.dg-actions .btn-primary:hover {
  background: #A86BFF;
  color: #fff;
  transform: translateY(-1px);
}
.dg-actions .btn-ghost {
  background: transparent;
  color: var(--heading);
  border-color: rgba(255, 255, 255, 0.35);
}
.dg-actions .btn-ghost:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.dg-stores {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
  margin: 0 0 1.5rem;
}
.dg-stores a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.65rem;
  padding: 0.55rem 1.1rem;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
  color: var(--ink);
  font-family: var(--mono);
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
}
.dg-stores a:hover {
  border-color: rgba(155, 92, 255, 0.55);
  color: #fff;
}

.dg-note {
  margin: 0;
  font-size: 0.92rem;
  color: rgba(244, 238, 255, 0.55);
}
.dg-note a { font-weight: 700; }

.dg-footer {
  padding: 1.25rem 0 1.75rem;
  border-top: 1px solid var(--line);
  text-align: center;
  font-size: 0.88rem;
  color: rgba(244, 238, 255, 0.5);
}
.dg-footer a { color: var(--muted); font-weight: 600; }
.dg-footer a:hover { color: var(--lime); }
