/* ============================================================
   DYLAN YEE STUDIO — Global Stylesheet
   Palette: near-black (#050505 → #000000), cold grey (#d5d5d5),
   dim grey secondary text, red (#ff3131) + blue (#38b6ff) accents.
   ============================================================ */

:root {
  --bg-void: #050505;
  --bg-deep: #000000;
  --ink: #d5d5d5;
  --ink-dim: #6f6f6f;
  --ink-faint: #3a3a3a;
  --red: #ff3131;
  --blue: #38b6ff;
  --line: rgba(213, 213, 213, 0.12);
  --line-strong: rgba(213, 213, 213, 0.24);
  --font-mono: "JetBrains Mono", "IBM Plex Mono", ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;
  --font-sans: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --max-w: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg-void);
  background-image: radial-gradient(ellipse 120% 60% at 50% 0%, #0a0a0a 0%, var(--bg-void) 45%, var(--bg-deep) 100%);
  color: var(--ink);
  font-family: var(--font-sans);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

::selection {
  background: var(--red);
  color: #000;
}

:focus-visible {
  outline: 1px solid var(--blue);
  outline-offset: 3px;
}

.wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
}

/* ---------------- Navbar ---------------- */

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(5, 5, 5, 0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 22px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-mono);
}

/* BRAND & LOGO CONTAINER */
.brand-container {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo {
  height: 32px;
  width: auto;
  object-fit: contain;
  display: block;
}

.nav-title {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.14em;
  font-weight: 600;
  color: var(--ink);
  white-space: nowrap;
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--ink);
  position: relative;
  padding-bottom: 2px;
  transition: color 0.25s ease, text-shadow 0.25s ease;
}

.nav-links a:hover,
.nav-links a.active {
  text-shadow: 0 0 8px rgba(255, 49, 49, 0.4), 0 0 14px rgba(56, 182, 255, 0.25);
}

.nav-links a.active {
  color: #fff;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 24px;
}

/* MULTI-LANGUAGE NAVIGATION */
.lang-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
}

.lang-link {
  color: var(--ink-dim);
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.25s ease, text-shadow 0.25s ease;
}

.lang-link:hover {
  color: var(--ink);
}

.lang-link.active {
  color: var(--blue);
  text-shadow: 0 0 8px rgba(56, 182, 255, 0.5);
  font-weight: 600;
}

.lang-sep {
  color: var(--ink-faint);
  user-select: none;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.nav-toggle span {
  width: 22px;
  height: 1px;
  background: var(--ink);
}

/* ---------------- Buttons ---------------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  padding: 16px 30px;
  border: 1px solid var(--ink);
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  transition: border-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

.btn:hover {
  color: #fff;
  border-color: var(--red);
  box-shadow: 0 0 0 1px rgba(255, 49, 49, 0.2), 0 0 16px rgba(255, 49, 49, 0.12);
}

.btn::after {
  content: "→";
  transition: transform 0.3s ease, color 0.3s ease;
}

.btn:hover::after {
  color: var(--blue);
  transform: translateX(3px);
}

.btn-solid {
  background: var(--ink);
  color: #000;
  border-color: var(--ink);
}

.btn-solid:hover {
  background: #fff;
  border-color: #fff;
  color: #000;
  box-shadow: 0 0 16px rgba(255, 255, 255, 0.12);
}

/* ---------------- Section shared ---------------- */

.section {
  padding: 120px 0;
  border-bottom: 1px solid var(--line);
}

.section:last-of-type {
  border-bottom: none;
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.22em;
  color: var(--ink-dim);
  margin: 0 0 20px;
  text-transform: uppercase;
}

.eyebrow em {
  font-style: normal;
  color: var(--ink);
}

h1, h2, h3 {
  font-weight: 700;
  margin: 0;
  color: #fff;
}

.section-title {
  font-size: clamp(28px, 4vw, 46px);
  letter-spacing: -0.01em;
  line-height: 1.1;
  max-width: 760px;
}

.section-desc {
  color: var(--ink-dim);
  font-size: 15px;
  max-width: 560px;
  margin-top: 22px;
  line-height: 1.7;
}

/* ---------------- Hero (index) ---------------- */

.hero {
  padding: 160px 0 130px;
  position: relative;
}

.hero-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(420px 280px at 12% 20%, rgba(255, 49, 49, 0.05), transparent 70%),
    radial-gradient(420px 280px at 88% 70%, rgba(56, 182, 255, 0.05), transparent 70%);
}

.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--ink-dim);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 30px;
}

.hero-eyebrow .dot {
  width: 6px;
  height: 6px;
  background: var(--red);
  box-shadow: 0 0 10px 2px rgba(255, 49, 49, 0.5);
  border-radius: 50%;
}

.hero h1 {
  font-size: clamp(38px, 6.4vw, 92px);
  line-height: 1.03;
  letter-spacing: -0.02em;
  max-width: 1000px;
  color: var(--ink);
}

.hero h1 .accent-red { color: var(--red); }
.hero h1 .accent-blue { color: var(--blue); }

.hero-sub {
  margin-top: 34px;
  max-width: 560px;
  color: var(--ink-dim);
  font-size: 17px;
  line-height: 1.7;
}

.hero-cta {
  margin-top: 48px;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-meta {
  margin-top: 100px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.hero-meta div {
  background: var(--bg-void);
  padding: 26px 28px;
}

.hero-meta .num {
  font-family: var(--font-mono);
  font-size: 28px;
  color: #fff;
}

.hero-meta .label {
  margin-top: 8px;
  font-size: 12px;
  color: var(--ink-dim);
  letter-spacing: 0.05em;
}

/* ---------------- Manifesto / statement blocks ---------------- */

.statement {
  font-size: clamp(20px, 2.6vw, 30px);
  line-height: 1.55;
  color: var(--ink-dim);
  max-width: 900px;
}

.statement strong {
  color: #fff;
  font-weight: 600;
}

.statement .hl-red { color: var(--red); }
.statement .hl-blue { color: var(--blue); }

.pillars {
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.pillar {
  background: var(--bg-void);
  padding: 40px 34px;
  transition: background 0.3s ease;
}

.pillar:hover {
  background: #0a0a0a;
}

.pillar .idx {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-faint);
  margin-bottom: 22px;
}

.pillar h3 {
  font-size: 18px;
  margin-bottom: 12px;
}

.pillar p {
  color: var(--ink-dim);
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
}

/* ---------------- Footer ---------------- */

.footer {
  padding: 60px 0 50px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-mark {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--ink-dim);
}

.footer-links {
  display: flex;
  gap: 28px;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 12px;
  letter-spacing: 0.08em;
}

.footer-links a:hover {
  color: var(--red);
}

.footer-copy {
  font-size: 11px;
  color: var(--ink-faint);
  margin-top: 30px;
  letter-spacing: 0.04em;
}

/* ============================================================
   SERVICE PAGE
   ============================================================ */

.service-block {
  padding: 100px 0;
  border-bottom: 1px solid var(--line);
}

.service-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 54px;
}

.service-num {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--ink-dim);
  letter-spacing: 0.16em;
}

/* pricing matrix */

.matrix-group {
  margin-bottom: 56px;
}

.matrix-group:last-child {
  margin-bottom: 0;
}

.matrix-group h4 {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--ink);
  text-transform: uppercase;
  margin: 0 0 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line-strong);
}

.matrix {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.tier {
  background: var(--bg-void);
  padding: 30px 26px;
  position: relative;
  transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.tier:hover {
  background: #0a0a0a;
}

.tier.tier-elite {
  box-shadow: inset 0 0 0 1px rgba(255, 49, 49, 0.0);
}

.tier.tier-elite:hover {
  box-shadow: inset 0 0 0 1px rgba(56, 182, 255, 0.35);
}

.tier.tier-new:hover {
  box-shadow: inset 0 0 0 1px rgba(255, 49, 49, 0.35);
}

.tier-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--ink-dim);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.tier-price {
  font-family: var(--font-mono);
  font-size: 30px;
  color: #fff;
  margin-bottom: 20px;
}

.tier-price span {
  font-size: 13px;
  color: var(--ink-dim);
  margin-left: 6px;
}

.tier-row {
  display: flex;
  justify-content: space-between;
  font-size: 12.5px;
  color: var(--ink-dim);
  padding: 8px 0;
  border-top: 1px solid var(--line);
}

.tier-row:first-of-type {
  border-top: none;
}

.tier-row b {
  color: var(--ink);
  font-weight: 500;
}

.tag-required {
  color: var(--red);
}

.tag-none {
  color: var(--ink-faint);
}

.matrix-custom {
  border: 1px dashed var(--line-strong);
  padding: 26px 28px;
  margin-top: 1px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.matrix-custom .lbl {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--ink);
}

.matrix-custom .lbl span {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  color: var(--ink-faint);
}

/* composition licensing cards */

.license-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-bottom: 1px;
}

.license-card {
  background: var(--bg-void);
  padding: 36px 32px;
}

.license-card .lc-title {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--ink-dim);
  text-transform: uppercase;
  margin-bottom: 14px;
}

.license-card .lc-price {
  font-family: var(--font-mono);
  font-size: 26px;
  color: #fff;
  margin-bottom: 16px;
}

.license-card.exclusive .lc-price { color: var(--red); }
.license-card.non-exclusive .lc-price { color: var(--blue); }

.license-card p {
  font-size: 13.5px;
  color: var(--ink-dim);
  line-height: 1.7;
  margin: 0;
}

.spec-notes {
  border: 1px solid var(--line);
  padding: 28px 30px;
  margin-top: 40px;
}

.spec-notes h5 {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--ink-dim);
  text-transform: uppercase;
  margin: 0 0 16px;
}

.spec-notes ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.spec-notes li {
  font-size: 13.5px;
  color: var(--ink-dim);
  line-height: 1.7;
  padding: 10px 0;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 12px;
}

.spec-notes li:first-child {
  border-top: none;
}

.spec-notes li::before {
  content: "—";
  color: var(--ink-faint);
  flex-shrink: 0;
}

/* brokerage */

.brokerage-card {
  border: 1px solid var(--line);
  padding: 44px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.brokerage-card p {
  max-width: 480px;
  color: var(--ink-dim);
  font-size: 14.5px;
  line-height: 1.7;
  margin: 10px 0 0;
}

.brokerage-price {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--ink-dim);
  text-align: right;
}

.brokerage-price span {
  display: block;
  font-size: 20px;
  color: var(--blue);
  margin-top: 6px;
}

/* terms */

.terms-list {
  counter-reset: term;
}

.term-item {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 30px;
  padding: 36px 0;
  border-top: 1px solid var(--line);
}

.term-item:last-child {
  padding-bottom: 0;
}

.term-idx {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--ink-faint);
  padding-top: 4px;
}

.term-item h4 {
  font-size: 15px;
  letter-spacing: 0.04em;
  color: var(--ink);
  margin: 0 0 12px;
  text-transform: uppercase;
}

.term-item p {
  font-size: 13.5px;
  color: var(--ink-dim);
  line-height: 1.8;
  margin: 0;
  max-width: 760px;
}

/* ============================================================
   ARTISTS PAGE
   ============================================================ */

.archive-hero {
  padding: 150px 0 90px;
  text-align: center;
}

.archive-hero h1 {
  font-size: clamp(30px, 5vw, 54px);
}

.coming-soon-frame {
  margin: 70px auto 0;
  max-width: 720px;
  border: 1px solid var(--line);
  padding: 90px 40px;
  position: relative;
  overflow: hidden;
}

.coming-soon-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, transparent 40%, rgba(255, 49, 49, 0.03) 50%, transparent 60%),
    linear-gradient(245deg, transparent 40%, rgba(56, 182, 255, 0.03) 50%, transparent 60%);
  pointer-events: none;
}

.scan-tag {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.3em;
  color: var(--ink-faint);
}

.coming-soon-frame .big {
  font-family: var(--font-mono);
  font-size: clamp(30px, 6vw, 54px);
  color: var(--ink);
  margin: 26px 0;
  letter-spacing: 0.02em;
}

.coming-soon-frame .big .blink {
  color: var(--red);
  animation: blink 1.4s steps(2, start) infinite;
}

@keyframes blink {
  to { opacity: 0; }
}

.coming-soon-frame p {
  color: var(--ink-dim);
  font-size: 14px;
  max-width: 420px;
  margin: 0 auto;
  line-height: 1.7;
}

.player-placeholder {
  margin-top: 40px;
  border: 1px solid var(--line);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  background: #0a0a0a;
}

.player-placeholder .bars {
  display: flex;
  gap: 3px;
  align-items: flex-end;
  height: 22px;
}

.player-placeholder .bars span {
  width: 3px;
  background: var(--ink-faint);
  animation: eq 1.2s ease-in-out infinite;
}

.player-placeholder .bars span:nth-child(1) { height: 40%; animation-delay: 0s; }
.player-placeholder .bars span:nth-child(2) { height: 80%; animation-delay: 0.15s; background: var(--blue); }
.player-placeholder .bars span:nth-child(3) { height: 55%; animation-delay: 0.3s; }
.player-placeholder .bars span:nth-child(4) { height: 90%; animation-delay: 0.45s; background: var(--red); }
.player-placeholder .bars span:nth-child(5) { height: 35%; animation-delay: 0.6s; }

@keyframes eq {
  0%, 100% { transform: scaleY(0.4); }
  50% { transform: scaleY(1); }
}

.player-placeholder .meta {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-faint);
  letter-spacing: 0.08em;
  text-align: left;
}

/* archive intro line */

.archive-sub {
  max-width: 560px;
  margin: 22px auto 0;
  color: var(--ink-dim);
  font-size: 15px;
  line-height: 1.7;
}

/* ---- artist roster grid (Microsoft board-style cards) ---- */

.catalog-section {
  padding: 20px 0 130px;
}

.roster-category {
  margin-bottom: 76px;
}

.roster-category:last-of-type {
  margin-bottom: 60px;
}

.roster-category-title {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0 0 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line-strong);
}

.artist-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.artist-card {
  background: var(--bg-void);
  padding: 36px 30px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: background 0.3s ease;
}

.artist-card:hover {
  background: #0a0a0a;
}

.artist-photo-frame {
  width: 100%;
  max-width: 200px;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #111;
  border: 1px solid var(--line-strong);
  margin-bottom: 24px;
}

.artist-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(25%) contrast(1.05);
  transition: filter 0.4s ease, transform 0.4s ease;
}

.artist-card:hover .artist-photo-frame img {
  filter: grayscale(0%);
  transform: scale(1.03);
}

.artist-name {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 17px;
  color: #fff;
  letter-spacing: 0.005em;
  margin-bottom: 10px;
}

.artist-genre {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-dim);
  border: 1px solid var(--line-strong);
  padding: 5px 12px;
  margin-bottom: 18px;
  transition: border-color 0.3s ease, color 0.3s ease;
}

.artist-card:hover .artist-genre {
  border-color: var(--blue);
  color: var(--ink);
}

.artist-intro {
  font-size: 13px;
  color: var(--ink-faint);
  line-height: 1.7;
  margin: 0;
  font-style: italic;
}

/* empty category placeholder card */

.artist-card-empty {
  grid-column: 1 / -1;
  justify-content: center;
  min-height: 200px;
  padding: 40px 20px;
}

.artist-card-empty .empty-glyph {
  font-family: var(--font-mono);
  font-size: 22px;
  color: var(--ink-faint);
  margin-bottom: 14px;
}

.artist-card-empty .empty-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

.artist-card-empty:hover {
  background: var(--bg-void);
}

/* ============================================================
   INDIVIDUAL ARTIST PROFILE PAGE
   ============================================================ */

.artist-breadcrumb {
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}

.artist-breadcrumb a {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--ink-dim);
  transition: color 0.25s ease;
}

.artist-breadcrumb a:hover {
  color: var(--ink);
}

.artist-profile-hero {
  padding: 90px 0 110px;
}

.artist-profile-grid {
  display: grid;
  grid-template-columns: 30% 1fr;
  gap: 70px;
  align-items: start;
}

/* left column — profile */

.artist-profile-side {
  text-align: center;
  position: sticky;
  top: 110px;
}

.artist-photo-frame-lg {
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #111;
  border: 1px solid var(--line-strong);
  margin-bottom: 28px;
}

.artist-photo-frame-lg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(10%) contrast(1.05);
}

.artist-profile-name {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: clamp(24px, 2.4vw, 32px);
  color: #fff;
  letter-spacing: -0.01em;
  margin: 0 0 16px;
}

.artist-profile-side .artist-genre {
  margin: 0 auto 20px;
}

.artist-profile-intro {
  font-size: 13px;
  color: var(--ink-faint);
  font-style: italic;
  line-height: 1.7;
  margin: 0;
}

/* right column — streaming */

.artist-profile-main .eyebrow {
  margin-bottom: 26px;
}

.spotify-embed-wrap {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 44px;
  box-shadow: 0 0 0 1px var(--line-strong), 0 30px 70px -30px rgba(0, 0, 0, 0.7);
}

.spotify-embed-wrap iframe {
  display: block;
  vertical-align: top;
}

.platform-list {
  border: 1px solid var(--line);
}

.platform-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 26px;
  border-top: 1px solid var(--line);
  font-family: var(--font-mono);
  transition: background 0.3s ease, color 0.3s ease;
}

.platform-row:first-child {
  border-top: none;
}

.platform-info {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.platform-name {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--ink);
}

.platform-sub {
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

.platform-row.is-live {
  cursor: pointer;
}

.platform-row.is-live:hover {
  background: #0a0a0a;
}

.platform-row.is-live:hover .platform-name {
  color: #fff;
}

.platform-arrow {
  color: var(--ink-faint);
  transition: transform 0.3s ease, color 0.3s ease;
}

.platform-row.is-live:hover .platform-arrow {
  color: var(--blue);
  transform: translateX(4px);
}

.platform-row.is-live:nth-of-type(odd):hover .platform-arrow {
  color: var(--red);
}

.platform-row.is-soon {
  cursor: default;
}

.platform-row.is-soon .platform-name {
  color: var(--ink-faint);
}

.platform-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-faint);
  border: 1px solid var(--line-strong);
  padding: 5px 11px;
  flex-shrink: 0;
}

/* ---- SNS narrow bar ---- */

.sns-bar {
  border-top: 1px solid var(--line);
  padding: 54px 0 60px;
}

.sns-bar-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 44px;
  flex-wrap: wrap;
}

.sns-item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.sns-item img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  filter: grayscale(100%) brightness(1.7);
  opacity: 0.85;
  transition: filter 0.3s ease, opacity 0.3s ease;
}

.sns-item:not(.is-soon):hover {
  transform: translateY(-3px);
}

.sns-item:not(.is-soon):hover img {
  filter: none;
  opacity: 1;
}

.sns-item:not(.is-soon):nth-child(odd):hover {
  border-color: var(--red);
  box-shadow: 0 0 16px rgba(255, 49, 49, 0.22);
}

.sns-item:not(.is-soon):nth-child(even):hover {
  border-color: var(--blue);
  box-shadow: 0 0 16px rgba(56, 182, 255, 0.22);
}

.sns-item.is-soon {
  opacity: 0.4;
}

.sns-item.is-soon img {
  filter: grayscale(100%) brightness(1.1);
  opacity: 0.5;
}

.sns-item.is-soon:hover,
.sns-item.is-soon:focus-visible {
  opacity: 0.7;
  border-color: var(--ink-dim);
}

.sns-tooltip {
  position: absolute;
  bottom: 130%;
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  background: #0a0a0a;
  border: 1px solid var(--line-strong);
  color: var(--ink-dim);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  padding: 6px 10px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.sns-item.is-soon:hover .sns-tooltip,
.sns-item.is-soon:focus-visible .sns-tooltip {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 90px;
}

.contact-side .side-line {
  border-top: 1px solid var(--line);
  padding-top: 24px;
  margin-top: 24px;
}

.contact-side .side-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--ink-faint);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.contact-side .side-value {
  font-size: 14px;
  color: var(--ink);
}

.field {
  margin-bottom: 34px;
}

.field label {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--ink-dim);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.field input,
.field textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line-strong);
  color: #fff;
  font-family: var(--font-sans);
  font-size: 16px;
  padding: 10px 2px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  resize: vertical;
  outline: none;
}

.field input::placeholder,
.field textarea::placeholder {
  color: var(--ink-faint);
}

/* ACCENT COLOR RESTRAINT & FOCUS STATES */
.field input:focus,
.field textarea:focus {
  border-color: var(--red);
  box-shadow: 0 1px 0 0 var(--red), 0 8px 16px -8px rgba(255, 49, 49, 0.15);
}

.field.f-email input:focus {
  border-color: var(--blue);
  box-shadow: 0 1px 0 0 var(--blue), 0 8px 16px -8px rgba(56, 182, 255, 0.15);
}

.field.f-message textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 1px 0 0 var(--blue), 0 8px 16px -8px rgba(56, 182, 255, 0.15);
}

.form-note {
  font-size: 12px;
  color: var(--ink-faint);
  margin-top: 24px;
  line-height: 1.7;
}

/* ---------------- Responsive ---------------- */

@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .hero-meta { grid-template-columns: 1fr; }
  .pillars { grid-template-columns: 1fr; }
  .matrix { grid-template-columns: 1fr; }
  .license-cards { grid-template-columns: 1fr; }
  .term-item { grid-template-columns: 1fr; gap: 10px; }
  .artist-grid { grid-template-columns: 1fr; }
  .artist-profile-grid { grid-template-columns: 1fr; gap: 50px; }
  .artist-profile-side { position: static; max-width: 320px; margin: 0 auto; }
  .sns-bar-inner { gap: 28px; }
  .contact-grid { grid-template-columns: 1fr; gap: 60px; }
  .brokerage-card { flex-direction: column; align-items: flex-start; }
  .brokerage-price { text-align: left; }
  .wrap { padding: 0 22px; }
  .section, .service-block { padding: 80px 0; }
}