/* Shared site chrome — Listening Room public pages */
:root {
  --lr-text: #1c1c1e;
  --lr-text-muted: #636366;
  --lr-border: #e5e5ea;
  --lr-bg: #fafafa;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", Roboto, sans-serif;
}

.site-footer {
  margin-top: auto;
  padding: 1.5rem 1rem 2rem;
  text-align: center;
  font-size: 0.9375rem;
  border-top: 1px solid var(--lr-border);
}

.site-footer a {
  color: var(--lr-text);
  text-decoration: none;
  margin: 0 0.65rem;
  white-space: nowrap;
}

.site-footer a:hover {
  text-decoration: underline;
}

/* Homepage */
.page-home {
  min-height: 100vh;
  margin: 0;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  color: var(--lr-text);
}

.home-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 1rem 1.5rem;
  gap: 1.5rem;
}

/* ~2× prior cap (400px → 800px); scales down on narrow phones. No border-radius/shadow — use the PNG as exported. */
.home-hero {
  width: 100%;
  max-width: min(800px, 96vw);
  height: auto;
  display: block;
}

.btn-download {
  display: inline-block;
  background: #000000;
  color: #ffffff !important;
  padding: 0.875rem 2.25rem;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  letter-spacing: -0.01em;
}

.btn-download:hover {
  opacity: 0.88;
}

.page-home .site-footer {
  border-top-color: #ececec;
}

/* Hero artwork is light-themed; keep the landing page white in dark mode too */
@media (prefers-color-scheme: dark) {
  .page-home {
    background: #ffffff;
  }

  .page-home .site-footer {
    border-top-color: #ececec;
  }

  .page-home .site-footer a {
    color: #1c1c1e;
  }
}
