/* ==========================================================
   B'Lystic Beats | Neon Cross (teal/royal-blue edition)
   ========================================================== */

/* ---------- Fonts (local only) ---------- */
@font-face {
  font-family: "Anton";
  src: url("/fonts/anton.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Unbounded";
  src: url("/fonts/unbounded-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Barlow";
  src: url("/fonts/barlow-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Barlow";
  src: url("/fonts/barlow-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

/* ---------- Tokens ---------- */
:root {
  --ink: #04181c;            /* teal-black ground */
  --ink-2: #072228;
  --ink-3: #0a2e36;
  --cyan: #0fa091;           /* neon cyan primary accent */
  --cyan-bright: #2cc4b4;    /* brightened cyan for small text on dark */
  --blue: #2a4bff;           /* royal blue */
  --blue-sky: #3e6de0;       /* sky-blue tint for brighter moments */
  --cream: #f2ead9;          /* HE GOT US world */
  --cream-ink: #171310;
  --text: #d8e6e6;
  --text-dim: #93acac;
  --line: rgba(15, 160, 145, 0.18);
  --glow-cyan: 0 0 16px rgba(15, 160, 145, 0.5), 0 0 50px rgba(15, 160, 145, 0.2);
  --glow-blue: 0 0 16px rgba(62, 109, 224, 0.5), 0 0 50px rgba(42, 75, 255, 0.25);
  --font-display: "Anton", "Arial Narrow", sans-serif;
  --font-alt: "Unbounded", sans-serif;
  --font-body: "Barlow", "Helvetica Neue", Arial, sans-serif;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background:
    radial-gradient(120% 70% at 50% 0%, #0a2e36 0%, #04181c 55%, #020d10 100%);
  background-color: var(--ink);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

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

a { color: var(--cyan-bright); text-decoration: none; }

:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
  border-radius: 4px;
}

.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap;
}

.skip-link {
  position: absolute; top: -48px; left: 16px; z-index: 100;
  background: var(--cyan); color: var(--ink);
  padding: 0.6rem 1rem; border-radius: 6px; font-weight: 600;
  transition: top 0.2s ease;
}
.skip-link:focus { top: 12px; }

/* ---------- Fog atmosphere ---------- */
.fog {
  position: fixed; inset: 0; z-index: 0;
  pointer-events: none; overflow: hidden;
}
.fog-layer {
  position: absolute; left: -30%; width: 160%; height: 55vh;
  bottom: -12vh;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.5;
  will-change: transform;
}
.fog-a {
  background: radial-gradient(ellipse at center, rgba(53, 224, 208, 0.10), transparent 65%);
  animation: fog-drift 46s linear infinite alternate;
}
.fog-b {
  background: radial-gradient(ellipse at center, rgba(42, 75, 255, 0.10), transparent 65%);
  height: 45vh; bottom: -6vh;
  animation: fog-drift 62s linear infinite alternate-reverse;
}
.fog-c {
  background: radial-gradient(ellipse at center, rgba(216, 230, 230, 0.05), transparent 60%);
  height: 35vh; bottom: 4vh;
  animation: fog-drift 38s linear infinite alternate;
}
@keyframes fog-drift {
  from { transform: translateX(-6%) translateY(0); }
  to   { transform: translateX(6%) translateY(-3%); }
}

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(4, 24, 28, 0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav {
  max-width: 1180px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding: 0.85rem 1.25rem;
}
.brand {
  display: inline-flex; align-items: center; gap: 0.6rem;
  color: #fff;
}
.brand-cross { color: var(--cyan); filter: drop-shadow(0 0 6px rgba(53,224,208,0.7)); }
.brand-mark {
  width: 26px; height: 26px; object-fit: contain;
  filter: drop-shadow(0 0 6px rgba(53,224,208,0.45));
}
.brand-name {
  font-family: var(--font-alt);
  font-size: 0.95rem; letter-spacing: 0.06em; white-space: nowrap;
}
.brand-name em { font-style: normal; color: var(--cyan); }
.nav-links {
  display: flex; align-items: center; gap: 1.4rem; list-style: none;
}
.nav-links a {
  color: var(--text); font-weight: 600; font-size: 0.95rem;
  letter-spacing: 0.02em;
}
.nav-links a:hover { color: var(--cyan-bright); }
.nav-cta {
  border: 1px solid var(--cyan);
  color: var(--cyan-bright) !important;
  padding: 0.45rem 0.95rem; border-radius: 999px;
  box-shadow: 0 0 12px rgba(53, 224, 208, 0.25);
}
.nav-cta:hover { background: rgba(53, 224, 208, 0.12); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-body); font-weight: 600; font-size: 1rem;
  padding: 0.8rem 1.7rem; border-radius: 999px;
  border: 1px solid transparent; cursor: pointer;
  letter-spacing: 0.02em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.btn-primary {
  background: linear-gradient(120deg, var(--cyan) 0%, #2fd8e8 100%);
  color: #032025;
  box-shadow: var(--glow-cyan);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 0 26px rgba(53,224,208,0.7), 0 0 80px rgba(53,224,208,0.3); }
.btn-ghost {
  background: transparent; color: var(--cyan-bright);
  border-color: rgba(53, 224, 208, 0.5);
}
.btn-ghost:hover {
  background: rgba(53, 224, 208, 0.1);
  box-shadow: 0 0 16px rgba(53, 224, 208, 0.3);
  transform: translateY(-2px);
}

/* ---------- Hero ---------- */
.hero {
  position: relative; z-index: 1;
  padding: clamp(3.5rem, 9vh, 7rem) 1.25rem 8rem;
  overflow: hidden;
}
.hero-inner {
  max-width: 1180px; margin: 0 auto;
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem; align-items: center;
}
.hero-kicker {
  font-family: var(--font-alt); font-size: 0.8rem;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--blue-sky);
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.9rem, 7.2vw, 5.4rem);
  line-height: 0.98; letter-spacing: 0.01em;
  color: #eefafa; margin: 1.1rem 0 1.3rem;
  text-transform: uppercase;
}
.hero-title span { display: block; }
.accent {
  color: var(--cyan);
  text-shadow: var(--glow-cyan);
}
.accent-blue {
  color: var(--blue-sky);
  text-shadow: var(--glow-blue);
}
.hero-sub { max-width: 34rem; color: var(--text-dim); font-size: 1.1rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2rem; }

/* Neon flicker on load */
.flicker { animation: flicker-in 1.7s ease-out both; }
.flicker-2 { animation-delay: 0.15s; }
.flicker-3 { animation-delay: 0.3s; }
.flicker-4 { animation-delay: 0.45s; }
@keyframes flicker-in {
  0% { opacity: 0; }
  8% { opacity: 1; }
  12% { opacity: 0.2; }
  20% { opacity: 1; }
  26% { opacity: 0.35; }
  34% { opacity: 1; }
  42% { opacity: 0.7; }
  50%, 100% { opacity: 1; }
}

/* 3D cover cards */
.hero-covers {
  position: relative;
  height: clamp(320px, 44vw, 520px);
  perspective: 1100px;
}
.cover-card {
  position: absolute;
  width: clamp(230px, 30vw, 380px);
  border-radius: 14px; overflow: hidden;
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(53, 224, 208, 0.15),
    0 0 45px rgba(53, 224, 208, 0.14);
  transform-style: preserve-3d;
  will-change: transform;
  animation: rise-from-fog 1.4s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.cover-back {
  right: 4%; top: 0;
  animation-delay: 0.25s;
  z-index: 1;
}
.cover-front {
  left: 0; bottom: 0;
  animation-delay: 0.05s;
  z-index: 2;
  box-shadow:
    0 34px 70px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(111, 168, 255, 0.18),
    0 0 55px rgba(42, 75, 255, 0.18);
}
@keyframes rise-from-fog {
  from { opacity: 0; transform: translateY(70px); }
  to   { opacity: 1; transform: translateY(0); }
}
/* gentle float after rise (applied by JS once loaded) */
.cover-card.floating { animation: cover-float 7s ease-in-out infinite alternate; }
.cover-back.floating { animation-duration: 8.5s; }
@keyframes cover-float {
  from { transform: translateY(0) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)); }
  to   { transform: translateY(-14px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)); }
}

.hero-ground {
  position: absolute; left: 0; right: 0; bottom: 0; height: 10rem;
  background: linear-gradient(to top, rgba(53, 224, 208, 0.08), transparent 70%),
              linear-gradient(to top, #04181c 12%, transparent);
  pointer-events: none;
}

/* ---------- Sections shared ---------- */
section { position: relative; z-index: 1; }
.section-head {
  max-width: 1180px; margin: 0 auto 3rem;
  padding: 0 1.25rem; text-align: center;
}
.eyebrow {
  font-family: var(--font-alt); font-size: 0.75rem;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--blue-sky); margin-bottom: 0.8rem;
}
.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4.6vw, 3.2rem);
  color: #eefafa; letter-spacing: 0.015em; line-height: 1.05;
  text-transform: uppercase;
}
.section-sub { color: var(--text-dim); margin-top: 1rem; }

/* ---------- Releases ---------- */
.releases { padding: 5.5rem 1.25rem; }
.release {
  max-width: 1080px; margin: 0 auto 4.5rem;
  display: grid; grid-template-columns: minmax(0, 420px) 1fr;
  gap: 3rem; align-items: center;
}
.release:last-child { margin-bottom: 0; }
.release-flip { direction: rtl; }
.release-flip > * { direction: ltr; }
.release-art img {
  border-radius: 12px;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.5), 0 0 0 1px var(--line), 0 0 40px rgba(53, 224, 208, 0.12);
}
.release-tag {
  font-family: var(--font-alt); font-size: 0.72rem;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--blue-sky); margin-bottom: 0.7rem;
}
.release-info h3 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.1rem);
  color: var(--cyan); text-shadow: 0 0 24px rgba(53, 224, 208, 0.35);
  letter-spacing: 0.02em; margin-bottom: 0.9rem;
}
.release-info p { color: var(--text-dim); max-width: 32rem; }

.stream-pills { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: 1.5rem; }
.pill {
  display: inline-flex; align-items: center;
  padding: 0.5rem 1.1rem; border-radius: 999px;
  border: 1px solid rgba(53, 224, 208, 0.4);
  color: var(--cyan-bright); font-weight: 600; font-size: 0.9rem;
  transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.pill:hover {
  background: rgba(53, 224, 208, 0.12);
  box-shadow: 0 0 14px rgba(53, 224, 208, 0.3);
  transform: translateY(-1px);
}

/* ---------- HE GOT US cream world ---------- */
.hegotus {
  background: linear-gradient(180deg, #ece2cd 0%, var(--cream) 30%, #efe6d2 100%);
  color: var(--cream-ink);
  padding: 5.5rem 1.25rem;
  border-top: 1px solid rgba(23, 19, 16, 0.08);
  border-bottom: 1px solid rgba(23, 19, 16, 0.08);
}
.hegotus-inner {
  max-width: 1080px; margin: 0 auto;
  display: grid; grid-template-columns: minmax(0, 420px) 1fr;
  gap: 3rem; align-items: center;
}
.hegotus-art img {
  border-radius: 12px;
  box-shadow: 0 24px 55px rgba(23, 19, 16, 0.28), 0 0 0 1px rgba(23, 19, 16, 0.1);
}
.hegotus-tag {
  font-family: var(--font-alt); font-size: 0.72rem;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: #7a5f37; margin-bottom: 0.7rem;
}
.hegotus-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4rem);
  color: var(--cream-ink); letter-spacing: 0.02em;
  margin-bottom: 1rem;
}
.hegotus-copy p { color: #4c4238; max-width: 32rem; font-size: 1.1rem; }
.stream-pills-dark .pill {
  border-color: rgba(23, 19, 16, 0.45); color: var(--cream-ink);
}
.stream-pills-dark .pill:hover {
  background: rgba(23, 19, 16, 0.08);
  box-shadow: 0 4px 14px rgba(23, 19, 16, 0.18);
}

/* ---------- YouTube ---------- */
.youtube { padding: 5.5rem 1.25rem; }
.yt-card {
  max-width: 780px; margin: 0 auto;
  display: flex; align-items: center; gap: 1.5rem;
  padding: 1.6rem 2rem;
  background: linear-gradient(140deg, var(--ink-2), var(--ink-3));
  border: 1px solid rgba(111, 168, 255, 0.25);
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.4);
  transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}
.yt-card:hover {
  transform: translateY(-3px);
  border-color: rgba(111, 168, 255, 0.55);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.5), 0 0 40px rgba(42, 75, 255, 0.25);
}
.yt-play {
  flex: none; display: grid; place-items: center;
  width: 68px; height: 68px; border-radius: 50%;
  color: var(--blue-sky);
  border: 2px solid rgba(111, 168, 255, 0.6);
  box-shadow: 0 0 22px rgba(42, 75, 255, 0.35), inset 0 0 14px rgba(111, 168, 255, 0.15);
}
.yt-text { flex: 1; display: grid; gap: 0.2rem; min-width: 0; }
.yt-text strong { color: #eefafa; font-size: 1.15rem; font-family: var(--font-alt); font-weight: 600; }
.yt-text span { color: var(--text-dim); }
.yt-btn { flex: none; }

.yt-videos {
  max-width: 780px; margin: 0 auto 1.2rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem;
}
.yt-video {
  display: grid; gap: 0.9rem;
  padding: 1rem 1rem 1.2rem;
  background: linear-gradient(140deg, var(--ink-2), var(--ink-3));
  border: 1px solid rgba(111, 168, 255, 0.25);
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.4);
  transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}
.yt-video:hover {
  transform: translateY(-3px);
  border-color: rgba(111, 168, 255, 0.55);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.5), 0 0 40px rgba(42, 75, 255, 0.25);
}
.yt-thumb {
  position: relative; display: block; overflow: hidden;
  border-radius: 10px; aspect-ratio: 16 / 9;
}
.yt-thumb img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  filter: saturate(0.9) contrast(1.05);
}
.yt-play-sm {
  position: absolute; inset: 0; margin: auto;
  width: 52px; height: 52px;
  background: rgba(4, 24, 28, 0.72);
}
.yt-video-text { display: grid; gap: 0.15rem; padding: 0 0.25rem; }
.yt-video-text strong { color: #eefafa; font-size: 1.05rem; font-family: var(--font-alt); font-weight: 600; }
.yt-video-text span { color: var(--text-dim); font-size: 0.9rem; }

/* ---------- Latest drops (auto-populated from Apple Music) ---------- */
.latest-strip {
  max-width: 1180px; margin: 0 auto 2.6rem;
  display: grid; gap: 1.2rem;
}
.latest-strip .eyebrow { text-align: center; }
.latest-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 260px));
  justify-content: center; gap: 1.2rem;
}
.latest-card {
  display: grid; gap: 0.8rem;
  padding: 1rem 1rem 1.2rem;
  background: linear-gradient(140deg, var(--ink-2), var(--ink-3));
  border: 1px solid rgba(53, 224, 208, 0.25);
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.4);
  transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}
.latest-card:hover {
  transform: translateY(-3px);
  border-color: rgba(53, 224, 208, 0.55);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.5), 0 0 40px rgba(53, 224, 208, 0.2);
}
.latest-card img {
  width: 100%; height: auto; border-radius: 10px; display: block;
}
.latest-card strong { color: #eefafa; font-family: var(--font-alt); font-weight: 600; }
.latest-card span { color: var(--text-dim); font-size: 0.85rem; }

/* ---------- Store ---------- */
.store { padding: 5.5rem 1.25rem 6rem; }
.store-grid {
  max-width: 1080px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
.kit-card {
  display: flex; flex-direction: column; align-items: flex-start;
  padding: 2.2rem 1.9rem;
  background: linear-gradient(160deg, var(--ink-2), #061c22);
  border: 1px solid var(--line);
  border-radius: 16px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.kit-card:hover {
  transform: translateY(-6px);
  border-color: rgba(53, 224, 208, 0.5);
  box-shadow:
    0 24px 50px rgba(0, 0, 0, 0.5),
    0 0 34px rgba(53, 224, 208, 0.28),
    inset 0 0 30px rgba(53, 224, 208, 0.05);
}
.kit-card:nth-child(2):hover {
  border-color: rgba(111, 168, 255, 0.55);
  box-shadow:
    0 24px 50px rgba(0, 0, 0, 0.5),
    0 0 34px rgba(42, 75, 255, 0.32),
    inset 0 0 30px rgba(111, 168, 255, 0.05);
}
.kit-glyph {
  font-family: var(--font-display); font-size: 1.15rem;
  color: var(--cyan);
  border: 1px solid rgba(53, 224, 208, 0.45);
  border-radius: 10px; padding: 0.45rem 0.7rem;
  text-shadow: 0 0 12px rgba(53, 224, 208, 0.6);
  margin-bottom: 1.4rem;
}
.kit-card:nth-child(2) .kit-glyph {
  color: var(--blue-sky); border-color: rgba(111, 168, 255, 0.5);
  text-shadow: 0 0 12px rgba(111, 168, 255, 0.6);
}
.kit-card h3 {
  font-family: var(--font-display);
  font-size: 1.9rem; letter-spacing: 0.04em; color: #eefafa;
}
.kit-type {
  font-family: var(--font-alt); font-size: 0.68rem;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--blue-sky); margin: 0.5rem 0 1rem;
}
.kit-desc { color: var(--text-dim); font-size: 0.98rem; flex: 1; }
.kit-price {
  font-weight: 600; color: var(--cyan-bright);
  margin: 1.3rem 0 1rem; letter-spacing: 0.04em;
}
.kit-btn { width: 100%; }

/* ---------- Signup ---------- */
.signup {
  padding: 5.5rem 1.25rem 6.5rem;
  background:
    radial-gradient(70% 100% at 50% 100%, rgba(42, 75, 255, 0.12), transparent 70%),
    radial-gradient(60% 90% at 50% 100%, rgba(53, 224, 208, 0.08), transparent 65%);
}
.signup-inner { max-width: 640px; margin: 0 auto; text-align: center; }
.signup-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4.4vw, 2.8rem);
  color: #eefafa; text-transform: uppercase; line-height: 1.08;
}
.signup-inner > p { color: var(--text-dim); margin-top: 0.9rem; }
.signup-form {
  display: flex; gap: 0.8rem; margin-top: 2rem;
}
.signup-form input {
  flex: 1; min-width: 0;
  padding: 0.85rem 1.2rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(53, 224, 208, 0.35);
  border-radius: 999px;
  color: #eefafa; font-family: var(--font-body); font-size: 1rem;
}
.signup-form input::placeholder { color: var(--text-dim); }
.signup-form input:focus-visible { outline-offset: 0; border-color: var(--cyan); }
.signup-note { margin-top: 1rem; color: var(--cyan-bright); font-size: 0.95rem; min-height: 1.4em; }

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 3rem 1.25rem 3.5rem;
  background: #030f12;
  position: relative; z-index: 1;
}
.footer-inner {
  max-width: 1180px; margin: 0 auto;
  display: grid; gap: 1.2rem; text-align: center; justify-items: center;
}
.footer-brand { display: flex; align-items: center; gap: 0.7rem; color: var(--text); }
.footer-mark { width: 190px; height: auto; opacity: 0.92; }
.footer-links {
  list-style: none; display: flex; flex-wrap: wrap; gap: 1.6rem; justify-content: center;
}
.footer-links a { color: var(--cyan-bright); font-weight: 600; font-size: 0.95rem; }
.footer-links a:hover { text-shadow: 0 0 10px rgba(53, 224, 208, 0.6); }
.footer-legal { color: var(--text-dim); font-size: 0.85rem; }

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.is-visible { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; gap: 4rem; }
  .hero-covers { margin: 0 auto; width: 100%; max-width: 560px; }
  .release, .release-flip, .hegotus-inner { grid-template-columns: 1fr; gap: 2rem; }
  .release-art, .hegotus-art { max-width: 420px; margin: 0 auto; }
  .store-grid { grid-template-columns: 1fr; max-width: 460px; }
  .release-info, .hegotus-copy { text-align: center; }
  .release-info p, .hegotus-copy p { margin-inline: auto; }
  .stream-pills { justify-content: center; }
}

@media (max-width: 720px) {
  .nav-links { gap: 0.9rem; }
  .nav-links li:not(:last-child) { display: none; }
  .yt-card { flex-direction: column; text-align: center; padding: 2rem 1.5rem; }
  .yt-text { justify-items: center; }
  .yt-videos { grid-template-columns: 1fr; max-width: 460px; }
  .footer-brand { flex-direction: column; }
  .signup-form { flex-direction: column; }
  .signup-form .btn { width: 100%; }
}

@media (max-width: 420px) {
  body { font-size: 1rem; }
  .hero { padding-bottom: 5rem; }
  .hero-covers { height: 88vw; }
  .cover-card { width: 62vw; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .fog-layer,
  .flicker,
  .cover-card,
  .cover-card.floating { animation: none !important; }
  .flicker, .cover-card { opacity: 1; transform: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn, .pill, .kit-card, .yt-card { transition: none; }
  .btn:hover, .pill:hover, .kit-card:hover, .yt-card:hover { transform: none; }
}

/* ---------- Lightbox ---------- */
.lb-overlay {
  position: fixed; inset: 0; z-index: 200;
  display: flex; align-items: center; justify-content: center;
  background: rgba(2, 12, 15, 0.94);
  opacity: 0; pointer-events: none;
  transition: opacity 0.22s ease;
}
.lb-overlay.is-open { opacity: 1; pointer-events: auto; }
.lb-img {
  max-width: min(92vw, 1200px); max-height: 88vh;
  border-radius: 12px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7), 0 0 60px rgba(53, 224, 208, 0.12);
}
.lb-btn {
  position: absolute; z-index: 201;
  display: grid; place-items: center;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.08); color: #eefafa;
  border: 1px solid rgba(53, 224, 208, 0.35);
  font-size: 1.4rem; line-height: 1; cursor: pointer;
}
.lb-btn:hover { background: rgba(53, 224, 208, 0.18); }
.lb-close { top: 1rem; right: 1rem; }
.lb-prev { left: 1rem; top: 50%; transform: translateY(-50%); }
.lb-next { right: 1rem; top: 50%; transform: translateY(-50%); }
.lb-zoomable { cursor: zoom-in; }
@media (prefers-reduced-motion: reduce) { .lb-overlay { transition: none; } }
