/* 24/7UNO — Salió. A lean, single-screen "what's out" signpost. Reuses tokens,
   font-face, .mono, .brand-spine, .env-grain, .footer, focus-visible, and
   reduced-motion rules from styles.css. Everything below is Salió-specific.
   (Self-contained: mirrors the manifiesto's pill/eyebrow idioms with s- classes
   so this page doesn't depend on manifiesto.css.) */

/* ── Static environment ────────────────────────────────────────────────────
   No live track → no cover-art background. Same subtle signal-red anchor glow
   as the manifiesto keeps the visual link with the player. */
.salio-page {
  background:
    radial-gradient(70% 60% at 50% 0%, rgba(227, 0, 0, .10) 0%, transparent 60%),
    radial-gradient(90% 60% at 50% 100%, rgba(227, 0, 0, .06) 0%, transparent 65%),
    var(--bg);
}

/* ── Layout shell ──────────────────────────────────────────────────────────
   One screen: topbar pinned up top, hero centered, footer at the bottom. */
.salio {
  position: relative;
  z-index: 1;
  min-height: 100dvh;
  max-width: 1280px;
  margin: 0 auto;
  padding:
    clamp(28px, 4vw, 56px)
    clamp(24px, 5vw, 88px)
    clamp(40px, 6vh, 72px)
    clamp(52px, 6vw, 88px); /* left padding leaves room for the brand spine */
  display: flex;
  flex-direction: column;
  gap: clamp(48px, 8vh, 96px);
}

/* ── Topbar ────────────────────────────────────────────────────────────────
   Same logo placeholder as the player; return-to-radio pill on the right. */
.s-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.s-return {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  min-height: 40px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--text-muted);
  text-decoration: none;
  font-size: .64rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  transition:
    color        var(--dur-med) var(--ease-out-quart),
    border-color var(--dur-med) var(--ease-out-quart),
    background   var(--dur-med) var(--ease-out-quart);
}
.s-return:hover { color: var(--text); border-color: var(--border-strong); background: rgba(255,255,255,.05); }
.s-return-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--signal);
  box-shadow: 0 0 8px var(--signal-glow);
  animation: pulse 2s ease-in-out infinite; /* same keyframe as the player */
}

/* ── Hero ──────────────────────────────────────────────────────────────────
   Eyebrow → big title → humble lede → Spotify CTA. Centered in the leftover
   space between topbar and footer. */
.s-hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(24px, 4vh, 40px);
  max-width: 62ch;
}
.s-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: .72rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: var(--fw-semibold);
  margin: 0;
}
.s-eyebrow::before {
  content: "";
  width: 32px; height: 2px;
  background: var(--signal);
  box-shadow: 0 0 10px var(--signal-glow);
}
.s-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(3.4rem, 15vw, 11rem);
  line-height: 0.86;
  letter-spacing: -0.04em;
  color: var(--signal);
  text-shadow: 0 0 60px var(--signal-glow), 0 2px 40px rgba(0, 0, 0, .5);
  margin: 0;
}
.s-lede {
  font-size: clamp(1.1rem, 1.7vw, 1.5rem);
  font-weight: var(--fw-medium);
  color: var(--text);
  line-height: 1.55;
  max-width: 46ch;
  margin: 0;
  text-wrap: pretty;
}

/* ── CTA — Spotify ─────────────────────────────────────────────────────────
   Same physical pill recipe as the manifiesto's return-to-air button. */
.s-cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 30px 18px 26px;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  background: var(--surface);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  font-size: .76rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--text);
  text-decoration: none;
  align-self: flex-start;
  transition:
    transform    var(--dur-fast) var(--ease-spring),
    border-color var(--dur-med)  var(--ease-out-quart),
    background   var(--dur-med)  var(--ease-out-quart),
    box-shadow   var(--dur-med)  var(--ease-out-quart);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .35), inset 0 1px 0 rgba(255, 255, 255, .06);
}
.s-cta:hover {
  transform: translateY(-2px);
  border-color: var(--signal);
  background: rgba(255, 255, 255, .06);
  box-shadow: 0 0 30px 2px var(--signal-glow), 0 12px 34px rgba(0, 0, 0, .45), inset 0 1px 0 rgba(255, 255, 255, .1);
}
.s-cta:active { transform: scale(.97); }
.s-cta-dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--signal);
  box-shadow: 0 0 10px var(--signal-glow);
  animation: pulse 2s ease-in-out infinite;
}

/* ── Footer ────────────────────────────────────────────────────────────────
   Reuses the player's .footer / .footer-links / .mono styles from styles.css. */
.salio .footer { margin-top: 0; }

/* ── Reduced motion ────────────────────────────────────────────────────────
   Still the tally dots and the CTA lift (base rules handled in styles.css). */
@media (prefers-reduced-motion: reduce) {
  .s-return-dot, .s-cta-dot { animation: none; }
  .s-cta { transition: border-color .2s ease, background .2s ease; }
  .s-cta:hover { transform: none; }
}
