:root {
  color-scheme: dark;
  --bg: #070708;
  --panel: #111114;
  --panel-2: #19191d;
  --text: #f6f1e7;
  --muted: #aaa39a;
  --gold: #d8b35a;
  --cyan: #72d6d2;
  --wine: #8d2442;
  --line: rgba(246, 241, 231, 0.13);
}

* { box-sizing: border-box; }
body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
}
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
.brand { display: flex; align-items: center; gap: 10px; font-size: 25px; font-weight: 750; }
.brand-mark { color: var(--gold); font-size: 30px; letter-spacing: 0; }
.eyebrow { color: var(--gold); text-transform: uppercase; font-size: 12px; letter-spacing: 1.4px; margin: 0 0 8px; }
.muted { color: var(--muted); }
.landing { background: #070708; }
.hero {
  min-height: 86vh;
  background:
    linear-gradient(90deg, rgba(7,7,8,.95) 0%, rgba(7,7,8,.70) 48%, rgba(7,7,8,.25) 100%),
    url("https://images.unsplash.com/photo-1507838153414-b4b713384a76?auto=format&fit=crop&w=1800&q=80") center/cover;
  padding: 26px clamp(18px, 5vw, 72px);
}
.topbar { display: flex; justify-content: space-between; align-items: center; }
.login-link, .ghost-button, .secondary-action {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.04);
  color: var(--text);
  padding: 10px 14px;
  border-radius: 8px;
  cursor: pointer;
}
.hero-content { max-width: 720px; margin-top: clamp(70px, 14vh, 150px); }
.hero h1 { font-size: clamp(58px, 11vw, 138px); margin: 0; line-height: .92; letter-spacing: 0; }
.lead { color: #eee7dc; font-size: clamp(19px, 2.3vw, 29px); line-height: 1.35; max-width: 650px; }
.primary-action {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: 0;
  background: linear-gradient(135deg, var(--gold), #f1d894 55%, var(--cyan));
  color: #111;
  font-weight: 800;
  padding: 13px 18px;
  border-radius: 8px;
  cursor: pointer;
}
.faq-band { padding: 42px clamp(18px, 5vw, 72px); background: #101012; }
.faq-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.faq-grid article { border-top: 1px solid var(--line); padding-top: 16px; }
.faq-grid h2 { margin: 0 0 8px; font-size: 19px; }
.faq-grid p { color: var(--muted); line-height: 1.55; }
.auth-page, .share-page { min-height: 100vh; display: grid; place-items: center; padding: 24px; background: radial-gradient(circle at top left, rgba(216,179,90,.20), transparent 36%), #070708; }
.auth-card, .share-panel { width: min(440px, 100%); background: var(--panel); border: 1px solid var(--line); border-radius: 8px; padding: 28px; }
.auth-card h1 { margin: 26px 0 18px; }
label { display: grid; gap: 8px; color: var(--muted); }
input, textarea, select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #0b0b0d;
  color: var(--text);
  padding: 12px;
}
textarea { min-height: 140px; resize: vertical; line-height: 1.45; }
.auth-card { display: grid; gap: 15px; }
.error { background: rgba(141,36,66,.18); border: 1px solid rgba(141,36,66,.55); padding: 10px; border-radius: 8px; }
.shell { display: grid; grid-template-columns: 275px minmax(0, 1fr); min-height: 100vh; }
.sidebar { position: sticky; top: 0; height: 100vh; padding: 24px; background: #0c0c0e; border-right: 1px solid var(--line); display: flex; flex-direction: column; gap: 26px; }
.side-nav { display: grid; gap: 8px; }
.side-nav a { padding: 12px; border-radius: 8px; color: #eee8dd; }
.side-nav a:hover { background: var(--panel-2); color: var(--gold); }
.content { padding: 28px clamp(18px, 4vw, 52px) 60px; }
.content-header { display: flex; justify-content: space-between; gap: 18px; align-items: flex-start; margin-bottom: 26px; }
.content-header h1 { margin: 0; font-size: clamp(28px, 4vw, 52px); letter-spacing: 0; }
.credit-box { border: 1px solid var(--line); border-radius: 8px; padding: 12px 16px; min-width: 140px; background: var(--panel); }
.credit-box span { display: block; color: var(--muted); font-size: 13px; }
.credit-box strong { font-size: 24px; }
.work-section, .jobs { margin-top: 24px; }
.form-panel {
  display: grid;
  gap: 14px;
  max-width: 920px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
}
.form-panel h2, .jobs h2, .section-heading h2 { margin: 0; }
details { border: 1px solid var(--line); border-radius: 8px; padding: 12px; }
summary { cursor: pointer; color: var(--gold); font-weight: 700; }
.advanced-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 12px; }
.job-list, .music-list { display: grid; gap: 12px; }
.job-row, .music-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
}
.job-row span, .job-row em { color: var(--muted); }
.filters { display: grid; grid-template-columns: 2fr 1fr 1fr auto auto; gap: 10px; margin: 16px 0; align-items: center; }
.check { display: flex; align-items: center; gap: 8px; white-space: nowrap; }
.check input { width: auto; }
.rename { display: grid; grid-template-columns: minmax(0, 1fr) 42px; gap: 8px; }
.icon-button, .feedback button {
  border: 1px solid var(--line);
  background: #0b0b0d;
  color: var(--text);
  border-radius: 8px;
  cursor: pointer;
}
.feedback { display: grid; grid-template-columns: 42px 42px 90px minmax(160px, 1fr); gap: 8px; }
.feedback .selected { border-color: var(--gold); color: var(--gold); }
audio { width: 100%; margin-top: 8px; }
.audio-placeholder { border: 1px dashed var(--line); color: var(--muted); padding: 18px; border-radius: 8px; margin-top: 8px; }
.share-panel audio { margin-top: 16px; }

@media (max-width: 900px) {
  .shell { grid-template-columns: 1fr; }
  .sidebar { position: relative; height: auto; }
  .side-nav { grid-template-columns: repeat(2, 1fr); }
  .content-header, .job-row, .music-item { grid-template-columns: 1fr; }
  .faq-grid, .advanced-grid, .filters, .feedback { grid-template-columns: 1fr; }
}
