:root {
    --blue-900: #041733;
    --blue-800: #0f2e5e;
    --blue-700: #1b4f91;
    --accent: #ffcf33;
    --accent-soft: rgba(255, 207, 51, 0.2);
    --text: #f5f7ff;
    --muted: rgba(245, 247, 255, 0.65);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Space Grotesk', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text);
    background: radial-gradient(circle at top, var(--blue-700), var(--blue-900));
    min-height: 100vh;
}

main.site {
    width: min(100%, 960px);
    margin: 0 auto;
    padding: 48px 20px 64px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

section {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 32px;
    backdrop-filter: blur(8px);
}

.hero {
    text-align: center;
    padding: 48px 32px;
    background: linear-gradient(135deg, rgba(15, 46, 94, 0.95), rgba(4, 23, 51, 0.85));
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.hero--split {
    text-align: left;
    flex-direction: row;
    justify-content: space-between;
}

.hero-content {
    max-width: 460px;
}

.hero--split .hero-content {
    text-align: left;
}

.hero-media {
    flex: 1;
    display: flex;
    justify-content: center;
}

.hero-media img {
    width: min(320px, 100%);
    border-radius: 24px;
}

.placeholder {
    text-align: center;
    padding: 64px 32px;
}

.placeholder h1 {
    margin: 0;
    font-size: clamp(2rem, 6vw, 3rem);
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.8rem;
    color: var(--muted);
    margin-bottom: 12px;
}

.hero .album {
    margin: 0;
    font-size: clamp(3rem, 7vw, 4.5rem);
    line-height: 1.1;
}

.hero .tagline {
    margin: 20px auto 32px;
    max-width: 560px;
    color: var(--muted);
    font-size: 1.1rem;
}

.cta-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 999px;
    border: none;
    background: var(--accent);
    color: #0a0a0a;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(10, 10, 10, 0.25);
}

.btn.outline {
    background: transparent;
    border: 1px solid var(--accent);
    color: var(--text);
}

.video {
    padding: 0;
    background: none;
    border: none;
}

.video-frame {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(3, 12, 27, 0.55);
}

.video-frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.tracks ol {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.section-heading {
    margin-bottom: 20px;
}

.section-heading h2 {
    margin: 4px 0 0;
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--muted);
}

.tracks li {
    display: flex;
    gap: 16px;
    padding: 12px 16px;
    border-radius: 14px;
    background: rgba(4, 23, 51, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.tracks .index {
    font-family: 'Space Mono', monospace;
    color: var(--accent);
    font-size: 1rem;
    opacity: 0.9;
}

.track-title {
    margin: 0;
    font-size: 1.1rem;
}

.track-note {
    margin: 4px 0 0;
    color: var(--muted);
    font-size: 0.9rem;
}

.story {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    align-items: center;
}

.story--with-media {
    grid-template-columns: minmax(220px, 320px) 1fr;
}

.story-media img {
    width: 100%;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 35px rgba(3, 12, 27, 0.45);
}

.story p {
    margin-top: 0;
    color: var(--muted);
    line-height: 1.7;
}

.story .details p {
    margin-bottom: 8px;
}

.footer {
    text-align: center;
    border: none;
    background: transparent;
    padding: 16px;
    color: var(--muted);
    font-size: 0.9rem;
}

@media (max-width: 900px) {
    .hero--split {
        flex-direction: column;
        text-align: center;
    }

    .hero--split .hero-content {
        text-align: center;
    }
}

@media (max-width: 640px) {
    section {
        padding: 24px;
    }

    .hero {
        padding: 40px 24px;
    }

    .tracks li {
        flex-direction: column;
    }

    .story--with-media {
        grid-template-columns: 1fr;
    }

    .story-media {
        justify-self: center;
        max-width: 260px;
    }
}