
/* Breathe Label Manager - Public Styles (namespaced) */
.bm-lm-shell{
  color: var(--bm-ink);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--bm-r);
  overflow: hidden;
  position: relative;
  background:
    radial-gradient(1200px 720px at 50% -18%, var(--bm-sheen), transparent 62%),
    radial-gradient(900px 520px at 10% 10%, var(--bm-g1), transparent 62%),
    radial-gradient(900px 520px at 90% 18%, var(--bm-g2), transparent 62%),
    radial-gradient(1100px 720px at 50% 110%, var(--bm-g3), transparent 62%),
    linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,0)),
    var(--bm-bg);
}

.bm-lm-shell:before,
.bm-lm-shell:after{
  content:"";
  position:absolute;
  inset:-60px -60px auto auto;
  width: 280px;
  height: 280px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, var(--bm-glow), transparent 60%);
  filter: blur(12px);
  pointer-events:none;
  opacity: .9;
  transform: translate3d(0,0,0);
}
.bm-lm-shell:after{
  inset:auto auto -90px -90px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle at 40% 40%, rgba(112,80,245,.25), transparent 62%);
  opacity: .8;
}

.bm-lm-wrap{
  max-width: 1120px;
  margin: 0 auto;
  padding: clamp(20px, 3vw, 40px);
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  line-height: 1.5;
}

.bm-lm-hero{
  padding: clamp(32px, 5vw, 74px) 0 clamp(18px, 3vw, 32px);
  position: relative;
}

.bm-lm-kicker{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-size:12px;
  letter-spacing:.18em;
  text-transform:uppercase;
  color: var(--bm-muted);
  padding: 8px 12px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  background: rgba(255,255,255,.04);
  backdrop-filter: blur(8px);
}

.bm-lm-dot{
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--bm-ac1), var(--bm-ac2));
  box-shadow: 0 0 22px var(--bm-glow);
}

.bm-lm-title{
  margin: 18px 0 8px;
  font-weight: 900;
  letter-spacing: -0.02em;
  font-size: clamp(36px, 4.5vw, 60px);
  line-height: 1.02;
}
.bm-lm-title span{
  opacity: .82;
}

.bm-lm-tagline{
  margin: 0 0 10px;
  font-size: clamp(16px, 1.6vw, 19px);
  color: rgba(234,240,255,.92);
  font-weight: 800;
}

.bm-lm-subline{
  margin: 0 0 18px;
  max-width: 74ch;
  color: var(--bm-muted);
  font-size: 15px;
}

.bm-lm-actions{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.bm-lm-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  padding: 11px 14px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.04);
  color: var(--bm-ink);
  text-decoration: none;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: .01em;
  transition: transform .12s ease, background .12s ease, border-color .12s ease, box-shadow .12s ease;
}
.bm-lm-btn:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.20);
  box-shadow: 0 12px 34px rgba(0,0,0,.35);
}
.bm-lm-btn-primary{
  border-color: rgba(42,211,213,.45);
  background: linear-gradient(135deg, rgba(42,211,213,.18), rgba(112,80,245,.14));
}
.bm-lm-btn-small{ padding: 9px 12px; font-size: 13px; }
.bm-lm-btn-wide{ width: 100%; }
.bm-lm-btn-disabled{
  opacity: .55;
  cursor: not-allowed;
  user-select:none;
}
.bm-lm-btn-disabled:hover{ transform:none; box-shadow:none; }

.bm-lm-hero-grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 14px;
  margin-top: 22px;
}
@media (max-width: 900px){
  .bm-lm-hero-grid{ grid-template-columns: 1fr; }
}

.bm-lm-card{
  border: 1px solid rgba(255,255,255,.09);
  background: rgba(255,255,255,.04);
  border-radius: var(--bm-r);
  padding: 18px;
}
.bm-lm-card h3{
  margin: 0 0 6px;
  font-size: 13px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(234,240,255,.80);
}
.bm-lm-card p{
  margin: 0;
  color: var(--bm-muted);
  font-size: 14px;
}

.bm-lm-section{
  padding: 18px 0 6px;
}
.bm-lm-section + .bm-lm-section{
  border-top: 1px solid rgba(255,255,255,.07);
  margin-top: 22px;
  padding-top: 26px;
}

.bm-lm-h2{
  margin: 0 0 10px;
  font-size: clamp(20px, 2.2vw, 30px);
  letter-spacing: -0.01em;
  font-weight: 900;
}

.bm-lm-lead{
  margin: 0 0 18px;
  color: var(--bm-muted);
  max-width: 86ch;
}

.bm-lm-pillars,
.bm-lm-lanes{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
@media (max-width: 900px){
  .bm-lm-pillars,
  .bm-lm-lanes{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px){
  .bm-lm-pillars,
  .bm-lm-lanes{ grid-template-columns: 1fr; }
}

.bm-lm-pillar,
.bm-lm-lane{
  border: 1px solid rgba(255,255,255,.09);
  background: rgba(255,255,255,.04);
  border-radius: var(--bm-r);
  padding: 14px;
  min-height: 118px;
  position: relative;
  overflow:hidden;
}
.bm-lm-pillar:before,
.bm-lm-lane:before{
  content:"";
  position:absolute;
  inset:auto -80px -80px auto;
  width: 180px;
  height: 180px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.10), transparent 60%);
  filter: blur(10px);
  opacity: .55;
}
.bm-lm-pillar b,
.bm-lm-lane b{
  display:block;
  font-size: 15px;
  letter-spacing: .02em;
  margin-bottom: 6px;
}
.bm-lm-pillar small,
.bm-lm-lane small{
  display:block;
  color: var(--bm-muted);
  font-size: 13px;
}

.bm-lm-releases{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
@media (max-width: 900px){
  .bm-lm-releases{ grid-template-columns: 1fr; }
}

.bm-lm-release{
  border: 1px solid rgba(255,255,255,.09);
  background: rgba(255,255,255,.04);
  border-radius: var(--bm-r);
  overflow:hidden;
  display:flex;
  flex-direction:column;
  min-height: 250px;
}

.bm-lm-cover{
  height: 152px;
  position: relative;
  overflow:hidden;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.bm-lm-cover img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display:block;
  filter: saturate(1.15) contrast(1.05);
}
.bm-lm-cover-empty{
  background:
    radial-gradient(520px 220px at 20% 30%, rgba(42,211,213,.24), transparent 62%),
    radial-gradient(520px 220px at 80% 10%, rgba(112,80,245,.24), transparent 62%),
    radial-gradient(520px 220px at 55% 90%, rgba(255,91,69,.16), transparent 62%),
    rgba(255,255,255,.03);
}

.bm-lm-release-body{
  padding: 14px;
  display:flex;
  flex-direction:column;
  gap: 10px;
  flex:1;
}
.bm-lm-release-title{
  margin:0;
  font-weight: 900;
  font-size: 16px;
  letter-spacing: -0.01em;
}
.bm-lm-release-meta{
  margin:0;
  color: var(--bm-muted);
  font-size: 13px;
}

.bm-lm-roster{
  display:grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}
@media (max-width: 900px){
  .bm-lm-roster{ grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 540px){
  .bm-lm-roster{ grid-template-columns: repeat(2, 1fr); }
}

.bm-lm-artist{
  border: 1px solid rgba(255,255,255,.09);
  background: rgba(255,255,255,.04);
  border-radius: 12px;
  padding: 10px;
  min-height: 66px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap: 4px;
}
.bm-lm-artist b{ font-size: 13px; letter-spacing: .01em; }
.bm-lm-artist small{ color: var(--bm-muted); font-size: 12px; }

.bm-lm-demo-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  align-items: start;
}
@media (max-width: 900px){
  .bm-lm-demo-grid{ grid-template-columns: 1fr; }
}

.bm-lm-formbox{
  border: 1px solid rgba(42,211,213,.26);
  background: linear-gradient(135deg, rgba(42,211,213,.10), rgba(112,80,245,.08));
  border-radius: var(--bm-r);
  padding: 16px;
}

.bm-lm-formhint{
  margin: 0 0 10px;
  font-weight: 900;
  font-size: 14px;
  color: rgba(234,240,255,.92);
}

.bm-lm-form{
  display:flex;
  flex-direction:column;
  gap: 10px;
}
.bm-lm-form label{ display:flex; flex-direction:column; gap:6px; }
.bm-lm-form label span{
  font-size: 12px;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: rgba(234,240,255,.70);
}
.bm-lm-form input,
.bm-lm-form select,
.bm-lm-form textarea{
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.22);
  color: var(--bm-ink);
  padding: 10px 12px;
  font-size: 14px;
  outline: none;
}
.bm-lm-form input:focus,
.bm-lm-form select:focus,
.bm-lm-form textarea:focus{
  border-color: rgba(42,211,213,.45);
  box-shadow: 0 0 0 3px rgba(42,211,213,.18);
}
.bm-lm-form-row{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
@media (max-width: 640px){
  .bm-lm-form-row{ grid-template-columns: 1fr; }
}

.bm-lm-rules{
  margin: 10px 0 0;
  padding-left: 18px;
  color: var(--bm-muted);
  font-size: 14px;
}
.bm-lm-rules li{ margin: 7px 0; }

.bm-lm-notice{
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.04);
  font-weight: 800;
  font-size: 13px;
}
.bm-lm-notice-ok{
  border-color: rgba(34,197,94,.30);
  background: rgba(34,197,94,.10);
}
.bm-lm-notice-bad{
  border-color: rgba(239,68,68,.35);
  background: rgba(239,68,68,.10);
}

.bm-lm-empty{
  border: 1px dashed rgba(255,255,255,.18);
  background: rgba(255,255,255,.03);
  border-radius: var(--bm-r);
  padding: 14px;
  color: var(--bm-muted);
}
.bm-lm-empty b{ color: rgba(234,240,255,.92); }

.bm-lm-muted{ color: var(--bm-muted); }

.bm-lm-footer{
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.07);
  display:flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  color: rgba(234,240,255,.58);
  font-size: 12px;
}

/* Honeypot hidden */
.bm-lm-hp{
  position:absolute !important;
  left:-10000px !important;
  top:auto !important;
  width:1px !important;
  height:1px !important;
  overflow:hidden !important;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  .bm-lm-btn{ transition:none; }
  .bm-lm-btn:hover{ transform:none; box-shadow:none; }
}
