/* Jejeya — editorial music discovery (navy / violet / cyan) */

:root {
  --bg0: #05070f;
  --bg1: #0a1020;
  --bg2: #111827;
  --ink: #e8ecff;
  --muted: rgba(200, 210, 255, 0.72);
  --violet: #7c3aed;
  --violet-soft: rgba(124, 58, 237, 0.35);
  --cyan: #22d3ee;
  --cyan-dim: rgba(34, 211, 238, 0.45);
  --line: rgba(148, 163, 255, 0.14);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
  --radius: 18px;
  --content-max: min(1320px, calc(100vw - 2.5rem));
  --font-sans: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-display: "Outfit", "Inter", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background: radial-gradient(1200px 800px at 10% -10%, rgba(124, 58, 237, 0.22), transparent 55%),
    radial-gradient(900px 600px at 90% 0%, rgba(34, 211, 238, 0.08), transparent 50%), var(--bg0);
  line-height: 1.62;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: #c4d4ff;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: #fff;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--cyan);
  color: #041018;
  padding: 0.5rem 1rem;
  z-index: 100;
}
.skip-link:focus {
  left: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(14px);
  background: linear-gradient(180deg, rgba(5, 7, 15, 0.92), rgba(5, 7, 15, 0.65));
  border-bottom: 1px solid var(--line);
}

.header-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0.85rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.4rem;
  letter-spacing: -0.02em;
  color: #fff;
  text-decoration: none;
}
.brand span {
  color: var(--cyan);
}

.nav-toggle {
  display: none;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  color: var(--ink);
  padding: 0.45rem 0.75rem;
  border-radius: 10px;
  font: inherit;
}

.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1rem;
  align-items: center;
}

.site-nav a {
  font-weight: 500;
  font-size: 0.95rem;
}

.nav-dropdown {
  position: relative;
}
.nav-dropdown > button {
  background: transparent;
  border: 0;
  color: #c4d4ff;
  font: inherit;
  font-weight: 500;
  cursor: pointer;
  padding: 0.25rem 0;
}
.nav-dropdown-panel {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 0.35rem;
  background: var(--bg2);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.65rem;
  min-width: 200px;
  box-shadow: var(--shadow);
  flex-direction: column;
  gap: 0.35rem;
  z-index: 50;
}
.nav-dropdown:hover .nav-dropdown-panel,
.nav-dropdown.open .nav-dropdown-panel {
  display: flex;
}

@media (max-width: 900px) {
  .nav-toggle {
    display: inline-block;
  }
  .site-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    padding: 0.75rem 0 0;
  }
  .site-nav.is-open {
    display: flex;
  }
  .site-nav ul {
    flex-direction: column;
    align-items: flex-start;
  }
  .nav-dropdown-panel {
    position: static;
    box-shadow: none;
    border: 0;
    padding-left: 0.5rem;
  }
}

.layout-home,
.layout,
.layout--album {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 1.75rem clamp(1rem, 3vw, 1.75rem) 3.25rem;
}

.layout-home {
  padding-top: 0.5rem;
}

.layout.prose {
  max-width: 760px;
}

/* Hero */
.home-hero {
  padding: 2.5rem 0 2rem;
}
.home-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 2rem;
  align-items: center;
}
@media (max-width: 960px) {
  .home-hero__grid {
    grid-template-columns: 1fr;
  }
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  color: var(--cyan-dim);
  margin: 0 0 0.75rem;
}

.display {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.25rem, 4.2vw, 3.35rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin: 0 0 1.1rem;
  color: #fff;
}

.lede {
  font-size: 1.125rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--muted);
  margin: 0 0 1rem;
}

.home-hero__support {
  margin: 0 0 1rem;
  font-size: 1rem;
  color: rgba(220, 228, 255, 0.88);
  max-width: 46ch;
}

.kicker {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--cyan-dim);
  margin: 0 0 0.5rem;
}
.kicker a {
  color: inherit;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.25rem 0 1.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.25rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: 1px solid transparent;
}
.btn-primary {
  background: linear-gradient(120deg, var(--violet), #4c1d95);
  color: #fff;
  box-shadow: 0 12px 40px var(--violet-soft);
}
.btn-primary:hover {
  filter: brightness(1.06);
  color: #fff;
}
.btn-ghost {
  border-color: rgba(148, 163, 255, 0.35);
  color: #dbe4ff;
  background: rgba(255, 255, 255, 0.03);
}
.btn-ghost:hover {
  border-color: var(--cyan);
  color: #fff;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin: 0;
}
.hero-stats div {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.75rem 1rem;
}
.hero-stats dt {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin: 0;
}
.hero-stats dd {
  margin: 0.25rem 0 0;
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #fff;
}

.home-hero__visual {
  position: relative;
  min-height: 420px;
}
.hero-glow {
  position: absolute;
  inset: -10% -5% -5% -10%;
  background: radial-gradient(circle at 40% 30%, rgba(167, 139, 250, 0.35), transparent 55%),
    radial-gradient(circle at 70% 70%, rgba(34, 211, 238, 0.12), transparent 45%);
  filter: blur(2px);
  z-index: 0;
}
.hero-stack {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  align-items: end;
  min-height: 380px;
}
.hero-poster {
  grid-row: 1;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.hero-poster--0 {
  grid-column: 1 / span 3;
  z-index: 5;
  transform: translate(0, 0) rotate(-3deg);
}
.hero-poster--1 {
  grid-column: 3 / span 3;
  z-index: 4;
  transform: translate(8%, -4%) rotate(4deg);
}
.hero-poster--2 {
  grid-column: 2 / span 2;
  z-index: 3;
  transform: translate(-10%, 18%) rotate(-5deg);
  opacity: 0.95;
}
.hero-poster--3 {
  grid-column: 4 / span 2;
  z-index: 2;
  transform: translate(6%, 22%) rotate(6deg);
  opacity: 0.9;
}
.hero-poster--4 {
  grid-column: 5 / span 2;
  z-index: 1;
  transform: translate(-20%, 8%) rotate(-2deg);
  opacity: 0.85;
}
.hero-poster:hover {
  transform: translateY(-6px) scale(1.02);
  z-index: 20;
}
.hero-poster__link {
  display: block;
  line-height: 0;
}
.hero-poster__img {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
}

.hero-float {
  position: absolute;
  right: 0;
  bottom: 6%;
  width: min(320px, 88vw);
  background: linear-gradient(160deg, rgba(17, 24, 39, 0.95), rgba(5, 7, 15, 0.92));
  border: 1px solid rgba(167, 139, 250, 0.35);
  border-radius: 18px;
  padding: 1rem 1.15rem;
  text-decoration: none;
  color: #eef2ff;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  z-index: 10;
}
.hero-float:hover {
  border-color: var(--cyan);
  color: #fff;
}
.hero-float__kicker {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan);
}
.hero-float__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
}
.hero-float__quote {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.45;
}
.hero-float__cta {
  font-size: 0.85rem;
  color: #c7d2fe;
  margin-top: 0.25rem;
}

/* Sections */
.home-section {
  margin-top: 2.75rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}
.section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem 1rem;
  margin-bottom: 1.25rem;
}
.section-head h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.2vw, 1.65rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #fff;
}
.section-sub {
  flex: 1 1 220px;
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}
.section-more {
  font-weight: 600;
  white-space: nowrap;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.25rem;
}
.card-grid--home {
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
}

.card-album {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.25s ease, transform 0.25s ease;
}
.card-album:hover {
  border-color: rgba(167, 139, 250, 0.45);
  transform: translateY(-4px);
}
.card-album__media {
  position: relative;
  overflow: hidden;
}
.card-album__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(5, 7, 15, 0.55));
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.card-album:hover .card-album__media::after {
  opacity: 1;
}
.card-album__media img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}
.card-album__body {
  padding: 0.85rem 1rem 1rem;
}
.card-album__meta {
  margin: 0;
  font-size: 0.82rem;
  color: var(--muted);
}
.card-album__title {
  margin: 0.35rem 0 0;
  font-size: 1.04rem;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.28;
}
.card-album__title a {
  color: #fff;
  text-decoration: none;
}
.card-album__title a:hover {
  text-decoration: underline;
}
.card-album__genre {
  margin: 0.35rem 0 0;
  font-size: 0.82rem;
}

/* Album page */
.album-hero {
  display: grid;
  grid-template-columns: minmax(0, 340px) minmax(0, 1fr);
  gap: 2rem;
  align-items: start;
  margin-bottom: 2rem;
}
@media (max-width: 800px) {
  .album-hero {
    grid-template-columns: 1fr;
  }
}
.album-hero__cover img {
  border-radius: 20px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.album-hero__artist {
  font-size: 1.1rem;
  color: var(--muted);
}

.section {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}
.section h2 {
  font-family: var(--font-display);
  color: #fff;
  margin-top: 0;
}

.tracklist {
  padding-left: 1.25rem;
  color: var(--muted);
}
.tracklist li {
  margin-bottom: 0.35rem;
}

.listen-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
}

.breadcrumbs {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 1rem;
}

.page-head h1 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3vw, 2.5rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  margin: 0 0 0.5rem;
  color: #fff;
}

.index-list {
  list-style: none;
  padding: 0;
  margin: 0;
  columns: 1;
}
.index-list li {
  margin-bottom: 0.45rem;
  break-inside: avoid;
}

.link-stack {
  list-style: none;
  padding: 0;
  margin: 0;
}
.link-stack li {
  margin-bottom: 0.4rem;
}

.section--cta {
  margin-top: 3rem;
}
.section--cta h2 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #fff;
}
.cta-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 1.25rem;
  border-radius: var(--radius);
  border: 1px solid rgba(167, 139, 250, 0.25);
  background: linear-gradient(120deg, rgba(124, 58, 237, 0.12), rgba(34, 211, 238, 0.06));
}
.text-muted {
  color: var(--muted);
}
.mb-0 {
  margin-bottom: 0;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 2rem 1.25rem 2.5rem;
  margin-top: 2rem;
  background: rgba(5, 7, 15, 0.85);
}
.footer-grid {
  max-width: var(--content-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.5rem;
}
.footer-grid h3 {
  margin: 0 0 0.5rem;
  font-size: 0.95rem;
  color: #fff;
}
.footer-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-grid li {
  margin-bottom: 0.35rem;
}
.footer-bottom {
  max-width: var(--content-max);
  margin: 1.5rem auto 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: var(--muted);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  background: rgba(5, 7, 15, 0.92);
  border-top: 1px solid var(--line);
  transform: translateY(110%);
  transition: transform 0.3s ease;
  z-index: 60;
}
.cookie-banner.is-visible {
  transform: translateY(0);
}
.cookie-inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  justify-content: space-between;
}

/* ——— Homepage: wide rhythm, rails, cinematic features ——— */

.home-reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.home-reveal.is-visible {
  opacity: 1;
  transform: none;
}

.home-toolbar {
  margin-top: 1.35rem;
  padding: 0.85rem 1.15rem;
  border-radius: var(--radius);
  border: 1px solid rgba(167, 139, 250, 0.2);
  background: linear-gradient(120deg, rgba(124, 58, 237, 0.08), rgba(34, 211, 238, 0.04));
}
.home-toolbar--compact .home-toolbar__inner {
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem 1rem;
}
.home-toolbar__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1rem;
}
.home-toolbar__label {
  margin: 0;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan-dim);
  font-weight: 600;
}
.home-toolbar__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.home-btn {
  font-size: 0.875rem;
}

.discover-rail {
  margin-top: 2.75rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}
.discover-rail__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.75rem 1rem;
  margin-bottom: 1.1rem;
}
.discover-rail__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.2vw, 1.65rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #fff;
}
.discover-rail__sub {
  margin: 0.35rem 0 0;
  color: var(--muted);
  max-width: 56ch;
  font-size: 0.98rem;
}
.discover-rail__more {
  font-weight: 600;
  white-space: nowrap;
  font-size: 0.9rem;
}
.discover-rail__controls {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.55rem;
  align-items: stretch;
}
.discover-rail__track {
  overflow-x: auto;
  scroll-snap-type: x proximity;
  scrollbar-width: thin;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.025);
}
.discover-rail__inner {
  display: flex;
  gap: 1rem;
  padding: 0.9rem 1.05rem;
}
.rail-nudge {
  align-self: center;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.rail-nudge:hover {
  border-color: rgba(167, 139, 250, 0.45);
  background: rgba(124, 58, 237, 0.12);
}

.card-album--rail {
  flex: 0 0 clamp(188px, 22vw, 248px);
  scroll-snap-align: start;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}
.card-album--rail:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.42);
}

.cine-banner {
  position: relative;
  margin-top: 2.85rem;
  min-height: clamp(320px, 42vw, 440px);
  max-height: 520px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.cine-banner--contained {
  width: 100%;
}
.cine-banner__bg {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(105deg, rgba(5, 7, 15, 0.2) 0%, rgba(5, 7, 15, 0.78) 55%, rgba(5, 7, 15, 0.92) 100%),
    linear-gradient(180deg, transparent 25%, rgba(5, 7, 15, 0.96)), var(--cine-bg);
  background-size: cover;
  background-position: center;
  transform: scale(1.03);
  animation: cine-drift 24s ease-in-out infinite alternate;
}
@keyframes cine-drift {
  from {
    transform: scale(1.03) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.06) translate3d(-1.2%, 0.8%, 0);
  }
}
.cine-banner__veil {
  position: absolute;
  inset: 0;
  background: radial-gradient(900px 420px at 15% 0%, rgba(124, 58, 237, 0.28), transparent 58%);
  pointer-events: none;
}
.cine-banner__inner {
  position: relative;
  z-index: 2;
  padding: 2.25rem clamp(1.25rem, 3vw, 2.5rem) 2.5rem;
  width: 100%;
  max-width: none;
}
.cine-banner__eyebrow {
  margin: 0 0 0.45rem;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan);
  font-weight: 600;
}
.cine-banner__title {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.2vw, 2.75rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: #fff;
  max-width: 22ch;
}
.cine-banner__lede {
  margin: 0 0 0.65rem;
  color: var(--muted);
  max-width: 54ch;
  font-size: 1.02rem;
}
.cine-banner__body {
  margin: 0 0 1.35rem;
  color: rgba(232, 236, 255, 0.9);
  max-width: 62ch;
  font-size: 0.98rem;
}
.cine-banner__row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.25rem;
  align-items: center;
}
.cine-banner__minis {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}
.cine-mini {
  display: block;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.4);
  transition: transform 0.25s ease;
}
.cine-mini:hover {
  transform: translateY(-3px);
}
.cine-mini img {
  width: 80px;
  height: 80px;
  object-fit: cover;
}

.home-section--mixed {
  margin-top: 2.85rem;
}
.card-grid--mixed {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.35rem;
}
@media (max-width: 960px) {
  .card-grid--mixed {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 520px) {
  .card-grid--mixed {
    grid-template-columns: 1fr;
  }
}

.card-grid--dense {
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
}

.mood-strip {
  margin-top: 2.85rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}
.mood-strip__controls {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.55rem;
  align-items: stretch;
}
.mood-strip__track {
  overflow-x: auto;
  scroll-snap-type: x proximity;
  scrollbar-width: thin;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
}
.mood-strip__inner {
  display: flex;
  gap: 0.85rem;
  padding: 0.85rem 1rem;
}
.mood-strip__card {
  flex: 0 0 min(300px, 78vw);
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1rem 1.1rem;
  border-radius: 14px;
  border: 1px solid rgba(148, 163, 255, 0.18);
  background: rgba(17, 24, 39, 0.55);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.22s ease, transform 0.22s ease, background 0.22s ease;
}
.mood-strip__card:hover {
  border-color: rgba(167, 139, 250, 0.4);
  transform: translateY(-3px);
  background: rgba(17, 24, 39, 0.75);
}
.mood-strip__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.02rem;
  letter-spacing: -0.02em;
  color: #fff;
}
.mood-strip__sub {
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.45;
}

.reco-banner {
  margin-top: 2.85rem;
  padding: 1.75rem clamp(1.1rem, 2.5vw, 2rem);
  border-radius: 22px;
  border: 1px solid rgba(124, 58, 237, 0.22);
  background: linear-gradient(125deg, rgba(124, 58, 237, 0.14), rgba(34, 211, 238, 0.06));
}
.reco-banner__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.reco-banner__copy {
  flex: 1 1 240px;
  max-width: 40ch;
}
.reco-banner__copy h2 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #fff;
}
.reco-banner__sub {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.98rem;
}
.reco-banner__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: flex-end;
  flex: 2 1 360px;
}
.reco-chip {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.45rem 0.65rem 0.45rem 0.45rem;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(5, 7, 15, 0.45);
  text-decoration: none;
  color: inherit;
  min-width: 0;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.reco-chip:hover {
  border-color: rgba(167, 139, 250, 0.45);
  transform: translateY(-2px);
}
.reco-chip__img {
  flex-shrink: 0;
  border-radius: 10px;
  overflow: hidden;
  line-height: 0;
}
.reco-chip__img img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  display: block;
}
.reco-chip__meta {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 0;
}
.reco-chip__t {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.88rem;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 140px;
}
.reco-chip__a {
  font-size: 0.78rem;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 140px;
}

.genre-orbit {
  margin-top: 2.85rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}
.genre-orbit__title {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.2vw, 1.65rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #fff;
}
.genre-orbit__sub {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.98rem;
}
.genre-orbit__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.pill {
  display: inline-flex;
  padding: 0.48rem 0.95rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  color: #dbe4ff;
  letter-spacing: -0.01em;
}
.pill:hover {
  border-color: rgba(34, 211, 238, 0.45);
  color: #fff;
}

.home-modal[hidden] {
  display: none;
}
.home-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 1rem;
}
.home-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 7, 15, 0.72);
  backdrop-filter: blur(6px);
}
.home-modal__card {
  position: relative;
  z-index: 1;
  width: min(420px, 100%);
  padding: 1.5rem 1.35rem;
  border-radius: 18px;
  border: 1px solid rgba(167, 139, 250, 0.35);
  background: linear-gradient(160deg, rgba(17, 24, 39, 0.98), rgba(5, 7, 15, 0.98));
  box-shadow: var(--shadow);
}
.home-modal__x {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 1.5rem;
  cursor: pointer;
}
.home-modal__eyebrow {
  margin: 0 0 0.35rem;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan);
}
.home-modal__title {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  color: #fff;
}
.home-modal__meta {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.95rem;
}
.home-modal__cta {
  display: inline-flex;
}

@media (prefers-reduced-motion: reduce) {
  .home-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .cine-banner__bg {
    animation: none;
  }
}
