/*
Theme Name: Bad Onion Records
Theme URI: https://badonionrecords.com
Author: Bad Onion Records
Description: Underground electronic music label — vinyl, digital, studio tools, members lab.
Version: 3.6
Requires at least: 6.4
Tested up to: 6.7
Requires PHP: 8.1
License: Proprietary
Text Domain: bad-onion
*/

/* ============================================================
   BAD ONION RECORDS · v2 — cinematic / boutique audio
   ============================================================ */

:root {
  --bo2-yellow:     #ffce00;
  --bo2-yellow-dim: #c9a002;
  --bo2-amber:      #806300;
  --bo2-black:      #000000;
  --bo2-coal:       #060606;
  --bo2-pitch:      #0b0b0b;
  --bo2-ash:        #141414;
  --bo2-iron:       #1c1c1c;
  --bo2-steel:      #2a2a2a;
  --bo2-fog:        #6c6a62;
  --bo2-paper:      #ece5d2;
  --bo2-paper-dim:  #cfc6ad;
  --bo2-bone:       #d6cdb3;
  --bo2-oxblood:    #7a1f18;
  --bo2-flash:      #d23522;
  --bo2-cyan-dim:   #1c8a85;
  --bo2-acid-dim:   #94a316;

  --font2-display: "Bungee", "Archivo Black", sans-serif;
  --font2-tall:    "Anton", "Oswald", "Archivo Narrow", sans-serif;
  --font2-body:    "Inter Tight", "Inter", system-ui, sans-serif;
  --font2-mono:    "JetBrains Mono", "IBM Plex Mono", ui-monospace, monospace;

  --grain-svg: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='320' height='320'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' seed='7' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1   0 0 0 0 0.85   0 0 0 0 0.5   0 0 0 0.28 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  --paper-svg: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='360' height='360'><filter id='p'><feTurbulence type='fractalNoise' baseFrequency='0.55' numOctaves='2' seed='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.12   0 0 0 0 0.08   0 0 0 0 0   0 0 0 0.15 0'/></filter><rect width='100%' height='100%' filter='url(%23p)'/></svg>");
}

/* ---------- root container ---------- */
.bo2 {
  background: var(--bo2-coal);
  color: var(--bo2-paper);
  font-family: var(--font2-body);
  font-size: 15px;
  line-height: 1.55;
  letter-spacing: 0.005em;
  position: relative;
  min-height: 100vh;
}
.bo2 *, .bo2 *::before, .bo2 *::after { box-sizing: border-box; }
.bo2 h1, .bo2 h2, .bo2 h3, .bo2 h4, .bo2 h5 { margin: 0; line-height: 1; font-weight: 400; }
.bo2 p { margin: 0; }
.bo2 a { color: inherit; text-decoration: none; }
.bo2 button { font: inherit; cursor: pointer; background: none; border: none; color: inherit; padding: 0; }
.bo2 img { display: block; max-width: 100%; }
.bo2 ul, .bo2 ol { margin: 0; padding: 0; list-style: none; }

/* film grain overlay — fixed so it tiles over scroll */
.bo2::before {
  content: "";
  position: fixed; inset: 0;
  background-image: var(--grain-svg);
  background-size: 320px 320px;
  opacity: 0.10;
  mix-blend-mode: screen;
  pointer-events: none;
  z-index: 9000;
}
/* scanline overlay */
.bo2::after {
  content: "";
  position: fixed; inset: 0;
  background-image: repeating-linear-gradient(0deg, rgba(255,255,255,0.008) 0 1px, transparent 1px 3px);
  pointer-events: none;
  z-index: 8999;
}
/* ensure all direct children stack above the grain */
.bo2 > * { position: relative; z-index: 1; }

/* ============================================================
   TYPE PRIMITIVES
   ============================================================ */
.t-display { font-family: var(--font2-display); text-transform: uppercase; line-height: 0.92; letter-spacing: 0.005em; }
.t-tall     { font-family: var(--font2-tall); text-transform: uppercase; line-height: 0.85; letter-spacing: -0.005em; font-weight: 400; }
.t-mono     { font-family: var(--font2-mono); text-transform: uppercase; letter-spacing: 0.14em; }
.t-body     { font-family: var(--font2-body); }

.t-eyebrow {
  font-family: var(--font2-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bo2-yellow-dim);
}
.t-eyebrow--dim   { color: var(--bo2-fog); }
.t-eyebrow--paper { color: var(--bo2-amber); }

.t-rule { display: inline-flex; align-items: center; gap: 14px; }
.t-rule::before { content: ""; width: 36px; height: 1px; background: currentColor; }

.t-cat {
  font-family: var(--font2-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bo2-fog);
}

/* ============================================================
   LAYOUT
   ============================================================ */
.bo2-section     { padding: 140px 64px; position: relative; }
.bo2-section--lg { padding: 180px 64px; }
.bo2-section--sm { padding: 88px 64px; }
.bo2-section--paper {
  background: var(--bo2-paper);
  color: var(--bo2-ash);
  position: relative;
}
.bo2-section--paper::before {
  content: "";
  position: absolute; inset: 0;
  background-image: var(--paper-svg);
  background-size: 360px 360px;
  opacity: 0.5;
  mix-blend-mode: multiply;
  pointer-events: none;
}
.bo2-section--paper > * { position: relative; z-index: 1; }
.bo2-section--ink { background: var(--bo2-pitch); }

.bo2-rule        { height: 1px; background: var(--bo2-steel); width: 100%; }
.bo2-rule--yel   { background: var(--bo2-yellow-dim); }

/* ============================================================
   HEADER
   ============================================================ */
/* Shared marquee scroll animation (used by .bo2-marquee). */
@keyframes bo2-ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.bo2-header {
  background: var(--bo2-coal);
  border-bottom: 1px solid var(--bo2-steel);
  padding: 22px 48px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  position: sticky;
  top: 28px;
  z-index: 400;
}
.bo2-header__logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font2-display);
  color: var(--bo2-paper);
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.bo2-header__logo img { height: 30px; width: auto; }
.bo2-header__mark { color: var(--bo2-yellow); }
.bo2-header__nav {
  display: flex;
  gap: 38px;
  font-family: var(--font2-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.bo2-header__nav a { color: var(--bo2-paper); position: relative; padding: 6px 0; opacity: 0.78; transition: opacity .15s, color .15s; }
.bo2-header__nav a:hover { opacity: 1; color: var(--bo2-yellow); }
.bo2-header__nav a.is-active { color: var(--bo2-yellow); opacity: 1; }
.bo2-header__nav a.is-active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -22px;
  height: 1px;
  background: var(--bo2-yellow);
}
.bo2-header__util {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: flex-end;
  font-family: var(--font2-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bo2-fog);
}
.bo2-header__util a:hover { color: var(--bo2-yellow); }
.bo2-header__cart {
  color: var(--bo2-paper);
  border: 1px solid var(--bo2-steel);
  padding: 7px 11px;
  display: inline-flex;
  gap: 8px;
  align-items: center;
}
.bo2-header__cart b { color: var(--bo2-yellow); font-weight: 600; }

/* ============================================================
   BUTTONS
   ============================================================ */
.bo2-btn {
  --btn-fg: var(--bo2-paper);
  --btn-bg: transparent;
  --btn-br: var(--bo2-paper);
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font2-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 14px 20px 13px;
  background: var(--btn-bg);
  color: var(--btn-fg);
  border: 1px solid var(--btn-br);
  position: relative;
  transition: background .15s, color .15s, border-color .15s;
  cursor: pointer;
}
.bo2 .bo2-btn { color: var(--btn-fg); }
.bo2-btn:hover { background: var(--btn-fg); color: var(--btn-bg, var(--bo2-black)); }
.bo2-btn--solid {
  --btn-bg: var(--bo2-yellow);
  --btn-fg: var(--bo2-black);
  --btn-br: var(--bo2-yellow);
}
.bo2-btn--solid:hover { background: var(--bo2-paper); border-color: var(--bo2-paper); color: var(--bo2-black); }
.bo2-btn--ink {
  --btn-bg: var(--bo2-ash);
  --btn-fg: var(--bo2-paper);
  --btn-br: var(--bo2-steel);
}
.bo2-btn--ghost-yel {
  --btn-fg: var(--bo2-yellow);
  --btn-br: var(--bo2-yellow);
}
.bo2-btn--ghost-yel:hover { background: var(--bo2-yellow); color: var(--bo2-black); }
.bo2-btn--lg  { font-size: 12px; padding: 18px 26px 17px; }
.bo2-btn--sm  { font-size: 10px; padding: 9px 12px 8px; }
.bo2-btn--block { display: flex; width: 100%; justify-content: space-between; }
.bo2-btn .a { font-family: var(--font2-tall); font-size: 16px; letter-spacing: 0; line-height: 1; transform: translateY(-1px); }

/* ============================================================
   PILLS / TAGS
   ============================================================ */
.bo2-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font2-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 6px 10px 5px;
  border: 1px solid var(--bo2-steel);
  color: var(--bo2-fog);
}
.bo2-pill--yel   { border-color: var(--bo2-yellow-dim); color: var(--bo2-yellow); }
.bo2-pill--flash { border-color: var(--bo2-flash); color: var(--bo2-flash); }
.bo2-pill--ink   { background: var(--bo2-ash); border-color: var(--bo2-steel); }
.bo2-pill__dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 6px currentColor;
}
.bo2-pill__dot--pulse { animation: bo2-pulse 1.6s infinite; }
@keyframes bo2-pulse { 50% { opacity: 0.3; } }

.bo2-sticker {
  display: inline-block;
  font-family: var(--font2-mono);
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 4px 8px 3px;
  background: var(--bo2-yellow);
  color: var(--bo2-black);
  transform: rotate(-2deg);
  box-shadow: 0 1px 0 rgba(0,0,0,0.4);
}
.bo2-sticker--flash { background: var(--bo2-flash); color: var(--bo2-paper); }
.bo2-sticker--paper { background: var(--bo2-paper); color: var(--bo2-black); }

/* ============================================================
   HERO
   ============================================================ */
.bo2-hero {
  position: relative;
  background: radial-gradient(ellipse at 50% 38%, #1a1500 0%, #050400 32%, #000 70%);
  padding: 120px 64px 100px;
  overflow: hidden;
  min-height: 980px;
  display: flex;
  flex-direction: column;
}
.bo2-hero__vignette {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 45%, transparent 0%, transparent 38%, rgba(0,0,0,0.6) 70%, rgba(0,0,0,0.95) 100%);
  pointer-events: none;
}
.bo2-hero__scan {
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(0deg, rgba(255,206,0,0.025) 0 2px, transparent 2px 4px);
  mix-blend-mode: screen;
  pointer-events: none;
  animation: bo2-scan 8s linear infinite;
}
@keyframes bo2-scan {
  from { background-position: 0 0; }
  to   { background-position: 0 200px; }
}

.bo2-hero__crosshair {
  position: absolute;
  width: 18px; height: 18px;
  pointer-events: none;
}
.bo2-hero__crosshair::before,
.bo2-hero__crosshair::after {
  content: "";
  position: absolute;
  background: var(--bo2-yellow-dim);
}
.bo2-hero__crosshair::before { left: 50%; top: 0; bottom: 0; width: 1px; transform: translateX(-50%); }
.bo2-hero__crosshair::after  { top: 50%; left: 0; right: 0; height: 1px; transform: translateY(-50%); }

.bo2-hero__meta {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
  margin-bottom: 96px;
  font-family: var(--font2-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bo2-fog);
}
.bo2-hero__meta--right { justify-self: end; }

.bo2-hero__logo-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  margin-bottom: 56px;
}
.bo2-hero__logo {
  width: min(720px, 62%);
  filter: drop-shadow(0 0 60px rgba(255,206,0,0.18)) drop-shadow(0 0 12px rgba(255,206,0,0.35));
  animation: bo2-flicker 7s infinite;
}
@keyframes bo2-flicker {
  0%, 92%, 100% { opacity: 1; }
  93%, 95%       { opacity: 0.86; }
  94%            { opacity: 1; }
}

.bo2-hero__words {
  text-align: center;
  margin: 0 auto;
  max-width: 1040px;
  flex: 1;
}
.bo2-hero__supra {
  font-family: var(--font2-mono);
  font-size: 11px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--bo2-yellow);
  margin-bottom: 22px;
}
.bo2-hero__head {
  font-family: var(--font2-tall);
  font-size: 92px;
  line-height: 0.86;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--bo2-paper);
}
.bo2-hero__head em   { font-style: normal; color: var(--bo2-yellow); }
.bo2-hero__head .stroke {
  color: transparent;
  -webkit-text-stroke: 1px var(--bo2-paper);
}
.bo2-hero .bo2-hero__copy {
  display: inline-block;
  margin-top: 96px;
  max-width: 620px;
  font-size: 16px;
  line-height: 1.6;
  text-align: center;
  color: var(--bo2-paper-dim);
}
.bo2-hero__actions {
  margin-top: 44px;
  display: inline-flex;
  gap: 14px;
}

.bo2-hero__foot {
  position: absolute;
  left: 64px; right: 64px; bottom: 36px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  font-family: var(--font2-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bo2-fog);
}
.bo2-hero__foot--right { justify-self: end; }
.bo2-hero__scroll { display: inline-flex; align-items: center; gap: 12px; color: var(--bo2-yellow); }
.bo2-hero__scroll-line {
  width: 1px; height: 36px;
  background: var(--bo2-yellow-dim);
  animation: bo2-line 2.4s ease-in-out infinite;
  transform-origin: top center;
}
@keyframes bo2-line {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50%       { transform: scaleY(0.3); opacity: .4; }
}

/* ============================================================
   QUADRANT NAV
   ============================================================ */
.bo2-quad {
  border-top: 1px solid var(--bo2-steel);
  border-bottom: 1px solid var(--bo2-steel);
  background: var(--bo2-coal);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.bo2-quad__cell {
  padding: 56px 36px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 280px;
  border-right: 1px solid var(--bo2-steel);
  transition: background .25s ease;
}
.bo2-quad__cell:last-child { border-right: none; }
.bo2-quad__cell:hover { background: var(--bo2-pitch); }
.bo2-quad__cell:hover .bo2-quad__title { color: var(--bo2-yellow); }
.bo2-quad__num {
  font-family: var(--font2-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--bo2-fog);
}
.bo2-quad__title {
  font-family: var(--font2-tall);
  font-size: 56px;
  color: var(--bo2-paper);
  transition: color .2s;
}
.bo2-quad__copy {
  font-size: 13px;
  color: var(--bo2-fog);
  max-width: 30ch;
  flex: 1;
}
.bo2-quad__arrow {
  font-family: var(--font2-tall);
  font-size: 32px;
  color: var(--bo2-yellow);
  align-self: flex-start;
}
.bo2-quad__cell .bo2-pill { align-self: flex-start; }

/* ============================================================
   FEATURED RELEASE
   ============================================================ */
.bo2-feature {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 96px;
  align-items: center;
}
.bo2-feature__sleeve {
  position: relative;
  aspect-ratio: 1 / 1;
  background: var(--bo2-iron);
  overflow: hidden;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.04) inset,
    0 60px 80px -40px rgba(0,0,0,0.8),
    0 0 0 1px rgba(255,255,255,0.04);
}
.bo2-feature__sleeve::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(255,255,255,0.06), transparent 60%);
  pointer-events: none;
}
.bo2-feature__credits {
  font-family: var(--font2-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bo2-fog);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0 16px;
}
.bo2-feature__credits dt { color: var(--bo2-yellow-dim); padding-top: 14px; }
.bo2-feature__credits dd { margin: 14px 0 0; color: var(--bo2-paper); }
.bo2-feature__credits dt:not(:first-child) { border-top: 1px solid var(--bo2-steel); margin-top: 12px; }
.bo2-feature__title {
  font-family: var(--font2-tall);
  font-size: 96px;
  color: var(--bo2-paper);
  line-height: 0.88;
  margin: 14px 0 18px;
}
.bo2-feature__sub {
  font-family: var(--font2-mono);
  font-size: 12px;
  letter-spacing: 0.22em;
  color: var(--bo2-yellow);
  margin-bottom: 28px;
}

/* ============================================================
   FEATURED PRODUCT BLOCK  (bad-onion/featured)
   ============================================================ */
.bo2-featured { padding: 96px 64px; }
.bo2-featured + .bo2-featured { border-top: 1px solid var(--bo2-steel); }
.bo2-featured__head {
  margin-bottom: 56px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  flex-wrap: wrap;
}
.bo2-featured__label {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  font-family: var(--font2-mono);
  font-size: clamp(20px, 2.6vw, 36px);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bo2-yellow);
  line-height: 1;
  margin: 0;
}
.bo2-featured__label::before {
  content: "";
  flex: none;
  width: clamp(40px, 5vw, 72px);
  height: 2px;
  background: currentColor;
}
.bo2-featured__media {
  display: block;
  padding: 0;
  background: var(--bo2-iron);
}
.bo2-featured__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.bo2-featured__pills { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 20px; }
.bo2-featured__title {
  font-family: var(--font2-tall);
  font-size: clamp(30px, 3.4vw, 54px);
  color: var(--bo2-paper);
  text-transform: uppercase;
  line-height: 0.98;
  margin: 0 0 18px;
}
.bo2-featured__desc {
  font-size: 15px;
  color: var(--bo2-paper-dim);
  line-height: 1.65;
  max-width: 46ch;
  margin-bottom: 32px;
}
.bo2-featured__desc p { margin: 0 0 12px; }
.bo2-featured__actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ============================================================
   RAVE LAB — teaser page
   ============================================================ */
.bo2-lab { background: var(--bo2-coal); color: var(--bo2-paper); }
.bo2-lab__hero { padding: 128px 64px 80px; max-width: 1040px; }
.bo2-lab__title {
  font-family: var(--font2-tall);
  font-size: clamp(52px, 9vw, 128px);
  line-height: 0.84;
  text-transform: uppercase;
  color: var(--bo2-paper);
  margin: 22px 0 34px;
}
.bo2-lab__title-em { color: var(--bo2-yellow); }
.bo2-lab__lead {
  font-family: var(--font2-mono);
  font-size: 16px;
  line-height: 1.7;
  color: var(--bo2-paper-dim);
  max-width: 60ch;
  margin-bottom: 40px;
}
.bo2-lab__actions { display: flex; gap: 12px; flex-wrap: wrap; }
.bo2-lab__notice {
  max-width: 720px;
  margin: 0 0 28px;
  padding: 18px 20px;
  border: 1px solid var(--bo2-flash);
  border-left-width: 4px;
  background: rgba(210, 53, 34, 0.08);
  color: var(--bo2-paper-dim);
  font-family: var(--font2-mono);
  font-size: 12px;
  line-height: 1.6;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.bo2-lab__notice span { display: block; color: var(--bo2-flash); margin-bottom: 4px; }
.bo2-lab__membership {
  max-width: 860px;
  margin-top: 44px;
  padding: 28px;
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 18px 34px;
  align-items: center;
  border: 1px solid var(--bo2-yellow-dim);
  background: linear-gradient(135deg, rgba(255, 206, 0, 0.11), rgba(20, 20, 20, 0.92) 55%);
}
.bo2-lab__price { grid-row: span 2; display: flex; flex-direction: column; }
.bo2-lab__price b { color: var(--bo2-yellow); font-family: var(--font2-tall); font-size: 82px; font-weight: 400; line-height: .9; }
.bo2-lab__price span { color: var(--bo2-fog); font-family: var(--font2-mono); font-size: 10px; letter-spacing: .2em; text-transform: uppercase; }
.bo2-lab__membership ul { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px 22px; }
.bo2-lab__membership li { color: var(--bo2-paper); font-family: var(--font2-mono); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }
.bo2-lab__membership li::before { content: "▌"; color: var(--bo2-yellow); margin-right: 9px; }
.bo2-lab__membership > p { color: var(--bo2-fog); font-size: 12px; line-height: 1.6; }
.bo2-lab__member-state { display: flex; align-items: center; gap: 14px; margin-top: 34px; color: var(--bo2-paper-dim); font-family: var(--font2-mono); font-size: 11px; text-transform: uppercase; letter-spacing: .08em; }
.bo2-lab__grid-wrap { padding: 40px 64px 128px; border-top: 1px solid var(--bo2-steel); }
.bo2-lab__subhead {
  font-family: var(--font2-tall);
  font-size: clamp(28px, 3.4vw, 46px);
  text-transform: uppercase;
  color: var(--bo2-paper);
  margin: 48px 0 32px;
}
.bo2-lab__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 14px; }
.bo2-lab__card {
  background: var(--bo2-iron);
  border: 1px solid var(--bo2-steel);
  padding: 26px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  transition: border-color .18s ease, transform .18s ease;
}
.bo2-lab__card:hover { border-color: var(--bo2-yellow); transform: translateY(-3px); }
.bo2-lab__card--live {
  background: linear-gradient(135deg, rgba(255, 212, 0, 0.08), var(--bo2-iron) 55%);
  border-color: var(--bo2-yellow-dim);
  min-height: 250px;
}
.bo2-lab__card-title {
  font-family: var(--font2-tall);
  font-size: 26px;
  text-transform: uppercase;
  line-height: 1;
  color: var(--bo2-paper);
  margin: 0;
}
.bo2-lab__card-copy { font-size: 14px; color: var(--bo2-fog); line-height: 1.6; margin: 0; }
.bo2-lab__card-cta {
  color: var(--bo2-yellow);
  font-family: var(--font2-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  margin-top: auto;
  padding-top: 18px;
  text-transform: uppercase;
}
.bo2-lab__card-cta span { display: inline-block; margin-left: 8px; transition: transform .15s linear; }
.bo2-lab__card--live:hover .bo2-lab__card-cta span { transform: translateX(5px); }

@media (max-width: 720px) {
  .bo2-lab__membership { grid-template-columns: 1fr; }
  .bo2-lab__price { grid-row: auto; }
  .bo2-lab__membership ul { grid-template-columns: 1fr; }
}

/* ============================================================
   SLEEVE / COVER ART
   ============================================================ */
.sleeve {
  position: absolute; inset: 0;
  display: grid;
  place-items: center;
  font-family: var(--font2-tall);
  text-transform: uppercase;
  text-align: center;
  padding: 16px;
  overflow: hidden;
}
.sleeve__corners {
  position: absolute; inset: 12px;
  border: 1px solid currentColor;
  opacity: 0.18;
  pointer-events: none;
}
.sleeve__meta {
  position: absolute;
  left: 16px; right: 16px;
  font-family: var(--font2-mono);
  font-size: 9px;
  letter-spacing: 0.22em;
  color: currentColor;
  opacity: 0.7;
  display: flex;
  justify-content: space-between;
}
.sleeve__meta--top { top: 14px; }
.sleeve__meta--bot { bottom: 14px; }
.sleeve__type { position: relative; z-index: 2; line-height: 0.88; }
.sleeve__sub  { font-family: var(--font2-mono); font-size: 12px; letter-spacing: 0.22em; margin-top: 10px; opacity: 0.7; display: block; }

.sleeve--yel   { background: var(--bo2-yellow); color: var(--bo2-black); }
.sleeve--blk   { background: #060606; color: var(--bo2-yellow); }
.sleeve--paper { background: var(--bo2-paper); color: var(--bo2-black); }
.sleeve--ox    { background: var(--bo2-oxblood); color: var(--bo2-paper); }
.sleeve--coal  { background: var(--bo2-ash); color: var(--bo2-paper); }
.sleeve--cyan  { background: var(--bo2-cyan-dim); color: var(--bo2-paper); }
.sleeve--acid  { background: var(--bo2-acid-dim); color: var(--bo2-black); }

.sleeve--lines::before {
  content: "";
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(0deg, currentColor 0 1px, transparent 1px 6px);
  opacity: 0.12;
}
.sleeve--half::before {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(currentColor 1px, transparent 1.4px);
  background-size: 12px 12px;
  opacity: 0.12;
}
.sleeve--angle::before {
  content: "";
  position: absolute; inset: -20%;
  background: repeating-linear-gradient(45deg, transparent 0 22px, currentColor 22px 24px);
  opacity: 0.12;
}
.sleeve__noise {
  position: absolute; inset: 0;
  background-image: var(--grain-svg);
  background-size: 320px 320px;
  opacity: 0.18;
  mix-blend-mode: overlay;
}
.sleeve__disc {
  position: absolute;
  left: -34%; top: 50%;
  transform: translateY(-50%);
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: radial-gradient(circle at center, #1a1a1a 0%, #050505 30%, #0a0a0a 31%, #050505 100%);
  box-shadow: inset 0 0 0 1px #222;
  z-index: 1;
  opacity: 0.85;
  animation: bo2-spin 14s linear infinite;
}
.sleeve__disc::before {
  content: "";
  position: absolute; inset: 28%;
  border-radius: 50%;
  background: var(--bo2-yellow);
}
.sleeve__disc::after {
  content: "";
  position: absolute; inset: 0;
  border-radius: 50%;
  background: repeating-radial-gradient(circle, transparent 0 2px, rgba(255,255,255,0.04) 2px 3px);
}
@keyframes bo2-spin { to { transform: translateY(-50%) rotate(360deg); } }

/* ============================================================
   RELEASE LIST
   ============================================================ */
.bo2-list { border-top: 1px solid var(--bo2-steel); }
.bo2-list__row {
  display: grid;
  grid-template-columns: 80px 100px 1fr 160px 110px 60px;
  gap: 24px;
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid var(--bo2-steel);
  transition: background .15s, padding-left .15s;
  cursor: pointer;
}
.bo2-list__row:hover { background: var(--bo2-pitch); padding-left: 16px; }
.bo2-list__row:hover .bo2-list__title { color: var(--bo2-yellow); }
.bo2-list__cat    { font-family: var(--font2-mono); font-size: 11px; letter-spacing: 0.18em; color: var(--bo2-yellow); }
.bo2-list__cover  { width: 80px; aspect-ratio: 1/1; position: relative; overflow: hidden; }
.bo2-list__title  { font-family: var(--font2-tall); font-size: 32px; color: var(--bo2-paper); transition: color .2s; line-height: 0.9; }
.bo2-list__artist { font-family: var(--font2-mono); font-size: 11px; letter-spacing: 0.18em; color: var(--bo2-fog); margin-top: 4px; }
.bo2-list__format { font-family: var(--font2-mono); font-size: 11px; letter-spacing: 0.18em; color: var(--bo2-fog); }
.bo2-list__price  { font-family: var(--font2-tall); font-size: 28px; color: var(--bo2-paper); text-align: right; }
.bo2-list__arrow  { font-family: var(--font2-tall); font-size: 28px; color: var(--bo2-yellow); text-align: right; }

/* ============================================================
   CARDS
   ============================================================ */
.bo2-card {
  background: var(--bo2-coal);
  border: 1px solid var(--bo2-steel);
  position: relative;
  transition: border-color .2s;
  display: flex;
  flex-direction: column;
}
.bo2-card:hover { border-color: var(--bo2-yellow-dim); }
.bo2-card__art {
  aspect-ratio: 1 / 1;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--bo2-steel);
}
.bo2-card__art--wide { aspect-ratio: 4 / 3; }
.bo2-card__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px 0;
  font-family: var(--font2-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--bo2-fog);
}
.bo2-card__meta b { color: var(--bo2-yellow-dim); font-weight: 500; }
.bo2-card__body  { padding: 8px 16px 18px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.bo2-card__title { font-family: var(--font2-tall); font-size: 30px; color: var(--bo2-paper); line-height: 0.92; }
.bo2-card__artist { font-family: var(--font2-mono); font-size: 11px; letter-spacing: 0.18em; color: var(--bo2-yellow); }
.bo2-card__desc  { font-size: 13px; color: var(--bo2-fog); line-height: 1.5; }
.bo2-card__foot  {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 14px;
  border-top: 1px solid var(--bo2-steel);
  margin-top: auto;
}
.bo2-card__price  { font-family: var(--font2-tall); font-size: 22px; color: var(--bo2-paper); }
.bo2-card__corner { position: absolute; top: 12px; left: 12px; z-index: 3; }

/* ============================================================
   TOOL / MODULE CARD
   ============================================================ */
.bo2-module {
  background: var(--bo2-ash);
  border: 1px solid var(--bo2-steel);
  position: relative;
  padding: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.bo2-module__chrome {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
  background: var(--bo2-pitch);
  border-bottom: 1px solid var(--bo2-steel);
  font-family: var(--font2-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--bo2-fog);
}
.bo2-module__leds { display: inline-flex; gap: 6px; }
.bo2-module__led  { width: 6px; height: 6px; border-radius: 50%; background: var(--bo2-yellow); box-shadow: 0 0 6px var(--bo2-yellow); }
.bo2-module__led--off { background: var(--bo2-steel); box-shadow: none; }
.bo2-module__led--red { background: var(--bo2-flash); box-shadow: 0 0 6px var(--bo2-flash); }
.bo2-module__head { padding: 28px 24px 18px; display: flex; flex-direction: column; gap: 10px; }
.bo2-module__title { font-family: var(--font2-tall); font-size: 38px; color: var(--bo2-paper); line-height: 0.9; }
.bo2-module__sub   { font-family: var(--font2-mono); font-size: 10px; letter-spacing: 0.2em; color: var(--bo2-yellow-dim); }
.bo2-module__desc  { font-size: 13px; color: var(--bo2-fog); margin-top: 4px; line-height: 1.5; }
.bo2-module__screen {
  margin: 0 24px 18px;
  background: var(--bo2-black);
  border: 1px solid var(--bo2-steel);
  padding: 16px;
  position: relative;
  min-height: 100px;
  overflow: hidden;
}
.bo2-module__screen::before {
  content: "";
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(0deg, rgba(255,206,0,0.03) 0 2px, transparent 2px 4px);
  pointer-events: none;
}
.bo2-module__foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--bo2-steel);
  padding: 12px 16px;
  font-family: var(--font2-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--bo2-fog);
}
.bo2-module--locked { opacity: 0.55; }
.bo2-module--locked .bo2-module__title { color: var(--bo2-paper-dim); }

/* ============================================================
   FOOTER
   ============================================================ */
.bo2-footer {
  background: var(--bo2-black);
  color: var(--bo2-paper);
  padding: 110px 64px 36px;
  border-top: 1px solid var(--bo2-steel);
  position: relative;
}
.bo2-footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 56px;
  margin-bottom: 56px;
}
.bo2-footer__brand img { height: 44px; margin-bottom: 18px; }
.bo2-footer__brand p { font-size: 13px; color: var(--bo2-fog); max-width: 32ch; line-height: 1.6; }
.bo2-footer__col h5 {
  font-family: var(--font2-mono);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--bo2-yellow);
  margin-bottom: 18px;
}
.bo2-footer__col ul li { padding: 6px 0; font-size: 13px; color: var(--bo2-paper-dim); }
.bo2-footer__col a:hover { color: var(--bo2-yellow); }
.bo2-footer__base {
  border-top: 1px solid var(--bo2-steel);
  padding-top: 22px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  font-family: var(--font2-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--bo2-fog);
}
.bo2-footer__socials { display: flex; gap: 8px; justify-content: center; }
.bo2-footer__socials a {
  font-family: var(--font2-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  padding: 6px 10px;
  border: 1px solid var(--bo2-steel);
  color: var(--bo2-paper);
}
.bo2-footer__socials a:hover { background: var(--bo2-yellow); color: var(--bo2-black); border-color: var(--bo2-yellow); }

/* ============================================================
   FORMS
   ============================================================ */
.bo2-input,
.bo2-textarea,
.bo2-select {
  display: block;
  width: 100%;
  background: var(--bo2-pitch);
  border: 1px solid var(--bo2-steel);
  color: var(--bo2-paper);
  padding: 16px 18px;
  font: 500 14px/1.4 var(--font2-body);
  outline: none;
  transition: border-color .15s;
  border-radius: 0;
  -webkit-appearance: none;
}
.bo2-input:focus, .bo2-textarea:focus, .bo2-select:focus { border-color: var(--bo2-yellow); }
.bo2-input::placeholder { color: var(--bo2-fog); }
.bo2-textarea { min-height: 140px; resize: vertical; }
.bo2-label {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-family: var(--font2-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bo2-yellow);
  margin-bottom: 10px;
}
.bo2-label__hint { color: var(--bo2-fog); }

/* ============================================================
   PRESS / QUOTE
   ============================================================ */
.bo2-quote { font-family: var(--font2-tall); font-size: 38px; line-height: 1; color: var(--bo2-paper); }
.bo2-quote__att {
  font-family: var(--font2-mono);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--bo2-yellow-dim);
  margin-top: 22px;
}

/* ============================================================
   MARQUEE
   ============================================================ */
.bo2-marquee {
  background: var(--bo2-yellow);
  color: var(--bo2-black);
  border-top: 1px solid var(--bo2-black);
  border-bottom: 1px solid var(--bo2-black);
  padding: 14px 0;
  overflow: hidden;
}
.bo2-marquee__inner {
  display: inline-flex;
  gap: 60px;
  font-family: var(--font2-tall);
  font-size: 22px;
  text-transform: uppercase;
  white-space: nowrap;
  animation: bo2-ticker 28s linear infinite;
}
.bo2-marquee__inner span { display: inline-flex; align-items: center; gap: 20px; }
.bo2-marquee__inner span::after { content: "✕"; font-size: 18px; color: var(--bo2-oxblood); }

/* ============================================================
   UTILITY
   ============================================================ */
.spacer-xl { height: 96px; }
.spacer-lg { height: 64px; }
.spacer-md { height: 40px; }
.spacer-sm { height: 24px; }

.d-flex              { display: flex; }
.align-end           { align-items: flex-end; }
.justify-between     { justify-content: space-between; }
.gap-12              { gap: 12px; }
.gap-14              { gap: 14px; }
.mt-auto             { margin-top: auto; }

/* ============================================================
   WORDPRESS CORE ALIGNMENT
   ============================================================ */
.wp-block-image img    { max-width: 100%; height: auto; }
.screen-reader-text    { clip: rect(1px,1px,1px,1px); height: 1px; overflow: hidden; position: absolute; width: 1px; }
