:root {
    --ink: #111827;
    --muted: #667085;
    --line: #dde3ea;
    --brand: #0f766e;
    --brand-dark: #0b3f3b;
    --accent: #c2410c;
    --gold: #b7791f;
    --surface: #ffffff;
    --soft: #f5f7f9;
    --night: #101820;
    --shadow: 0 18px 55px rgba(17, 24, 39, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--ink);
    font-family: Arial, Helvetica, sans-serif;
    background: var(--surface);
    line-height: 1.5;
}
a { color: inherit; text-decoration: none; }
input, select, button, textarea { font: inherit; }
textarea { resize: vertical; }

.topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 16px clamp(18px, 4vw, 58px);
    border-bottom: 1px solid rgba(221, 227, 234, .82);
    background: rgba(255,255,255,.94);
    position: sticky;
    top: 0;
    z-index: 5;
    backdrop-filter: blur(16px);
}
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 900; font-size: 1.18rem; color: var(--brand-dark); }
.brand span { display: inline-grid; place-items: center; width: 36px; height: 36px; border-radius: 8px; background: var(--night); color: #fff; font-size: .85rem; }
.topbar nav { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; color: var(--muted); font-size: .95rem; }
.topbar nav a:hover { color: var(--brand-dark); }
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 18px;
    border: 0;
    border-radius: 8px;
    background: var(--brand);
    color: #fff;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(15,118,110,.22);
}
.button-light { background: #e7f4f2; color: var(--brand-dark); box-shadow: none; }
.button-dark { background: var(--night); color: #fff; box-shadow: none; }
.button.full { width: 100%; }
.text-link { color: var(--brand-dark); font-weight: 800; border-bottom: 2px solid var(--brand); }

.hero {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, .8fr);
    gap: clamp(28px, 5vw, 70px);
    padding: clamp(44px, 8vw, 96px) clamp(18px, 4vw, 58px);
}
.hero-pro {
    min-height: 650px;
    align-items: center;
    background:
        linear-gradient(115deg, rgba(16,24,32,.92) 0%, rgba(16,24,32,.82) 48%, rgba(15,118,110,.62) 100%),
        url('https://images.unsplash.com/photo-1503095396549-807759245b35?auto=format&fit=crop&w=1800&q=80') center/cover;
    color: #fff;
}
.hero-copy h1 { margin: 0 0 18px; max-width: 900px; font-size: clamp(2.4rem, 5vw, 5.3rem); line-height: 1.01; }
.hero-copy p { max-width: 760px; color: rgba(255,255,255,.82); font-size: 1.12rem; }
.eyebrow { color: var(--accent); font-weight: 900; text-transform: uppercase; letter-spacing: 0; font-size: .78rem; }
.hero-pro .eyebrow { color: #fed7aa; }
.actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.stats-row { display: grid; grid-template-columns: repeat(4, minmax(92px, 1fr)); gap: 12px; max-width: 760px; margin-top: 34px; }
.stats-row div { border: 1px solid rgba(255,255,255,.22); border-radius: 8px; padding: 14px; background: rgba(255,255,255,.08); }
.stats-row strong { display: block; font-size: 1.45rem; }
.stats-row span { color: rgba(255,255,255,.72); font-size: .86rem; }

.search-box, .auth-card, .panel {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 24px;
    box-shadow: var(--shadow);
}
.search-pro { background: rgba(255,255,255,.96); color: var(--ink); }
.search-pro p { margin: 0; color: var(--muted); font-size: .9rem; }
label { display: grid; gap: 7px; color: var(--ink); font-weight: 800; }
input, select, textarea {
    width: 100%;
    min-height: 44px;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 0 12px;
    background: #fff;
    color: var(--ink);
}
textarea { padding: 12px; }
.search-box { display: grid; gap: 16px; align-self: start; }

.notice { margin: 18px clamp(18px, 4vw, 58px) 0; padding: 14px 18px; border: 1px solid #f59e0b; border-radius: 8px; background: #fffbeb; color: #92400e; font-weight: 800; }
.section { padding: clamp(44px, 6vw, 82px) clamp(18px, 4vw, 58px); }
.band { background: var(--soft); }
.section-head { max-width: 820px; margin-bottom: 28px; }
.split-head { max-width: none; display: flex; align-items: end; justify-content: space-between; gap: 20px; }
.compact { margin-bottom: 16px; }
.section h2, .section h1, .content h1 { margin: 0 0 10px; font-size: clamp(1.8rem, 3vw, 3rem); line-height: 1.12; }
.section-head p, .panel p { color: var(--muted); }
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 16px; }
.grid.three { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.grid.four { grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); }
.card {
    min-height: 150px;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 20px;
    background: #fff;
}
.card h3 { margin: 0 0 8px; }
.card p { margin: 0; color: var(--muted); }
.segment-card span { display: block; width: 42px; height: 4px; border-radius: 8px; background: var(--brand); margin-bottom: 16px; }

.artist-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 18px; }
.artist-card { overflow: hidden; border: 1px solid var(--line); border-radius: 8px; background: #fff; box-shadow: 0 16px 38px rgba(17,24,39,.08); }
.poster { min-height: 150px; display: grid; place-items: center; background: linear-gradient(135deg, #0f766e, #111827 62%, #c2410c); color: #fff; }
.poster span { font-size: 2.4rem; font-weight: 900; letter-spacing: 0; }
.artist-body { padding: 20px; display: grid; gap: 14px; }
.badges { display: flex; flex-wrap: wrap; gap: 8px; }
.badges span { border-radius: 999px; padding: 5px 10px; background: #eef6f5; color: var(--brand-dark); font-size: .78rem; font-weight: 800; }
.artist-card h3 { margin: 0; font-size: 1.18rem; line-height: 1.25; }
.artist-card p { margin: 0; color: var(--muted); }
.meta-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; margin: 0; }
.meta-list div { border-top: 1px solid var(--line); padding-top: 10px; }
.meta-list dt { color: var(--muted); font-size: .76rem; font-weight: 800; text-transform: uppercase; }
.meta-list dd { margin: 0; font-weight: 800; }

.timeline { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; }
.timeline article { padding: 22px; border-left: 4px solid var(--brand); background: #fff; box-shadow: 0 12px 30px rgba(17,24,39,.07); }
.timeline strong { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 50%; background: var(--night); color: #fff; margin-bottom: 12px; }
.timeline h3 { margin: 0 0 8px; }
.timeline p { margin: 0; color: var(--muted); }
.footer { padding: 28px clamp(18px, 4vw, 58px); border-top: 1px solid var(--line); color: var(--muted); }

.auth-page { min-height: 100vh; display: grid; place-items: center; padding: 24px; background: var(--soft); }
.auth-card { width: min(460px, 100%); }
.auth-card.wide { width: min(780px, 100%); }
.auth-card h1 { margin: 18px 0; }
.auth-card form { display: grid; gap: 14px; }
.grid-form { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.grid-form .check, .grid-form button, .full-field { grid-column: 1 / -1; }
.check { display: flex; align-items: flex-start; gap: 10px; font-weight: 500; }
.check input { width: auto; min-height: auto; margin-top: 5px; }
.tabs { display: flex; border: 1px solid var(--line); border-radius: 8px; overflow: hidden; margin-bottom: 18px; }
.tabs a { flex: 1; padding: 12px; text-align: center; color: var(--muted); }
.tabs .active { background: var(--brand); color: #fff; font-weight: 800; }
.alert, .success { border-radius: 8px; padding: 12px; }
.alert { background: #fff1f2; color: #9f1239; }
.success { background: #ecfdf5; color: #047857; }
.spaced { margin: 18px 0 0; }

.dashboard { display: grid; grid-template-columns: 270px minmax(0, 1fr); min-height: calc(100vh - 69px); }
.sidebar { display: grid; align-content: start; gap: 8px; padding: 24px; border-right: 1px solid var(--line); background: var(--soft); }
.sidebar a { padding: 10px 12px; border-radius: 8px; color: var(--muted); }
.sidebar a.active, .sidebar a:hover { background: #fff; color: var(--brand-dark); }
.content { padding: clamp(24px, 4vw, 48px); }
.panel { margin-top: 18px; box-shadow: none; }
.form-panel h2, .muted-panel h2 { margin-top: 0; }
.metric { min-height: 120px; display: grid; align-content: center; }
.metric strong { font-size: 2.2rem; color: var(--brand-dark); }
.metric span { color: var(--muted); font-weight: 800; }
.review-list { display: grid; gap: 12px; }
.review-item { border: 1px solid var(--line); border-radius: 8px; padding: 16px; }
.review-item div { display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.review-item span, .review-item small { color: var(--muted); }
.review-item p { margin: 10px 0; }

@media (max-width: 880px) {
    .hero, .dashboard, .grid-form, .stats-row { grid-template-columns: 1fr; }
    .topbar { align-items: flex-start; }
    .split-head { display: block; }
    .sidebar { border-right: 0; border-bottom: 1px solid var(--line); }
    .hero-pro { min-height: auto; }
}

.review-actions { display: grid; grid-template-columns: minmax(220px, 1fr) auto auto; gap: 10px; margin-top: 14px; align-items: center; }
@media (max-width: 700px) { .review-actions { grid-template-columns: 1fr; } }
.fa-solid{display:inline-block;font-style:normal}.fa-circle-plus::before{content:"+";font-family:Arial,sans-serif;font-size:1.55rem}.fa-paper-plane::before{content:">";font-family:Arial,sans-serif;font-size:1.2rem}.fa-xmark::before{content:"x";font-family:Arial,sans-serif;font-size:1.2rem}.fa-arrow-up::before{content:"^";font-family:Arial,sans-serif}.fa-arrow-down::before{content:"v";font-family:Arial,sans-serif}.mobile-menu-button{display:none;align-items:center;justify-content:center;width:42px;height:42px;border:1px solid var(--line);border-radius:8px;background:#fff;color:var(--brand-dark);font-size:1.15rem;cursor:pointer}.mobile-menu-button:focus-visible{outline:3px solid rgba(15,118,110,.3);outline-offset:2px}@media(max-width:720px){.topbar{position:sticky;z-index:20;padding:12px 18px}.topbar .brand-copy{max-width:150px;white-space:nowrap;overflow:hidden}.mobile-menu-button{display:inline-flex;margin-left:auto}.topbar nav.mobile-navigation{display:none;position:absolute;top:100%;left:12px;right:12px;z-index:30;flex-direction:column;align-items:stretch;gap:0;padding:8px;border:1px solid var(--line);border-radius:8px;background:#fff;box-shadow:0 18px 45px rgba(17,24,39,.18)}.topbar nav.mobile-navigation.is-open{display:flex}.topbar nav.mobile-navigation a{padding:13px 14px;border-bottom:1px solid #edf1f5}.topbar nav.mobile-navigation a:last-child{border-bottom:0}.topbar nav.mobile-navigation .button{justify-content:center;margin-top:6px}}.mobile-menu-button .fa-bars{position:relative;width:19px;height:15px;border-top:2px solid currentColor;border-bottom:2px solid currentColor}.mobile-menu-button .fa-bars:after{content:"";position:absolute;left:0;right:0;top:5px;border-top:2px solid currentColor}.mobile-menu-button .fa-bars:before{content:none}
.password-requirements,.form-help{display:block;margin:-4px 0 2px;color:var(--muted);font-size:.82rem;line-height:1.45}.grid-form .password-requirements{grid-column:1/-1}

.production-fields{grid-column:1/-1;margin-top:8px;padding-top:24px;border-top:1px solid #e3eaee}.production-fields__head{margin-bottom:18px}.production-fields__head h3{margin:5px 0 0;font-size:1.18rem}.production-fields__head p:not(.eyebrow){margin:6px 0 0;color:var(--muted);line-height:1.5}.production-fields__grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:16px 20px}.production-fields label{display:grid;gap:7px;font-weight:800}.production-fields input:not([type="checkbox"]),.production-fields textarea{width:100%;box-sizing:border-box}.production-fields .full-field{grid-column:1/-1}.production-checks{display:flex;gap:10px 18px;flex-wrap:wrap;margin:0;padding:14px 16px;border:1px solid var(--line);border-radius:7px;background:#f8fbfb}.production-checks legend{padding:0 5px;color:var(--muted);font-size:.8rem;font-weight:800}.production-checks label{display:flex;align-items:center;gap:7px;font-size:.84rem;cursor:pointer}.production-checks input{accent-color:var(--brand)}@media(max-width:680px){.production-fields__grid{grid-template-columns:1fr}.production-fields .full-field{grid-column:auto}}
