*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --teal:    #7eeee4;
  --teal-b:  rgba(126,238,228,0.10);
  --teal-d:  rgba(126,238,228,0.05);
  --teal-e:  rgba(126,238,228,0.06);
  --text:    #eef8f7;
  --muted:   rgba(220,248,245,0.72);
  --muted2:  rgba(220,248,245,0.45);
  --glass:   rgba(255,255,255,0.04);
  --glass-h: rgba(255,255,255,0.07);
  --border:  rgba(126,238,228,0.14);
  --border-h:rgba(126,238,228,0.36);
  --nav-h:   58px;
}

html { scroll-behavior: smooth; }
body {
  background: #04090f;
  color: var(--text);
  font-family: 'Space Mono', monospace;
  font-size: 16px;
  min-height: 100vh;
  overflow-x: hidden;
}

/* ── фон ── */
canvas#stars { position:fixed; inset:0; pointer-events:none; z-index:0; }
.nebula {
  position:fixed; border-radius:50%;
  pointer-events:none; filter:blur(100px); z-index:1;
}
.nb1 { width:600px;height:600px; top:-150px;left:-150px;  background:rgba(30,80,180,0.10); }
.nb2 { width:500px;height:500px; bottom:-100px;right:-100px; background:rgba(20,150,130,0.08); }
.nb3 { width:300px;height:300px; top:35%;left:60%; background:rgba(80,30,150,0.08);
       animation:nd 20s ease-in-out infinite alternate; }
.nb4 { width:420px;height:420px; top:45%;right:-80px; background:rgba(40,130,220,0.09);
       animation:nd 16s ease-in-out infinite alternate-reverse; }
@keyframes nd { from{transform:translate(0,0)} to{transform:translate(40px,50px)} }

/* ── язык (первый экран) ── */
.lang-screen {
  position: fixed; inset: 0; z-index: 200;
  background: #04090f;
  display: flex; align-items: center; justify-content: center;
  transition: opacity .5s;
}
.lang-screen.hidden { opacity: 0; pointer-events: none; }

.lang-wrap {
  width: min(420px, 92vw);
  display: flex; flex-direction: column; gap: 12px;
  animation: fadeUp .9s cubic-bezier(.16,1,.3,1) both;
}

.lang-panel {
  background: var(--glass);
  border: 1px solid var(--border);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border-radius: 16px;
  padding: clamp(24px,5vw,36px);
}

.lang-eyebrow {
  font-family: 'Space Mono', monospace;
  font-size: 9px; letter-spacing: .32em; text-transform: uppercase;
  color: var(--teal); opacity: .6; margin-bottom: 10px;
}
.lang-title {
  font-family: 'Unbounded', sans-serif;
  font-weight: 500; font-size: clamp(22px,5vw,32px);
  color: var(--text); line-height: 1.05;
}
.lang-title span { color: var(--teal); }
.lang-desc {
  font-size: 11px; color: var(--muted); line-height: 1.6; margin-top: 10px;
}

.lang-choose {
  font-size: 9px; letter-spacing: .3em; text-transform: uppercase;
  color: var(--muted2); text-align: center; margin-bottom: 2px;
}
.lang-row { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }

.lang-btn {
  position: relative;
  background: var(--glass); border: 1px solid var(--border);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-radius: 12px; padding: 18px 16px;
  display: flex; align-items: center; gap: 12px;
  text-decoration: none; cursor: pointer; overflow: hidden;
  transition: border-color .25s, background .25s, transform .18s;
}
.lang-btn::after {
  content: '';
  position: absolute; bottom: 0; left: 15%; right: 15%; height: 1px;
  background: var(--teal); box-shadow: 0 0 8px var(--teal);
  transform: scaleX(0); transition: transform .3s cubic-bezier(.16,1,.3,1);
}
.lang-btn:hover { border-color: var(--border-h); background: var(--glass-h); transform: translateY(-2px); }
.lang-btn:hover::after { transform: scaleX(1); }
.lang-btn:active { transform: scale(.98); }

.btn-code {
  font-family: 'Space Mono', monospace; font-size: 12px; letter-spacing: .12em;
  color: var(--teal); opacity: .8; flex-shrink: 0; transition: opacity .2s;
}
.lang-btn:hover .btn-code { opacity: 1; }
.btn-texts { flex: 1; }
.btn-name {
  font-family: 'Unbounded', sans-serif; font-weight: 400; font-size: 13px;
  color: var(--text); display: block; transition: color .2s;
}
.btn-sub { font-size: 9px; letter-spacing: .15em; text-transform: uppercase; color: var(--muted); display: block; margin-top: 2px; }
.lang-btn:hover .btn-name { color: var(--teal); }

/* ── navbar ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center;
  padding: 0 clamp(14px,4vw,36px);
  background: rgba(4,9,15,0.7);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  font-family: 'Unbounded', sans-serif; font-weight: 500; font-size: 13px;
  color: var(--text); text-decoration: none; flex-shrink: 0;
}
.nav-logo span { color: var(--teal); }

.nav-links {
  display: flex; align-items: center; list-style: none;
  margin-left: 24px; gap: 0;
  overflow-x: auto; scrollbar-width: none; flex: 1;
}
.nav-links::-webkit-scrollbar { display: none; }
.nav-links a {
  font-family: 'Space Mono', monospace;
  font-size: 9px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--muted); text-decoration: none;
  padding: 0 14px; height: var(--nav-h);
  display: flex; align-items: center; white-space: nowrap;
  border-right: 1px solid rgba(126,238,228,.07);
  transition: color .2s, background .2s; flex-shrink: 0;
}
.nav-links a:first-child { border-left: 1px solid rgba(126,238,228,.07); }
.nav-links a:hover { color: var(--teal); background: var(--teal-d); }
.nav-links a.active { color: var(--teal); }

.lang-sw {
  margin-left: auto; flex-shrink: 0;
  display: flex; align-items: center;
  border: 1px solid var(--border); border-radius: 8px; overflow: hidden;
}
.lang-sw button {
  font-family: 'Space Mono', monospace;
  font-size: 9px; letter-spacing: .18em; text-transform: uppercase;
  background: transparent; border: none;
  color: var(--muted); padding: 7px 12px; cursor: pointer;
  transition: color .2s, background .2s;
}
.lang-sw button.active { color: var(--teal); background: var(--teal-b); }
.lang-sw button:hover:not(.active) { color: var(--text); }
.lang-sw .sep { width: 1px; height: 18px; background: var(--border); flex-shrink: 0; }

/* ── контент ── */
main {
  position: relative; z-index: 10;
  padding-top: calc(var(--nav-h) + 56px);
  max-width: 1020px; margin: 0 auto;
  padding-left: clamp(14px,4vw,36px);
  padding-right: clamp(14px,4vw,36px);
  padding-bottom: 80px;
  display: flex; flex-direction: column; gap: 52px;
}

/* ── секция ── */
.section { display: flex; flex-direction: column; gap: 16px; }
.sec-head { display: flex; align-items: center; gap: 12px; }
.sec-tag {
  font-family: 'Space Mono', monospace;
  font-size: 9px; letter-spacing: .28em; text-transform: uppercase;
  color: var(--teal); opacity: .7; flex-shrink: 0;
}
.sec-rule { flex: 1; height: 1px; background: var(--border); }

/* ── стеклянные карточки ── */
.glass-card {
  background: var(--glass); border: 1px solid var(--border);
  border-radius: 16px;
  backdrop-filter: blur(16px) saturate(150%);
  -webkit-backdrop-filter: blur(16px) saturate(150%);
  overflow: hidden;
}

/* ── hero ── */
.hero-block {
  padding: clamp(24px,5vw,44px);
  display: flex; flex-direction: column; gap: 14px;
}
.hero-title {
  font-family: 'Unbounded', sans-serif; font-weight: 500;
  font-size: clamp(22px,4vw,34px); letter-spacing: -.01em; line-height: 1.1;
  color: var(--text);
}
.hero-title span { color: var(--teal); }
.hero-sub { font-size: 16px; color: var(--muted); line-height: 1.75; max-width: 560px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 7px;
  border: 1px solid var(--border); border-radius: 999px; padding: 5px 12px; width: fit-content;
}
.hero-badge .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--teal); box-shadow: 0 0 6px var(--teal);
  animation: blink 2.4s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.2} }
.hero-badge span { font-size: 9px; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); }

/* кнопка join */
.join-btn {
  display: flex; align-items: center; gap: 14px;
  background: rgba(45,212,191,0.10);
  border: 1px solid rgba(45,212,191,0.4);
  border-radius: 14px;
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  padding: 20px 28px; text-decoration: none;
  transition: border-color .25s, background .25s, box-shadow .25s;
  position: relative; overflow: hidden;
  box-shadow: 0 0 24px rgba(45,212,191,0.08), inset 0 1px 0 rgba(45,212,191,0.15);
}
.join-btn::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(45,212,191,0.06); opacity: 0; transition: opacity .25s;
}
.join-btn::after {
  content: ''; position: absolute; left: 0; top: 15%; bottom: 15%;
  width: 3px; background: var(--teal); box-shadow: 0 0 10px var(--teal);
  transform: scaleY(0); transform-origin: center;
  transition: transform .25s cubic-bezier(.16,1,.3,1);
}
.join-btn:hover {
  border-color: rgba(45,212,191,0.7);
  background: rgba(45,212,191,0.15);
  box-shadow: 0 0 40px rgba(45,212,191,0.15), inset 0 1px 0 rgba(45,212,191,0.2);
}
.join-btn:hover::before { opacity: 1; }
.join-btn:hover::after { transform: scaleY(1); }
.join-btn:active { transform: scale(.99); }

.join-ico {
  font-family: 'Space Mono', monospace; font-size: 13px;
  color: var(--teal); flex-shrink: 0;
  position: relative; z-index: 1;
}
.join-text {
  font-family: 'Unbounded', sans-serif; font-weight: 500;
  font-size: clamp(14px,2.5vw,17px); color: var(--teal);
  position: relative; z-index: 1; flex: 1; letter-spacing: .01em;
}
.join-arr {
  font-family: 'Space Mono', monospace; font-size: 16px;
  color: var(--teal); opacity: 0.5; transform: translateX(0);
  transition: opacity .2s, transform .2s;
  position: relative; z-index: 1; flex-shrink: 0;
}
.join-btn:hover .join-arr { opacity: 1; transform: translateX(4px); }

/* разделитель внутри hero */
.hero-divider {
  height: 1px;
  background: rgba(126,238,228,.08);
  margin: 4px 0;
}

/* строка с сайтом */
.hero-site-row {
  display: flex; flex-direction: column; gap: 4px;
}
.hero-site-label {
  font-size: 12px; color: var(--muted2); letter-spacing: .03em;
}
.hero-site-link {
  font-family: 'Space Mono', monospace;
  font-size: 12px; color: var(--teal);
  text-decoration: none; transition: opacity .2s;
  word-break: break-all;
}
.hero-site-link:hover { opacity: .7; }

/* соцсети внутри hero */
.hero-socials-label {
  font-family: 'Space Mono', monospace;
  font-size: 9px; letter-spacing: .28em; text-transform: uppercase;
  color: var(--teal); opacity: .7;
}
.hero-socials {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.hs-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--teal-d); border: 1px solid var(--border);
  border-radius: 10px; padding: 10px 16px;
  text-decoration: none; transition: border-color .2s, background .2s;
}
.hs-btn:hover { border-color: var(--border-h); background: var(--teal-b); }
.hs-ico {
  font-family: 'Space Mono', monospace; font-size: 10px;
  color: var(--teal); opacity: .7;
}
.hs-name {
  font-family: 'Unbounded', sans-serif; font-size: 12px;
  color: var(--text); transition: color .2s;
}
.hs-btn:hover .hs-name { color: var(--teal); }
.hs-tag {
  font-family: 'Space Mono', monospace; font-size: 8px;
  letter-spacing: .12em; color: var(--muted2);
}

/* ── соцсети ── */
.btn-list { display: flex; flex-direction: column; }
.btn-item {
  position: relative; display: flex; align-items: center; gap: 14px;
  padding: 16px 20px; text-decoration: none; cursor: pointer;
  background: transparent;
  border-bottom: 1px solid rgba(126,238,228,.07);
  overflow: hidden; transition: background .2s;
}
.btn-item:last-child { border-bottom: none; }
.btn-item::before { content: ''; position: absolute; inset: 0; background: var(--teal-d); opacity: 0; transition: opacity .2s; }
.btn-item .vbar {
  position: absolute; left: 0; top: 18%; bottom: 18%; width: 2px;
  background: var(--teal); box-shadow: 0 0 6px var(--teal);
  transform: scaleY(0); transform-origin: center;
  transition: transform .25s cubic-bezier(.16,1,.3,1);
}
.btn-item:hover .vbar { transform: scaleY(1); }
.btn-item:hover::before { opacity: 1; }
.btn-item:hover { background: var(--glass-h); }
.btn-ico { font-family: 'Space Mono', monospace; font-size: 10px; color: var(--teal); opacity: .65; width: 28px; text-align: center; flex-shrink: 0; position: relative; z-index: 1; transition: opacity .2s; }
.btn-item:hover .btn-ico { opacity: 1; }
.btn-texts { position: relative; z-index: 1; flex: 1; }
.btn-main { font-family: 'Unbounded', sans-serif; font-weight: 400; font-size: 14px; color: var(--text); display: block; transition: color .2s; }
.btn-sub2 { font-size: 9px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted2); display: block; margin-top: 3px; }
.btn-item:hover .btn-main { color: var(--teal); }
.btn-arr { font-family: 'Space Mono', monospace; font-size: 12px; color: var(--teal); opacity: 0; transform: translateX(-6px); transition: opacity .2s, transform .2s; position: relative; z-index: 1; flex-shrink: 0; }
.btn-item:hover .btn-arr { opacity: 1; transform: translateX(0); }

/* ── поиск ── */
.search-box {
  display: flex; align-items: center; gap: 12px;
  background: var(--glass); border: 1px solid var(--border);
  border-radius: 12px; backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  padding: 12px 18px; transition: border-color .2s;
}
.search-box:focus-within { border-color: rgba(126,238,228,.4); }
.search-icon { font-family: 'Space Mono', monospace; font-size: 11px; color: var(--teal); opacity: .6; flex-shrink: 0; }
.search-box input {
  background: transparent; border: none; outline: none;
  font-family: 'Space Mono', monospace; font-size: 16px; color: var(--text); flex: 1; min-width: 0;
}
.search-box input::placeholder { color: var(--muted2); }
.search-clear { background: transparent; border: none; cursor: pointer; font-family: 'Space Mono', monospace; font-size: 10px; color: var(--muted2); padding: 2px 6px; flex-shrink: 0; transition: color .2s; display: none; }
.search-clear:hover { color: var(--teal); }
.search-clear.visible { display: block; }

/* ── список художников ── */
.artists-grid {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.artist-card {
  background: var(--glass); border: 1px solid var(--border);
  border-radius: 14px;
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  padding: 16px 22px;
  display: grid;
  grid-template-columns: 1fr auto 120px;
  gap: 0 24px;
  align-items: center;
  transition: border-color .2s, background .2s;
  position: relative; overflow: hidden;
}
.artist-card::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 2px;
  background: var(--teal); box-shadow: 0 0 6px var(--teal);
  transform: scaleY(0); transform-origin: center;
  transition: transform .25s cubic-bezier(.16,1,.3,1);
}
.artist-card:hover { border-color: var(--border-h); background: var(--glass-h); }
.artist-card:hover::before { transform: scaleY(1); }

/* левый блок — трек */
.ac-track { display: flex; flex-direction: column; gap: 3px; }
.ac-track-name {
  font-family: 'Unbounded', sans-serif; font-weight: 400; font-size: 13px;
  color: var(--text); text-decoration: none; line-height: 1.3;
  transition: color .2s;
}
.ac-track-name:hover { color: var(--teal); }
.ac-track-name.no-link { cursor: default; }
.ac-track-loading { font-size: 11px; color: var(--muted2); font-style: italic; }
.ac-track-author { font-size: 11px; color: var(--muted2); margin-top: 1px; }

/* правый блок — художник */
.ac-artist { display: flex; flex-direction: column; gap: 2px; text-align: right; }
.ac-artist-label {
  font-size: 9px; letter-spacing: .15em; text-transform: uppercase; color: var(--muted2);
}
.ac-artist-name {
  font-size: 13px; color: var(--text); text-decoration: none;
  transition: color .2s; font-weight: 500; white-space: nowrap;
}
.ac-artist-name:hover { color: var(--teal); }

/* статус */
.ac-status {
  font-family: 'Space Mono', monospace;
  font-size: 8px; letter-spacing: .14em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 999px;
  white-space: nowrap; align-self: center;
  width: 100%; text-align: center;
}
.ac-status.done {
  border: 1px solid rgba(126,238,228,.3);
  color: var(--teal); background: var(--teal-b);
}
.ac-status.wip {
  border: 1px solid rgba(220,248,245,.15);
  color: var(--muted2); background: rgba(220,248,245,.04);
}

/* пустое состояние */
.artists-empty {
  text-align: center; padding: 48px 20px;
  font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--muted2);
}

/* счётчик */
.list-meta {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 8px;
}
.list-count {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
  font-family: 'Space Mono', monospace;
  font-size: 10px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted2);
}
.stat-item { display: flex; align-items: center; gap: 6px; }
.stat-val { font-size: 14px; font-weight: 500; color: var(--teal); font-family: 'Unbounded', sans-serif; letter-spacing: 0; }
.stat-sep { color: var(--muted2); opacity: .4; }

/* ── модал ── */
.modal-overlay {
  position: fixed; inset: 0; z-index: 300;
  background: rgba(4,9,15,0.85);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  display: flex; align-items: center; justify-content: center;
  padding: clamp(16px,4vw,40px);
  opacity: 0; pointer-events: none;
  transition: opacity .3s;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }

.modal {
  background: #0d1117;
  border: 1px solid var(--border);
  border-radius: 18px;
  width: 100%; max-width: 560px;
  max-height: 90vh; overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(126,238,228,.2) transparent;
  transform: translateY(20px);
  transition: transform .35s cubic-bezier(.16,1,.3,1);
}
.modal-overlay.open .modal { transform: translateY(0); }

.modal-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 24px 18px;
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; background: #0d1117; z-index: 1;
}
.modal-title {
  font-family: 'Unbounded', sans-serif; font-weight: 500;
  font-size: 16px; color: var(--text);
}
.modal-close {
  background: transparent; border: none; cursor: pointer;
  font-family: 'Space Mono', monospace; font-size: 11px;
  color: var(--muted2); padding: 4px 8px; transition: color .2s;
}
.modal-close:hover { color: var(--teal); }

.modal-body { padding: 24px; display: flex; flex-direction: column; gap: 22px; }

/* форма */
.form-group { display: flex; flex-direction: column; gap: 8px; }

.form-label {
  font-family: 'Space Mono', monospace;
  font-size: 9px; letter-spacing: .25em; text-transform: uppercase;
  color: var(--teal); opacity: .8;
}
.form-note {
  font-size: 11px; color: var(--muted2); margin-top: -4px;
}

.form-input {
  background: rgba(126,238,228,.04);
  border: 1px solid var(--border);
  border-radius: 10px; padding: 12px 16px;
  font-family: 'Space Mono', monospace; font-size: 14px;
  color: var(--text); outline: none;
  transition: border-color .2s;
}
.form-input:focus { border-color: rgba(126,238,228,.4); }
.form-input::placeholder { color: var(--muted2); }

/* табы соцсетей */
.form-social-tabs { display: flex; flex-wrap: wrap; gap: 6px; }
.stab {
  font-family: 'Space Mono', monospace;
  font-size: 9px; letter-spacing: .15em; text-transform: uppercase;
  background: transparent; border: 1px solid var(--border);
  border-radius: 999px; padding: 5px 14px;
  color: var(--muted2); cursor: pointer; transition: all .2s;
}
.stab:hover { border-color: var(--border-h); color: var(--text); }
.stab.active { border-color: rgba(126,238,228,.5); color: var(--teal); background: var(--teal-b); }

/* загрузка файлов */
.form-upload {
  border: 1px dashed rgba(126,238,228,.25);
  border-radius: 10px;
  background: rgba(126,238,228,.025);
  padding: 20px; cursor: pointer;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  transition: border-color .2s, background .2s;
}
.form-upload:hover { border-color: rgba(126,238,228,.5); background: rgba(126,238,228,.05); }
.upload-ico { font-family: 'Space Mono', monospace; font-size: 14px; color: var(--teal); opacity: .6; }
.upload-text { font-size: 13px; color: var(--muted); }
.upload-hint { font-size: 10px; color: var(--muted2); letter-spacing: .05em; }

.file-list { display: flex; flex-direction: column; gap: 6px; }
.file-item {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  background: rgba(126,238,228,.05); border: 1px solid rgba(126,238,228,.12);
  border-radius: 8px; padding: 8px 12px;
}
.file-item-name { font-size: 12px; color: var(--muted); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.file-item-remove {
  background: transparent; border: none; cursor: pointer;
  font-size: 10px; color: var(--muted2); flex-shrink: 0; transition: color .2s;
}
.file-item-remove:hover { color: var(--teal); }

/* hint под лейблом */
.form-hint {
  font-family: 'Space Mono', monospace;
  font-size: 11px; line-height: 1.6;
  color: var(--muted2);
  margin-top: -4px;
}

/* предупреждение */
.form-warn {
  font-size: 11px; color: rgba(255,200,100,.7);
  letter-spacing: .02em; margin-top: 2px;
}

/* кнопка отправки */
.form-submit {
  font-family: 'Unbounded', sans-serif; font-weight: 500;
  font-size: 13px; letter-spacing: .02em;
  background: rgba(45,212,191,.12);
  border: 1px solid rgba(45,212,191,.4);
  border-radius: 12px; padding: 16px 24px;
  color: var(--teal); cursor: pointer;
  transition: background .2s, border-color .2s, box-shadow .2s;
  width: 100%;
}
.form-submit:hover {
  background: rgba(45,212,191,.2);
  border-color: rgba(45,212,191,.7);
  box-shadow: 0 0 20px rgba(45,212,191,.1);
}
.form-submit:active { transform: scale(.99); }

.form-result {
  font-size: 13px; color: var(--teal); text-align: center;
  line-height: 1.6; display: none;
}
.form-result.visible { display: block; }
.form-result.error { color: rgba(255,120,100,.8); }

/* плашки состояния */
.modal-state {
  padding: 48px 32px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 14px; text-align: center;
  min-height: 280px;
}

.ms-spinner {
  width: 40px; height: 40px;
  border: 2px solid rgba(126,238,228,.15);
  border-top-color: var(--teal);
  border-radius: 50%;
  animation: spin .8s linear infinite;
  margin-bottom: 4px;
}
@keyframes spin { to { transform: rotate(360deg); } }

.ms-icon {
  font-size: 36px; color: var(--teal);
  width: 56px; height: 56px;
  border: 2px solid rgba(126,238,228,.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 4px;
}
.ms-icon.error { color: rgba(255,100,80,.8); border-color: rgba(255,100,80,.3); font-size: 28px; }

.ms-title {
  font-family: 'Unbounded', sans-serif;
  font-weight: 500; font-size: 16px;
  color: var(--text);
}
.ms-sub {
  font-family: 'Space Mono', monospace;
  font-size: 12px; color: var(--muted2); line-height: 1.6;
  max-width: 300px;
}

/* ── footer ── */
footer {
  position: relative; z-index: 10;
  border-top: 1px solid var(--border);
  padding: 16px clamp(14px,4vw,36px);
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 8px;
  background: rgba(4,9,15,.5); backdrop-filter: blur(10px);
}
footer span { font-size: 9px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted2); }
.ft-dot { color: var(--teal); margin-right: 6px; }

/* ── адаптив ── */
@media(max-width:600px){
  .nav-links { display: none; }
  .artist-card {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .ac-artist { text-align: left; }
  .ac-status { align-self: flex-start; width: fit-content; }
}
@media(min-width:769px){
  .nav-logo { font-size: 15px; }
  .btn-main { font-size: 15px; }
  .ac-track-name { font-size: 14px; }
  .ac-artist-name { font-size: 14px; }
}

@keyframes fadeUp {
  from{opacity:0;transform:translateY(20px)}
  to{opacity:1;transform:translateY(0)}
}