:root {
  --ink: #f6f1ff;
  --muted: #aaa1b5;
  --night: #090611;
  --night-2: #10091b;
  --panel: #15101f;
  --panel-soft: #1b1428;
  --line: rgba(255, 255, 255, 0.12);
  --pink: #ff4fd8;
  --pink-hot: #ff20ad;
  --violet: #915cff;
  --cyan: #64e9ff;
  --lime: #c8ff5e;
  --radius: 1.35rem;
  --wrap: min(1180px, calc(100% - 48px));
  --ease: cubic-bezier(.2, .75, .25, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; }
body {
  margin: 0;
  background: var(--night);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  pointer-events: none;
  opacity: .2;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.22'/%3E%3C/svg%3E");
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
button { color: inherit; }
::selection { color: #16071a; background: var(--pink); }

.wrap { width: var(--wrap); margin-inline: auto; }
.section { padding-block: 8rem; }
.sr-only {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0);
  white-space: nowrap; border: 0;
}
.skip-link {
  position: fixed; top: .75rem; left: .75rem; z-index: 1000;
  padding: .7rem 1rem; border-radius: .5rem;
  color: var(--night); background: var(--cyan);
  transform: translateY(-160%); transition: transform .2s;
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 82px;
  padding-inline: max(24px, calc((100vw - 1180px) / 2));
  border-bottom: 1px solid transparent;
  transition: background .3s, border-color .3s, height .3s;
}
.site-header.is-scrolled {
  height: 70px;
  background: rgba(9, 6, 17, .86);
  border-color: var(--line);
  backdrop-filter: blur(18px);
}
.brand { display: inline-flex; align-items: center; gap: .8rem; font-weight: 850; letter-spacing: -.035em; }
.brand img { width: 44px; aspect-ratio: 1; object-fit: cover; border: 1px solid rgba(255, 255, 255, .2); border-radius: 50%; }
.brand span { font-size: 1.05rem; }
.brand i { color: var(--pink); font-style: normal; }
.site-nav { display: flex; align-items: center; gap: 2rem; font-size: .82rem; font-weight: 700; letter-spacing: .04em; }
.site-nav a:not(.nav-cta) { position: relative; color: #d9d3df; }
.site-nav a:not(.nav-cta)::after { position: absolute; right: 0; bottom: -.4rem; left: 0; height: 1px; content: ""; background: var(--pink); transform: scaleX(0); transform-origin: right; transition: transform .3s var(--ease); }
.site-nav a:not(.nav-cta):hover::after { transform: scaleX(1); transform-origin: left; }
.nav-cta { padding: .6rem 1rem; border: 1px solid var(--line); border-radius: 999px; transition: border-color .2s, background .2s; }
.nav-cta:hover { background: rgba(255, 79, 216, .1); border-color: var(--pink); }
.menu-toggle { display: none; width: 42px; height: 42px; padding: 10px; border: 1px solid var(--line); border-radius: 50%; background: transparent; }
.menu-toggle > span:not(.sr-only) { display: block; width: 100%; height: 1px; margin: 5px 0; background: currentColor; transition: transform .25s, opacity .25s; }

.hero {
  position: relative;
  display: flex;
  min-height: 100svh;
  padding-top: 110px;
  overflow: hidden;
  background:
    radial-gradient(circle at 65% 34%, rgba(122, 50, 224, .14), transparent 30%),
    linear-gradient(180deg, #090611 0%, #0d0815 100%);
}
.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  opacity: .55;
  background-image:
    radial-gradient(circle at 10% 20%, white 0 1px, transparent 1.6px),
    radial-gradient(circle at 80% 13%, white 0 1px, transparent 1.6px),
    radial-gradient(circle at 20% 80%, #ff5cdd 0 1px, transparent 1.8px),
    radial-gradient(circle at 92% 68%, #7deeff 0 1px, transparent 1.8px);
  background-size: 170px 190px, 230px 220px, 290px 250px, 340px 300px;
}
.hero-content { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: clamp(3rem, 7vw, 8rem); padding-block: 3rem 7rem; }
.hero-copy { padding-bottom: 2rem; }
.eyebrow { display: flex; align-items: center; gap: .7rem; margin: 0 0 1.4rem; color: #c7bfce; font-size: .73rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow > span { width: 32px; height: 1px; background: var(--pink); }
.hero h1, .section-heading h2, .founder h2, .listen h2 {
  margin: 0;
  font-family: "Arial Narrow", "Aptos Display", Impact, sans-serif;
  font-size: clamp(4rem, 7.3vw, 7.2rem);
  font-weight: 900;
  line-height: .86;
  letter-spacing: -.065em;
  text-transform: uppercase;
}
.hero h1 em, .section-heading h2 em, .founder h2 em, .listen h2 em { color: var(--pink); font-style: italic; font-weight: 400; }
.hero-lede { max-width: 610px; margin: 2rem 0 0; color: #c3bbca; font-size: clamp(1rem, 1.4vw, 1.22rem); }
.hero-lede strong { color: var(--ink); font-weight: 650; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2.3rem; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: .8rem; min-height: 52px; padding: .75rem 1.25rem; border: 1px solid transparent; border-radius: 999px; font-size: .82rem; font-weight: 850; letter-spacing: .02em; cursor: pointer; transition: transform .25s var(--ease), background .25s, border-color .25s; }
.button:hover { transform: translateY(-3px); }
.button-primary { color: #1b0719; background: linear-gradient(135deg, var(--pink), #ff8ae7); box-shadow: 0 14px 50px rgba(255, 79, 216, .2); }
.button-primary:hover { background: linear-gradient(135deg, #ff72df, var(--pink)); }
.button-ghost { border-color: var(--line); background: rgba(255, 255, 255, .025); }
.button-ghost:hover { border-color: rgba(255, 79, 216, .55); background: rgba(255, 79, 216, .08); }
.hero-stats { display: flex; gap: clamp(1.6rem, 4vw, 3.5rem); margin: 3.5rem 0 0; }
.hero-stats div { display: flex; flex-direction: column; }
.hero-stats dt { font-size: 1.55rem; font-weight: 850; line-height: 1; }
.hero-stats dd { margin: .4rem 0 0; color: #908798; font-size: .66rem; font-weight: 750; letter-spacing: .1em; text-transform: uppercase; }

.hero-art { position: relative; display: grid; place-items: center; min-width: 0; }
.hero-cover { position: relative; z-index: 2; width: min(100%, 520px); margin: 0; padding: 10px; border: 1px solid rgba(255, 255, 255, .13); border-radius: 50%; background: rgba(255, 255, 255, .035); box-shadow: 0 50px 100px rgba(0, 0, 0, .46), 0 0 80px rgba(255, 56, 203, .08); transform: rotate(3deg); }
.hero-cover::after { position: absolute; inset: 16%; content: ""; border: 1px solid rgba(255, 255, 255, .12); border-radius: 50%; pointer-events: none; }
.hero-cover img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 50%; }
.hero-cover figcaption { position: absolute; right: 6%; bottom: 7%; display: flex; flex-direction: column; padding: .65rem .9rem; border: 1px solid var(--line); border-radius: .5rem; background: rgba(10, 7, 17, .82); backdrop-filter: blur(10px); transform: rotate(-3deg); }
.hero-cover figcaption span:first-child { color: var(--pink); font-size: .58rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.hero-cover figcaption span:last-child { font-size: .78rem; font-weight: 700; }
.orbit { position: absolute; z-index: 1; border: 1px solid rgba(255, 255, 255, .12); border-radius: 50%; }
.orbit-one { width: 118%; aspect-ratio: 1; animation: spin 26s linear infinite; }
.orbit-one::before { position: absolute; top: 13%; left: 8%; width: 11px; aspect-ratio: 1; content: ""; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 24px var(--cyan); }
.orbit-two { width: 140%; aspect-ratio: 1; border-style: dashed; opacity: .45; animation: spin 40s linear infinite reverse; }
.floating-label { position: absolute; z-index: 3; padding: .5rem .75rem; border: 1px solid var(--line); border-radius: 999px; background: rgba(9, 6, 17, .82); color: #cfc5d4; font-size: .58rem; font-weight: 850; letter-spacing: .15em; text-transform: uppercase; backdrop-filter: blur(8px); }
.label-one { top: 11%; right: -1%; }
.label-two { bottom: 14%; left: -3%; }
.hero-glow { position: absolute; border-radius: 50%; filter: blur(90px); pointer-events: none; }
.hero-glow-one { top: 15%; right: 12%; width: 260px; height: 260px; background: rgba(255, 43, 188, .13); }
.hero-glow-two { bottom: -5%; left: 25%; width: 280px; height: 180px; background: rgba(94, 67, 255, .12); }
@keyframes spin { to { transform: rotate(360deg); } }

.ticker { position: absolute; right: 0; bottom: 0; left: 0; overflow: hidden; border-block: 1px solid var(--line); background: rgba(255, 255, 255, .025); transform: rotate(-1deg) scale(1.02); }
.ticker-track { display: flex; width: max-content; align-items: center; gap: 2rem; padding-block: .75rem; animation: ticker 35s linear infinite; }
.ticker span { color: rgba(255, 255, 255, .42); font-family: "Arial Narrow", Impact, sans-serif; font-size: 1.05rem; font-weight: 900; letter-spacing: .06em; }
.ticker i { color: var(--pink); font-style: normal; }
@keyframes ticker { to { transform: translateX(-50%); } }

.section-kicker { display: flex; align-items: center; gap: .75rem; margin-bottom: 3rem; color: #8e8598; font-size: .68rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.section-kicker span { display: grid; place-items: center; width: 30px; height: 30px; border: 1px solid var(--line); border-radius: 50%; color: var(--pink); }
.about { border-bottom: 1px solid var(--line); }
.about-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(3rem, 10vw, 9rem); }
.section-heading h2 { max-width: 780px; font-size: clamp(3.25rem, 6.3vw, 6.2rem); }
.about-copy { padding-top: .8rem; color: #b8afc1; font-size: clamp(1rem, 1.35vw, 1.18rem); }
.about-copy p { margin: 0 0 1.5rem; }
.text-link { display: inline-flex; align-items: center; gap: 1rem; margin-top: 1rem; border-bottom: 1px solid rgba(255, 79, 216, .5); color: var(--ink); font-size: .78rem; font-weight: 850; letter-spacing: .05em; text-transform: uppercase; }
.text-link span { color: var(--pink); font-size: 1.15rem; transition: transform .2s; }
.text-link:hover span { transform: translateX(5px); }

.artists { background: linear-gradient(180deg, var(--night) 0%, #0e0916 100%); }
.split-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 3rem; margin-bottom: 3.7rem; }
.split-heading > p { max-width: 390px; margin: 0 0 .5rem; color: var(--muted); }
.artist-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; border: 1px solid var(--line); background: var(--line); }
.artist-card { position: relative; min-height: 390px; overflow: hidden; background: var(--panel); isolation: isolate; }
.artist-card::before { position: absolute; inset: 0; z-index: -2; content: ""; background: var(--artist-image) center / cover no-repeat; filter: saturate(.82); transition: transform .75s var(--ease), filter .75s; }
.artist-card::after { position: absolute; inset: 0; z-index: -1; content: ""; background: linear-gradient(180deg, rgba(7, 4, 11, .08) 5%, rgba(7, 4, 11, .9) 90%); }
.artist-card:hover::before { transform: scale(1.06); filter: saturate(1.1); }
.artist-card-featured { grid-column: span 2; }
.artist-card-copy { position: absolute; right: 0; bottom: 0; left: 0; padding: 1.7rem; }
.artist-number { position: absolute; right: 1.4rem; bottom: 1.5rem; color: rgba(255, 255, 255, .25); font-family: "Arial Narrow", Impact, sans-serif; font-size: 2.5rem; font-weight: 900; }
.artist-card p { margin: 0 0 .25rem; color: var(--pink); font-size: .62rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.artist-card h3 { max-width: 82%; margin: 0; font-family: "Arial Narrow", Impact, sans-serif; font-size: clamp(2rem, 3vw, 3.2rem); line-height: .95; letter-spacing: -.04em; text-transform: uppercase; }
.artist-links { display: flex; gap: 1rem; margin-top: 1.2rem; opacity: 0; transform: translateY(8px); transition: opacity .3s, transform .3s; }
.artist-card:hover .artist-links, .artist-card:focus-within .artist-links { opacity: 1; transform: none; }
.artist-links a, .artist-links button { padding: 0; border: 0; border-bottom: 1px solid rgba(255, 255, 255, .4); background: transparent; font-size: .67rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; cursor: pointer; }

.catalog { border-top: 1px solid var(--line); background: #0a0710; }
.catalog-tools { display: grid; grid-template-columns: 1fr 230px auto; gap: .8rem; align-items: center; margin-bottom: 2rem; }
.search-box { position: relative; display: flex; align-items: center; }
.search-box svg { position: absolute; left: 1rem; width: 18px; fill: none; stroke: var(--muted); stroke-width: 1.6; }
.search-box input, .filter-select select { width: 100%; min-height: 50px; border: 1px solid var(--line); border-radius: 999px; outline: none; color: var(--ink); background: rgba(255, 255, 255, .03); transition: border-color .2s, background .2s; }
.search-box input { padding: .7rem 1rem .7rem 3rem; }
.filter-select select { padding: .7rem 2.4rem .7rem 1rem; appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--pink) 50%), linear-gradient(135deg, var(--pink) 50%, transparent 50%); background-position: calc(100% - 16px) 21px, calc(100% - 11px) 21px; background-repeat: no-repeat; background-size: 5px 5px; }
.filter-select select option { color: var(--ink); background: var(--panel); }
.search-box input:focus, .filter-select select:focus { border-color: var(--pink); background-color: rgba(255, 79, 216, .05); }
.result-count { margin: 0; color: var(--muted); font-size: .72rem; font-weight: 750; white-space: nowrap; }
.release-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 2rem 1.15rem; min-height: 300px; }
.release-card { min-width: 0; animation: card-in .5s var(--ease) both; }
@keyframes card-in { from { opacity: 0; transform: translateY(20px); } }
.release-cover { position: relative; display: block; overflow: hidden; aspect-ratio: 1; border: 1px solid var(--line); border-radius: .45rem; background: var(--panel); }
.release-cover::after { position: absolute; inset: 0; content: ""; background: linear-gradient(180deg, transparent 50%, rgba(8, 4, 12, .58)); opacity: 0; transition: opacity .35s; }
.release-cover img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease), filter .6s; }
.release-card:hover .release-cover img { transform: scale(1.045); filter: brightness(.8); }
.release-card:hover .release-cover::after { opacity: 1; }
.release-platform { position: absolute; top: .7rem; left: .7rem; z-index: 2; padding: .3rem .55rem; border: 1px solid rgba(255, 255, 255, .18); border-radius: 999px; background: rgba(7, 5, 12, .72); font-size: .54rem; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; backdrop-filter: blur(6px); }
.release-arrow { position: absolute; right: .7rem; bottom: .7rem; z-index: 2; display: grid; place-items: center; width: 40px; height: 40px; border-radius: 50%; color: #180817; background: var(--pink); opacity: 0; transform: translateY(8px); transition: opacity .3s, transform .3s; }
.release-card:hover .release-arrow, .release-card:focus-within .release-arrow { opacity: 1; transform: none; }
.release-meta { padding-top: .85rem; }
.release-meta p { margin: 0; color: var(--pink); font-size: .59rem; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.release-meta h3 { margin: .16rem 0 0; overflow: hidden; font-size: .98rem; line-height: 1.25; text-overflow: ellipsis; white-space: nowrap; }
.release-meta > span { display: block; margin-top: .2rem; color: #81778b; font-size: .67rem; }
.catalog-action { display: flex; justify-content: center; padding-top: 3rem; }
.catalog-action .button { min-width: 220px; }
.catalog-empty { grid-column: 1 / -1; padding: 5rem 1rem; text-align: center; color: var(--muted); }
.catalog-loading { grid-column: 1 / -1; display: flex; min-height: 280px; align-items: center; justify-content: center; gap: .45rem; color: var(--muted); }
.catalog-loading span { width: 7px; height: 7px; border-radius: 50%; background: var(--pink); animation: pulse 1s infinite alternate; }
.catalog-loading span:nth-child(2) { animation-delay: .2s; }
.catalog-loading span:nth-child(3) { animation-delay: .4s; }
.catalog-loading p { margin-left: .6rem; font-size: .75rem; }
@keyframes pulse { to { opacity: .2; transform: translateY(-5px); } }

.founder { position: relative; overflow: hidden; background: #110b1a; }
.founder::before { position: absolute; top: -25%; right: -10%; width: 500px; height: 500px; content: ""; border-radius: 50%; background: rgba(145, 92, 255, .09); filter: blur(100px); }
.founder-grid { display: grid; grid-template-columns: .8fr 1.2fr; align-items: center; gap: clamp(3rem, 9vw, 8rem); }
.founder-portrait { position: relative; justify-self: center; }
.founder-portrait::before { position: absolute; inset: -1.2rem; content: ""; border: 1px solid var(--line); border-radius: 50%; }
.founder-portrait img { width: min(100%, 420px); aspect-ratio: 1; border-radius: 50%; object-fit: cover; filter: grayscale(.35) contrast(1.05); }
.founder-portrait > span { position: absolute; right: -1.8rem; bottom: 12%; padding: .55rem .8rem; border: 1px solid var(--line); background: var(--night); color: var(--pink); font-size: .63rem; font-weight: 850; letter-spacing: .15em; transform: rotate(-7deg); }
.founder-copy .section-kicker { margin-bottom: 2rem; }
.founder h2 { font-size: clamp(3.3rem, 6vw, 5.8rem); }
.founder-copy > p:not(.eyebrow) { max-width: 650px; margin-top: 2rem; color: var(--muted); font-size: 1.08rem; }
.book-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .8rem; margin: 2rem 0 1.2rem; }
.book-list article { min-height: 150px; padding: 1.3rem; border: 1px solid var(--line); border-radius: .8rem; background: rgba(255, 255, 255, .025); transition: border-color .25s, transform .25s; }
.book-list article:hover { border-color: rgba(255, 79, 216, .42); transform: translateY(-3px); }
.book-list span { color: var(--pink); font-size: .6rem; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.book-list h3 { margin: 1.2rem 0 0; font-family: Georgia, serif; font-size: 1.25rem; font-weight: 500; line-height: 1.15; }

.listen { position: relative; min-height: 620px; display: grid; place-items: center; overflow: hidden; border-block: 1px solid var(--line); text-align: center; }
.listen-art { position: absolute; inset: -12%; opacity: .28; background: linear-gradient(rgba(9, 6, 17, .5), rgba(9, 6, 17, .9)), url('assets/neon-paint/covers/06-naufrago-de-amor.jpg') center 38% / cover; filter: blur(4px) saturate(1.2); transform: scale(1.06); }
.listen-content { position: relative; z-index: 2; }
.listen .eyebrow { justify-content: center; }
.listen h2 { font-size: clamp(4rem, 8vw, 7.8rem); }
.listen .hero-actions { justify-content: center; }

.site-footer { padding-block: 5rem 1.5rem; background: #07050b; }
.footer-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 5rem; }
.footer-brand { margin-bottom: 1.2rem; }
.footer-brand img { width: 56px; }
.footer-grid > div:first-child > p { max-width: 330px; color: var(--muted); font-size: .82rem; }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.footer-links > div { display: flex; flex-direction: column; gap: .55rem; }
.footer-links h2 { margin: 0 0 .6rem; color: var(--pink); font-size: .62rem; letter-spacing: .13em; text-transform: uppercase; }
.footer-links a { width: fit-content; color: #b7aebe; font-size: .76rem; transition: color .2s; }
.footer-links a:hover { color: var(--ink); }
.footer-bottom { display: flex; justify-content: space-between; margin-top: 4rem; padding-top: 1.2rem; border-top: 1px solid var(--line); color: #706878; font-size: .64rem; font-weight: 750; letter-spacing: .06em; text-transform: uppercase; }

.reveal { opacity: 0; transform: translateY(25px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1000px) {
  .site-nav { gap: 1.15rem; }
  .hero-content { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .hero h1 { font-size: clamp(3.6rem, 7.8vw, 5.8rem); }
  .release-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .artist-grid { grid-template-columns: repeat(2, 1fr); }
  .artist-card-featured { grid-column: span 1; }
}

@media (max-width: 760px) {
  :root { --wrap: min(100% - 30px, 620px); }
  html { scroll-padding-top: 78px; }
  .section { padding-block: 5.5rem; }
  .site-header { height: 70px; padding-inline: 15px; background: rgba(9, 6, 17, .76); backdrop-filter: blur(14px); }
  .brand span { font-size: .92rem; }
  .menu-toggle { display: block; }
  .menu-toggle[aria-expanded="true"] > span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] > span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] > span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
  .site-nav { position: fixed; inset: 70px 0 auto; display: grid; gap: 0; padding: 1rem 15px 1.5rem; border-bottom: 1px solid var(--line); background: rgba(9, 6, 17, .96); visibility: hidden; opacity: 0; transform: translateY(-8px); transition: opacity .2s, transform .2s, visibility .2s; }
  .site-nav.is-open { visibility: visible; opacity: 1; transform: none; }
  .site-nav a { padding: .8rem .25rem; }
  .nav-cta { margin-top: .5rem; text-align: center; }
  .hero { min-height: auto; padding-top: 90px; }
  .hero-content { grid-template-columns: 1fr; gap: 1.5rem; padding-block: 3rem 7rem; }
  .hero-copy { order: 1; }
  .hero-art { order: 0; width: min(85vw, 400px); justify-self: center; }
  .hero h1 { font-size: clamp(3.25rem, 16vw, 5.5rem); }
  .hero-lede { font-size: 1rem; }
  .hero-stats { gap: 1.4rem; justify-content: space-between; }
  .hero-stats dt { font-size: 1.3rem; }
  .hero-stats dd { max-width: 90px; font-size: .58rem; }
  .floating-label { display: none; }
  .about-grid, .founder-grid, .footer-grid { grid-template-columns: 1fr; gap: 3rem; }
  .split-heading { display: block; }
  .split-heading > p { margin-top: 1.5rem; }
  .section-heading h2, .founder h2 { font-size: clamp(3.1rem, 14vw, 5rem); }
  .artist-grid { grid-template-columns: 1fr; }
  .artist-card { min-height: 360px; }
  .artist-links { opacity: 1; transform: none; }
  .catalog-tools { grid-template-columns: 1fr; }
  .result-count { padding-left: .5rem; }
  .release-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.5rem .8rem; }
  .release-meta h3 { font-size: .85rem; }
  .founder-portrait { width: min(80vw, 380px); }
  .book-list { grid-template-columns: 1fr 1fr; }
  .listen { min-height: 520px; }
  .listen h2 { font-size: clamp(3.4rem, 17vw, 6rem); }
  .footer-links { gap: 1rem; }
}

@media (max-width: 440px) {
  .hero-actions { flex-direction: column; align-items: stretch; }
  .release-grid { grid-template-columns: 1fr 1fr; }
  .release-platform { top: .45rem; left: .45rem; }
  .book-list { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: 1fr 1fr; row-gap: 2.5rem; }
  .footer-bottom { display: block; }
}

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