:root{
  color-scheme:dark;
  --black:#050506;
  --panel:#101115;
  --line:rgba(255,255,255,.17);
  --text:#f7f7f3;
  --soft:rgba(247,247,243,.7);
  --gold:#ffd86b;
  --cyan:#43e7ff;
  --pink:#ff4f91;
  --lime:#adff7a;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  min-height:100vh;
  font-family:Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  color:var(--text);
  background:
    linear-gradient(90deg,rgba(255,255,255,.035) 1px,transparent 1px),
    linear-gradient(180deg,rgba(255,255,255,.028) 1px,transparent 1px),
    linear-gradient(135deg,#050506,#101014 48%,#050506);
  background-size:54px 54px,54px 54px,auto;
}
a{color:inherit}
audio[src=""],
audio:not([src]),
img[src=""]{
  display:none!important;
}
a[href=""],
.btn[href=""]{
  pointer-events:none;
  opacity:.56;
}
.storefront-wrap{
  width:min(1440px,100%);
  margin:0 auto;
  padding:22px clamp(14px,3vw,36px) 54px;
  display:grid;
  gap:16px;
}
.topbar{
  position:sticky;
  top:0;
  z-index:10;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  padding:12px clamp(14px,3vw,36px);
  border-bottom:1px solid var(--line);
  background:rgba(0,0,0,.84);
  backdrop-filter:blur(18px);
}
.brandmark{
  display:flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
  font-weight:950;
}
.brandmark span{
  display:grid;
  place-items:center;
  width:38px;
  height:38px;
  border:1px solid rgba(255,255,255,.2);
  border-radius:8px;
  color:#050506;
  background:linear-gradient(135deg,#fff,var(--gold),var(--cyan));
}
.nav-actions{
  display:flex;
  flex-wrap:wrap;
  justify-content:flex-end;
  gap:8px;
}
.btn{
  min-height:38px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  border:1px solid rgba(255,255,255,.18);
  border-radius:8px;
  padding:9px 12px;
  text-decoration:none;
  color:var(--text);
  background:rgba(255,255,255,.055);
  font-weight:900;
}
.btn.primary{
  color:#050506;
  background:linear-gradient(90deg,#fff,var(--gold) 52%,var(--cyan));
}
.hero{
  min-height:440px;
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(320px,.55fr);
  gap:18px;
  align-items:stretch;
  border:1px solid var(--line);
  border-radius:8px;
  padding:clamp(22px,5vw,58px);
  background:
    linear-gradient(135deg,rgba(255,255,255,.08),transparent 34%),
    rgba(0,0,0,.44);
  overflow:hidden;
}
.micro{
  margin:0;
  color:var(--gold);
  font-size:11px;
  font-weight:950;
  text-transform:uppercase;
  letter-spacing:0;
}
h1{
  max-width:900px;
  margin:10px 0 16px;
  font-size:clamp(58px,9vw,132px);
  line-height:.78;
  letter-spacing:0;
}
.lede{
  max-width:760px;
  margin:0;
  color:var(--soft);
  font-size:clamp(17px,2vw,23px);
  line-height:1.45;
}
.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:24px;
}
.id-panel{
  display:grid;
  align-content:space-between;
  gap:12px;
  border:1px solid rgba(255,255,255,.16);
  border-radius:8px;
  padding:18px;
  background:
    repeating-linear-gradient(90deg,rgba(255,255,255,.04) 0 1px,transparent 1px 22px),
    rgba(0,0,0,.34);
}
.id-panel strong{
  display:block;
  margin-top:8px;
  font-size:clamp(34px,5vw,72px);
  line-height:.88;
}
.stat-grid,
.card-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:12px;
}
.card-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
.product-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:10px;
}
.product-tile{
  min-width:0;
  display:grid;
  align-content:space-between;
  gap:10px;
  min-height:178px;
  border:1px solid var(--line);
  border-radius:8px;
  padding:14px;
  background:
    linear-gradient(135deg,rgba(67,231,255,.12),transparent 42%),
    rgba(0,0,0,.34);
}
.product-tile h3{
  margin:0;
  color:#fff;
  font-size:clamp(20px,2vw,32px);
  line-height:.95;
}
.product-tile strong{
  color:var(--gold);
  font-size:clamp(24px,2.4vw,42px);
  line-height:1;
}
.product-tile span{
  color:var(--soft);
  font-size:12px;
  text-transform:uppercase;
  font-weight:900;
}
.btn.disabled,
.btn[aria-disabled="true"]{
  opacity:.56;
  cursor:not-allowed;
}
.product-room{
  gap:18px;
}
.product-room-hero{
  min-height:430px;
  display:grid;
  grid-template-columns:minmax(0,1.08fr) minmax(300px,.52fr);
  gap:16px;
  align-items:stretch;
  border:1px solid var(--line);
  border-radius:8px;
  padding:clamp(22px,5vw,54px);
  background:
    radial-gradient(circle at 78% 16%,color-mix(in srgb,var(--artist-accent,#43e7ff) 30%,transparent),transparent 34%),
    linear-gradient(135deg,rgba(255,255,255,.075),transparent 40%),
    rgba(0,0,0,.50);
  overflow:hidden;
}
.product-room-copy{
  display:grid;
  align-content:center;
}
.product-room-copy h1{
  margin:10px 0 16px;
}
.product-room-cover{
  min-width:0;
  display:grid;
  grid-template-rows:minmax(220px,1fr) auto;
  border:1px solid rgba(255,255,255,.16);
  border-radius:8px;
  overflow:hidden;
  background:rgba(0,0,0,.36);
}
.product-room-cover img,
.product-room-initials{
  width:100%;
  height:100%;
  min-height:280px;
  object-fit:cover;
  display:block;
  background:#07080c;
}
.product-room-initials{
  display:grid;
  place-items:center;
  color:#050506;
  background:linear-gradient(135deg,#fff,var(--gold),var(--cyan));
  font-size:clamp(56px,9vw,118px);
  font-weight:1000;
}
.product-room-cover div{
  padding:16px;
  border-top:1px solid var(--line);
}
.product-room-cover strong{
  display:block;
  margin:6px 0;
  font-size:clamp(24px,3vw,42px);
  line-height:.96;
}
.product-room-cover span{
  color:var(--soft);
  font-weight:850;
}
.product-room-stats{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
  gap:12px;
}
.product-room-layout{
  display:grid;
  grid-template-columns:minmax(260px,.38fr) minmax(0,1fr);
  gap:14px;
  align-items:stretch;
}
.product-roster,
.product-detail-panel,
.product-command-card{
  min-width:0;
  border:1px solid var(--line);
  border-radius:8px;
  background:
    linear-gradient(135deg,color-mix(in srgb,var(--artist-accent,#43e7ff) 10%,transparent),transparent 46%),
    rgba(0,0,0,.38);
}
.product-roster{
  display:grid;
  align-content:start;
  gap:10px;
  padding:14px;
}
.product-roster-button{
  width:100%;
  min-height:88px;
  display:grid;
  gap:4px;
  text-align:left;
  border:1px solid rgba(255,255,255,.14);
  border-radius:8px;
  padding:12px;
  color:var(--text);
  background:rgba(255,255,255,.045);
  cursor:pointer;
}
.product-roster-button.is-active{
  color:#050506;
  border-color:transparent;
  background:linear-gradient(135deg,#fff,var(--gold),var(--cyan));
}
.product-roster-button span{
  font-size:11px;
  text-transform:uppercase;
  font-weight:950;
  color:inherit;
  opacity:.76;
}
.product-roster-button strong,
.product-roster-button small{
  overflow-wrap:anywhere;
}
.product-detail-panel{
  display:grid;
  gap:12px;
  padding:clamp(18px,4vw,34px);
}
.product-detail-panel h2{
  margin:0;
  font-size:clamp(30px,4vw,64px);
  line-height:.92;
}
.product-detail-panel p{
  margin:0;
  color:var(--soft);
  line-height:1.5;
}
.product-detail-panel audio{
  width:100%;
  min-height:48px;
}
.product-detail-cover,
.product-detail-video,
.product-card-cover{
  width:100%;
  object-fit:cover;
  border:1px solid rgba(255,255,255,.14);
  border-radius:8px;
  background:#07080c;
}
.product-detail-cover,
.product-detail-video{
  max-height:360px;
  aspect-ratio:16/10;
}
.product-detail-video{
  display:block;
  background:#000;
}
.product-detail-video[hidden]{
  display:none;
}
.product-card-cover{
  aspect-ratio:1/1;
}
.product-action-row{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  align-items:center;
}
.support-amount-field{
  min-height:38px;
  display:inline-grid;
  grid-template-columns:auto minmax(94px,128px);
  align-items:center;
  gap:8px;
  border:1px solid rgba(255,255,255,.18);
  border-radius:8px;
  padding:7px 9px;
  background:rgba(255,255,255,.055);
}
.support-amount-field[hidden]{
  display:none;
}
.support-amount-field span{
  color:var(--gold);
  font-size:11px;
  font-weight:950;
  text-transform:uppercase;
}
.support-amount-field input{
  width:100%;
  min-height:28px;
  border:1px solid rgba(255,255,255,.16);
  border-radius:6px;
  padding:4px 7px;
  color:var(--text);
  background:rgba(0,0,0,.42);
  font:inherit;
  font-weight:900;
}
.storefront-commerce-bar{
  display:grid;
  grid-template-columns:minmax(220px,1.2fr) minmax(160px,.6fr) minmax(160px,.6fr) auto;
  gap:10px;
  align-items:end;
  border:1px solid var(--line);
  border-radius:8px;
  padding:14px;
  background:
    linear-gradient(135deg,color-mix(in srgb,var(--artist-accent,#43e7ff) 11%,transparent),transparent 44%),
    rgba(0,0,0,.42);
}
.store-control{
  min-width:0;
  display:grid;
  gap:6px;
}
.store-control span,
.cart-legal span{
  color:var(--gold);
  font-size:11px;
  font-weight:950;
  letter-spacing:0;
  text-transform:uppercase;
}
.store-control input,
.store-control select{
  width:100%;
  min-height:42px;
  border:1px solid rgba(255,255,255,.16);
  border-radius:8px;
  padding:9px 10px;
  color:var(--text);
  background:rgba(0,0,0,.46);
  font:inherit;
  font-weight:850;
}
.cart-button{
  min-height:42px;
}
.cart-button span{
  display:inline-grid;
  min-width:24px;
  min-height:24px;
  place-items:center;
  border-radius:999px;
  padding:0 6px;
  color:#050506;
  background:var(--gold);
}
.commerce-status-line{
  grid-column:1/-1;
  min-height:34px;
  border:1px dashed rgba(255,255,255,.22);
  border-radius:8px;
  padding:8px 10px;
  color:var(--soft);
  background:rgba(255,255,255,.035);
}
.product-status-line{
  min-height:36px;
  display:block;
  border:1px dashed rgba(255,255,255,.22);
  border-radius:8px;
  padding:9px 11px;
  color:var(--soft);
  background:rgba(255,255,255,.035);
}
.storefront-cart-panel{
  display:grid;
  grid-template-columns:minmax(0,.7fr) minmax(260px,1fr) minmax(260px,.72fr);
  gap:14px;
  align-items:start;
  border:1px solid var(--line);
  border-radius:8px;
  padding:clamp(18px,4vw,30px);
  background:
    radial-gradient(circle at 18% 12%,color-mix(in srgb,var(--artist-accent,#43e7ff) 20%,transparent),transparent 34%),
    rgba(0,0,0,.44);
}
.storefront-cart-panel h2{
  margin:6px 0 8px;
  font-size:clamp(28px,4vw,58px);
  line-height:.94;
}
.storefront-cart-panel p{
  color:var(--soft);
  line-height:1.45;
}
.cart-lines,
.cart-checkout-form{
  min-width:0;
  display:grid;
  gap:10px;
}
.cart-line{
  display:grid;
  grid-template-columns:minmax(0,1fr) auto;
  gap:10px;
  align-items:center;
  border:1px solid rgba(255,255,255,.14);
  border-radius:8px;
  padding:12px;
  background:rgba(255,255,255,.045);
}
.cart-line strong,
.cart-line span{
  display:block;
  overflow-wrap:anywhere;
}
.cart-line span,
.empty-cart{
  color:var(--soft);
}
.cart-line > div:last-child{
  display:grid;
  gap:6px;
  justify-items:end;
}
.cart-legal{
  display:grid;
  grid-template-columns:auto minmax(0,1fr);
  gap:8px;
  align-items:start;
  border:1px solid rgba(255,255,255,.14);
  border-radius:8px;
  padding:10px;
  background:rgba(255,255,255,.04);
}
.cart-legal input{
  width:18px;
  height:18px;
  margin:1px 0 0;
}
.cart-total-row{
  display:flex;
  justify-content:space-between;
  gap:12px;
  border-bottom:1px solid rgba(255,255,255,.10);
  padding:8px 0;
}
.cart-total-row span{
  color:var(--soft);
}
.cart-total-row strong{
  color:var(--gold);
}
.cart-total-row--grand{
  border-bottom:0;
  font-size:1.12rem;
}
.product-command-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(270px,1fr));
  gap:12px;
}
.product-command-card{
  display:grid;
  align-content:space-between;
  gap:14px;
  min-height:250px;
  padding:16px;
}
.product-command-card h3{
  margin:6px 0 8px;
  font-size:clamp(25px,3vw,46px);
  line-height:.94;
}
.product-command-card p{
  margin:0;
  color:var(--soft);
  line-height:1.45;
}
.product-meta-row{
  display:grid;
  gap:4px;
}
.product-meta-row strong{
  color:var(--gold);
  font-size:clamp(28px,3vw,52px);
  line-height:1;
}
.product-meta-row span{
  color:var(--soft);
  font-size:12px;
  overflow-wrap:anywhere;
}
.storefront-registry-hero{
  min-height:360px;
}
.artist-world .hero{
  background:
    radial-gradient(circle at 76% 22%,color-mix(in srgb,var(--artist-accent,#ffd86b) 30%,transparent),transparent 34%),
    linear-gradient(135deg,rgba(255,255,255,.08),transparent 34%),
    rgba(0,0,0,.52);
}
.portrait-panel{
  padding:0;
  overflow:hidden;
}
.artist-portrait{
  width:100%;
  min-height:320px;
  aspect-ratio:1;
  object-fit:cover;
  display:block;
  border-bottom:1px solid var(--line);
  background:#07080c;
}
.portrait-panel p{
  margin:0;
  padding:16px;
  color:var(--soft);
  font-weight:850;
}
.music-player-panel{
  border:1px solid var(--line);
  border-radius:8px;
  padding:clamp(18px,4vw,34px);
  background:
    linear-gradient(135deg,color-mix(in srgb,var(--artist-accent,#ffd86b) 16%,transparent),transparent 46%),
    rgba(0,0,0,.36);
}
.music-player-panel h2{
  margin:8px 0 16px;
  font-size:clamp(34px,5vw,78px);
  line-height:.9;
}
.music-player-panel audio{
  width:100%;
  min-height:46px;
}
.artist-app-list{
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
}
.artist-app-list > .card:nth-child(-n+2){
  position:relative;
  grid-column:span 2;
  min-height:520px;
  padding:22px;
  border-color:rgba(255,216,107,.48);
  background:
    radial-gradient(circle at 75% 18%,color-mix(in srgb,var(--artist-accent,#ffd86b) 38%,transparent),transparent 34%),
    linear-gradient(135deg,rgba(255,255,255,.12),rgba(255,216,107,.075) 42%,rgba(0,0,0,.42)),
    rgba(0,0,0,.52);
  box-shadow:0 26px 80px rgba(0,0,0,.34),inset 0 1px 0 rgba(255,255,255,.12);
}
.artist-app-list > .card:nth-child(-n+2)::before{
  content:"featured collective anchor";
  justify-self:start;
  border:1px solid rgba(255,216,107,.34);
  border-radius:999px;
  padding:6px 9px;
  color:#050506;
  background:linear-gradient(90deg,#fff,var(--gold),var(--cyan));
  font-size:11px;
  font-weight:950;
  text-transform:uppercase;
}
.artist-app-list > .card:nth-child(-n+2) .artist-card-portrait{
  min-height:300px;
}
.stat,
.card{
  min-width:0;
  border:1px solid var(--line);
  border-radius:8px;
  padding:16px;
  background:rgba(0,0,0,.36);
}
.stat strong{
  display:block;
  color:var(--gold);
  font-size:clamp(26px,3vw,46px);
  line-height:1;
  overflow-wrap:anywhere;
}
.stat span,
.card p{
  color:var(--soft);
  line-height:1.45;
}
.card h2,
.card h3{
  margin:6px 0 8px;
  font-size:clamp(24px,3vw,42px);
  line-height:.95;
}
.asset-lane{
  display:grid;
  gap:10px;
  border:1px dashed rgba(255,255,255,.28);
  border-radius:8px;
  padding:16px;
  color:var(--soft);
  background:rgba(255,255,255,.035);
}
code{
  color:var(--cyan);
  overflow-wrap:anywhere;
}
@media(max-width:900px){
  .hero,
  .stat-grid,
  .product-room-hero,
  .product-room-layout,
  .product-room-stats,
  .storefront-commerce-bar,
  .storefront-cart-panel,
  .product-grid,
  .card-grid{
    grid-template-columns:1fr;
  }
  .topbar{
    position:relative;
    align-items:flex-start;
    flex-direction:column;
  }
}

/* BEGIN quantumskyes:adaptive-neon-scrollbar-css */
/*
  Adaptive Neon Scrollbar

  Optional MCP part. Add data-mcp-neon-scrollbar to html, body, or a scroll
  container when a site explicitly asks for visible neon scrollbars.
  This keeps native scrollbars visible and adds always-visible, draggable
  neon rails on the exact viewport edges.
*/

:root{
  --mcp-neon-scrollbar-size:18px;
  --mcp-neon-scrollbar-bg:rgba(3,7,11,.62);
  --mcp-neon-scrollbar-track:rgba(7,16,23,.52);
  --mcp-neon-scrollbar-rail:rgba(53,183,255,.34);
  --mcp-neon-scrollbar-a:var(--gold2,var(--gold,var(--brand-gold,var(--accent,#f3d483))));
  --mcp-neon-scrollbar-b:var(--cyan,var(--brand-cyan,var(--accent-2,#35b7ff)));
  --mcp-neon-scrollbar-c:var(--mint,var(--brand-mint,var(--success,#6ff2c7)));
  --mcp-neon-scrollbar-d:var(--violet,var(--brand-violet,var(--accent-3,#a88cff)));
}

html[data-mcp-neon-scrollbar],
html[data-mcp-neon-scrollbar] body,
[data-mcp-neon-scrollbar]{
  scrollbar-width:auto !important;
  scrollbar-color:var(--mcp-neon-scrollbar-b) var(--mcp-neon-scrollbar-track);
  -ms-overflow-style:auto !important;
}

html[data-mcp-neon-scrollbar] *,
[data-mcp-neon-scrollbar] *{
  scrollbar-width:auto !important;
  scrollbar-color:var(--mcp-neon-scrollbar-b) var(--mcp-neon-scrollbar-track);
  -ms-overflow-style:auto !important;
}

html[data-mcp-neon-scrollbar]::-webkit-scrollbar,
html[data-mcp-neon-scrollbar] body::-webkit-scrollbar,
html[data-mcp-neon-scrollbar] *::-webkit-scrollbar,
[data-mcp-neon-scrollbar]::-webkit-scrollbar,
[data-mcp-neon-scrollbar] *::-webkit-scrollbar{
  width:14px !important;
  height:14px !important;
  display:block !important;
  background:var(--mcp-neon-scrollbar-track) !important;
}

.mcp-neon-scroll-rail{
  position:fixed;
  z-index:9999;
  pointer-events:auto;
  opacity:.94;
  border:1px solid var(--mcp-neon-scrollbar-rail);
  border-radius:999px;
  background:
    linear-gradient(180deg,rgba(243,212,131,.16),rgba(53,183,255,.12) 45%,rgba(168,140,255,.12) 76%,rgba(111,242,199,.10)),
    var(--mcp-neon-scrollbar-track);
  box-shadow:
    inset 0 0 10px rgba(53,183,255,.22),
    inset 0 0 18px rgba(243,212,131,.10),
    0 0 14px rgba(53,183,255,.20),
    0 0 22px rgba(243,212,131,.10);
  contain:layout style paint;
  transform:translateZ(0);
  touch-action:none;
  user-select:none;
}

.mcp-neon-scroll-rail-y{
  top:0;
  right:0;
  bottom:var(--mcp-neon-scrollbar-size);
  width:var(--mcp-neon-scrollbar-size);
  cursor:ns-resize;
}

.mcp-neon-scroll-rail-x{
  left:0;
  right:var(--mcp-neon-scrollbar-size);
  bottom:0;
  height:var(--mcp-neon-scrollbar-size);
  cursor:ew-resize;
  background:
    linear-gradient(90deg,rgba(243,212,131,.16),rgba(53,183,255,.12) 45%,rgba(168,140,255,.12) 76%,rgba(111,242,199,.10)),
    var(--mcp-neon-scrollbar-track);
}

.mcp-neon-scroll-corner{
  position:fixed;
  right:0;
  bottom:0;
  z-index:9999;
  width:var(--mcp-neon-scrollbar-size);
  height:var(--mcp-neon-scrollbar-size);
  border:1px solid var(--mcp-neon-scrollbar-rail);
  border-radius:12px 0 0 0;
  background:
    radial-gradient(circle,var(--mcp-neon-scrollbar-b),transparent 64%),
    var(--mcp-neon-scrollbar-bg);
  box-shadow:0 0 22px rgba(53,183,255,.30);
  pointer-events:none;
  contain:layout style paint;
  transform:translateZ(0);
}

.mcp-neon-scroll-thumb{
  position:absolute;
  border:3px solid transparent;
  border-radius:999px;
  background:
    linear-gradient(180deg,rgba(255,255,255,.76),rgba(255,255,255,.20)) padding-box,
    linear-gradient(180deg,var(--mcp-neon-scrollbar-a),var(--mcp-neon-scrollbar-b),var(--mcp-neon-scrollbar-d),var(--mcp-neon-scrollbar-c)) border-box;
  box-shadow:
    0 0 11px rgba(53,183,255,.72),
    0 0 22px rgba(243,212,131,.32),
    0 0 30px rgba(111,242,199,.16),
    inset 0 0 12px rgba(255,255,255,.36);
  cursor:grab;
  pointer-events:auto;
  touch-action:none;
  will-change:transform,width,height;
}

.mcp-neon-scroll-thumb:active,
.mcp-neon-scroll-rail.is-dragging .mcp-neon-scroll-thumb{
  cursor:grabbing;
  box-shadow:
    0 0 13px rgba(53,183,255,.86),
    0 0 26px rgba(243,212,131,.40),
    0 0 34px rgba(168,140,255,.20),
    inset 0 0 15px rgba(255,255,255,.44);
}

html.mcp-neon-scroll-dragging,
html.mcp-neon-scroll-dragging *{
  scroll-behavior:auto !important;
}

html.mcp-neon-scroll-dragging .mcp-neon-scroll-rail{
  opacity:1;
}

.mcp-neon-scroll-rail-y .mcp-neon-scroll-thumb{
  top:0;
  left:0;
  width:100%;
  min-height:78px;
  transform:translate3d(0,var(--mcp-scroll-y,0px),0);
}

.mcp-neon-scroll-rail-x .mcp-neon-scroll-thumb{
  top:0;
  left:0;
  height:100%;
  min-width:84px;
  transform:translate3d(var(--mcp-scroll-x,0px),0,0);
  background:
    linear-gradient(90deg,rgba(255,255,255,.76),rgba(255,255,255,.20)) padding-box,
    linear-gradient(90deg,var(--mcp-neon-scrollbar-a),var(--mcp-neon-scrollbar-b),var(--mcp-neon-scrollbar-d),var(--mcp-neon-scrollbar-c)) border-box;
}

@media(max-width:680px){
  :root{--mcp-neon-scrollbar-size:15px}
  .mcp-neon-scroll-thumb{border-width:2px}
  .mcp-neon-scroll-rail-y .mcp-neon-scroll-thumb{min-height:72px}
  .mcp-neon-scroll-rail-x .mcp-neon-scroll-thumb{min-width:78px}
}

.mcp-neon-scroll-rail{
  position:fixed;
  z-index:180;
  pointer-events:none;
  opacity:.94;
  border:1px solid var(--mcp-neon-scrollbar-rail);
  border-radius:999px;
  background:
    linear-gradient(180deg,rgba(243,212,131,.14),rgba(53,183,255,.10) 45%,rgba(168,140,255,.11) 76%,rgba(111,242,199,.09)),
    rgba(3,7,11,.50);
  box-shadow:
    inset 0 0 13px rgba(53,183,255,.24),
    0 0 18px rgba(53,183,255,.20),
    0 0 28px rgba(243,212,131,.12);
  backdrop-filter:blur(10px);
}

.mcp-neon-scroll-rail-y{
  top:92px;
  right:8px;
  bottom:16px;
  width:15px;
}

.mcp-neon-scroll-rail-x{
  left:16px;
  right:16px;
  bottom:8px;
  height:15px;
  background:
    linear-gradient(90deg,rgba(243,212,131,.14),rgba(53,183,255,.10) 45%,rgba(168,140,255,.11) 76%,rgba(111,242,199,.09)),
    rgba(3,7,11,.50);
}

.mcp-neon-scroll-thumb{
  position:absolute;
  border:3px solid transparent;
  border-radius:999px;
  background:
    linear-gradient(180deg,rgba(255,255,255,.72),rgba(255,255,255,.18)) padding-box,
    linear-gradient(180deg,var(--mcp-neon-scrollbar-a),var(--mcp-neon-scrollbar-b),var(--mcp-neon-scrollbar-d),var(--mcp-neon-scrollbar-c)) border-box;
  box-shadow:
    0 0 14px rgba(53,183,255,.86),
    0 0 30px rgba(243,212,131,.42),
    0 0 44px rgba(111,242,199,.22),
    inset 0 0 12px rgba(255,255,255,.34);
}

.mcp-neon-scroll-rail-y .mcp-neon-scroll-thumb{
  top:0;
  left:0;
  width:100%;
  min-height:78px;
  transform:translate3d(0,var(--mcp-scroll-y,0px),0);
}

.mcp-neon-scroll-rail-x .mcp-neon-scroll-thumb{
  top:0;
  left:0;
  height:100%;
  min-width:78px;
  transform:translate3d(var(--mcp-scroll-x,0px),0,0);
  background:
    linear-gradient(90deg,rgba(255,255,255,.72),rgba(255,255,255,.18)) padding-box,
    linear-gradient(90deg,var(--mcp-neon-scrollbar-a),var(--mcp-neon-scrollbar-b),var(--mcp-neon-scrollbar-d),var(--mcp-neon-scrollbar-c)) border-box;
}

@media(max-width:680px){
  .mcp-neon-scroll-rail-y{top:112px;right:5px;bottom:12px;width:12px}
  .mcp-neon-scroll-rail-x{left:10px;right:10px;bottom:5px;height:12px}
  .mcp-neon-scroll-thumb{border-width:2px}
}
/* END quantumskyes:adaptive-neon-scrollbar-css */

/* BEGIN quantumskyes:skyesol-living-background-css */
.skyesol-living-field {
  position: fixed;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.skyesol-grain,
.skyesol-scanline {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

.skyesol-grain {
  z-index: -1;
  opacity: .1;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.62'/%3E%3C/svg%3E");
}

.skyesol-scanline {
  z-index: 10;
  opacity: .045;
  background: repeating-linear-gradient(to bottom, rgba(255,255,255,.22), rgba(255,255,255,.22) 1px, transparent 1px, transparent 6px);
}

.skyesol-living-page {
  background:
    linear-gradient(180deg, rgba(5,5,11,.94), rgba(3,3,7,.98)),
    radial-gradient(1200px 760px at 14% 4%, rgba(138,99,255,.2), transparent 58%),
    radial-gradient(1100px 760px at 82% 16%, rgba(39,242,255,.12), transparent 58%),
    radial-gradient(900px 660px at 55% 92%, rgba(201,168,76,.12), transparent 60%);
}

.skyesol-living-page.motion-paused *,
.skyesol-living-page.motion-paused *::before,
.skyesol-living-page.motion-paused *::after {
  animation-play-state: paused !important;
  transition-duration: .01ms !important;
}

@media (prefers-reduced-motion: reduce), (max-width: 760px) {
  .skyesol-scanline {
    opacity: .028;
  }

  .skyesol-grain {
    opacity: .065;
  }
}
/* END quantumskyes:skyesol-living-background-css */

/* BEGIN quantumskyes:neon-motion-chrome-css */
:root {
  --neon-bg: #05030b;
  --neon-gold: #ffd76a;
  --neon-cyan: #61f6ff;
  --neon-pink: #ff4fd8;
  --neon-violet: #9b5cff;
  --neon-ink: #fff8e7;
  --neon-scrollbar-track: rgba(5, 3, 11, .58);
  --neon-scrollbar-rail: rgba(97, 246, 255, .28);
}

html {
  scrollbar-gutter: stable;
  scrollbar-width: auto;
  scrollbar-color: color-mix(in srgb, var(--neon-cyan) 78%, transparent) var(--neon-scrollbar-track);
  scroll-behavior: smooth;
}

::-webkit-scrollbar {
  width: 16px;
  height: 16px;
}

::-webkit-scrollbar-track {
  border: 1px solid var(--neon-scrollbar-rail);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 215, 106, .16), rgba(97, 246, 255, .12) 46%, rgba(155, 92, 255, .13) 78%, rgba(255, 79, 216, .10)),
    rgba(5, 3, 11, .46);
  box-shadow:
    inset 0 0 14px rgba(97, 246, 255, .24),
    inset 0 0 24px rgba(255, 215, 106, .13),
    0 0 18px rgba(97, 246, 255, .12);
}

::-webkit-scrollbar-track:horizontal {
  background:
    linear-gradient(90deg, rgba(255, 215, 106, .16), rgba(97, 246, 255, .12) 46%, rgba(155, 92, 255, .13) 78%, rgba(255, 79, 216, .10)),
    rgba(5, 3, 11, .46);
}

::-webkit-scrollbar-thumb {
  min-width: 72px;
  min-height: 70px;
  border: 4px solid transparent;
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .74), rgba(255, 255, 255, .18)) padding-box,
    linear-gradient(180deg, var(--neon-gold), var(--neon-cyan), var(--neon-violet), var(--neon-pink)) border-box;
  box-shadow:
    0 0 12px rgba(97, 246, 255, .78),
    0 0 24px rgba(255, 215, 106, .38),
    0 0 36px rgba(155, 92, 255, .20),
    inset 0 0 12px rgba(255, 255, 255, .34);
}

::-webkit-scrollbar-thumb:horizontal {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .74), rgba(255, 255, 255, .18)) padding-box,
    linear-gradient(90deg, var(--neon-gold), var(--neon-cyan), var(--neon-violet), var(--neon-pink)) border-box;
}

::-webkit-scrollbar-thumb:hover {
  border-width: 3px;
  box-shadow:
    0 0 16px rgba(97, 246, 255, .92),
    0 0 34px rgba(255, 215, 106, .50),
    0 0 48px rgba(255, 79, 216, .25),
    inset 0 0 14px rgba(255, 255, 255, .42);
}

.neon-motion-chrome {
  position: relative;
  isolation: isolate;
  min-height: 100%;
  color: var(--neon-ink);
}

.neon-motion-chrome::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, .026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .026) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, .82), transparent 78%);
}

.neon-scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 90;
  width: 100%;
  height: 4px;
  transform-origin: left center;
  background: linear-gradient(90deg, var(--neon-gold), var(--neon-cyan), var(--neon-pink));
  box-shadow: 0 0 22px rgba(97, 246, 255, .42);
}

.neon-scanline {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: .34;
  background:
    linear-gradient(90deg, transparent, rgba(255, 255, 255, .12), transparent),
    repeating-linear-gradient(180deg, rgba(97, 246, 255, .04) 0 1px, transparent 1px 8px);
  background-size: 38vw 100%, 100% 8px;
  mix-blend-mode: screen;
}

.neon-cursor-trail {
  position: fixed;
  left: -150px;
  top: -150px;
  z-index: 70;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(255, 215, 106, .18), rgba(97, 246, 255, .11) 38%, rgba(255, 79, 216, .08) 56%, transparent 72%);
  filter: blur(10px);
  mix-blend-mode: screen;
}

.neon-motion-chrome__label {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 75;
  max-width: min(280px, calc(100vw - 36px));
  border: 1px solid rgba(255, 215, 106, .28);
  border-radius: 999px;
  padding: 9px 12px;
  background: rgba(5, 3, 11, .72);
  color: rgba(255, 248, 231, .84);
  font-size: 11px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: .12em;
  text-transform: uppercase;
  backdrop-filter: blur(14px);
}

.neon-gradient-text {
  background: linear-gradient(92deg, #fff8e7 0%, var(--neon-gold) 30%, var(--neon-cyan) 60%, var(--neon-pink) 86%, #fff8e7 100%);
  background-size: 220% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: none;
  animation: neonTitleShimmer 7s linear infinite;
}

.neon-glow-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .09), rgba(255, 255, 255, .035));
  box-shadow: 0 24px 80px rgba(0, 0, 0, .42), 0 0 34px rgba(97, 246, 255, .1);
}

.neon-glow-panel::before {
  content: "";
  position: absolute;
  inset: -80% -20%;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .18), transparent);
  transform: rotate(18deg);
  animation: neonSweep 7s ease-in-out infinite;
}

.neon-magnetic {
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
  will-change: transform;
}

.neon-magnetic:hover {
  transform: translateY(-3px) scale(1.015);
  border-color: rgba(97, 246, 255, .62);
  box-shadow: 0 18px 54px rgba(97, 246, 255, .14), 0 0 28px rgba(255, 215, 106, .16);
}

@keyframes neonTitleShimmer {
  from { background-position: 0% center; }
  to { background-position: 220% center; }
}

@keyframes neonSweep {
  0%, 62% { translate: -120% 0; }
  100% { translate: 120% 0; }
}

@media (pointer: coarse), (max-width: 760px) {
  .neon-cursor-trail {
    display: none;
  }

  .neon-motion-chrome__label {
    position: static;
    display: inline-flex;
    margin: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }

  .neon-cursor-trail,
  .neon-scanline {
    display: none;
  }
}
/* END quantumskyes:neon-motion-chrome-css */

/* BEGIN quantumskyes:premium-text-effects-css */
.neon-gradient-text,.premium-text-effects-lab,.skye-gradient-text{
  color:transparent;
  background:linear-gradient(90deg,#fff 0%,var(--mcp-neon-scrollbar-a,#f3d483) 31%,var(--mcp-neon-scrollbar-b,#35b7ff) 63%,var(--mcp-neon-scrollbar-c,#6ff2c7) 100%);
  -webkit-background-clip:text;
  background-clip:text;
  text-shadow:0 0 28px rgba(53,183,255,.18),0 0 34px rgba(243,212,131,.12);
}
/* END quantumskyes:premium-text-effects-css */

.artist-card-media{
  position:relative;
  margin:0 0 12px;
  overflow:hidden;
  border-radius:8px;
  border:1px solid rgba(255,255,255,.14);
  background:#111;
}
.artist-card-media figcaption,
.artist-card-product-badge{
  position:absolute;
  right:10px;
  bottom:10px;
  display:grid;
  gap:2px;
  min-width:112px;
  border:1px solid rgba(255,255,255,.2);
  border-radius:8px;
  padding:8px 10px;
  background:rgba(0,0,0,.74);
  backdrop-filter:blur(12px);
  box-shadow:0 12px 28px rgba(0,0,0,.28);
}
.artist-card-product-badge{
  position:relative;
  right:auto;
  bottom:auto;
  margin:0 0 12px;
}
.artist-card-media strong,
.artist-card-product-badge strong{
  color:var(--gold);
  font-size:20px;
  line-height:1;
}
.artist-card-media span,
.artist-card-product-badge span{
  color:var(--soft);
  font-size:11px;
  font-weight:950;
  text-transform:uppercase;
}
.artist-card-portrait{
  display:block;
  width:100%;
  aspect-ratio:4/5;
  object-fit:cover;
  object-position:center 22%;
  border-radius:0;
  border:0;
  margin:0;
  background:#111;
}
.artist-card-with-portrait{overflow:hidden;}

.artist-hero{
  position:relative;
  grid-template-columns:minmax(0,1.05fr) minmax(300px,.72fr);
}
.artist-hero::after{
  content:"";
  position:absolute;
  inset:auto 8% 0 auto;
  width:min(420px,54vw);
  height:min(420px,54vw);
  border-radius:50%;
  background:radial-gradient(circle,color-mix(in srgb,var(--artist-accent,#ffd86b) 34%,transparent),transparent 68%);
  filter:blur(38px);
  opacity:.62;
  pointer-events:none;
}
.artist-hero > *{position:relative;z-index:1}
.artist-kicker{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin:0 0 18px;
}
.artist-chip{
  display:inline-flex;
  align-items:center;
  min-height:28px;
  border:1px solid rgba(255,255,255,.16);
  border-radius:999px;
  padding:6px 9px;
  color:#fff;
  background:rgba(255,255,255,.06);
  font-size:11px;
  font-weight:950;
  text-transform:uppercase;
}
.artist-story-grid{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:12px;
}
.artist-story-grid .card,
.artist-soundboard .card{
  min-height:220px;
}
.artist-soundboard{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:12px;
}
.track-orbit{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:10px;
}
.track-orbit .product-tile{
  min-height:210px;
}
.collective-roster{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(230px,1fr));
  gap:12px;
}
.collective-roster .card{
  display:grid;
  align-content:start;
}
.collective-roster .card .btn,
.artist-app-list .card .btn{
  margin-top:6px;
}
.artist-dossier{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:12px;
}
.artist-dossier p{
  margin:0;
}
.storefront-shell .hero{
  min-height:380px;
}
.artist-portrait-mark{
  display:grid;
  gap:0;
  overflow:hidden;
}
.artist-portrait-mark strong{
  display:block;
  padding:14px 16px 4px;
  font-size:clamp(28px,4vw,52px);
  line-height:.9;
}
.artist-portrait-mark span{
  display:block;
  padding:0 16px 16px;
  color:var(--soft);
  font-weight:850;
}
@media(max-width:900px){
  .artist-story-grid,
  .artist-soundboard,
  .track-orbit,
  .artist-dossier{
    grid-template-columns:1fr;
  }
}


.collective-owner{
  display:grid;
}
.owner-card{
  display:grid;
  grid-template-columns:minmax(120px,180px) minmax(0,1fr);
  gap:18px;
  align-items:center;
  border-color:rgba(255,216,107,.36);
  background:
    radial-gradient(circle at 12% 18%,rgba(255,216,107,.22),transparent 34%),
    linear-gradient(135deg,rgba(67,231,255,.12),transparent 54%),
    rgba(0,0,0,.48);
}
.owner-mark{
  aspect-ratio:1;
  display:grid;
  place-items:center;
  border:1px solid rgba(255,255,255,.2);
  border-radius:8px;
  color:#050506;
  background:linear-gradient(135deg,#fff,var(--gold),var(--cyan));
  font-size:clamp(48px,8vw,108px);
  font-weight:1000;
  letter-spacing:0;
}
.drop-package-panel{
  scroll-margin-top:96px;
}
@media(max-width:720px){
  .owner-card{grid-template-columns:1fr}
  .owner-mark{max-width:180px}
}

/* Gray Skyes / Gray Brain corrective universe pass */
.gray-universe{
  --gray-red:#ff244f;
  --gray-cyan:#4deaff;
  --gray-gold:#ffd36a;
  --gray-violet:#a879ff;
  --gray-ink:#fff6ee;
  --gray-panel:rgba(5,5,8,.72);
  background:
    linear-gradient(90deg,rgba(255,255,255,.03) 1px,transparent 1px),
    linear-gradient(180deg,rgba(255,255,255,.025) 1px,transparent 1px),
    linear-gradient(120deg,#030305 0%,#100408 38%,#031014 70%,#030305 100%);
  background-size:64px 64px,64px 64px,auto;
}
.gray-stage{
  width:min(1540px,100%);
  margin:0 auto;
  padding:18px clamp(14px,3vw,38px) 64px;
  display:grid;
  gap:16px;
}
.gray-hero{
  min-height:min(760px,calc(100vh - 92px));
  display:grid;
  grid-template-columns:minmax(0,1.05fr) minmax(300px,.95fr);
  gap:18px;
  align-items:stretch;
  border:1px solid rgba(255,255,255,.16);
  border-radius:8px;
  overflow:hidden;
  background:
    linear-gradient(120deg,rgba(255,36,79,.2),rgba(77,234,255,.08) 44%,rgba(0,0,0,.42)),
    rgba(0,0,0,.62);
}
.gray-hero-copy{
  display:grid;
  align-content:end;
  gap:18px;
  padding:clamp(24px,6vw,74px);
}
.gray-hero-copy h1{
  margin:0;
  max-width:980px;
  font-size:clamp(64px,11vw,166px);
  line-height:.78;
}
.gray-hero-copy .lede{
  max-width:820px;
}
.gray-hero-visual{
  position:relative;
  min-height:520px;
  overflow:hidden;
  background:#030305;
}
.gray-hero-visual::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(90deg,rgba(3,3,5,.82),rgba(3,3,5,.08) 34%,rgba(3,3,5,.45));
  z-index:1;
  pointer-events:none;
}
.gray-hero-visual img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
}
.gray-hero-visual .gray-cutout{
  inset:auto 0 -3% auto;
  width:min(76%,620px);
  height:auto;
  max-height:92%;
  object-fit:contain;
  z-index:2;
  filter:drop-shadow(0 20px 42px rgba(0,0,0,.7));
}
.gray-quick-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:12px;
}
.gray-panel{
  border:1px solid rgba(255,255,255,.16);
  border-radius:8px;
  padding:clamp(18px,3vw,34px);
  background:var(--gray-panel);
}
.gray-panel h2{
  margin:8px 0 12px;
  font-size:clamp(34px,5vw,78px);
  line-height:.88;
}
.gray-radio-grid{
  display:grid;
  grid-template-columns:minmax(280px,.82fr) minmax(0,1.18fr);
  gap:14px;
}
.gray-player-card{
  display:grid;
  gap:16px;
  align-content:start;
}
.gray-player-card img{
  width:100%;
  aspect-ratio:1;
  object-fit:cover;
  border:1px solid rgba(255,255,255,.14);
  border-radius:8px;
}
.gray-player-card audio{
  width:100%;
}
.gray-track-list{
  display:grid;
  gap:8px;
}
.gray-track-row{
  display:grid;
  grid-template-columns:auto minmax(0,1fr) auto auto;
  gap:10px;
  align-items:center;
  min-height:68px;
  border:1px solid rgba(255,255,255,.13);
  border-radius:8px;
  padding:10px;
  background:rgba(255,255,255,.04);
}
.gray-track-row button{
  border-radius:8px;
}
.gray-track-row strong,
.gray-track-row span{
  overflow-wrap:anywhere;
}
.gray-track-row small{
  color:var(--soft);
  text-transform:uppercase;
  font-weight:900;
}
.gray-video-grid,
.gray-feature-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:12px;
}
.gray-video-card{
  min-height:100%;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.14);
  border-radius:8px;
  background:rgba(0,0,0,.42);
}
.gray-video-card img{
  width:100%;
  aspect-ratio:16/10;
  object-fit:cover;
  display:block;
}
.gray-video-card div{
  display:grid;
  gap:8px;
  padding:14px;
}
.gray-brain-hero{
  min-height:min(720px,calc(100vh - 92px));
  grid-template-columns:minmax(300px,.9fr) minmax(0,1.1fr);
}
.gray-brain-portrait{
  position:relative;
  min-height:520px;
  overflow:hidden;
}
.gray-brain-portrait img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.gray-brain-portrait::after{
  content:"";
  position:absolute;
  inset:0;
  border:1px solid rgba(255,255,255,.18);
  border-radius:8px;
  pointer-events:none;
}
.gray-brain-list{
  display:grid;
  gap:10px;
}
.gray-brain-list li{
  list-style:none;
  border:1px solid rgba(255,255,255,.14);
  border-radius:8px;
  padding:12px;
  background:rgba(255,255,255,.045);
}
.featured-artist-strip{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:12px;
}
.featured-artist-card{
  display:grid;
  grid-template-columns:minmax(120px,200px) minmax(0,1fr);
  gap:14px;
  align-items:center;
  border:1px solid rgba(255,216,107,.34);
  border-radius:8px;
  padding:14px;
  background:linear-gradient(135deg,rgba(255,36,79,.16),rgba(77,234,255,.08)),rgba(0,0,0,.48);
  box-shadow:0 24px 70px rgba(0,0,0,.32),inset 0 1px 0 rgba(255,255,255,.1);
}
.featured-artist-card:first-child,
.featured-artist-card:nth-child(2){
  min-height:320px;
  border-color:rgba(255,216,107,.52);
  background:
    radial-gradient(circle at 78% 10%,rgba(255,216,107,.24),transparent 34%),
    linear-gradient(135deg,rgba(255,36,79,.18),rgba(77,234,255,.12)),
    rgba(0,0,0,.56);
}
.featured-artist-card img{
  width:100%;
  aspect-ratio:1;
  object-fit:cover;
  border-radius:8px;
  border:1px solid rgba(255,255,255,.16);
}
@media(max-width:980px){
  .gray-hero,
  .gray-radio-grid,
  .gray-brain-hero,
  .featured-artist-strip{
    grid-template-columns:1fr;
  }
  .gray-hero-visual,
  .gray-brain-portrait{
    min-height:420px;
  }
  .gray-quick-grid,
  .gray-video-grid,
  .gray-feature-grid{
    grid-template-columns:1fr;
  }
  .gray-track-row{
    grid-template-columns:1fr;
  }
  .featured-artist-card{
    grid-template-columns:1fr;
  }
  .artist-app-list > .card:nth-child(-n+2){
    grid-column:auto;
  }
}
