:root {
    --bg: #07131a;
    --bg-soft: #101f28;
    --panel: rgba(10, 18, 24, 0.82);
    --panel-strong: #0c171f;
    --text: #f3f6f8;
    --muted: #9fb0bc;
    --line: rgba(255, 255, 255, 0.08);
    --accent: #ff7a18;
    --accent-alt: #ffd166;
    --accent-deep: #ff5400;
    --teal: #5dd39e;
    --success: #52b788;
    --danger: #ff6b6b;
    --shadow: 0 28px 80px rgba(0, 0, 0, 0.32);
    --radius: 24px;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    background:
        radial-gradient(circle at top left, rgba(255, 122, 24, 0.22), transparent 30%),
        radial-gradient(circle at top right, rgba(93, 211, 158, 0.14), transparent 26%),
        linear-gradient(180deg, #051017 0%, #091720 48%, #050c11 100%);
    color: var(--text);
    min-height: 100vh;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    width: 100%;
    display: block;
}

.site-shell {
    width: min(1160px, calc(100% - 32px));
    margin: 0 auto;
    padding: 24px 0 40px;
}

.site-header,
.site-footer,
.section-card,
.release-card,
.member-release,
.auth-card,
.dashboard-card,
.flash,
.hero-panel,
.stat-card,
.page-hero {
    backdrop-filter: blur(14px);
}

.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    padding: 18px 24px;
    background: rgba(6, 12, 17, 0.78);
    border: 1px solid var(--line);
    border-radius: 999px;
    position: sticky;
    top: 16px;
    z-index: 10;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
}

.brand-mark {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--accent), var(--accent-alt));
    color: #101217;
    font-weight: 800;
    box-shadow: 0 16px 30px rgba(255, 122, 24, 0.28);
}

.brand small,
.site-nav a:not(.button-link),
.eyebrow,
.release-meta,
.site-footer,
.empty-state {
    color: var(--muted);
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.button-link,
.primary-button,
.secondary-button,
button {
    border: 0;
    border-radius: 999px;
    padding: 13px 20px;
    font: inherit;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button-link,
.primary-button,
button {
    background: linear-gradient(135deg, var(--accent), var(--accent-deep));
    color: #130f11;
    font-weight: 700;
    box-shadow: 0 14px 28px rgba(255, 122, 24, 0.28);
}

.secondary-button {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--line);
}

.button-link:hover,
.primary-button:hover,
.secondary-button:hover,
button:hover {
    transform: translateY(-2px);
}

.flash {
    margin: 20px 0;
    padding: 16px 20px;
    border-radius: 18px;
    border: 1px solid var(--line);
    background: rgba(17, 25, 34, 0.9);
}

.flash-success {
    border-color: rgba(82, 183, 136, 0.4);
}

.flash-error {
    border-color: rgba(255, 107, 107, 0.4);
}

.hero,
.dashboard-grid,
.section-grid {
    display: grid;
    gap: 24px;
}

.hero {
    grid-template-columns: 1.4fr 1fr;
    align-items: center;
    padding: 76px 0 40px;
}

.hero h1,
.page-hero h1,
.auth-card h1 {
    font-size: clamp(2.3rem, 4vw, 4.8rem);
    line-height: 0.95;
    letter-spacing: -0.04em;
    margin: 0 0 18px;
    text-transform: uppercase;
}

.hero-text,
.page-hero p,
.release-copy p,
.member-copy p,
.section-card p,
.dashboard-card p {
    line-height: 1.65;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 24px;
}

.hero-copy {
    max-width: 720px;
}

.hero-panel,
.page-hero,
.section-card,
.release-card,
.member-release,
.auth-card,
.dashboard-card {
    background: var(--panel);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.hero-panel {
    padding: 26px;
    border-radius: 32px;
    display: grid;
    gap: 16px;
    position: relative;
    overflow: hidden;
}

.hero-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(255, 122, 24, 0.12), transparent 45%, rgba(93, 211, 158, 0.08));
    pointer-events: none;
}

.stat-card,
.section-card,
.release-card,
.auth-card,
.dashboard-card,
.page-hero,
.member-release {
    border-radius: var(--radius);
}

.stat-card {
    padding: 22px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-card span,
.tag {
    font-size: 0.83rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.stat-card strong {
    display: block;
    margin-top: 10px;
    font-size: 1.35rem;
}

.section-grid,
.dashboard-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.section-card,
.dashboard-card,
.page-hero {
    padding: 28px;
}

.section-heading {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 16px;
    margin-bottom: 16px;
}

.release-strip,
.members-grid {
    margin-top: 34px;
}

.artist-banner {
    margin-top: 34px;
    padding: 30px;
    border-radius: 30px;
    border: 1px solid var(--line);
    background:
        linear-gradient(135deg, rgba(255, 122, 24, 0.12), rgba(93, 211, 158, 0.08)),
        rgba(10, 18, 24, 0.82);
    box-shadow: var(--shadow);
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 22px;
}

.artist-banner-copy h2 {
    margin: 0;
    font-size: clamp(1.8rem, 3vw, 3rem);
    line-height: 1.05;
}

.artist-banner-points {
    display: grid;
    gap: 14px;
}

.banner-point {
    padding: 18px;
    border-radius: 20px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.04);
}

.banner-point strong {
    display: block;
    margin-bottom: 8px;
    font-size: 1.05rem;
}

.release-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.release-card,
.member-release {
    overflow: hidden;
}

.release-cover,
.member-cover {
    aspect-ratio: 1 / 1;
    background: linear-gradient(145deg, rgba(255, 224, 102, 0.2), rgba(242, 95, 92, 0.24));
}

.release-copy,
.member-copy {
    padding: 22px;
}

.cover-fallback {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    font-size: 3rem;
    font-weight: 800;
}

.tag {
    display: inline-flex;
    align-items: center;
    padding: 9px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    margin-top: 12px;
}

.auth-layout {
    min-height: 70vh;
    display: grid;
    place-items: center;
}

.auth-card {
    width: min(540px, 100%);
    padding: 32px;
}

.stack-form {
    display: grid;
    gap: 16px;
}

.upload-hint {
    margin-top: 0;
    margin-bottom: 18px;
    color: var(--muted);
}

.stack-form label,
.checkbox-row {
    display: grid;
    gap: 8px;
}

input,
textarea {
    width: 100%;
    padding: 14px 16px;
    border-radius: 16px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.05);
    color: var(--text);
    font: inherit;
}

textarea {
    resize: vertical;
}

.checkbox-row {
    grid-template-columns: auto 1fr;
    align-items: center;
}

.checkbox-row input {
    width: auto;
}

.members-grid {
    display: grid;
    gap: 20px;
}

.member-release {
    display: grid;
    grid-template-columns: 280px 1fr;
}

.release-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.audio-player {
    width: 100%;
}

.compact {
    margin-top: 28px;
}

.catalog-list {
    display: grid;
    gap: 14px;
}

.catalog-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--line);
    border-radius: 18px;
}

.catalog-flags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.site-footer {
    margin-top: 48px;
    padding: 30px;
    border-radius: 32px;
    border: 1px solid var(--line);
    background:
        linear-gradient(180deg, rgba(255, 122, 24, 0.08), rgba(255, 255, 255, 0.02)),
        rgba(8, 14, 19, 0.9);
    box-shadow: var(--shadow);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr 1fr;
    gap: 24px;
}

.footer-brand h2,
.footer-column h3 {
    margin-top: 0;
}

.footer-column {
    display: grid;
    align-content: start;
    gap: 10px;
}

.footer-column a {
    color: var(--text);
    opacity: 0.88;
}

.footer-column a:hover {
    color: var(--accent-alt);
}

.footer-bottom {
    margin-top: 24px;
    padding-top: 18px;
    border-top: 1px solid var(--line);
    display: flex;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    color: var(--muted);
}

[data-reveal] {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 920px) {
    .hero,
    .section-grid,
    .dashboard-grid,
    .release-grid,
    .member-release,
    .artist-banner,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .site-header {
        border-radius: 28px;
        align-items: flex-start;
        flex-direction: column;
    }

    .footer-bottom {
        flex-direction: column;
    }
}

@media (max-width: 640px) {
    .site-shell {
        width: min(100% - 20px, 100%);
    }

    .hero h1,
    .page-hero h1,
    .auth-card h1 {
        font-size: 2.4rem;
    }

    .auth-card,
    .section-card,
    .dashboard-card,
    .page-hero,
    .release-copy,
    .member-copy {
        padding: 22px;
    }
}
