/* ================================================================
   OCTOQUAN RECORDS — SHARED STYLESHEET
   ================================================================ */

:root {
  --bg: #000000;
  --fg: #FFFFFF;
  --muted: rgba(255,255,255,.55);
  --stroke: rgba(255,255,255,.12);
  --radius: 999px;
  --mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  --sans: "Space Grotesk", system-ui, sans-serif;
  --display: "Unbounded", var(--sans);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body { height: 100%; scroll-behavior: smooth; }
body { background: var(--bg); color: var(--fg); font-family: var(--sans); letter-spacing: .3px; overflow-x: hidden; }
a { color: inherit; text-decoration: none; }

/* ── NAV ── */
header { position: sticky; top: 0; z-index: 20; background: rgba(0,0,0,.92); border-bottom: 1px solid var(--stroke); backdrop-filter: blur(10px); }
.nav { max-width: 1140px; margin: 0 auto; padding: 16px 20px; display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.brand { display: flex; align-items: center; gap: 12px; white-space: nowrap; transition: filter .3s; }
.brand:hover { filter: drop-shadow(0 0 8px rgba(255,255,255,.5)); }
.brand:hover .logo { box-shadow: 0 0 12px rgba(255,255,255,.5); }
.brand:hover .name, .brand:hover .tag { text-shadow: 0 0 12px rgba(255,255,255,.5); }
.brand .logo { width: 35px; height: 35px; border-radius: 999px; display: block; transition: box-shadow .3s; }
.brand .namewrap { display: flex; align-items: baseline; gap: 10px; }
.brand .name { font-family: var(--display); font-weight: 600; letter-spacing: .8px; font-size: 25px; }
.brand .tag { font-family: var(--mono); font-size: 18px; color: var(--muted); }
.navlinks { display: flex; gap: 10px; flex-wrap: wrap; justify-content: flex-end; }
.pill { border: 1px solid var(--stroke); background: #000; color: #fff; padding: 10px 14px; border-radius: var(--radius); font-size: 13px; font-weight: 600; letter-spacing: .2px; transition: background .16s, color .16s, border-color .16s, transform .16s; cursor: pointer; display: inline-block; }
.pill:hover, .pill.active { background: #fff; color: #000; border-color: rgba(255,255,255,.95); transform: translateY(-1px); }

/* ── MARQUEE ── */
.marquee-wrap { border-top: 1px solid var(--stroke); border-bottom: 1px solid var(--stroke); overflow: hidden; white-space: nowrap; padding: 14px 0; }
.marquee-track { display: inline-flex; animation: marquee 40s linear infinite; }
.marquee-track span { font-family: var(--mono); font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--muted); padding: 0 32px; }
.marquee-track span.dot::before { content: '·'; margin-right: 32px; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── SECTION COMMON ── */
section { padding: 100px 20px; }
.section-inner { max-width: 1140px; margin: 0 auto; }
.section-label { font-family: var(--mono); font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--muted); margin-bottom: 48px; display: flex; align-items: center; gap: 16px; }
.section-label::after { content: ''; flex: 1; height: 1px; background: var(--stroke); }

/* ── BUTTONS ── */
.btn-primary { background: #fff; color: #000; padding: 14px 28px; border-radius: var(--radius); font-size: 14px; font-weight: 600; letter-spacing: .4px; transition: opacity .2s, transform .2s; border: 1px solid #fff; display: inline-block; }
.btn-primary:hover { opacity: .85; transform: translateY(-2px); }
.btn-secondary { background: transparent; color: #fff; padding: 14px 28px; border-radius: var(--radius); font-size: 14px; font-weight: 600; letter-spacing: .4px; border: 1px solid var(--stroke); transition: background .2s, border-color .2s, transform .2s; display: inline-block; }
.btn-secondary:hover { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.4); transform: translateY(-2px); }
.stream-btn { border: 1px solid var(--stroke); background: transparent; color: var(--fg); padding: 9px 16px; border-radius: var(--radius); font-size: 12px; font-weight: 600; letter-spacing: .3px; transition: background .15s, border-color .15s, transform .15s; font-family: var(--sans); display: inline-block; }
.stream-btn:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.4); transform: translateY(-1px); }
.stream-links { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; }

/* ── HERO ── */
.hero { min-height: 92vh; display: flex; flex-direction: column; justify-content: center; align-items: flex-start; padding: 80px 60px; max-width: 1140px; margin: 0 auto; position: relative; }
.hero-eyebrow { font-family: var(--mono); font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--muted); margin-bottom: 28px; opacity: 0; animation: fadeUp .8s ease forwards .1s; }
.hero-title { font-family: var(--display); font-size: clamp(52px, 10vw, 120px); font-weight: 900; line-height: .95; letter-spacing: -2px; margin-bottom: 32px; opacity: 0; animation: fadeUp .9s ease forwards .25s; }
.hero-title em { font-style: normal; -webkit-text-stroke: 1px rgba(255,255,255,.9); color: transparent; }
.hero-sub { max-width: 520px; font-size: 16px; line-height: 1.75; color: var(--muted); margin-bottom: 44px; opacity: 0; animation: fadeUp .9s ease forwards .4s; }
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; opacity: 0; animation: fadeUp .9s ease forwards .55s; }

/* Noise overlay */
.hero::before { content: ''; position: fixed; inset: 0; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E"); opacity: .025; pointer-events: none; z-index: 0; }

/* ── FEATURED RELEASE ── */
.featured { background: #000; border-top: 1px solid var(--stroke); }
.release-card { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.release-art { aspect-ratio: 1; background: #111; border-radius: 4px; overflow: hidden; position: relative; }
.release-card .release-art { width: 100%; height: auto; aspect-ratio: 1; min-height: unset; }
.release-art img { width: 100%; height: 100%; object-fit: cover; display: block; }
.release-art-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, #111 0%, #1a1a1a 50%, #0a0a0a 100%); font-family: var(--display); font-size: 80px; color: rgba(255,255,255,.06); letter-spacing: -4px; font-weight: 900; }
.release-info { display: flex; flex-direction: column; gap: 20px; }
.release-artist { font-family: var(--mono); font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); }
.release-title { font-family: var(--display); font-size: clamp(32px, 4vw, 52px); font-weight: 600; line-height: 1.05; letter-spacing: -1px; }
.release-meta { font-size: 13px; color: var(--muted); display: flex; gap: 20px; font-family: var(--mono); flex-wrap: wrap; }
.release-desc { font-size: 15px; line-height: 1.7; color: var(--muted); max-width: 440px; }

/* ── ARTIST GRID ── */
.artists-section { border-top: 1px solid var(--stroke); }
.artists-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); border: 1px solid var(--stroke); }
.artist-card { padding: 36px 32px; border-right: 1px solid var(--stroke); border-bottom: 1px solid var(--stroke); transition: background .2s; position: relative; overflow: hidden; display: block; }
.artist-card:hover { background: rgba(255,255,255,.04); }
.artist-card-num { font-family: var(--mono); font-size: 11px; color: rgba(255,255,255,.2); margin-bottom: 20px; }
.artist-card-img { width: 100%; aspect-ratio: 1; object-fit: cover; object-position: center; border-radius: 8px; margin-bottom: 20px; display: block; }
.artist-card-img-placeholder { width: 100%; aspect-ratio: 1; background: #111; border-radius: 8px; margin-bottom: 20px; display: flex; align-items: center; justify-content: center; font-family: var(--display); font-size: 48px; color: rgba(255,255,255,.06); font-weight: 900; }
.artist-card-name { font-family: var(--display); font-size: 22px; font-weight: 600; margin-bottom: 10px; letter-spacing: -.3px; }
.artist-card-genres { font-family: var(--mono); font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted); line-height: 1.8; }
.artist-card-arrow { position: absolute; bottom: 32px; right: 32px; font-size: 18px; color: rgba(255,255,255,.2); transition: color .2s, transform .2s; }
.artist-card:hover .artist-card-arrow { color: #fff; transform: translate(3px,-3px); }
.artist-card.dimmed { opacity: .25; pointer-events: none; }

/* ── ABOUT STRIP (homepage) ── */
.about-strip { border-top: 1px solid var(--stroke); background: #000; }
.about-inner { max-width: 1140px; margin: 0 auto; display: grid; grid-template-columns: 1fr 2fr; gap: 80px; align-items: start; }
.about-heading { font-family: var(--display); font-size: clamp(36px, 5vw, 64px); font-weight: 900; letter-spacing: -2px; line-height: .95; }
.about-body { display: flex; flex-direction: column; gap: 24px; }
.about-body p { font-size: 16px; line-height: 1.8; color: var(--muted); }
.about-body p strong { color: #fff; font-weight: 500; }
.about-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; border: 1px solid var(--stroke); margin-top: 20px; }
.stat { padding: 28px 24px; border-right: 1px solid var(--stroke); }
.stat-num { font-family: var(--display); font-size: 36px; font-weight: 600; letter-spacing: -1px; margin-bottom: 6px; }
.stat-label { font-family: var(--mono); font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); }

/* ── DEMO CTA ── */
.demo-cta { border-top: 1px solid var(--stroke); text-align: center; padding: 120px 20px; }
.demo-cta-title { font-family: var(--display); font-size: clamp(36px, 6vw, 80px); font-weight: 900; letter-spacing: -2px; line-height: 1; margin-bottom: 20px; }
.demo-cta-sub { font-size: 16px; color: var(--muted); margin-bottom: 40px; max-width: 480px; margin-left: auto; margin-right: auto; line-height: 1.7; }

/* ── ARTIST PAGE ── */
.artist-hero { max-width: 1140px; margin: 0 auto; padding: 80px 20px 60px; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.artist-photo { width: 100%; aspect-ratio: 3/4; object-fit: contain; object-position: center top; border-radius: 4px; display: block; }
.artist-info { display: flex; flex-direction: column; gap: 24px; padding-top: 20px; }
.artist-number { font-family: var(--mono); font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--muted); }
.artist-name { font-family: var(--display); font-size: clamp(48px, 7vw, 88px); font-weight: 900; letter-spacing: -3px; line-height: .9; opacity: 0; animation: fadeUp .9s ease forwards .1s; }
.genre-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.genre-tag { font-family: var(--mono); font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); border: 1px solid var(--stroke); padding: 6px 12px; border-radius: var(--radius); }
.artist-bio { font-size: 16px; line-height: 1.8; color: var(--muted); }
.artist-bio strong { color: #fff; font-weight: 500; }
.riyl-label { font-family: var(--mono); font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,.3); margin-bottom: 8px; }
.riyl-list { font-family: var(--mono); font-size: 12px; color: var(--muted); line-height: 1.8; }
.social-links { display: flex; flex-wrap: wrap; gap: 8px; }

/* ── RELEASES ── */
.releases-section { border-top: 1px solid var(--stroke); padding: 80px 20px; }
.releases-inner { max-width: 1140px; margin: 0 auto; }
.release-row { display: grid; grid-template-columns: auto 1fr; gap: 60px; align-items: start; padding: 60px 0; border-bottom: 1px solid var(--stroke); }
.release-row:last-child { border-bottom: none; padding-bottom: 0; }
.release-row--upcoming { opacity: .85; }
.release-row .release-art { width: 280px; height: 280px; object-fit: cover; border-radius: 4px; display: block; }
.release-title-link { font-family: var(--display); font-size: clamp(28px, 4vw, 48px); font-weight: 600; letter-spacing: -1px; line-height: 1; transition: opacity .2s; display: block; }
.release-title-link:hover { opacity: .7; }
.release-desc { font-size: 15px; line-height: 1.7; color: var(--muted); max-width: 480px; }

/* ── RELEASE PAGE ── */
.release-hero { max-width: 1140px; margin: 0 auto; padding: 80px 20px 60px; display: grid; grid-template-columns: auto 1fr; gap: 80px; align-items: start; }
.release-hero .release-art { width: 360px; height: 360px; top: 100px; }
.breadcrumb { font-family: var(--mono); font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.breadcrumb a:hover { color: #fff; }
.release-title { font-family: var(--display); font-size: clamp(36px, 6vw, 72px); font-weight: 900; letter-spacing: -2px; line-height: .95; opacity: 0; animation: fadeUp .9s ease forwards .1s; }

/* ── TRACKLIST ── */
.tracklist-section { border-top: 1px solid var(--stroke); padding: 80px 20px; }
.tracklist-inner { max-width: 1140px; margin: 0 auto; }
.tracklist { list-style: none; border: 1px solid var(--stroke); }
.track { display: flex; align-items: center; gap: 24px; padding: 18px 24px; border-bottom: 1px solid var(--stroke); transition: background .15s; }
.track:last-child { border-bottom: none; }
.track:hover { background: rgba(255,255,255,.04); }
.track-num { font-family: var(--mono); font-size: 11px; color: rgba(255,255,255,.25); width: 28px; text-align: right; flex-shrink: 0; }
.track-name { font-size: 15px; font-weight: 500; }

/* ── FOOTER ── */
footer { border-top: 1px solid var(--stroke); padding: 40px 20px 32px; }
.footer-inner { max-width: 1140px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.footer-copy { font-family: var(--mono); font-size: 12px; color: var(--muted); letter-spacing: 1px; }
.footer-links { display: flex; gap: 20px; }
.footer-links a { font-family: var(--mono); font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); transition: color .15s; }
.footer-links a:hover { color: #fff; }

/* ── LOADING/ERROR STATES ── */
.loading, .error { font-family: var(--mono); font-size: 12px; color: var(--muted); padding: 40px; letter-spacing: 2px; text-transform: uppercase; }

/* ── UPCOMING / COUNTDOWN ── */
.upcoming-badge { font-family: var(--mono); font-size: 10px; letter-spacing: 2px; text-transform: uppercase; border: 1px solid rgba(255,255,255,.4); padding: 3px 10px; border-radius: var(--radius); color: var(--fg); }
.release-date-line { font-family: var(--mono); font-size: 12px; letter-spacing: 1px; color: var(--muted); }
.countdown-timer { margin: 4px 0 8px; }
.countdown-units { display: flex; align-items: center; gap: 6px; }
.countdown-label { font-family: var(--mono); font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); display: block; margin-bottom: 10px; }
.releases-hero-title { letter-spacing: -1px; }
.countdown-unit { display: flex; flex-direction: column; align-items: center; gap: 2px; }
.countdown-num { font-family: var(--display); font-size: 28px; font-weight: 600; letter-spacing: -1px; line-height: 1; }
.release-tile .countdown-num { font-size: 20px; }
.release-tile .countdown-sep { font-size: 16px; }
.countdown-unit-label { font-family: var(--mono); font-size: 9px; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); }
.countdown-sep { font-family: var(--display); font-size: 22px; color: var(--muted); padding-bottom: 12px; }

/* ── ANIMATIONS ── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }

/* ── ACCESSIBILITY ── */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* ── RELEASES PAGE ── */
.releases-hero { max-width: 1140px; margin: 0 auto; padding: 80px 20px 60px; border-bottom: 1px solid var(--stroke); }
.releases-hero-title { font-family: var(--display); font-size: clamp(28px, 5vw, 60px); font-weight: 900; line-height: .9; letter-spacing: -3px; opacity: 0; animation: fadeUp .9s ease forwards .1s; }
.releases-hero-title em { font-style: normal; -webkit-text-stroke: 1px rgba(255,255,255,.9); color: transparent; }
.releases-hero-meta { font-family: var(--mono); font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--muted); margin-top: 24px; opacity: 0; animation: fadeUp .9s ease forwards .25s; }
.releases-grid-section { padding: 80px 20px; border-bottom: 1px solid var(--stroke); }
.releases-grid-section:last-of-type { border-bottom: none; }
.releases-grid-inner { max-width: 1140px; margin: 0 auto; }
.releases-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1px; border: 1px solid var(--stroke); }
.release-tile { padding: 32px; padding-bottom: 64px; border-right: 1px solid var(--stroke); border-bottom: 1px solid var(--stroke); display: flex; flex-direction: column; gap: 16px; transition: background .2s; position: relative; }
.release-tile:hover { background: rgba(255,255,255,.04); }
.release-tile-art { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 4px; display: block; }
.release-tile-art-placeholder { width: 100%; aspect-ratio: 1; background: linear-gradient(135deg, #111 0%, #1a1a1a 50%, #0a0a0a 100%); border-radius: 4px; display: flex; align-items: center; justify-content: center; font-family: var(--display); font-size: 48px; color: rgba(255,255,255,.06); font-weight: 900; }
.release-tile-badges { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.release-tile-artist { font-family: var(--mono); font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); }
.release-tile-title { font-family: var(--display); font-size: 20px; font-weight: 600; letter-spacing: -.4px; line-height: 1.1; transition: opacity .2s; }
.release-tile:hover .release-tile-title { opacity: .7; }
.release-tile-meta { font-family: var(--mono); font-size: 11px; letter-spacing: 1px; color: var(--muted); display: flex; gap: 10px; }
.release-tile-arrow { position: absolute; bottom: 28px; right: 28px; font-size: 16px; color: rgba(255,255,255,.2); transition: color .2s, transform .2s; }
.release-tile:hover .release-tile-arrow { color: #fff; transform: translate(3px, -3px); }
.releases-empty { font-family: var(--mono); font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); padding: 60px 0; }

/* ── SHOWS PAGE ── */
.shows-hero { max-width: 1140px; margin: 0 auto; padding: 80px 20px 60px; border-bottom: 1px solid var(--stroke); }
.shows-hero-title { font-family: var(--display); font-size: clamp(28px, 5vw, 60px); font-weight: 900; line-height: .9; letter-spacing: -3px; opacity: 0; animation: fadeUp .9s ease forwards .1s; }
.shows-hero-title em { font-style: normal; -webkit-text-stroke: 1px rgba(255,255,255,.9); color: transparent; }
.shows-hero-meta { font-family: var(--mono); font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--muted); margin-top: 24px; opacity: 0; animation: fadeUp .9s ease forwards .25s; }
.shows-section { padding: 80px 20px; }
.shows-inner { max-width: 1140px; margin: 0 auto; }
.show-list { border: 1px solid var(--stroke); }
.show-row { display: grid; grid-template-columns: 180px 1fr auto; gap: 40px; padding: 32px 40px; border-bottom: 1px solid var(--stroke); align-items: center; transition: background .2s; }
.show-row:last-child { border-bottom: none; }
.show-row:hover { background: rgba(255,255,255,.03); }
.show-date { display: flex; flex-direction: column; gap: 4px; }
.show-date-main { font-family: var(--display); font-size: 18px; font-weight: 600; letter-spacing: -.3px; }
.show-date-day { font-family: var(--mono); font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); }
.show-info { display: flex; flex-direction: column; gap: 8px; }
.show-venue { font-family: var(--display); font-size: 16px; font-weight: 600; letter-spacing: -.2px; }
.show-location { font-family: var(--mono); font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); }
.show-artists { font-family: var(--mono); font-size: 11px; letter-spacing: 1px; color: var(--display); }
.show-desc { font-size: 13px; line-height: 1.6; color: var(--muted); max-width: 480px; }
.show-actions { display: flex; flex-direction: column; gap: 8px; align-items: flex-end; }
.shows-empty { font-family: var(--mono); font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); padding: 80px 40px; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .nav { flex-wrap: wrap; padding: 12px 16px; gap: 12px; }
  .navlinks { display: flex; flex-wrap: wrap; justify-content: flex-start; gap: 8px; width: 100%; }
  .pill { padding: 8px 12px; font-size: 12px; }
  .hero { padding: 60px 24px; min-height: 80vh; }
  .release-card { grid-template-columns: 1fr; gap: 40px; }
  .about-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .artist-hero { grid-template-columns: 1fr; gap: 40px; }
  .release-row { grid-template-columns: 1fr; gap: 32px; }
  .release-art { width: 100% !important; height: auto !important; aspect-ratio: 1; position: static !important; }
  .release-hero { grid-template-columns: 1fr; gap: 40px; }
  .releases-hero { padding: 32px 20px 24px; }
  .releases-hero-title { letter-spacing: 0px; }
  .about-hero-heading { letter-spacing: 0px; }
  .shows-hero-title { letter-spacing: 0px; }
  .releases-grid { grid-template-columns: 1fr; }
  .release-tile { padding: 24px 20px 56px; }
  .countdown-num { font-size: 20px; }
  .countdown-sep { font-size: 16px; }
  .countdown-units { gap: 4px; }
  .countdown-timer { overflow-x: auto; }
  .show-row { grid-template-columns: 1fr; gap: 16px; padding: 24px 20px; }
  .show-actions { align-items: flex-start; }
}