*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #050810;
  --surface: #0a101f;
  --surface-2: #101a2e;
  --elevated: #162038;
  --border: rgba(148,163,184,0.1);
  --border-strong: rgba(148,163,184,0.18);
  --text: #e2e8f0;
  --text-muted: #94a3b8;
  --text-dim: #64748b;
  --accent: #f59e0b;
  --accent-hover: #fbbf24;
  --accent-soft: #fcd34d;
  --accent-glow: rgba(245,158,11,0.35);
  --accent-muted: rgba(245,158,11,0.1);
  --live: #34d399;
  --live-glow: rgba(52,211,153,0.4);
  --corp-bg: #0c1222;
  --corp-card: #111827;
  --corp-border: rgba(148,163,184,0.12);
  --corp-text: #e2e8f0;
  --corp-muted: #94a3b8;
  --light: #101a2e;
  --light-2: #0a101f;
  --light-text: #e2e8f0;
  --light-muted: #94a3b8;
  --font: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
  --nav-h: 68px;
  --dock-h: 68px;
  --radius: 14px;
  --radius-sm: 10px;
  --radius-lg: 20px;
  --max: 1180px;
  --safe-b: env(safe-area-inset-bottom, 0px);
  --safe-t: env(safe-area-inset-top, 0px);
  --shadow: 0 12px 40px rgba(0,0,0,0.28);
  --shadow-sm: 0 2px 8px rgba(15,23,42,0.06);
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-tap-highlight-color: transparent;
}
body.menu-open { overflow: hidden; }
@media (max-width: 899px) {
  body:has(.dock) { padding-bottom: calc(var(--dock-h) + var(--safe-b)); }
}

/* ── TOP NAV — unified dark glass ── */
.topnav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: linear-gradient(180deg, rgba(10,16,30,0.97) 0%, rgba(5,8,16,0.94) 100%);
  backdrop-filter: blur(22px) saturate(1.25);
  -webkit-backdrop-filter: blur(22px) saturate(1.25);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 30px rgba(0,0,0,0.22), inset 0 -1px 0 rgba(245,158,11,0.06);
}
.topnav::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 5%, rgba(245,158,11,0.35) 50%, transparent 95%);
  opacity: 0.55;
  pointer-events: none;
}
.topnav__bar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  max-width: calc(var(--max) + 2rem);
  margin: 0 auto;
  padding: 0.65rem 1.25rem;
  padding-top: calc(0.65rem + var(--safe-t));
  min-height: var(--nav-h);
}
.topnav__brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
}
.topnav__logo {
  display: flex;
  align-items: center;
  padding: 0.2rem 0;
  text-decoration: none;
}
.topnav__logo img {
  display: block;
  height: 30px;
  width: auto;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.35));
}
.topnav__live {
  display: none;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  padding: 0.32rem 0.7rem;
  border-radius: 999px;
  background: rgba(16,26,46,0.9);
  border: 1px solid var(--border);
}
.topnav__live.is-live {
  color: var(--live);
  border-color: rgba(52,211,153,0.35);
  background: rgba(52,211,153,0.08);
  box-shadow: 0 0 18px rgba(52,211,153,0.12);
}
.topnav__live-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--text-dim);
}
.topnav__live.is-live .topnav__live-dot {
  background: var(--live);
  box-shadow: 0 0 10px var(--live-glow);
  animation: pulse 1.5s ease infinite;
}
.topnav__live-mob { display: none; }

.topnav__burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px; height: 42px;
  margin-left: auto;
  background: rgba(16,26,46,0.85);
  border: 1px solid var(--border);
  border-radius: 12px;
  cursor: pointer;
  padding: 0 11px;
  transition: border-color 0.2s, background 0.2s;
}
.topnav__burger:hover {
  border-color: rgba(245,158,11,0.35);
  background: rgba(22,32,56,0.95);
}
.topnav__burger span {
  display: block;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}
body.menu-open .topnav__burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.menu-open .topnav__burger span:nth-child(2) { opacity: 0; }
body.menu-open .topnav__burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.topnav__nav {
  display: none;
  position: fixed;
  top: calc(var(--nav-h) + var(--safe-t));
  left: 0.75rem; right: 0.75rem;
  background: rgba(10,16,30,0.98);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 0.65rem;
  flex-direction: column;
  gap: 0.2rem;
  box-shadow: 0 20px 50px rgba(0,0,0,0.45);
  max-height: calc(100vh - var(--nav-h) - 1rem);
  overflow-y: auto;
}
.topnav__nav.is-open { display: flex; }
.topnav__nav a {
  padding: 0.72rem 1rem;
  border-radius: 12px;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  transition: background 0.15s, color 0.15s, box-shadow 0.15s;
}
.topnav__nav a:hover {
  color: var(--text);
  background: rgba(22,32,56,0.9);
}
.topnav__nav a.is-active {
  color: var(--accent-soft);
  background: rgba(245,158,11,0.12);
  box-shadow: inset 0 0 0 1px rgba(245,158,11,0.22);
}

.topnav__actions {
  display: none;
  align-items: center;
  gap: 0.55rem;
}
.topnav__cta {
  white-space: nowrap;
  font-size: 0.82rem;
  padding: 0.55rem 1.1rem;
  min-height: 38px;
  box-shadow: 0 4px 16px var(--accent-glow);
}
.topnav__account {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  padding: 0.45rem 0.7rem;
  border-radius: 10px;
  border: 1px solid transparent;
  transition: color 0.15s, border-color 0.15s, background 0.15s;
}
.topnav__account:hover {
  color: var(--text);
  border-color: var(--border);
  background: rgba(16,26,46,0.7);
}
.topnav__copy { font-size: 0.78rem; padding: 0.45rem 0.85rem; min-height: 38px; }

.topnav__scrim {
  display: none;
  position: fixed;
  inset: 0;
  top: calc(var(--nav-h) + var(--safe-t));
  background: rgba(2,4,10,0.65);
  backdrop-filter: blur(3px);
  z-index: 150;
}
.topnav__scrim.is-visible { display: block; }

@media (min-width: 900px) {
  .topnav__burger { display: none; }
  .topnav__scrim { display: none !important; }
  .topnav__live { display: flex; }
  .topnav__nav {
    display: flex;
    position: static;
    flex-direction: row;
    align-items: center;
    margin-left: auto;
    padding: 4px;
    background: rgba(16,26,46,0.65);
    border: 1px solid var(--border);
    border-radius: 999px;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
    gap: 2px;
    max-height: none;
    overflow: visible;
  }
  .topnav__nav a {
    padding: 0.42rem 0.85rem;
    font-size: 0.84rem;
    border-radius: 999px;
  }
  .topnav__nav a.is-active {
    background: rgba(245,158,11,0.16);
    box-shadow: 0 0 20px rgba(245,158,11,0.1), inset 0 0 0 1px rgba(245,158,11,0.25);
  }
  .topnav__actions {
    display: flex;
    margin-left: 0.65rem;
  }
}

@media (max-width: 899px) {
  .topnav__live {
    display: flex;
    margin-left: 0;
    padding: 0.3rem 0.55rem;
  }
  .topnav__live #livePillText { display: none; }
  .topnav__live-mob { display: inline; }
  .topnav__live.is-live .topnav__live-mob { color: var(--live); }
}

.main { min-height: calc(100vh - var(--nav-h) - 120px); }

/* ── BUTTONS ── */
.btn-primary, .btn-coral {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.7rem 1.35rem;
  min-height: 44px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  border: none;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s, transform 0.15s, box-shadow 0.15s;
  box-shadow: 0 4px 20px var(--accent-glow);
}
.btn-primary:hover, .btn-coral:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}
.btn-outline, .btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.2rem;
  min-height: 44px;
  border-radius: 999px;
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-strong);
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.15s, color 0.15s, background 0.15s;
}
.btn-outline:hover, .btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent-soft);
  background: rgba(249,115,22,0.06);
}
.btn-ghost { border-color: var(--border); font-size: 0.8rem; padding: 0.5rem 0.9rem; min-height: 36px; }

/* ── STAGE / PLAYER ── */
.stage {
  position: relative;
  overflow: hidden;
  padding: 2.5rem 1.25rem 2rem;
  text-align: center;
}
.stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(249,115,22,0.22), transparent),
    radial-gradient(ellipse 50% 40% at 90% 80%, rgba(52,211,153,0.08), transparent);
  pointer-events: none;
}
.stage__bg {
  position: absolute; inset: 0;
  background: var(--bg);
  transition: opacity 0.6s;
}
.stage__bg.has-art {
  background-size: cover;
  background-position: center;
  filter: blur(48px) brightness(0.3) saturate(1.2);
  transform: scale(1.15);
}
.stage__inner {
  position: relative;
  max-width: 520px;
  margin: 0 auto;
  padding: 1.5rem;
  background: rgba(17,17,19,0.65);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 4px);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.stage__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-soft);
  margin-bottom: 1rem;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  background: rgba(249,115,22,0.12);
  border: 1px solid rgba(249,115,22,0.2);
}
.stage__artist {
  font-size: 0.85rem;
  color: var(--accent-soft);
  font-weight: 600;
  margin-bottom: 0.25rem;
}
.stage__title {
  font-size: clamp(1.35rem, 4.5vw, 2rem);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 0.35rem;
  letter-spacing: -0.02em;
}
.stage__listeners { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 1.5rem; }

.stage__player { margin-bottom: 1.25rem; }
.stage__disc {
  position: relative;
  width: 168px; height: 168px;
  margin: 0 auto 1rem;
  border-radius: 50%;
}
.stage__disc-placeholder {
  position: absolute; inset: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--elevated), var(--accent-hover));
  border: 2px solid var(--border-strong);
}
.stage__disc-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border-strong);
  opacity: 0;
  transition: opacity 0.4s;
}
.stage__disc-img.is-visible { opacity: 1; }
.stage__disc-ring {
  position: absolute; inset: -5px;
  border-radius: 50%;
  border: 2px solid transparent;
}
.stage__disc-ring.is-active {
  border-color: var(--accent);
  animation: spin 10s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.45} }

.stage__play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--accent);
  border: none;
  cursor: pointer;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 28px var(--accent-glow);
  transition: transform 0.15s, background 0.15s;
}
.stage__play:hover { transform: translate(-50%, -50%) scale(1.05); background: var(--accent-hover); }
.stage__play svg { width: 26px; height: 26px; }
.stage__play .ico-pause { display: none; }
.stage__play.is-playing .ico-play { display: none; }
.stage__play.is-playing .ico-pause { display: block; }

.stage__viz { display: block; width: 100%; max-width: 360px; height: 56px; margin: 0 auto; opacity: 0.65; }

.stage__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  max-width: 260px;
  margin: 0 auto 0.65rem;
}
.stage__vol {
  width: 40px; height: 40px;
  border-radius: var(--radius-sm);
  background: var(--elevated);
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 1.1rem;
  cursor: pointer;
}
.stage__controls input[type=range] { flex: 1; accent-color: var(--accent); min-height: 40px; cursor: pointer; }
.stage__status { font-size: 0.78rem; color: var(--text-dim); min-height: 1.2em; margin-bottom: 1rem; }

.stage__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.stage__metrics {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}
.stage__metrics li {
  text-align: center;
  padding: 0.65rem 0.5rem;
  background: var(--elevated);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}
.stage__metrics strong {
  display: block;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.stage__metrics span {
  font-size: 0.65rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.stage__metrics em { display: block; font-size: 0.68rem; color: var(--live); font-style: normal; }

/* ── BENTO ── */
.bento {
  display: grid;
  gap: 1rem;
  padding: 1.25rem;
  max-width: var(--max);
  margin: 0 auto;
}
@media (min-width: 768px) {
  .bento { grid-template-columns: 1.2fr 0.8fr; grid-template-rows: auto auto; }
  .panel--history { grid-row: 1 / 3; }
}
.panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
}
.panel__head { display: flex; align-items: baseline; gap: 0.5rem; margin-bottom: 0.85rem; }
.panel__head h2 { font-size: 1rem; font-weight: 700; letter-spacing: -0.01em; }
.panel__sub { font-size: 0.72rem; color: var(--text-dim); }

.track-feed, .rank-list, .req-feed { list-style: none; }
.track-feed li, .req-feed li {
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.84rem;
  color: var(--text-muted);
}
.track-feed li.is-now {
  color: var(--text);
  border-left: 3px solid var(--accent);
  padding-left: 0.65rem;
}
.track-feed__empty, .rank-list__empty, .req-feed__empty { color: var(--text-dim); font-size: 0.84rem; }

.rank-list li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.45rem 0;
  border-bottom: 1px solid var(--border);
}
.rank-list__num {
  width: 26px; height: 26px;
  border-radius: 6px;
  background: rgba(255,122,0,0.15);
  color: var(--accent-soft);
  display: grid;
  place-items: center;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}
.rank-list__art { width: 38px; height: 38px; border-radius: 8px; object-fit: cover; flex-shrink: 0; }
.rank-list__meta strong { display: block; font-size: 0.84rem; }
.rank-list__meta span { font-size: 0.72rem; color: var(--text-dim); }

.req-feed__nick { display: block; font-size: 0.7rem; font-weight: 700; color: var(--accent-soft); }
.req-feed__text { font-size: 0.84rem; color: var(--text-muted); }
.req-feed__time { font-size: 0.65rem; color: var(--text-dim); }

/* ── CHAT ── */
.chat-block {
  padding: 2rem 1.25rem;
  max-width: var(--max);
  margin: 0 auto;
}
.chat-block__head { margin-bottom: 1rem; }
.chat-block__head h2 { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.3rem; letter-spacing: -0.02em; }
.chat-block__head p { font-size: 0.88rem; color: var(--text-muted); }
.chat-block__head code {
  background: var(--elevated);
  padding: 0.15rem 0.4rem;
  border-radius: 6px;
  font-size: 0.8rem;
  color: var(--accent-soft);
  border: 1px solid var(--border);
}
.chat-room {
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
}
.chat-room__msgs {
  height: 260px;
  overflow-y: auto;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.chat-room__empty { color: var(--text-dim); font-size: 0.88rem; text-align: center; padding: 2rem; }
.chat-bubble {
  max-width: 85%;
  padding: 0.5rem 0.8rem;
  border-radius: 14px 14px 14px 4px;
  background: var(--elevated);
  font-size: 0.86rem;
  border: 1px solid var(--border);
}
.chat-bubble--own { align-self: flex-end; background: rgba(249,115,22,0.12); border-radius: 14px 14px 4px 14px; border-color: rgba(249,115,22,0.2); }
.chat-bubble--request { border-left: 3px solid var(--accent); }
.chat-bubble__nick { font-size: 0.68rem; font-weight: 700; color: var(--accent-soft); margin-bottom: 0.1rem; }
.chat-bubble__text { word-break: break-word; }
.chat-bubble__time { font-size: 0.62rem; color: var(--text-dim); margin-top: 0.15rem; }

.chat-room__form {
  display: grid;
  grid-template-columns: 1fr 2fr auto;
  gap: 0.5rem;
  padding: 0.75rem;
  border-top: 1px solid var(--border);
  background: var(--surface-2);
}
.chat-room__form input {
  padding: 0.6rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg);
  color: var(--text);
  font-family: inherit;
  font-size: 0.86rem;
}
.chat-room__form input:focus { outline: none; border-color: var(--accent); }
.chat-room__form button {
  padding: 0.6rem 1rem;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.84rem;
  min-height: 44px;
}
@media (max-width: 500px) {
  .chat-room__form { grid-template-columns: 1fr; }
  .chat-room__form input, .chat-room__form button { min-height: 44px; font-size: 16px; }
}

/* ── PROGRAM ── */
.band-section { padding: 2rem 1.25rem; max-width: var(--max); margin: 0 auto; }
.band-section--dark { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); max-width: none; }
.band-section--dark .band-section__head,
.band-section--dark .timeline { max-width: var(--max); margin-left: auto; margin-right: auto; }
.band-section__head { margin-bottom: 1.25rem; }
.band-section__head h2 { font-size: 1.25rem; font-weight: 700; letter-spacing: -0.02em; }
.band-section__head p { color: var(--text-muted); font-size: 0.88rem; }

.timeline {
  display: grid;
  gap: 0.65rem;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}
.timeline__item {
  padding: 1.1rem;
  border-radius: var(--radius);
  background: var(--surface-2);
  border: 1px solid var(--border);
  transition: border-color 0.2s;
}
.timeline__item.is-now { border-color: rgba(249,115,22,0.45); background: rgba(249,115,22,0.08); }
.timeline__day {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--accent-soft);
  margin-bottom: 0.4rem;
}
.timeline__item h3 { font-size: 0.95rem; font-weight: 600; margin-bottom: 0.2rem; }
.timeline__item p { font-size: 0.8rem; color: var(--text-muted); }

/* ── PRICING ── */
.pricing-row {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.price-card {
  padding: 1.35rem;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
}
.price-card--featured {
  background: rgba(249,115,22,0.1);
  border-color: rgba(249,115,22,0.35);
}
.price-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.45rem; }
.price-card p { font-size: 0.84rem; color: var(--text-muted); margin-bottom: 1rem; }
.price-card__link { color: var(--accent-soft); text-decoration: none; font-weight: 600; font-size: 0.86rem; }
.price-card__link:hover { text-decoration: underline; }

.check-list { list-style: none; margin-top: 0.5rem; }
.check-list li {
  padding: 0.35rem 0 0.35rem 1.4rem;
  position: relative;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--live);
  font-weight: 700;
}

/* ── CONTACT ── */
.contact-block {
  display: grid;
  gap: 2rem;
  padding: 2rem 1.25rem;
  max-width: var(--max);
  margin: 0 auto;
}
@media (min-width: 768px) { .contact-block { grid-template-columns: 1fr 1.2fr; } }
.contact-block__info h2 { font-size: 1.35rem; font-weight: 700; margin-bottom: 0.65rem; }
.contact-block__info p { color: var(--text-muted); font-size: 0.92rem; margin-bottom: 1rem; }
.contact-lines { list-style: none; }
.contact-lines a { color: var(--accent-soft); text-decoration: none; font-weight: 500; font-size: 0.92rem; }
.contact-lines li { padding: 0.3rem 0; }

.contact-block__form label { display: block; margin-bottom: 0.85rem; }
.contact-block__form label span { display: block; font-size: 0.78rem; font-weight: 600; margin-bottom: 0.3rem; color: var(--text-muted); }
.contact-block__form input, .contact-block__form textarea {
  width: 100%;
  padding: 0.65rem 0.8rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface);
  color: var(--text);
  font-family: inherit;
  font-size: 0.9rem;
  min-height: 44px;
}
.contact-block__form input:focus, .contact-block__form textarea:focus { outline: none; border-color: var(--accent); }
.form-row { display: grid; gap: 0.85rem; }
@media (min-width: 500px) { .form-row { grid-template-columns: 1fr 1fr; } }
.form-types { display: flex; flex-wrap: wrap; gap: 0.45rem; margin-bottom: 0.85rem; }
.form-types label {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  cursor: pointer;
  font-size: 0.8rem;
  margin-bottom: 0;
}
.form-types input { accent-color: var(--accent); }
.form-types label:has(input:checked) { border-color: var(--accent); background: rgba(249,115,22,0.1); }
.form-note { font-size: 0.84rem; margin-top: 0.65rem; min-height: 1.2em; }

/* ── FOOTER — corporate ── */
.site-foot {
  margin-top: 3rem;
  padding: 3rem 1.5rem 1.75rem;
  border-top: 1px solid var(--border);
  background: var(--surface);
}
.site-foot__inner {
  max-width: var(--max);
  margin: 0 auto 2rem;
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 768px) { .site-foot__inner { grid-template-columns: 1.4fr 1fr; align-items: start; } }
.site-foot__brand { display: flex; gap: 1rem; align-items: flex-start; }
.site-foot__name {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.35rem;
  letter-spacing: -0.02em;
}
.site-foot__brand p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.65; max-width: 360px; }
.site-foot__cols { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.site-foot__cols strong {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  color: var(--text-dim);
}
.site-foot__cols ul { list-style: none; }
.site-foot__cols li { margin-bottom: 0.45rem; }
.site-foot__cols a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  transition: color 0.15s;
}
.site-foot__cols a:hover { color: var(--accent-soft); }
.site-foot__bottom {
  max-width: var(--max);
  margin: 0 auto;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
}
.site-foot__copy {
  font-size: 0.8rem;
  color: var(--text-dim);
  margin: 0;
}
.site-foot__tag {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin: 0;
}
.site-foot a { color: var(--accent-soft); text-decoration: none; }
.site-foot a:hover { text-decoration: underline; }

/* ── DOCK ── */
.dock {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  height: calc(var(--dock-h) + var(--safe-b));
  padding-bottom: var(--safe-b);
  background: rgba(17,17,19,0.95);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-left: 1rem;
  padding-right: 1rem;
  z-index: 180;
  cursor: pointer;
}
@media (min-width: 900px) { .dock { display: none; } }
.dock__play {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--accent);
  border: none;
  color: #fff;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  cursor: pointer;
  box-shadow: 0 4px 16px var(--accent-glow);
}
.dock__play svg { width: 20px; height: 20px; }
.dock__play .ico-pause { display: none; }
.dock__play.is-playing .ico-play { display: none; }
.dock__play.is-playing .ico-pause { display: block; }
.dock__meta { flex: 1; min-width: 0; }
.dock__live { font-size: 0.62rem; font-weight: 700; color: var(--text-dim); letter-spacing: 0.06em; }
.dock__live.is-on { color: var(--live); }
.dock__track { display: block; font-size: 0.82rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.dock__count { font-size: 0.78rem; color: var(--text-muted); flex-shrink: 0; }

/* ── TEASER ── */
.teaser-links {
  padding: 1.25rem;
  display: grid;
  gap: 0.75rem;
  max-width: var(--max);
  margin: 0 auto 1rem;
}
@media (min-width: 640px) { .teaser-links { grid-template-columns: repeat(3, 1fr); } }
.teaser-links a {
  display: block;
  padding: 1rem;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
  text-decoration: none;
  font-size: 0.86rem;
  transition: border-color 0.15s, transform 0.15s;
}
.teaser-links a:hover { border-color: rgba(249,115,22,0.4); transform: translateY(-2px); }
.teaser-links strong { display: block; margin-bottom: 0.2rem; color: var(--accent-soft); font-size: 0.9rem; }

/* ── RESPONSIVE ── */
@media (max-width: 599px) {
  .stage { padding: 1.25rem 1rem 1.5rem; }
  .stage__inner { padding: 1.25rem 1rem; }
  .stage__disc { width: 140px; height: 140px; }
  .stage__play { width: 52px; height: 52px; }
  .stage__actions { flex-direction: column; }
  .stage__actions .btn-coral, .stage__actions .btn-outline { width: 100%; }
  .timeline {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 0.65rem;
    padding-bottom: 0.35rem;
    scrollbar-width: none;
  }
  .timeline::-webkit-scrollbar { display: none; }
  .timeline__item { flex: 0 0 min(76vw, 240px); scroll-snap-align: start; }
}

@media (min-width: 600px) and (max-width: 767px) {
  .bento { grid-template-columns: 1fr 1fr; }
  .panel--history { grid-column: 1 / -1; }
}

a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
.is-bump { animation: bump 0.4s ease; }
@keyframes bump { 0%,100%{transform:scale(1)} 50%{transform:scale(1.08); color:var(--live)} }
