:root {
    --bg: #090909;
    --bg-soft: rgba(255, 255, 255, 0.06);
    --panel: rgba(255, 255, 255, 0.08);
    --line: rgba(255, 255, 255, 0.14);
    --text: #f6f2ea;
    --muted: #b7afa4;
    --accent: #ff5c39;
    --accent-alt: #ffd166;
    --shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(255, 92, 57, 0.35), transparent 35%),
        radial-gradient(circle at 80% 10%, rgba(255, 209, 102, 0.18), transparent 30%),
        linear-gradient(160deg, #090909 0%, #151515 45%, #0c0c0c 100%);
    font-family: "Space Grotesk", sans-serif;
}

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

button,
input,
textarea {
    font: inherit;
}

.noise {
    position: fixed;
    inset: 0;
    pointer-events: none;
    opacity: 0.08;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.4) 1px, transparent 1px);
    background-size: 10px 10px;
    mix-blend-mode: soft-light;
}

.shell {
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
}

.nav,
.hero-grid,
.metrics,
.section,
.player {
    position: relative;
    z-index: 1;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 0;
}

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

.brand strong,
h1,
h2,
h3 {
    font-family: "Syne", sans-serif;
}

.brand-mark {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--accent), var(--accent-alt));
    color: #111;
    font-weight: 800;
}

.track-cover span,
.player-cover span,
.live-cover span {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    color: #111;
    font-family: "Syne", sans-serif;
    font-size: clamp(2rem, 8vw, 5rem);
    font-weight: 800;
}

.brand span:last-child {
    display: block;
    color: var(--muted);
    font-size: 0.9rem;
}

.nav-links {
    display: flex;
    gap: 20px;
    color: var(--muted);
}

.hero {
    padding-bottom: 36px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 32px;
    align-items: center;
    min-height: calc(100vh - 120px);
}

.eyebrow {
    color: var(--accent-alt);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.75rem;
    margin-bottom: 14px;
}

h1 {
    margin: 0;
    font-size: clamp(3rem, 8vw, 6.4rem);
    line-height: 0.96;
    max-width: 10ch;
}

.hero-text,
.section-head p,
.split p,
.track-description,
.live-meta p {
    color: var(--muted);
    line-height: 1.65;
}

.hero-text {
    max-width: 60ch;
    margin: 22px 0 0;
}

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

.btn,
.track-play,
.live-play,
.player button {
    border: 0;
    border-radius: 999px;
    padding: 12px 18px;
    cursor: pointer;
    transition: transform 0.2s ease, opacity 0.2s ease, background 0.2s ease;
}

.btn:hover,
.track-play:hover,
.live-play:hover,
.player button:hover {
    transform: translateY(-2px);
}

.btn-primary,
.track-play,
.live-play,
.player .primary {
    background: linear-gradient(135deg, var(--accent), #ff7d57);
    color: #120d0a;
    font-weight: 700;
}

.btn-ghost,
.player button {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text);
}

.live-card,
.track-card,
.social-card,
.spotlight-card,
.player,
.metrics article,
.panel {
    background: var(--panel);
    backdrop-filter: blur(20px);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.live-card {
    border-radius: 28px;
    padding: 26px;
}

.live-pill {
    display: inline-block;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--accent-alt);
    font-size: 0.8rem;
}

.live-cover,
.track-cover,
.player-cover {
    overflow: hidden;
    background:
        linear-gradient(160deg, rgba(255, 92, 57, 0.95), rgba(255, 209, 102, 0.75)),
        #1b1b1b;
}

.live-cover {
    margin: 18px 0;
    aspect-ratio: 1;
    border-radius: 26px;
}

.track-cover {
    aspect-ratio: 1 / 1;
    border-radius: 20px;
}

.live-cover img,
.track-cover img,
.player-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 10px;
}

.metrics article {
    padding: 24px;
    border-radius: 24px;
}

.metrics strong {
    display: block;
    font-family: "Syne", sans-serif;
    font-size: 2rem;
}

.metrics span {
    color: var(--muted);
}

.section {
    padding: 92px 0;
}

.section-head {
    max-width: 58ch;
    margin-bottom: 28px;
}

.section-head h2,
.split h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    margin: 0 0 12px;
}

.tracks-grid,
.social-grid,
.spotlight-grid {
    display: grid;
    gap: 18px;
}

.tracks-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.track-card {
    border-radius: 28px;
    padding: 18px;
    display: grid;
    gap: 18px;
}

.track-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.track-tags span {
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    color: var(--muted);
    font-size: 0.82rem;
}

.track-body h3 {
    margin: 10px 0 6px;
    font-size: 1.45rem;
}

.track-artist {
    margin: 0 0 10px;
    color: var(--accent-alt);
}

.split {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 28px;
    align-items: start;
}

.contact-line a {
    color: var(--accent-alt);
}

.social-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-bottom: 18px;
}

.social-card,
.spotlight-card {
    border-radius: 24px;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social-card span,
.spotlight-card span {
    color: var(--muted);
}

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

.player {
    position: sticky;
    bottom: 16px;
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto 16px;
    border-radius: 24px;
    padding: 16px;
    display: grid;
    grid-template-columns: 72px 1fr auto 320px;
    gap: 18px;
    align-items: center;
}

.player-cover {
    width: 72px;
    height: 72px;
    border-radius: 18px;
}

.player-meta span {
    color: var(--muted);
}

.player-controls {
    display: flex;
    gap: 10px;
}

.player-progress {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 10px;
    align-items: center;
    color: var(--muted);
}

input[type="range"] {
    width: 100%;
}

.track-card.is-active {
    border-color: rgba(255, 209, 102, 0.5);
    transform: translateY(-3px);
}

@media (max-width: 960px) {
    .hero-grid,
    .split,
    .tracks-grid,
    .social-grid,
    .spotlight-grid,
    .metrics,
    .player {
        grid-template-columns: 1fr;
    }

    .nav {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
    }

    .nav-links {
        flex-wrap: wrap;
    }

    .player {
        position: static;
        margin-bottom: 24px;
    }
}
