/* Dedicated /download/ page. Reuses SeaDays dark + neon red. */
.download-page {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  background: #0a0a0a;
  color: #fff;
}

.download-page .content-layer {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-height: 100dvh;
}

.download-main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 24px 80px;
  position: relative;
  z-index: 1;
}

.download-card {
  width: min(720px, 100%);
  text-align: center;
}

.download-card .hero-logo {
  display: block;
  margin: 0 auto 28px;
  width: min(280px, 70vw);
  height: auto;
}

.download-card h1 {
  font-size: clamp(32px, 6vw, 52px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin: 0 0 16px;
}

.download-card .lede {
  font-size: 18px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.72);
  max-width: 40rem;
  margin: 0 auto 28px;
}

.download-answers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 0 auto 32px;
  text-align: left;
  max-width: 640px;
}

.download-answers div {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.03);
}

.download-answers dt {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 4px;
}

.download-answers dd {
  margin: 0;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.88);
}

.download-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 28px;
  border-radius: 999px;
  background: #FF0033;
  color: #fff;
  font-weight: 800;
  font-size: 16px;
  text-decoration: none;
  letter-spacing: 0.01em;
}

.download-primary:hover {
  background: #cc0029;
}

.download-primary:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

.download-store-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 22px;
}

.download-store-row a {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 10px 18px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  text-decoration: none;
  font-weight: 650;
  background: rgba(255, 255, 255, 0.04);
}

.download-store-row a:hover {
  border-color: rgba(255, 255, 255, 0.4);
}

.download-qr-wrap {
  margin-top: 36px;
}

.download-qr-wrap img {
  width: 168px;
  height: 168px;
  background: #fff;
  padding: 10px;
  border-radius: 16px;
}

.download-qr-wrap p {
  margin: 10px 0 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

.download-note {
  margin-top: 28px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.42);
}

html[data-seadays-platform='android'] .download-store-apple,
html[data-seadays-platform='ios'] .download-store-play {
  opacity: 0.7;
}

@media (max-width: 700px) {
  .download-answers {
    grid-template-columns: 1fr;
  }
  .download-main {
    padding-top: 108px;
  }
}
