@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&display=swap");

:root {
  --landing-bg: #070a12;
  --landing-panel: rgba(15, 20, 34, .82);
  --landing-panel-strong: rgba(19, 25, 42, .96);
  --landing-line: rgba(255, 255, 255, .1);
  --landing-text: #f5f7ff;
  --landing-muted: #aab2c8;
  --brand-a: #6d8bff;
  --brand-b: #c46bff;
  --landing-radius: 28px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body.landing-page {
  position: relative;
  min-height: 100vh;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  color: var(--landing-text);
  background:
    radial-gradient(900px 560px at 12% -8%, color-mix(in srgb, var(--brand-a) 22%, transparent), transparent 68%),
    radial-gradient(760px 520px at 92% 10%, color-mix(in srgb, var(--brand-b) 18%, transparent), transparent 70%),
    linear-gradient(180deg, #080b14 0%, #070a12 52%, #090c16 100%);
  font-family: "Outfit", system-ui, -apple-system, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.landing-page::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  content: "";
  pointer-events: none;
  opacity: .22;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.18'/%3E%3C/svg%3E");
}

body.landing-page::after {
  position: fixed;
  inset: auto -15vw -36vw;
  z-index: -1;
  height: 65vw;
  min-height: 420px;
  content: "";
  pointer-events: none;
  filter: blur(110px);
  background: radial-gradient(circle, color-mix(in srgb, var(--brand-a) 14%, transparent), transparent 66%);
}

.landing-page a { color: inherit; }

.landing-page .wrap {
  width: min(1180px, calc(100% - 40px));
  max-width: none;
  margin: 0 auto;
  padding: 0 0 48px;
}

.landing-topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  isolation: isolate;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 78px;
  margin: 0 0 38px;
  padding: 12px 0;
}

.landing-topbar::before {
  position: absolute;
  inset: 0 auto 0 50%;
  z-index: -1;
  width: 100vw;
  content: "";
  transform: translateX(-50%);
  border-bottom: 1px solid rgba(255, 255, 255, .075);
  background: linear-gradient(180deg, rgba(7, 10, 18, .94), rgba(7, 10, 18, .72));
  backdrop-filter: blur(22px) saturate(140%);
  -webkit-backdrop-filter: blur(22px) saturate(140%);
}

.landing-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  text-decoration: none;
}

.landing-brand-mark {
  position: relative;
  display: grid;
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 16px;
  background: linear-gradient(145deg, #175cff 0%, #7137e8 52%, #e725a7 100%);
  box-shadow: 0 12px 30px -13px rgba(109, 139, 255, .95), inset 0 1px 0 rgba(255, 255, 255, .2);
}

.landing-brand-mark::after {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 7px;
  height: 7px;
  content: "";
  border: 2px solid #11162a;
  border-radius: 999px;
  background: #ff4569;
  box-shadow: 0 0 0 4px rgba(255, 69, 105, .12);
}

.landing-eq {
  display: flex;
  align-items: center;
  gap: 3px;
  height: 22px;
}

.landing-eq i {
  width: 3px;
  border-radius: 999px;
  background: #fff;
  animation: landingEq 1.15s ease-in-out infinite;
}

.landing-eq i:nth-child(1) { height: 9px; }
.landing-eq i:nth-child(2) { height: 20px; animation-delay: -.32s; }
.landing-eq i:nth-child(3) { height: 13px; animation-delay: -.58s; }
.landing-eq i:nth-child(4) { height: 17px; animation-delay: -.16s; }

@keyframes landingEq {
  0%, 100% { transform: scaleY(.5); }
  50% { transform: scaleY(1); }
}

.landing-brand-copy { display: grid; gap: 2px; min-width: 0; }
.landing-brand-copy strong { font-size: 1.04rem; font-weight: 800; letter-spacing: -.025em; }
.landing-brand-copy small { color: var(--landing-muted); font-size: .73rem; letter-spacing: .02em; }

.landing-header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.landing-home-link,
.landing-header-app {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: .88rem;
  font-weight: 650;
  text-decoration: none;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.landing-home-link {
  padding: 0 16px;
  border: 1px solid var(--landing-line);
  color: var(--landing-muted);
  background: rgba(255, 255, 255, .035);
}

.landing-header-app {
  gap: 8px;
  padding: 0 18px;
  border: 1px solid color-mix(in srgb, var(--brand-a) 62%, white 8%);
  color: #fff;
  background: linear-gradient(135deg, color-mix(in srgb, var(--brand-a) 78%, #111827), color-mix(in srgb, var(--brand-b) 68%, #111827));
  box-shadow: 0 12px 26px -16px var(--brand-a);
}

.landing-home-link:hover,
.landing-header-app:hover { transform: translateY(-1px); }
.landing-home-link:hover { color: #fff; border-color: rgba(255, 255, 255, .22); }

.landing-page .card {
  position: relative;
  isolation: isolate;
  display: block;
  overflow: hidden;
  padding: clamp(24px, 4vw, 54px);
  text-align: left;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--landing-radius);
  background:
    linear-gradient(145deg, color-mix(in srgb, var(--brand-a) 7%, transparent), transparent 42%),
    linear-gradient(180deg, rgba(19, 25, 42, .94), rgba(12, 16, 28, .94));
  box-shadow: 0 38px 90px -48px rgba(0, 0, 0, .95), inset 0 1px 0 rgba(255, 255, 255, .055);
}

.landing-page .card::before {
  position: absolute;
  z-index: -1;
  top: -200px;
  right: -140px;
  width: 470px;
  height: 470px;
  content: "";
  border-radius: 50%;
  opacity: .25;
  filter: blur(22px);
  background: radial-gradient(circle, var(--brand-b), transparent 68%);
}

.landing-page .card::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  pointer-events: none;
  background-image: linear-gradient(rgba(255, 255, 255, .018) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .018) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: linear-gradient(110deg, #000, transparent 62%);
}

.landing-hero-top {
  display: grid;
  grid-template-columns: clamp(134px, 17vw, 190px) minmax(0, 1fr);
  align-items: center;
  gap: clamp(24px, 4vw, 48px);
}

.landing-art {
  position: relative;
  display: grid;
  width: 100%;
  aspect-ratio: 1;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 30%;
  color: #fff;
  background: linear-gradient(145deg, var(--brand-a), var(--brand-b));
  box-shadow: 0 28px 50px -26px color-mix(in srgb, var(--brand-a) 85%, #000), inset 0 1px 0 rgba(255, 255, 255, .2);
}

.landing-art::before {
  position: absolute;
  inset: 0;
  content: "";
  background: radial-gradient(circle at 25% 15%, rgba(255, 255, 255, .34), transparent 34%), linear-gradient(160deg, transparent 48%, rgba(0, 0, 0, .24));
}

.landing-art img {
  position: relative;
  z-index: 1;
  width: 78%;
  height: 78%;
  object-fit: contain;
  filter: drop-shadow(0 8px 13px rgba(0, 0, 0, .28));
}

.landing-art.is-light img {
  width: 74%;
  height: 74%;
  padding: 10%;
  border-radius: 24%;
  background: rgba(255, 255, 255, .94);
}

.landing-art-fallback {
  position: relative;
  z-index: 1;
  font-size: clamp(2.2rem, 6vw, 4.7rem);
  font-weight: 800;
  line-height: 1;
  text-shadow: 0 8px 22px rgba(0, 0, 0, .25);
}

.landing-intro { min-width: 0; }

.landing-page .tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  padding: 7px 11px;
  border: 1px solid color-mix(in srgb, var(--brand-a) 38%, transparent);
  border-radius: 999px;
  color: color-mix(in srgb, var(--brand-a) 68%, white);
  background: color-mix(in srgb, var(--brand-a) 10%, transparent);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .035em;
}

.landing-page .tag::before {
  width: 7px;
  height: 7px;
  content: "";
  border-radius: 50%;
  background: #47e49b;
  box-shadow: 0 0 0 5px rgba(71, 228, 155, .1);
}

.landing-page h1 {
  max-width: 790px;
  margin: 0;
  color: var(--landing-text);
  background: none;
  font-size: clamp(2.15rem, 5vw, 4.35rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -.055em;
  -webkit-text-fill-color: initial;
}

.landing-page p.desc {
  max-width: 780px;
  margin: 18px 0 0;
  color: var(--landing-muted);
  font-size: clamp(.98rem, 1.5vw, 1.12rem);
  line-height: 1.7;
}

.landing-player-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  margin-top: 34px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, .105);
  border-radius: 22px;
  background: rgba(5, 8, 16, .62);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .035), 0 22px 50px -38px #000;
}

.landing-page .now {
  grid-column: 1 / -1;
  min-height: 0;
  margin: 0 4px -4px;
  color: var(--landing-muted);
  font-size: .83rem;
}

.landing-page .now strong { color: #fff; }

.landing-page .mp {
  display: grid;
  min-width: 0;
  grid-template-columns: 64px minmax(0, 1fr) auto;
  align-items: center;
  justify-content: stretch;
  gap: 16px;
}

.landing-page .mp-btn {
  position: relative;
  display: grid;
  flex: 0 0 auto;
  width: 64px;
  height: 64px;
  padding: 0;
  place-items: center;
  cursor: pointer;
  border: 0;
  border-radius: 21px;
  color: #fff;
  background: linear-gradient(145deg, var(--brand-a), var(--brand-b));
  box-shadow: 0 15px 30px -16px var(--brand-a), inset 0 1px 0 rgba(255, 255, 255, .25);
  transition: transform .18s ease, filter .18s ease, opacity .18s ease;
}

.landing-page .mp-btn:hover { transform: translateY(-2px); filter: brightness(1.08); }
.landing-page .mp-btn:active { transform: scale(.96); }
.landing-page .mp-btn:disabled { cursor: wait; opacity: .5; filter: saturate(.55); }
.landing-page .mp-btn svg { width: 28px; height: 28px; }
.landing-page .mp-icon-pause { display: none; }
.landing-page .mp.mp-playing .mp-icon-play { display: none; }
.landing-page .mp.mp-playing .mp-icon-pause { display: block; }

.landing-player-copy { display: grid; min-width: 0; gap: 3px; }
.landing-page .mp-status {
  min-width: 0;
  overflow: hidden;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  text-align: left;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.landing-player-copy small {
  overflow: hidden;
  color: var(--landing-muted);
  font-size: .78rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.landing-live-indicator {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #aeb7cd;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.landing-live-indicator::before {
  width: 7px;
  height: 7px;
  content: "";
  border-radius: 50%;
  background: #ff4e72;
  box-shadow: 0 0 0 4px rgba(255, 78, 114, .12);
}

.mp.mp-playing .landing-live-indicator::before { animation: landingLive 1.45s ease-out infinite; }

@keyframes landingLive {
  0% { box-shadow: 0 0 0 0 rgba(255, 78, 114, .45); }
  100% { box-shadow: 0 0 0 8px rgba(255, 78, 114, 0); }
}

.landing-volume {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 0 8px;
  color: var(--landing-muted);
}

.landing-volume svg { width: 18px; height: 18px; flex: 0 0 auto; }
.landing-volume input {
  width: 92px;
  accent-color: var(--brand-a);
  cursor: pointer;
}

.landing-player-tools { display: flex; align-items: center; gap: 8px; }
.landing-tool-btn {
  display: inline-grid;
  width: 42px;
  height: 42px;
  padding: 0;
  place-items: center;
  cursor: pointer;
  border: 1px solid var(--landing-line);
  border-radius: 14px;
  color: var(--landing-muted);
  background: rgba(255, 255, 255, .035);
  transition: color .2s ease, border-color .2s ease, background .2s ease;
}
.landing-tool-btn:hover { color: #fff; border-color: rgba(255, 255, 255, .22); background: rgba(255, 255, 255, .07); }
.landing-tool-btn svg { width: 18px; height: 18px; }

.landing-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 18px;
}

.landing-assurance {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--landing-muted);
  font-size: .8rem;
}
.landing-assurance::before { content: "✓"; color: #54e6a0; font-weight: 800; }

.landing-page .app-link {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin: 0;
  padding: 0 21px;
  border: 1px solid color-mix(in srgb, var(--brand-a) 56%, white 9%);
  border-radius: 16px;
  color: #fff;
  background: linear-gradient(135deg, color-mix(in srgb, var(--brand-a) 76%, #121728), color-mix(in srgb, var(--brand-b) 70%, #121728));
  box-shadow: 0 16px 30px -22px var(--brand-a), inset 0 1px 0 rgba(255, 255, 255, .16);
  font-size: .9rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform .2s ease, filter .2s ease;
}
.landing-page .app-link:hover { transform: translateY(-2px); filter: brightness(1.08); text-decoration: none; }

.landing-page .mp-video {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  margin: 34px 0 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 24px;
  background: #020307;
  box-shadow: 0 28px 60px -38px #000;
}
.landing-page .mp-video video { display: block; width: 100%; height: 100%; object-fit: contain; background: #000; }
.landing-page .mp-video::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  pointer-events: none;
  background: radial-gradient(circle at center, transparent 35%, rgba(0, 0, 0, .28));
}
.landing-page .mp-video .mp-btn {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  width: 72px;
  height: 72px;
  transform: translate(-50%, -50%);
  border-radius: 24px;
}
.landing-page .mp-video .mp-btn:hover { transform: translate(-50%, calc(-50% - 2px)); }
.landing-page .mp-video.mp-playing .mp-btn { opacity: 0; }
.landing-page .mp-video:hover .mp-btn,
.landing-page .mp-video:focus-within .mp-btn { opacity: 1; }
.landing-page .mp-video .mp-status {
  position: absolute;
  z-index: 3;
  right: auto;
  bottom: 14px;
  left: 14px;
  min-width: 0;
  padding: 7px 11px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 999px;
  color: #fff;
  background: rgba(0, 0, 0, .65);
  backdrop-filter: blur(10px);
  font-size: .76rem;
  font-weight: 700;
}

.landing-tv .landing-actions { justify-content: flex-end; }

.landing-below {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, .65fr);
  gap: 22px;
  margin-top: 24px;
}

.landing-section,
.landing-app-card {
  border: 1px solid var(--landing-line);
  border-radius: 24px;
  background: rgba(13, 18, 31, .72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .035);
  backdrop-filter: blur(16px);
}

.landing-section { padding: 24px; }
.landing-section-head { display: flex; align-items: end; justify-content: space-between; gap: 18px; margin-bottom: 17px; }
.landing-section-head h2 { margin: 0; font-size: 1.22rem; font-weight: 750; letter-spacing: -.025em; }
.landing-section-head p { margin: 3px 0 0; color: var(--landing-muted); font-size: .83rem; }
.landing-section-head a { color: color-mix(in srgb, var(--brand-a) 65%, white); font-size: .8rem; font-weight: 650; text-decoration: none; }

.landing-related-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 11px;
}

.landing-related-card {
  display: grid;
  min-width: 0;
  gap: 9px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, .075);
  border-radius: 18px;
  text-decoration: none;
  background: rgba(255, 255, 255, .025);
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.landing-related-card:hover { transform: translateY(-3px); border-color: color-mix(in srgb, var(--related-a) 45%, white 4%); background: rgba(255, 255, 255, .055); }

.landing-related-art {
  position: relative;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  overflow: hidden;
  border-radius: 14px;
  background: linear-gradient(145deg, var(--related-a), var(--related-b));
  color: #fff;
  font-size: 1.25rem;
  font-weight: 800;
}
.landing-related-art img { width: 76%; height: 76%; object-fit: contain; filter: drop-shadow(0 4px 6px rgba(0, 0, 0, .2)); }
.landing-related-card strong { overflow: hidden; font-size: .88rem; font-weight: 650; text-overflow: ellipsis; white-space: nowrap; }
.landing-related-card small { overflow: hidden; color: var(--landing-muted); font-size: .7rem; text-overflow: ellipsis; white-space: nowrap; }

.landing-app-card {
  position: relative;
  display: flex;
  min-height: 100%;
  flex-direction: column;
  justify-content: space-between;
  gap: 26px;
  overflow: hidden;
  padding: 26px;
  background:
    radial-gradient(circle at 100% 0, color-mix(in srgb, var(--brand-b) 22%, transparent), transparent 55%),
    rgba(13, 18, 31, .86);
}

.landing-app-card::after {
  position: absolute;
  right: -40px;
  bottom: -54px;
  width: 170px;
  height: 170px;
  content: "";
  border: 24px solid color-mix(in srgb, var(--brand-a) 9%, transparent);
  border-radius: 50%;
}

.landing-app-card > * { position: relative; z-index: 1; }
.landing-app-card .landing-brand-mark { width: 42px; height: 42px; border-radius: 14px; }
.landing-app-card h2 { max-width: 280px; margin: 18px 0 8px; font-size: 1.55rem; line-height: 1.08; letter-spacing: -.04em; }
.landing-app-card p { max-width: 310px; margin: 0; color: var(--landing-muted); font-size: .86rem; line-height: 1.55; }
.landing-app-cta {
  display: inline-flex;
  width: fit-content;
  min-height: 48px;
  align-items: center;
  gap: 9px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 15px;
  color: #fff;
  background: rgba(255, 255, 255, .1);
  font-size: .86rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease;
}
.landing-app-cta:hover { transform: translateY(-2px); background: rgba(255, 255, 255, .16); }

.landing-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 28px;
  padding: 4px 2px;
  color: var(--landing-muted);
  font-size: .78rem;
}
.landing-footer-links { display: flex; gap: 18px; }
.landing-footer a { color: inherit; text-decoration: none; }
.landing-footer a:hover { color: #fff; }
.landing-page .back { display: none; }

.landing-toast {
  position: fixed;
  z-index: 100;
  right: 20px;
  bottom: 20px;
  padding: 11px 15px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 13px;
  color: #fff;
  background: rgba(15, 20, 34, .94);
  box-shadow: 0 16px 40px -20px #000;
  font-size: .82rem;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .2s ease, transform .2s ease;
  pointer-events: none;
}
.landing-toast.show { opacity: 1; transform: translateY(0); }

@media (max-width: 900px) {
  .landing-below { grid-template-columns: 1fr; }
  .landing-app-card { min-height: 260px; }
  .landing-related-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 680px) {
  .landing-page .wrap { width: min(100% - 24px, 1180px); padding-bottom: 28px; }
  .landing-topbar {
    min-height: 68px;
    margin-bottom: 18px;
    padding-top: 9px;
    padding-bottom: 9px;
  }
  .landing-brand-mark { width: 42px; height: 42px; border-radius: 14px; }
  .landing-brand-copy small,
  .landing-home-link { display: none; }
  .landing-header-app { min-height: 40px; padding: 0 14px; font-size: .8rem; }
  .landing-page .card { padding: 22px; border-radius: 24px; }
  .landing-hero-top { grid-template-columns: 84px minmax(0, 1fr); gap: 17px; align-items: start; }
  .landing-art { border-radius: 25px; }
  .landing-page .tag { margin-bottom: 9px; padding: 5px 9px; font-size: .68rem; }
  .landing-page h1 { font-size: clamp(1.72rem, 8vw, 2.5rem); line-height: 1.03; }
  .landing-page p.desc { grid-column: 1 / -1; margin-top: 16px; font-size: .93rem; line-height: 1.6; }
  .landing-intro { display: contents; }
  .landing-intro .tag,
  .landing-intro h1 { grid-column: 2; }
  .landing-intro .tag { align-self: end; justify-self: start; }
  .landing-intro h1 { align-self: start; }
  .landing-player-shell { grid-template-columns: 1fr; margin-top: 24px; padding: 12px; border-radius: 19px; }
  .landing-page .mp { grid-template-columns: 58px minmax(0, 1fr); gap: 13px; }
  .landing-page .mp-btn { width: 58px; height: 58px; border-radius: 19px; }
  .landing-volume { display: none; }
  .landing-player-tools { justify-content: flex-end; }
  .landing-actions { align-items: stretch; flex-direction: column-reverse; }
  .landing-page .app-link { width: 100%; }
  .landing-assurance { justify-content: center; }
  .landing-page .mp-video { margin-top: 24px; border-radius: 18px; }
  .landing-page .mp-video .mp-btn { width: 62px; height: 62px; border-radius: 20px; }
  .landing-tv .landing-actions { align-items: stretch; }
  .landing-section,
  .landing-app-card { padding: 20px; border-radius: 21px; }
  .landing-section-head { align-items: start; }
  .landing-section-head > a { display: none; }
  .landing-footer { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 390px) {
  .landing-page .wrap { width: min(100% - 16px, 1180px); }
  .landing-page .card { padding: 18px; }
  .landing-hero-top { grid-template-columns: 72px minmax(0, 1fr); gap: 14px; }
  .landing-related-grid { grid-template-columns: 1fr; }
  .landing-related-card { grid-template-columns: 44px minmax(0, 1fr); align-items: center; }
  .landing-related-card small { grid-column: 2; margin-top: -24px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}

@supports not (background: color-mix(in srgb, white, black)) {
  body.landing-page { background: radial-gradient(900px 560px at 12% -8%, rgba(109, 139, 255, .17), transparent 68%), #070a12; }
  .landing-page .tag { color: #aebcff; border-color: rgba(109, 139, 255, .38); background: rgba(109, 139, 255, .1); }
  .landing-header-app,
  .landing-page .app-link { background: linear-gradient(135deg, var(--brand-a), var(--brand-b)); }
}

/* Enlaces internos relacionados en las paginas de emisora/momento/tv/podcast.
   Evita paginas huerfanas y da rutas de rastreo a Google. */
.related { margin-top: 40px; }
.related h2 {
  font-size: 1.05rem; font-weight: 600; margin: 0 0 14px;
  color: var(--txt, var(--landing-text, #eef1f8));
}
.related ul { list-style: none; display: grid; gap: 8px; margin: 0; padding: 0; }
.related a.related-item {
  display: flex; align-items: baseline; justify-content: space-between; gap: 12px;
  padding: 11px 14px; border-radius: 12px; text-decoration: none;
  background: var(--card, var(--landing-panel, rgba(255, 255, 255, .045)));
  border: 1px solid var(--card-brd, var(--landing-line, rgba(255, 255, 255, .09)));
  color: var(--txt, var(--landing-text, #eef1f8));
  font-size: .93rem; text-align: left;
  transition: border-color .15s, background .15s;
}
.related a.related-item:hover {
  border-color: var(--accent, var(--brand-a, #6d8bff));
  background: rgba(255, 255, 255, .075);
}
.related a.related-item span {
  color: var(--txt-dim, var(--landing-muted, #9aa3b8));
  font-size: .82rem; text-align: right; flex: none;
}
.related-all {
  display: inline-block; margin-top: 14px; text-decoration: none; font-size: .88rem;
  color: var(--accent, var(--brand-a, #6d8bff));
}
.related-all:hover { text-decoration: underline; }

/* Rejilla de emisoras reales y pinchables dentro de una pagina de "momento",
   debajo del reproductor grande. Mismo lenguaje visual que landing-related-*. */
.moment-stations { margin-top: 24px; }
.moment-stations-head { margin-bottom: 14px; }
.moment-stations-head h2 { margin: 0; font-size: 1.15rem; font-weight: 750; letter-spacing: -.02em; color: var(--landing-text, #eef1f8); }
.moment-stations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 11px;
}
.moment-station {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 11px 14px;
  border: 1px solid var(--landing-line, rgba(255, 255, 255, .09));
  border-radius: 16px;
  background: rgba(255, 255, 255, .03);
  cursor: pointer;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.moment-station:hover { transform: translateY(-2px); border-color: rgba(255, 255, 255, .22); background: rgba(255, 255, 255, .06); }
.moment-station.mp-playing {
  border-color: rgba(82, 229, 174, .6);
  background: linear-gradient(145deg, rgba(44, 220, 158, .12), rgba(122, 86, 234, .08));
}
.moment-station-art {
  position: relative;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  overflow: hidden;
  border-radius: 13px;
  background: linear-gradient(145deg, var(--s-a), var(--s-b));
  color: #fff;
  font-size: 1.02rem;
  font-weight: 800;
}
.moment-station-art img { width: 100%; height: 100%; object-fit: contain; padding: 15%; background: #fff; }
.moment-station-copy { min-width: 0; }
.moment-station-copy strong { display: block; overflow: hidden; color: var(--landing-text, #eef1f8); font-size: .92rem; font-weight: 650; text-overflow: ellipsis; white-space: nowrap; }
.moment-station-copy small { display: block; overflow: hidden; margin-top: 2px; color: var(--landing-muted, #9aa3b8); font-size: .74rem; text-overflow: ellipsis; white-space: nowrap; }
.moment-station-btn {
  display: grid;
  flex: none;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-a, #6d8bff), var(--brand-b, #c46bff));
  color: #fff;
  cursor: pointer;
}
.moment-station-btn svg { width: 15px; height: 15px; }
.moment-station .mp-icon-pause { display: none; }
.moment-station.mp-playing .mp-icon-play { display: none; }
.moment-station.mp-playing .mp-icon-pause { display: block; }
@media (max-width: 680px) {
  .moment-stations-grid { grid-template-columns: 1fr; }
}
