@font-face {
  font-family: "SeoulNamsan";
  src: url("./assets/fonts/SeoulNamsanM.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "SeoulNamsan";
  src: url("./assets/fonts/SeoulNamsanB.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "SeoulNamsan";
  src: url("./assets/fonts/SeoulNamsanEB.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
}

:root {
  --bg: #0d0d1a;
  --bg-soft: #12121f;
  --panel: rgba(255, 255, 255, 0.06);
  --panel-strong: rgba(255, 255, 255, 0.1);
  --ink: #f0eef8;
  --muted: #8b87a8;
  --line: rgba(255, 255, 255, 0.08);
  --accent: #9f8bc7;
  --accent-soft: rgba(159, 139, 199, 0.15);
  --accent-dark: #c4b0f0;
  --accent-pop: #d4ff5f;
  --shadow: 0 20px 48px rgba(0, 0, 0, 0.4);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "SeoulNamsan", "Noto Sans KR", system-ui, sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.shell {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(20px);
  background: rgba(13, 13, 26, 0.92);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  min-height: 72px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(180deg, #cec1ef 0%, #8e7ac0 100%);
  color: white;
  font-family: "SeoulNamsan", "Noto Sans KR", system-ui, sans-serif;
  font-size: 20px;
  font-weight: 700;
}

.brand-copy strong {
  display: block;
  font-size: 16px;
  font-weight: 800;
  color: var(--ink);
}

.brand-copy small {
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.06em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: auto;
}

.main-nav a {
  padding: 9px 18px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.01em;
  transition: background 0.15s, color 0.15s;
}

.main-nav a:hover {
  background: rgba(159, 139, 199, 0.12);
  color: var(--ink);
}

.main-nav a.is-active {
  background: rgba(159, 139, 199, 0.15);
  color: var(--accent-dark);
}

.hero-section,
.content-section {
  padding: 56px 0;
}

.hero-grid,
.premium-grid,
.business-grid,
.coming-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: stretch;
}

.hero-copy,
.premium-copy,
.business-copy,
.coming-grid > div:first-child {
  padding: 12px 0;
  min-width: 0;
}

.hero-copy h1 {
  max-width: 15ch;
  line-height: 1.16;
  word-break: keep-all;
  font-size: clamp(34px, 5.1vw, 62px);
}

.hero-copy p:last-child {
  max-width: 15ch;
}

.page-hero-copy h1 {
  line-height: 1.16;
  word-break: keep-all;
  font-size: clamp(34px, 5vw, 56px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(159, 139, 199, 0.1);
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

h1,
h2,
h3 {
  margin: 14px 0 0;
  line-height: 1.1;
}

h1 {
  font-family: "SeoulNamsan", "Noto Sans KR", system-ui, sans-serif;
  font-size: clamp(42px, 7vw, 78px);
  font-weight: 800;
}

h2 {
  font-family: "SeoulNamsan", "Noto Sans KR", system-ui, sans-serif;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
}

h3 {
  font-size: 24px;
}

p {
  color: var(--muted);
  line-height: 1.7;
}

.hero-description {
  max-width: 560px;
  margin-top: 18px;
  font-size: 16px;
}

.hero-actions,
.section-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.hero-actions {
  margin-top: 24px;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.button,
.section-heading .button,
.button-primary,
.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-weight: 700;
}

.button-primary {
  background: linear-gradient(180deg, #b7a8de 0%, #8e7ac0 100%);
  color: #ffffff;
  border-color: transparent;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: var(--ink);
  border-color: rgba(255, 255, 255, 0.15);
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.14);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 28px 0 0;
}

.hero-metrics div {
  padding: 18px;
  border-radius: 22px;
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-metrics dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.hero-metrics dd {
  margin: 10px 0 0;
  color: var(--accent-dark);
  font-size: 22px;
  font-weight: 800;
}

.hero-visual {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.hero-feature {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  min-height: 480px;
  border-radius: 28px;
  background: linear-gradient(135deg, #0d0d1a 0%, #1a1030 50%, #0d1525 100%);
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.32), 0 0 0 1px rgba(255,255,255,0.06);
  position: relative;
}

.hero-feature::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 20%, rgba(180, 140, 255, 0.12) 0%, transparent 60%),
              radial-gradient(ellipse at 20% 80%, rgba(80, 120, 255, 0.08) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.hero-feature-media {
  position: relative;
  min-height: 100%;
  z-index: 1;
}

.hero-feature-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 60%, #0d0d1a 100%);
  pointer-events: none;
}

.hero-feature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.hero-feature-body {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 12px;
  padding: 36px 40px 36px 28px;
  color: #ffffff;
  min-width: 0;
  position: relative;
  z-index: 1;
}

.hero-feature-label {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(180, 140, 255, 0.18);
  border: 1px solid rgba(180, 140, 255, 0.3);
  color: rgba(210, 185, 255, 0.95);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-feature-body strong {
  font-size: clamp(30px, 3.2vw, 44px);
  line-height: 1.05;
  font-weight: 800;
  background: linear-gradient(135deg, #ffffff 0%, rgba(210, 190, 255, 0.9) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  word-break: keep-all;
}

.hero-feature-summary {
  margin: 0;
  color: rgba(200, 185, 230, 0.65);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-feature-body > p:not(.hero-feature-summary) {
  max-width: 100%;
  margin: 0;
  color: rgba(200, 190, 220, 0.78);
  font-size: 13px;
  line-height: 1.75;
  flex: 1;
}

.hero-feature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.hero-feature-tags li {
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(210, 200, 230, 0.65);
  font-size: 11px;
  font-weight: 500;
}

.hero-feature-link {
  margin-top: auto;
  color: #0d0d1a !important;
  display: flex;
  justify-content: center;
  align-self: stretch;
  width: 100%;
  min-height: 44px;
  padding: 12px 24px;
  border-radius: 12px;
  background: linear-gradient(135deg, #e8d5ff 0%, #c4a8ff 100%);
  box-shadow: 0 4px 20px rgba(160, 110, 255, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.4);
  text-decoration: none;
  align-items: center;
  white-space: nowrap;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.02em;
  border: none;
}

.hero-card {
  min-height: 190px;
  padding: 22px;
  border-radius: 28px;
  color: white;
  box-shadow: var(--shadow);
}

.hero-card span {
  display: inline-block;
  margin-bottom: 14px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.hero-card strong {
  display: block;
  font-size: 30px;
  margin-bottom: 8px;
}

.hero-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
}

.hero-card-primary {
  grid-column: span 2;
  background:
    linear-gradient(135deg, rgba(26, 21, 44, 0.94), rgba(110, 92, 165, 0.78)),
    linear-gradient(160deg, #161220 0%, #5f4e92 100%);
}

.hero-card-secondary {
  background: linear-gradient(160deg, rgba(108, 80, 180, 0.25) 0%, rgba(80, 55, 140, 0.18) 100%);
  color: rgba(220, 210, 255, 0.95);
  border: 1px solid rgba(180, 150, 255, 0.15);
}

.hero-card-secondary p,
.hero-card-secondary span {
  color: rgba(200, 185, 240, 0.75);
  background: rgba(255, 255, 255, 0.08);
}

.hero-card-accent {
  background: linear-gradient(160deg, rgba(80, 100, 40, 0.3) 0%, rgba(100, 130, 50, 0.2) 100%);
  color: rgba(220, 245, 150, 0.95);
  border: 1px solid rgba(200, 230, 100, 0.15);
}

.hero-card-accent p,
.hero-card-accent span {
  color: rgba(200, 225, 130, 0.75);
  background: rgba(255, 255, 255, 0.08);
}

.section-soft {
  background: rgba(255, 255, 255, 0.03);
}

.section-roster-surface {
  background: rgba(255, 255, 255, 0.03);
}

.section-shortform-surface {
  background:
    linear-gradient(180deg, rgba(108, 70, 187, 0.08), rgba(108, 70, 187, 0.04)),
    linear-gradient(160deg, rgba(80, 50, 140, 0.12), transparent);
}

.artist-grid,
.shortform-grid,
.roster-grid {
  display: grid;
  gap: 16px;
}

.artist-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.shortform-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.roster-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.artist-card,
.short-card,
.roster-card,
.premium-panel,
.business-cards article,
.coming-panel {
  border: 1px solid var(--line);
  border-radius: 26px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.artist-card {
  overflow: hidden;
}

.short-card,
.feed-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03)),
    linear-gradient(160deg, rgba(108, 70, 187, 0.12), rgba(80, 50, 140, 0.06));
  border-color: rgba(180, 150, 255, 0.1);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.3);
}

.roster-card,
.catalog-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.04)),
    linear-gradient(160deg, rgba(108, 70, 187, 0.08), transparent);
  border-color: rgba(180, 150, 255, 0.08);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.25);
}

.artist-card .text-link,
.short-card .text-link,
.feed-card .text-link {
  position: relative;
  z-index: 1;
}

.clickable-card {
  cursor: pointer;
}

.clickable-card:hover .artist-media,
.clickable-card:hover .roster-media,
.clickable-card:hover .catalog-media {
  transform: translateY(-2px);
  filter: saturate(1.04);
}

.artist-media,
.short-media,
.roster-media,
.premium-placeholder {
  aspect-ratio: 3 / 4;
  display: flex;
  align-items: flex-end;
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(23, 21, 31, 0.08)),
    linear-gradient(160deg, #eee8fb 0%, #b7a8de 100%);
  background-size: cover;
  background-position: center top;
  color: white;
  transition: transform 180ms ease, filter 180ms ease;
}

.artist-media,
.short-media,
.roster-media,
.feed-card-media {
  position: relative;
  overflow: hidden;
  background-repeat: no-repeat;
}

.artist-media::after,
.roster-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 8, 18, 0.08), rgba(10, 8, 18, 0.62)),
    linear-gradient(0deg, rgba(10, 8, 18, 0.26), rgba(10, 8, 18, 0));
}

.short-media::after,
.feed-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 8, 18, 0.04), rgba(10, 8, 18, 0.38)),
    linear-gradient(0deg, rgba(10, 8, 18, 0.16), rgba(10, 8, 18, 0));
}

.artist-media-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.artist-media-image-yoon-serin {
  object-position: center 8%;
}

.artist-media-image-park-doa {
  object-position: center 18%;
}

.artist-media-copy,
.short-media-copy,
.feed-card-copy {
  position: relative;
  z-index: 1;
}

.artist-media-copy {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  max-width: none;
  padding: 14px 18px 16px;
  border-radius: 0;
  background: linear-gradient(180deg, rgba(9, 8, 18, 0.02), rgba(9, 8, 18, 0.38));
  backdrop-filter: blur(8px);
  box-shadow: none;
  text-align: center;
}

.short-media-copy,
.feed-card-copy {
  max-width: min(100%, 220px);
  padding: 8px 10px;
  border-radius: 16px;
  background: rgba(9, 8, 18, 0.18);
  backdrop-filter: blur(6px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.1);
}

.artist-media strong,
.roster-media strong {
  font-size: 28px;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.34);
  position: relative;
  z-index: 1;
}

.artist-role {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  width: fit-content;
  margin: 0 auto 8px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.92);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.short-media strong,
.feed-card-media strong {
  font-size: 24px;
  line-height: 1.15;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.26);
  position: relative;
  z-index: 1;
}

.artist-body,
.short-body,
.roster-body {
  padding: 18px;
}

.artist-body .text-link,
.short-body .text-link,
.feed-card-body .text-link {
  color: var(--accent-dark);
  font-weight: 800;
}

.artist-body p,
.short-body p,
.roster-body p {
  margin: 8px 0 0;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.tag-list span {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(180, 150, 255, 0.1);
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 700;
}

.short-card {
  overflow: hidden;
}

.short-card-head,
.feed-card-head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 0;
  padding: 16px 18px 14px;
  border-bottom: 1px solid rgba(180, 150, 255, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    linear-gradient(160deg, rgba(108, 70, 187, 0.08), transparent);
}

.short-card-head strong,
.feed-card-head strong {
  color: var(--accent-dark);
  display: block;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.45;
  margin-top: 10px;
  opacity: 0.82;
}

.short-card-head .eyebrow,
.feed-card-head .eyebrow {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  border-radius: 0;
  background: transparent;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: 0;
  color: var(--accent-dark);
  width: auto;
}

.short-card-head .eyebrow::after,
.feed-card-head .eyebrow::after {
  content: "";
  display: block;
  width: 48px;
  height: 2px;
  margin: 8px 0 0;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(108, 70, 187, 0.92), rgba(196, 181, 238, 0.48));
}

.short-media {
  aspect-ratio: 3 / 4.35;
  min-height: 0;
  align-items: flex-end;
  justify-content: flex-end;
  flex-direction: column;
  background-position: center 16%;
}

.short-media-metric,
.feed-card-chip {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.95);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.18);
}

.short-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.short-meta span {
  color: #51476a;
  font-size: 13px;
  font-weight: 700;
}

.premium-panel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
}

.premium-stat span {
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0.08em;
}

.premium-stat strong {
  display: block;
  margin-top: 10px;
  font-size: 36px;
  color: var(--ink);
}

.premium-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.premium-tags span {
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(180, 150, 255, 0.1);
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 800;
}

.premium-placeholder {
  min-height: 260px;
  margin-top: 22px;
  border-radius: 24px;
  justify-content: center;
  align-items: center;
  font-size: 15px;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.04);
  border: 1px dashed rgba(180, 150, 255, 0.2);
  color: var(--muted);
}

.premium-points {
  margin: 18px 0 0;
  padding: 0 0 0 18px;
  color: var(--muted);
}

.premium-points li + li {
  margin-top: 8px;
}

.business-cards {
  display: grid;
  gap: 14px;
}

.business-cards article {
  padding: 22px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: 20px;
}

.business-cards strong {
  display: block;
  font-size: 18px;
  color: var(--ink);
}

.business-cards p {
  color: var(--muted);
  margin-top: 8px;
  font-size: 14px;
  line-height: 1.65;
}

.coming-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 26px;
  text-align: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: 20px;
}

.coming-panel strong {
  font-size: 26px;
  color: var(--ink);
}

.coming-panel p {
  color: var(--muted);
  margin-top: 8px;
  font-size: 14px;
}

.site-footer {
  padding: 28px 0 48px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.page-hero {
  padding: 48px 0 20px;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: stretch;
}

.page-hero-copy p:last-child {
  max-width: 640px;
  margin-top: 18px;
}

.page-hero-panel {
  display: grid;
  gap: 14px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow);
}

.page-hero-panel div {
  padding: 16px 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(180, 150, 255, 0.1);
}

.page-hero-panel span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.page-hero-panel strong {
  display: block;
  margin-top: 10px;
  color: var(--ink);
  font-size: 24px;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.status-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.status-legend span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.legend-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 999px;
}

.legend-public {
  background: #9f8bc7;
}

.legend-debut {
  background: #cfc7e6;
}

.legend-secret {
  background: #1a1722;
}

.filter-chip {
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--muted);
  font-weight: 700;
  cursor: pointer;
}

.filter-chip.is-active {
  background: linear-gradient(180deg, #8e7ac0 0%, #6c4ebb 100%);
  border-color: transparent;
  color: #ffffff;
}

.active-filter-note {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 24px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.catalog-card {
  display: grid;
  grid-template-columns: minmax(240px, 0.82fr) 1.18fr;
  align-items: stretch;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.catalog-media {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  color: white;
  min-height: 100%;
}

.catalog-media-main {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(22, 18, 32, 0.16)),
    linear-gradient(160deg, #ded3fb 0%, #7a63b1 100%);
}

.catalog-media-premium {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(17, 13, 20, 0.18)),
    linear-gradient(160deg, #2a2438 0%, #7d618f 100%);
}

.catalog-media-sub {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(31, 24, 51, 0.08)),
    linear-gradient(160deg, #efe8fb 0%, #b4a5d8 100%);
}

.catalog-media-experiment {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(46, 44, 26, 0.1)),
    linear-gradient(160deg, #eef2db 0%, #c8d991 100%);
  color: #27310f;
}

.catalog-media strong {
  font-size: 32px;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.3);
}

.catalog-image {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: center top;
  display: block;
  background: linear-gradient(180deg, rgba(18, 15, 29, 0.96), rgba(39, 31, 58, 0.88));
}

.catalog-image-yoon-serin {
  object-position: center 8%;
}

.catalog-image-han-seoyul {
  object-position: center top;
}

.catalog-image-park-doa {
  object-position: center 20%;
}

.catalog-image-choi-seojin {
  object-position: center top;
}

.catalog-overlay {
  position: absolute;
  inset: auto 18px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-end;
}

.catalog-status-caption {
  margin-top: 8px;
  font-style: normal;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  opacity: 0.85;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.28);
}

.catalog-body {
  padding: 20px;
  background: transparent;
}

.catalog-name {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: clamp(28px, 3vw, 38px);
}

.catalog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.catalog-meta span {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(180, 150, 255, 0.12);
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 700;
}

.catalog-summary {
  margin: 14px 0 0;
  color: var(--ink);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
}

.catalog-details {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
}

.catalog-details div {
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.catalog-details dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.catalog-details dd {
  margin: 8px 0 0;
  color: var(--ink);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.6;
}

.text-link {
  display: inline-flex;
  align-items: center;
  margin-top: 16px;
  color: var(--accent-dark);
  font-size: 14px;
  font-weight: 800;
}

.text-link.is-dimmed {
  color: rgba(255, 255, 255, 0.6);
}

.catalog-card.is-debut,
.roster-card.is-debut {
  background: rgba(255, 255, 255, 0.05);
}

.catalog-card.is-secret,
.roster-card.is-secret {
  background: rgba(21, 18, 31, 0.88);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 48px rgba(11, 8, 19, 0.28);
}

.catalog-card.is-secret .catalog-body,
.roster-card.is-secret .roster-body {
  color: rgba(255, 255, 255, 0.82);
}

.catalog-card.is-secret .catalog-summary,
.catalog-card.is-secret .catalog-details dd,
.catalog-card.is-secret .catalog-meta span,
.roster-card.is-secret .roster-body p {
  color: rgba(255, 255, 255, 0.84);
}

.catalog-card.is-secret .catalog-meta span {
  background: rgba(255, 255, 255, 0.08);
}

.catalog-card.is-secret .tag-list span {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.84);
}

.catalog-card.is-secret .catalog-details div {
  border-top-color: rgba(255, 255, 255, 0.08);
}

.catalog-media-debut,
.roster-media-debut {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(32, 24, 49, 0.05)),
    linear-gradient(160deg, #f2eefb 0%, #d6cce9 100%);
  color: #3a3151;
}

.catalog-media-secret,
.roster-media-secret {
  position: relative;
  background:
    radial-gradient(circle at 50% 25%, rgba(255, 255, 255, 0.08), transparent 18%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(0, 0, 0, 0.18)),
    linear-gradient(160deg, #06070a 0%, #1a1722 52%, #292431 100%);
  color: #ffffff;
}

.catalog-media-secret::before,
.roster-media-secret::before {
  content: "";
  position: absolute;
  inset: auto 50% 20px auto;
  transform: translateX(50%);
  width: 112px;
  height: 150px;
  border-radius: 64px 64px 42px 42px;
  background:
    radial-gradient(circle at 50% 24%, rgba(255, 255, 255, 0.18) 0 24px, transparent 25px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.02));
  filter: blur(2px);
  opacity: 0.46;
}

.catalog-media-secret::after,
.roster-media-secret::after {
  content: "";
  position: absolute;
  inset: auto 50% 18px auto;
  transform: translateX(50%);
  width: 96px;
  height: 132px;
  border-radius: 56px 56px 38px 38px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.02));
  opacity: 0.32;
}

.roster-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.status-badge-public {
  background: rgba(159, 139, 199, 0.12);
  color: var(--accent-dark);
}

.status-badge-debut {
  background: rgba(207, 199, 230, 0.5);
  color: #5b4c80;
}

.status-badge-secret {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.82);
}

/* 새 상세 레이아웃 */
.detail-hero-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 32px;
  align-items: start;
}

.detail-intro-block {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 8px;
}

.detail-body-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 40px;
}

.detail-profile-block {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--panel);
}

.detail-profile-block h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--ink);
  margin: 8px 0 16px;
}

.detail-shorts-block {
  margin-top: 8px;
}

.detail-shorts-block h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--ink);
  margin: 8px 0 20px;
}

.detail-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 28px;
  align-items: start;
}

.detail-hero-card,
.detail-panel,
.detail-cta-card {
  border: 1px solid var(--line);
  border-radius: 30px;
  background: var(--panel);
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 32px 40px;
}

.detail-cta-info {
  flex: 1;
  min-width: 0;
}

.detail-cta-info strong {
  display: block;
  font-size: 20px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 8px;
}

.detail-cta-info p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.detail-cta-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.cta-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 24px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: var(--panel);
  cursor: not-allowed;
  opacity: 0.6;
  transition: opacity 0.2s;
  text-align: left;
}

.cta-btn-icon {
  font-size: 22px;
  line-height: 1;
}

.cta-btn-label {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.cta-btn-label strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
}

.cta-btn-label small {
  display: block;
  font-size: 11px;
  color: var(--muted);
  font-weight: 500;
}

.cta-btn-support {
  border-color: rgba(108, 70, 187, 0.25);
  background: rgba(108, 70, 187, 0.05);
}

.cta-btn-chat {
  border-color: rgba(108, 70, 187, 0.15);
}

.detail-hero-card {
  overflow: hidden;
  display: flex;
  align-items: stretch;
  justify-content: center;
  padding: 18px;
  min-height: 0;
}

.detail-hero-card.is-public {
  background: rgba(13, 13, 26, 0.95);
  border-color: rgba(180, 150, 255, 0.15);
}

.detail-hero-card.is-debut {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(32, 24, 49, 0.05)),
    linear-gradient(160deg, #f2eefb 0%, #d6cce9 100%);
}

.detail-hero-card.is-secret {
  position: relative;
  background:
    radial-gradient(circle at 50% 25%, rgba(255, 255, 255, 0.08), transparent 18%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(0, 0, 0, 0.18)),
    linear-gradient(160deg, #06070a 0%, #1a1722 52%, #292431 100%);
}

.detail-hero-card.is-secret::before {
  content: "";
  position: absolute;
  inset: auto 50% 28px auto;
  transform: translateX(50%);
  width: 180px;
  height: 250px;
  border-radius: 90px 90px 58px 58px;
  background:
    radial-gradient(circle at 50% 22%, rgba(255, 255, 255, 0.18) 0 34px, transparent 35px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.02));
  opacity: 0.4;
}

.detail-hero-secret {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 10px;
  padding: 28px;
  color: #ffffff;
}

.detail-hero-secret strong {
  font-size: clamp(42px, 6vw, 72px);
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.28);
}

.detail-hero-frame {
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(18, 15, 29, 0.96), rgba(39, 31, 58, 0.88));
  min-height: 720px;
}

.detail-hero-image {
  width: 100%;
  height: 100%;
  min-height: 720px;
  object-fit: cover;
  object-position: center 12%;
  display: block;
}

.detail-hero-image-yoon-serin {
  object-position: center top;
}

.detail-hero-image-han-seoyul {
  object-position: center 8%;
}

.detail-hero-image-park-doa {
  object-position: center 15%;
}

.detail-hero-image-choi-seojin {
  object-position: center top;
}

.detail-copy {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.detail-summary {
  margin-top: 16px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 700;
}

.detail-meta-panel {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  padding: 0;
  border: none;
  background: transparent;
  box-shadow: none;
}

.detail-type-tag,
.detail-tier-tag {
  display: inline-flex;
  align-items: center;
  padding: 5px 12px;
  border-radius: 999px;
  border: 1px solid rgba(180, 150, 255, 0.2);
  background: rgba(180, 150, 255, 0.1);
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 700;
}

.detail-gallery-panel {
  display: grid;
  gap: 12px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: var(--shadow);
}

.detail-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.detail-gallery-card {
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.detail-gallery-image {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.detail-gallery-image-crop1 {
  object-position: center 40%;
}

.detail-gallery-image-crop2 {
  object-position: center 20%;
}

.detail-gallery-caption {
  padding: 12px 14px 14px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  min-height: 42px;
}

.detail-grid {
  display: grid;
  grid-template-columns: 0.84fr 1.16fr;
  gap: 24px;
}

.detail-panel {
  padding: 24px;
}

.detail-profile-list {
  display: grid;
  gap: 14px;
  margin: 8px 0 0;
}

.detail-profile-list div {
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.detail-profile-list dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.detail-profile-list dd {
  margin: 8px 0 0;
  color: var(--ink);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
}

.detail-short-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 8px;
}

.detail-short-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
}

.detail-short-media {
  aspect-ratio: 9 / 16;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 14px;
  color: #ffffff;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(22, 18, 32, 0.7)),
    linear-gradient(160deg, rgba(108, 70, 187, 0.4) 0%, rgba(40, 25, 80, 0.8) 100%);
  background-size: cover;
  background-position: center 30%;
}

.detail-short-media.is-secret {
  background:
    radial-gradient(circle at 50% 25%, rgba(255, 255, 255, 0.08), transparent 18%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(0, 0, 0, 0.18)),
    linear-gradient(160deg, #06070a 0%, #1a1722 52%, #292431 100%);
}

.detail-short-body {
  padding: 14px 16px 16px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.detail-cta-card {
  padding: 24px;
}

.detail-cta-card.is-secret {
  background: rgba(21, 18, 31, 0.88);
  border-color: rgba(255, 255, 255, 0.08);
}

.detail-cta-card.is-secret strong,
.detail-cta-card.is-secret p {
  color: rgba(255, 255, 255, 0.86);
}

.detail-tag-navigation {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag-link {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(180, 150, 255, 0.15);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--accent-dark);
  font-size: 14px;
  font-weight: 800;
}

.feed-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.feed-card,
.package-card {
  border: 1px solid var(--line);
  border-radius: 26px;
  background: var(--panel);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.feed-card-media {
  aspect-ratio: 3 / 4.35;
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px;
  color: #ffffff;
  background:
    linear-gradient(180deg, rgba(10, 8, 18, 0.18), rgba(10, 8, 18, 0.52)),
    linear-gradient(160deg, #b7a6e6 0%, #564181 100%);
  background-size: cover;
  background-position: center 16%;
}

.feed-card-body {
  padding: 18px;
}

.feed-card-body p {
  color: #413852;
}

.roster-card {
  display: grid;
  grid-template-rows: auto 1fr;
}

.roster-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0.9));
}

.roster-body .text-link {
  margin-top: auto;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.package-card {
  padding: 22px;
}

.package-card strong {
  display: block;
  margin-top: 14px;
  color: var(--accent-dark);
  font-size: 28px;
}

.package-list {
  margin: 18px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.package-list li + li {
  margin-top: 8px;
}

.secret-transition {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  background: rgba(9, 8, 14, 0.74);
  backdrop-filter: blur(8px);
}

.secret-transition-panel {
  width: min(460px, calc(100% - 32px));
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    linear-gradient(160deg, #0d0d12 0%, #1f1b28 100%);
  color: #ffffff;
  box-shadow: 0 20px 64px rgba(0, 0, 0, 0.34);
}

.secret-transition-panel span {
  display: inline-block;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.secret-transition-panel strong {
  display: block;
  margin-top: 12px;
  font-size: 28px;
}

@media (max-width: 1080px) {
  .hero-feature {
    grid-template-columns: 1fr;
    min-height: unset;
  }

  .hero-feature-media {
    min-height: 360px;
  }

  .artist-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .shortform-grid,
  .feed-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .roster-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .catalog-grid {
    grid-template-columns: 1fr;
  }

  .detail-layout,
  .detail-grid,
  .detail-short-grid,
  .package-grid,
  .detail-gallery-grid,
  .detail-hero-layout,
  .detail-body-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .header-inner,
  .hero-grid,
  .page-hero-grid,
  .detail-layout,
  .detail-hero-layout,
  .detail-body-grid,
  .detail-grid,
  .premium-grid,
  .business-grid,
  .coming-grid,
  .section-heading,
  .footer-inner {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
  }

  .main-nav {
    justify-content: flex-start;
  }

  .hero-visual,
  .shortform-grid {
    grid-template-columns: 1fr;
  }

  .feed-grid {
    grid-template-columns: 1fr;
  }

  .hero-feature {
    grid-column: span 1;
    grid-template-columns: 1fr;
  }

  .hero-feature-media {
    min-height: 320px;
  }

  .hero-feature-body {
    padding: 28px 24px;
  }

  .hero-feature-body strong {
    font-size: clamp(26px, 6vw, 36px);
  }

  .detail-cta-card {
    flex-direction: column;
    gap: 20px;
    padding: 24px;
  }

  .detail-cta-actions {
    width: 100%;
  }

  .cta-btn {
    flex: 1;
    justify-content: center;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .hero-feature-media {
    min-height: 260px;
  }

  .hero-feature-body {
    padding: 20px;
    gap: 10px;
  }

  .hero-feature-body strong {
    font-size: 26px;
  }

  .hero-feature-tags {
    display: none;
  }

  .hero-feature-link {
    width: 100%;
    justify-content: center;
    border-radius: 12px;
  }

  .detail-cta-card {
    padding: 20px;
    border-radius: 20px;
  }

  .detail-cta-actions {
    flex-direction: column;
  }

  .cta-btn {
    width: 100%;
    justify-content: flex-start;
    padding: 14px 20px;
  }

  .page-business .page-hero-panel {
    margin-top: 0;
  }

  .page-business .detail-cta-actions {
    flex-direction: column;
  }

  .hero-section,
  .content-section {
    padding: 40px 0;
  }

  .page-hero {
    padding: 36px 0 16px;
  }

  .artist-grid,
  .roster-grid {
    grid-template-columns: 1fr;
  }

  .catalog-card {
    grid-template-columns: 1fr;
  }

  .shell {
    width: min(100% - 20px, 1200px);
  }

  .header-inner {
    min-height: auto;
    padding: 14px 0;
  }

  .main-nav {
    width: 100%;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 4px;
  }

  .main-nav a {
    white-space: nowrap;
  }

  .hero-actions {
    width: 100%;
    flex-direction: column;
  }

  .button,
  .button-primary,
  .button-secondary {
    width: 100%;
  }

  .artist-media,
  .short-media,
  .roster-media,
  .premium-placeholder,
  .catalog-media,
  .detail-hero-card,
  .detail-short-media {
    min-height: 0;
  }

  .filter-bar {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .status-legend {
    font-size: 12px;
  }

  .filter-chip {
    white-space: nowrap;
  }
}

/* ==============================
   비즈니스 페이지 라이트 테마
   ============================== */

.page-business {
  --bg: #f8f7f4;
  --bg-soft: #f2f0ed;
  --panel: #ffffff;
  --panel-strong: #ffffff;
  --ink: #1a1a2e;
  --muted: #6b6b8a;
  --line: rgba(0, 0, 0, 0.08);
  --accent: #6c46bb;
  --accent-soft: rgba(108, 70, 187, 0.08);
  --accent-dark: #4a2d8c;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  background: #f8f7f4;
  color: #1a1a2e;
}

.page-business .site-header {
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(16px);
}

.page-business .brand-mark {
  background: linear-gradient(135deg, #6c46bb, #a07de8);
  color: #ffffff;
}

.page-business .brand-copy strong {
  color: #1a1a2e;
}

.page-business .brand-copy small {
  color: #6b6b8a;
}

.page-business .main-nav a {
  color: #3a3a5c;
}

.page-business .main-nav a:hover {
  color: #6c46bb;
}

.page-business .page-hero {
  background: linear-gradient(135deg, #1a0f3c 0%, #2d1a6e 50%, #1a2a4a 100%);
  color: #ffffff;
  padding: 80px 0;
}

.page-business .page-hero .eyebrow {
  color: rgba(200, 175, 255, 0.85);
}

.page-business .page-hero h1 {
  color: #ffffff;
}

.page-business .page-hero p {
  color: rgba(220, 210, 255, 0.8);
}

.page-business .page-hero-panel {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 20px;
  padding: 24px;
  backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.page-business .page-hero-panel > div {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 20px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.page-business .page-hero-panel span {
  color: rgba(200, 175, 255, 0.8);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 8px;
}

.page-business .page-hero-panel strong {
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  display: block;
}

.page-business .content-section {
  background: #f8f7f4;
}

.page-business .section-heading .eyebrow {
  color: #6c46bb;
}

.page-business .section-heading h2 {
  color: #1a1a2e;
}

.page-business .section-heading p {
  color: #6b6b8a;
}

.page-business .package-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.page-business .package-card {
  background: #ffffff;
  border: 1px solid rgba(108, 70, 187, 0.12);
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.2s ease, transform 0.15s ease;
}

.page-business .package-card:hover {
  box-shadow: 0 8px 32px rgba(108, 70, 187, 0.14);
  transform: translateY(-2px);
}

.page-business .package-card strong {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 10px;
}

.page-business .package-card p {
  color: #6b6b8a;
  font-size: 14px;
  line-height: 1.7;
}

.page-business .package-card::before {
  content: "";
  display: block;
  width: 36px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #6c46bb, #a07de8);
  margin-bottom: 20px;
}

.page-business .site-footer {
  background: #1a1a2e;
  color: rgba(255, 255, 255, 0.7);
}

.page-business .site-footer strong {
  color: #ffffff;
}

.page-business .site-footer a {
  color: rgba(180, 150, 255, 0.85);
}

.page-business .site-footer a:hover {
  color: #ffffff;
}
/* 캐릭터 상세 해시태그 + SNS 버튼 */
.detail-hashtags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.detail-hashtag {
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(180, 150, 255, 0.08);
  border: 1px solid rgba(180, 150, 255, 0.15);
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.detail-sns-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.detail-sns-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}

.detail-sns-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--ink);
}

.detail-sns-btn-youtube:hover { color: #ff4444; border-color: rgba(255, 68, 68, 0.3); }
.detail-sns-btn-insta:hover { color: #e1306c; border-color: rgba(225, 48, 108, 0.3); }
.detail-sns-btn-tiktok:hover { color: #69c9d0; border-color: rgba(105, 201, 208, 0.3); }

/* 콘셉트 박스 */
.detail-concept-box {
  padding: 14px 16px;
  border-left: 2px solid rgba(180, 150, 255, 0.4);
  background: rgba(180, 150, 255, 0.05);
  border-radius: 0 12px 12px 0;
}

.detail-concept-text {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

/* 섹션 라벨 공통 */
.detail-section-label {
  display: block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(180, 150, 255, 0.5);
  margin-bottom: 8px;
}

/* SNS 섹션 */
.detail-sns-section {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* 태그 섹션 */
.detail-tags-section {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

/* 프로필 bio + 하단 고정 구조 */
.detail-bio {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.detail-bio p {
  margin: 0;
  font-size: 15px;
  line-height: 1.85;
  color: var(--muted);
}

.detail-intro-bottom {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  margin-top: 16px;
}

/* ── Lumina Stage 브랜드 로고 ── */
.brand-logo {
  height: 36px;
  width: auto;
  object-fit: contain;
  display: block;
}

.brand-copy-fallback {
  display: none;
}

/* ── 헤더 로그인/회원가입 버튼 ── */
.header-auth {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.auth-btn {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.15s, color 0.15s, opacity 0.15s;
  white-space: nowrap;
}

.auth-btn-login {
  color: var(--muted);
  border: 1px solid var(--line);
  background: transparent;
}

.auth-btn-login:hover {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255,255,255,0.2);
}

.auth-btn-signup {
  color: #fff;
  background: var(--accent-dark);
  border: 1px solid transparent;
}

.auth-btn-signup:hover {
  opacity: 0.85;
}

/* ── 비즈니스 섹션 재구성 ── */
.business-copy-row {
  margin-bottom: 32px;
}

.business-copy-row h2 {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  color: var(--ink);
  margin: 8px 0 12px;
}

.business-copy-row p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 20px;
}

.business-cards-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.business-card-big {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 28px 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--panel);
  transition: background 0.15s;
}

.business-card-big:hover {
  background: rgba(255, 255, 255, 0.06);
}

.business-card-big strong {
  font-size: 18px;
  font-weight: 800;
  color: var(--ink);
}

.business-card-big p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

/* ── 아티스트 상세 하단 태그 간격 ── */
.detail-tag-navigation {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

@media (max-width: 860px) {
  .business-cards-row {
    grid-template-columns: 1fr;
  }
  .header-auth {
    display: none;
  }
}

/* ── 섹션 구분선 ── */
.section-divider {
  border: none;
  border-top: 1px solid var(--line);
  margin: 0;
}

/* nav 가운데 정렬 보정 */
.header-inner {
  justify-content: flex-start;
}



/* ══════════════════════════════════════
   아티스트 네임 스트립
══════════════════════════════════════ */
.name-strip {
  overflow: hidden;
  padding: 0;
  border-top: 1px solid rgba(180, 150, 255, 0.1);
  border-bottom: 1px solid rgba(180, 150, 255, 0.1);
  background: linear-gradient(90deg,
    rgba(13, 13, 26, 1) 0%,
    rgba(30, 20, 54, 0.6) 50%,
    rgba(13, 13, 26, 1) 100%
  );
}

.name-strip-inner {
  overflow: hidden;
  mask-image: linear-gradient(90deg,
    transparent 0%,
    black 8%,
    black 92%,
    transparent 100%
  );
}

.name-strip-track {
  display: flex;
  align-items: center;
  gap: 28px;
  width: max-content;
  padding: 18px 0;
  animation: name-scroll 30s linear infinite;
}

.name-strip-item {
  font-size: 16px;
  font-weight: 800;
  color: var(--ink);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: -0.01em;
}

.name-strip-item em {
  font-style: normal;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: rgba(180, 150, 255, 0.45);
}

.name-strip-dot {
  color: rgba(180, 150, 255, 0.25);
  font-size: 14px;
  line-height: 1;
}

.name-strip-item--soon {
  opacity: 0.45;
}

.name-strip-debut {
  font-style: normal;
  font-size: 10px;
  font-weight: 600;
  color: rgba(180, 150, 255, 0.5);
  letter-spacing: 0.04em;
  vertical-align: middle;
  margin-left: 2px;
}

@keyframes name-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ══════════════════════════════════════
   비즈니스 섹션 배경 (배경으로 구분)
══════════════════════════════════════ */
.section-business-surface {
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(108, 70, 187, 0.08) 0%, transparent 70%),
    linear-gradient(180deg, rgba(20, 14, 38, 0.95) 0%, rgba(13, 13, 26, 1) 100%);
  border-top: 1px solid rgba(180, 150, 255, 0.12);
  border-bottom: 1px solid rgba(180, 150, 255, 0.12);
}
/* ══════════════════════════════════════
   캐릭터 컬러 accent (CSS 변수 기반)
   --char-accent: 캐릭터별로 JS에서 주입
══════════════════════════════════════ */
:root {
  --char-accent: #9f8bc7;
  --char-accent-soft: rgba(159, 139, 199, 0.13);
}

.artist-card:hover {
  border-color: rgba(var(--char-accent, 159, 139, 199), 0.28);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.42), 0 0 0 1px color-mix(in srgb, var(--char-accent) 30%, transparent);
}

.catalog-card:hover {
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.38), 0 0 0 1px color-mix(in srgb, var(--char-accent) 24%, transparent);
}

/* ── 데뷔 예정 라인 그리드 (index.html) ────── */
.debut-line-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.debut-card {
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  background: var(--panel);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.debut-card:hover {
  transform: translateY(-3px);
  border-color: color-mix(in srgb, var(--char-accent) 36%, transparent);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.32);
}

.debut-card-media {
  position: relative;
  aspect-ratio: 3 / 4;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(14,12,24,0.18)),
    linear-gradient(160deg, #ded3fb 0%, #8a75c0 100%);
  overflow: hidden;
}

.debut-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 260ms ease;
}

.debut-card:hover .debut-card-media img {
  transform: scale(1.03);
}

.debut-card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 10px;
  border-radius: 20px;
  background: rgba(13, 13, 26, 0.72);
  backdrop-filter: blur(8px);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--accent-pop);
  border: 1px solid rgba(212, 255, 95, 0.25);
}

.debut-card-body {
  padding: 16px 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.debut-card-type {
  font-size: 11px;
  color: var(--muted);
}

.debut-card-body strong {
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
}

.debut-card-body p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
}

/* ── detail-concept 구분 스타일 ──────────────── */
.detail-concept {
  font-style: italic;
  color: var(--muted);
  border-left: 2px solid var(--char-accent, var(--accent));
  padding-left: 14px;
  margin-top: 4px;
}

/* ── artist-card 호버 개선 ────────────────────── */
.artist-card {
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.artist-card:hover {
  transform: translateY(-2px);
}

/* ── 모바일: 데뷔 라인 ────────────────────────── */
@media (max-width: 768px) {
  .debut-line-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .debut-line-grid {
    grid-template-columns: 1fr;
  }
}
