:root{
    --bg: #060816;
    --bg-soft: rgba(16, 22, 48, 0.72);
    --panel: rgba(12, 18, 39, 0.78);
    --panel-strong: rgba(9, 13, 30, 0.9);
    --line: rgba(125, 227, 255, 0.14);
    --text: #eef5ff;
    --muted: #a8b6d3;
    --accent: #6fe7ff;
    --accent-strong: #3f9cff;
    --accent-pink: #ff5ea8;
    --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}

*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html{
    scroll-behavior: smooth;
}

body{
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(255, 94, 168, 0.16), transparent 32%),
        radial-gradient(circle at top right, rgba(111, 231, 255, 0.18), transparent 30%),
        linear-gradient(180deg, #090b18 0%, #060816 42%, #05060f 100%);
    min-height: 100vh;
    overflow-x: hidden;
}

body::before{
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 100% 56px, 56px 100%;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.8), transparent);
    opacity: 0.28;
}

.page-shell{
    width: min(1200px, calc(100% - 40px));
    margin: 0 auto;
    padding-bottom: 48px;
}

.topbar{
    position: sticky;
    top: 16px;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin: 20px 0 28px;
    padding: 16px 20px;
    border: 1px solid var(--line);
    border-radius: 999px;
    backdrop-filter: blur(20px);
    background: rgba(7, 10, 22, 0.72);
    box-shadow: var(--shadow);
}

.brand,
.section-nav a,
.site-footer a,
.button{
    text-decoration: none;
}

.brand{
    color: var(--text);
    font-family: 'Russo One', sans-serif;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.section-nav{
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px;
}

.section-nav a{
    color: var(--muted);
    font-size: 0.95rem;
    padding: 10px 14px;
    border-radius: 999px;
    transition: color 0.3s ease, background-color 0.3s ease, transform 0.3s ease;
}

.section-nav a:hover,
.section-nav a:focus-visible{
    color: var(--text);
    background: rgba(111, 231, 255, 0.08);
    transform: translateY(-1px);
}

.hero,
.content-section,
.site-footer{
    position: relative;
}

.hero{
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    align-items: center;
    gap: 48px;
    min-height: calc(100vh - 140px);
    padding: 72px 0 96px;
}

.eyebrow{
    display: inline-block;
    margin-bottom: 18px;
    color: var(--accent);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.hero h1,
.section-heading h2{
    font-family: 'Russo One', sans-serif;
    line-height: 0.95;
    letter-spacing: 0.03em;
}

.hero h1{
    font-size: clamp(4rem, 11vw, 8rem);
    margin-bottom: 24px;
    text-shadow: 0 0 24px rgba(111, 231, 255, 0.18);
}

.hero-subtitle{
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 1.02rem;
    line-height: 1.72;
    color: rgba(228, 236, 255, 0.76);
    letter-spacing: 0.5px;
}

.hero-lead{
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    max-width: 640px;
    color: rgba(224, 233, 252, 0.82);
    font-size: 1.05rem;
    line-height: 1.78;
}

.hero-actions{
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 32px;
}

.button{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 190px;
    padding: 14px 22px;
    border-radius: 999px;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.button:hover,
.button:focus-visible{
    transform: translateY(-2px);
}

.button-primary{
    color: #06101f;
    background: linear-gradient(135deg, var(--accent), #d8fbff);
    box-shadow: 0 18px 42px rgba(111, 231, 255, 0.22);
}

.button-secondary{
    color: var(--text);
    border: 1px solid rgba(111, 231, 255, 0.22);
    background: rgba(255, 255, 255, 0.02);
}

.hero-visual{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 540px;
}

.hero-visual img{
    position: relative;
    z-index: 2;
    width: min(100%, 460px);
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.45);
}

.hero-orb{
    position: absolute;
    border-radius: 50%;
    filter: blur(14px);
}

.hero-orb-one{
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(255, 94, 168, 0.6), transparent 70%);
    top: 20px;
    left: 10px;
}

.hero-orb-two{
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, rgba(111, 231, 255, 0.54), transparent 72%);
    right: 0;
    bottom: 20px;
}

.content-section{
    padding: 88px 0;
}

.section-heading{
    max-width: 760px;
    margin-bottom: 34px;
}

.section-heading h2{
    font-size: clamp(2.2rem, 5vw, 4rem);
}

.text-panel,
.press-card{
    max-width: 860px;
    padding: 36px;
    border: 1px solid var(--line);
    border-radius: 32px;
    background: linear-gradient(180deg, rgba(11, 17, 37, 0.82), rgba(8, 12, 28, 0.92));
    box-shadow: var(--shadow);
}

.text-panel p,
.press-card p{
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 1.04rem;
    line-height: 1.78;
    color: rgba(224, 234, 255, 0.8);
}

.text-panel p + p,
.press-card p + p{
    margin-top: 18px;
}

.press-kicker{
    color: var(--accent);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.press-title{
    color: var(--text);
    font-size: 1.7rem;
    font-weight: 600;
    line-height: 1.35;
}

.press-signature{
    color: #d8e9ff;
}

.album-stage{
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
}

.album-card{
    display: block;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(12, 17, 38, 0.9), rgba(9, 12, 27, 0.95));
    box-shadow: var(--shadow);
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.album-card:hover,
.album-card:focus-visible{
    transform: translateY(-6px);
    border-color: rgba(111, 231, 255, 0.3);
    box-shadow: 0 30px 80px rgba(19, 28, 58, 0.65);
}

.album-card img{
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 18px;
}

.tracks-grid{
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 22px;
}

.track-card{
    grid-column: span 4;
    display: block;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(13, 19, 41, 0.88), rgba(8, 12, 26, 0.92));
    box-shadow: var(--shadow);
    color: var(--text);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.track-card:hover,
.track-card:focus-visible{
    transform: translateY(-6px);
    border-color: rgba(255, 94, 168, 0.26);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.5);
}

.track-card img{
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    background: rgba(6, 8, 22, 0.92);
    filter: grayscale(0%) brightness(1);
    transition: transform 0.45s ease, filter 0.45s ease;
}

.track-card:hover img,
.track-card:focus-visible img{
    transform: scale(1.03);
    filter: grayscale(100%) brightness(0.9);
}

.track-card span{
    display: block;
    padding: 18px 20px 22px;
    color: #dce8ff;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.04em;
}

.track-card-large{
    grid-column: span 4;
}

.track-card-wide{
    grid-column: span 5;
}

.site-footer{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    margin-top: 32px;
    padding: 28px 0 10px;
    border-top: 1px solid var(--line);
}

.site-footer p{
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 1.02rem;
    line-height: 1.72;
    color: rgba(220, 232, 255, 0.72);
}

.site-footer a{
    color: var(--accent);
}

.footer{
    margin-top: 40px;
    padding: 24px 20px 36px;
    text-align: center;
}

.footer p{
    font-family: 'Manrope', sans-serif;
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(220, 232, 255, 0.58);
}

.footer a{
    color: rgba(220, 232, 255, 0.72);
    text-decoration: none;
}

.reveal{
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    transition-delay: var(--reveal-delay, 0s);
}

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

@media screen and (max-width: 980px){
    .topbar{
        border-radius: 28px;
        padding: 18px;
        flex-direction: column;
        align-items: flex-start;
    }

    .hero{
        grid-template-columns: 1fr;
        padding-top: 36px;
    }

    .hero-visual{
        order: -1;
        min-height: auto;
    }

    .album-stage{
        grid-template-columns: 1fr;
    }

    .track-card,
    .track-card-large,
    .track-card-wide{
        grid-column: span 6;
    }
}

@media screen and (max-width: 720px){
    .page-shell{
        width: min(100% - 24px, 1200px);
    }

    .section-nav{
        gap: 6px;
    }

    .section-nav a{
        font-size: 0.88rem;
        padding: 8px 10px;
    }

    .text-panel,
    .press-card{
        padding: 24px;
        border-radius: 24px;
    }

    .tracks-grid{
        grid-template-columns: 1fr;
    }

    .track-card,
    .track-card-large,
    .track-card-wide{
        grid-column: auto;
    }

    .track-card img{
        aspect-ratio: 1 / 1;
    }

    .site-footer{
        flex-direction: column;
        align-items: flex-start;
    }
}
