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

:root{
    --black:#050505;
    --black-deep:#020202;
    --black-soft:#070707;
    --white:rgba(255,255,255,.92);
    --muted:rgba(255,255,255,.62);
    --muted-low:rgba(255,255,255,.42);
    --line:rgba(255,255,255,.08);
    --ease:cubic-bezier(.22,1,.36,1);
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:"Manrope",sans-serif;
    background:var(--black);
    color:var(--white);
    overflow-x:hidden;
}

a{
    color:inherit;
}

button,
a{
    -webkit-tap-highlight-color:transparent;
}

img{
    max-width:100%;
}

/*================ HEADER ================*/

.header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:86px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:0 60px;
    z-index:100;
    background:rgba(5,5,5,.28);
    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);
    border-bottom:1px solid rgba(255,255,255,.05);
    transition:height .55s var(--ease), background .55s var(--ease), border-color .55s ease, padding .55s var(--ease);
}

.header.scrolled{
    height:68px;
    padding:0 52px;
    background:rgba(5,5,5,.72);
    border-bottom-color:rgba(255,255,255,.08);
}

.logo{
    color:white;
    text-decoration:none;
    display:flex;
    gap:10px;
    font-size:28px;
    font-weight:800;
    transition:transform .55s var(--ease), font-size .55s var(--ease), gap .55s var(--ease);
}

.logo span{
    display:inline-block;
    opacity:0;
    transform:translateY(-12px);
    animation:logoLetter .7s var(--ease) forwards;
}

.logo span:nth-child(1){ animation-delay:.15s; }
.logo span:nth-child(2){ animation-delay:.25s; }
.logo span:nth-child(3){ animation-delay:.35s; }
.logo span:nth-child(4){ animation-delay:.45s; }
.logo span:nth-child(5){ animation-delay:.55s; }

@keyframes logoLetter{
    to{ opacity:1; transform:translateY(0); }
}

.header.scrolled .logo{
    font-size:23px;
    gap:8px;
    transform:translateY(-1px);
}

.header nav{
    display:flex;
    gap:60px;
}

.header nav a{
    position:relative;
    color:#d7d7d7;
    text-decoration:none;
    font-size:15px;
    letter-spacing:3px;
    opacity:0;
    transform:translateY(-10px);
    animation:navFade .9s var(--ease) forwards;
    transition:color .35s ease;
}

.header nav a:nth-child(1){ animation-delay:.75s; }
.header nav a:nth-child(2){ animation-delay:.85s; }
.header nav a:nth-child(3){ animation-delay:.95s; }

@keyframes navFade{
    to{ opacity:1; transform:translateY(0); }
}

.header nav a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-8px;
    width:100%;
    height:1px;
    background:white;
    transform:scaleX(0);
    transform-origin:right;
    transition:transform .35s var(--ease);
}

.header nav a:hover{
    color:white;
}

.header nav a:hover::after{
    transform:scaleX(1);
    transform-origin:left;
}

/*================ HERO ================*/

.hero{
    min-height:100vh;
    display:flex;
    align-items:center;
    padding-left:7%;
    position:relative;
    background:
        linear-gradient(90deg, rgba(0,0,0,.68) 0%, rgba(0,0,0,.45) 38%, rgba(0,0,0,.16) 100%),
        url("../img/hero.jpg");
    background-size:cover;
    background-position:center top;
}

.hero-content{
    position:relative;
    z-index:2;
    max-width:700px;
}

.hero h1{
    font-size:clamp(72px,10vw,130px);
    font-weight:800;
    letter-spacing:clamp(10px,1.4vw,18px);
    margin-bottom:25px;
}

.subtitle{
    font-size:clamp(30px,4vw,48px);
    font-weight:300;
    margin-bottom:35px;
}

.line{
    width:80px;
    height:2px;
    background:white;
    opacity:.35;
    margin-bottom:35px;
}

.description{
    font-size:clamp(20px,2.3vw,28px);
    color:#bcbcbc;
    line-height:1.8;
    margin-bottom:60px;
}

.button{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:270px;
    height:72px;
    border-radius:999px;
    text-decoration:none;
    color:white;
    letter-spacing:5px;
    font-size:15px;
    border:1px solid rgba(255,255,255,.25);
    background:rgba(255,255,255,.05);
    backdrop-filter:blur(20px);
    transition:background .35s ease, color .35s ease, border-color .35s ease, transform .35s var(--ease);
}

.button:hover{
    background:white;
    color:black;
    transform:translateY(-2px);
}

.scroll-down{
    position:absolute;
    bottom:45px;
    left:50%;
    transform:translateX(-50%);
    letter-spacing:8px;
    font-size:12px;
    color:#999;
    transition:opacity .45s ease, transform .45s ease;
}

.scroll-down.is-hidden{
    opacity:0;
    transform:translateX(-50%) translateY(14px);
}

/*================ STORY ================*/

.story{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:120px;
    padding:170px 8%;
    background:#070707;
}

.section-name{
    color:#777;
    text-transform:uppercase;
    letter-spacing:5px;
    font-size:14px;
}

.story-left h2{
    font-size:clamp(48px,6vw,78px);
    line-height:1.1;
    margin:25px 0 40px;
}

.story-line{
    width:70px;
    height:2px;
    background:white;
    opacity:.3;
    margin-bottom:45px;
}

.story-left p{
    font-size:23px;
    color:#bdbdbd;
    line-height:2;
    margin-bottom:35px;
}

.timeline{
    display:flex;
    flex-direction:column;
    gap:60px;
}

.timeline-item{
    border-left:1px solid var(--line);
    padding-left:35px;
}

.year{
    color:#666;
    letter-spacing:3px;
    font-size:14px;
}

.timeline-item h3{
    margin:12px 0 20px;
    font-size:30px;
}

.timeline-item p{
    color:#999;
    line-height:1.8;
    font-size:18px;
}

/*================ STATS ================*/

.stats{
    background:#050505;
    padding:180px 80px;
}

.stats-container{
    max-width:1400px;
    margin:0 auto;
}

.stats-title{
    font-size:18px;
    color:#777;
    letter-spacing:4px;
    text-transform:uppercase;
    margin-bottom:90px;
}

.stats-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:80px;
}

.stat{
    border-top:1px solid var(--line);
    padding-top:40px;
}

.number{
    display:block;
    font-size:clamp(62px,7vw,92px);
    font-weight:800;
    line-height:1;
    margin-bottom:18px;
    transition:.4s var(--ease);
}

.label{
    color:#8f8f8f;
    font-size:22px;
    line-height:1.7;
}

.stat:hover .number{
    color:white;
    transform:translateY(-6px);
}

/*================ QUOTE ================*/

.quote{
    background:#050505;
    padding:220px 0;
    overflow:hidden;
}

.quote-container{
    width:min(900px,88%);
    margin:0 auto;
}

.quote-text{
    font-size:clamp(36px,5vw,58px);
    line-height:1.28;
    font-weight:700;
    letter-spacing:-1px;
    color:white;
}

.quote-text span{
    display:block;
    opacity:0;
    transform:translateY(40px);
    transition:1s ease;
}

.quote-author{
    display:block;
    margin-top:70px;
    color:#6f6f6f;
    font-size:18px;
    letter-spacing:8px;
    text-transform:uppercase;
    opacity:0;
    transform:translateY(20px);
    transition:1s ease;
}

.quote.show .quote-text span,
.quote.show .quote-author{
    opacity:1;
    transform:translateY(0);
}

.quote.show .quote-text span:nth-child(1){ transition-delay:.1s; }
.quote.show .quote-text span:nth-child(2){ transition-delay:.45s; }
.quote.show .quote-text span:nth-child(3){ transition-delay:.8s; }
.quote.show .quote-text span:nth-child(4){ transition-delay:1.15s; }
.quote.show .quote-author{ transition-delay:1.6s; }

/*================ MUSIC ================*/

.music{
    padding:160px 8%;
    background:#050505;
}

.music-header{
    max-width:820px;
    margin-bottom:70px;
}

.music-header h2{
    font-size:clamp(48px,6vw,72px);
    line-height:1.08;
    margin:24px 0;
}

.music-header p{
    font-size:22px;
    line-height:1.7;
    color:#aaa;
}

.release-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:24px;
}

.release-card{
    min-height:360px;
    padding:32px;
    color:white;
    text-decoration:none;
    border:1px solid rgba(255,255,255,.08);
    font-family:inherit;
    text-align:left;
    display:flex;
    flex-direction:column;
    justify-content:flex-end;
    background:linear-gradient(180deg, rgba(255,255,255,.04), rgba(0,0,0,.92)), #101010;
    cursor:pointer;
    transition:transform .7s cubic-bezier(.19,1,.22,1), background .7s ease, border-color .7s ease, box-shadow .7s ease, opacity .7s ease;
}

.release-card:hover{
    transform:translateY(24px) scale(.965);
    background:linear-gradient(180deg, rgba(255,255,255,.015), rgba(0,0,0,.98)), #050505;
    border-color:rgba(255,255,255,.18);
    box-shadow:inset 0 35px 90px rgba(0,0,0,.9), 0 10px 40px rgba(0,0,0,.5);
}

.release-grid:hover .release-card:not(:hover){
    opacity:.55;
    transform:scale(.985);
}

.release-card.active{
    border-color:rgba(255,255,255,.32);
    background:linear-gradient(180deg, rgba(255,255,255,.045), rgba(0,0,0,.96)), #080808;
}

.release-year{
    color:#777;
    font-size:22px;
    margin-bottom:auto;
}

.release-card h3{
    font-size:30px;
    line-height:1.15;
    margin-bottom:18px;
}

.release-card p{
    color:#aaa;
    font-size:16px;
    letter-spacing:3px;
    text-transform:uppercase;
}

/*================ FEATURED RELEASE ================*/

.featured-release{
    min-height:100vh;
    padding:160px 8%;
    background:#070707;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:90px;
    align-items:center;
    transition:opacity .35s ease, transform .35s var(--ease);
}

.featured-release.is-changing{
    opacity:.35;
    transform:translateY(18px);
}

.featured-cover{
    width:100%;
    aspect-ratio:1/1;
    overflow:hidden;
    border:1px solid rgba(255,255,255,.1);
    background:#111;
    box-shadow:0 40px 120px rgba(0,0,0,.65);
    transition:box-shadow .6s ease;
}

.featured-cover img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    filter:brightness(.84) contrast(.96) saturate(.88);
    transition:transform .6s ease, filter .6s ease;
}

.featured-cover:hover img{
    transform:scale(1.06);
    filter:brightness(.92) contrast(.98) saturate(.9);
}

.featured-info h2{
    font-size:clamp(48px,7vw,82px);
    line-height:1;
    margin:30px 0;
}

.featured-info p{
    max-width:620px;
    font-size:22px;
    line-height:1.8;
    color:#aaa;
    margin-bottom:45px;
}

.platforms{
    display:flex;
    flex-wrap:wrap;
    gap:18px;
    margin-bottom:55px;
}

.platforms a{
    color:white;
    text-decoration:none;
    font-size:15px;
    letter-spacing:2px;
    text-transform:uppercase;
    padding:14px 20px;
    border:1px solid rgba(255,255,255,.12);
    opacity:.8;
    transition:.3s;
}

.platforms a:hover{
    opacity:1;
    border-color:rgba(255,255,255,.35);
}

.featured-button{
    width:250px;
}

/*================ VISUAL EDITORIAL ================*/

.visual-editorial{
    padding:160px 8% 210px;
    background:#030303;
    overflow:hidden;
}

.visual-editorial-header{
    max-width:900px;
    margin-bottom:110px;
}

.visual-editorial-header h2{
    font-size:clamp(44px,6vw,76px);
    line-height:1.08;
    letter-spacing:-2px;
    margin-top:28px;
}

.editorial-grid{
    display:grid;
    grid-template-columns:repeat(12,1fr);
    gap:24px;
    align-items:start;
}

.editorial-photo{
    position:relative;
    overflow:hidden;
    border:none;
    background:#111;
    padding:0;
    cursor:pointer;
    transition:transform .9s cubic-bezier(.19,1,.22,1), opacity .9s ease, box-shadow .9s ease;
    will-change:transform;
}

.editorial-grid:hover .editorial-photo:not(:hover){
    transform:scale(.96);
    opacity:.72;
}

.editorial-photo img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    filter:brightness(.72) contrast(1.08) saturate(.92);
    transform:scale(1.02);
    transition:transform 1.4s cubic-bezier(.19,1,.22,1), filter 1.4s cubic-bezier(.19,1,.22,1);
}

.editorial-photo:hover{
    transform:translateY(-20px) scale(1.02);
    z-index:20;
    box-shadow:0 35px 90px rgba(0,0,0,.55);
}

.editorial-photo:hover img{
    filter:brightness(1) contrast(1) saturate(1);
    animation:photoBreath 4.5s ease-in-out infinite;
}

@keyframes photoBreath{
    0%,100%{ transform:scale(1.12); }
    50%{ transform:scale(1.16); }
}

.editorial-photo-large{ grid-column:span 7; height:620px; }
.editorial-photo-small{ grid-column:span 5; height:420px; }
.editorial-photo-tall{ grid-column:span 4; height:680px; margin-top:90px; }
.editorial-photo-wide{ grid-column:span 8; height:460px; margin-top:160px; }
.editorial-photo-offset{ margin-top:-80px; }

/*================ LIGHTBOX ================*/

.lightbox{
    position:fixed;
    inset:0;
    z-index:1000;
    background:rgba(0,0,0,.92);
    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);
    display:flex;
    align-items:center;
    justify-content:center;
    opacity:0;
    pointer-events:none;
    transition:.35s ease;
}

.lightbox.show{
    opacity:1;
    pointer-events:auto;
}

.lightbox img{
    max-width:86vw;
    max-height:86vh;
    object-fit:contain;
    transform:scale(.96);
    transition:.35s ease;
}

.lightbox.show img{
    transform:scale(1);
}

.lightbox-close{
    position:absolute;
    top:34px;
    right:42px;
    background:none;
    border:none;
    color:white;
    font-size:46px;
    font-weight:200;
    cursor:pointer;
}

/*================ LYRICS ================*/

.lyrics{
    padding:220px 8%;
    background:#030303;
}

.lyrics-container{
    max-width:1200px;
    margin:0 auto;
}

.lyrics-list{
    margin-top:70px;
}

.lyrics-list p{
    font-size:clamp(34px,4.5vw,54px);
    line-height:1.25;
    letter-spacing:-1px;
    color:#fff;
    max-width:1000px;
    padding:42px 0;
    border-bottom:1px solid rgba(255,255,255,.08);
}

.lyrics-list p:nth-child(even){
    margin-left:auto;
    color:#9a9a9a;
}

/*================ PLATFORMS SECTION ================*/

.platforms-section{
    padding:180px 8%;
    background:#060606;
}

.platforms-header{
    max-width:800px;
    margin-bottom:90px;
}

.platforms-header h2{
    font-size:clamp(44px,6vw,76px);
    line-height:1.05;
    letter-spacing:-2px;
    margin-top:28px;
}

.platforms-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    border-top:1px solid rgba(255,255,255,.08);
    border-left:1px solid rgba(255,255,255,.08);
}

.platform-card{
    min-height:260px;
    padding:34px;
    color:white;
    text-decoration:none;
    border-right:1px solid rgba(255,255,255,.08);
    border-bottom:1px solid rgba(255,255,255,.08);
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    background:rgba(255,255,255,.01);
    transition:.35s ease;
}

.platform-card span{
    color:#666;
    font-size:14px;
    letter-spacing:3px;
}

.platform-card h3{
    font-size:30px;
    line-height:1.2;
}

.platform-card p{
    color:#8f8f8f;
    font-size:14px;
    letter-spacing:3px;
    text-transform:uppercase;
}

.platform-card:hover{
    background:white;
    color:black;
}

.platform-card:hover span,
.platform-card:hover p{
    color:#555;
}

/*================ FINAL SCREEN ================*/

.final-screen{
    min-height:100vh;
    padding:120px 8% 60px;
    background:#020202;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
}

.final-inner h2{
    font-size:clamp(62px,10vw,120px);
    line-height:1;
    letter-spacing:clamp(10px,1.4vw,18px);
    font-weight:800;
    margin-bottom:38px;
}

.final-inner p{
    font-size:clamp(26px,3vw,36px);
    line-height:1.45;
    color:#aaa;
    font-weight:300;
    margin-bottom:90px;
}

.final-links{
    display:flex;
    justify-content:center;
    gap:50px;
    flex-wrap:wrap;
}

.final-links a{
    color:#777;
    text-decoration:none;
    font-size:13px;
    letter-spacing:4px;
    text-transform:uppercase;
    transition:.3s;
}

.final-links a:hover{
    color:white;
}

/*================ FOOTER ================*/

.footer{
    padding:90px 8% 45px;
    background:#020202;
    border-top:1px solid rgba(255,255,255,.08);
}

.footer a{
    color:#777;
    text-decoration:none;
    transition:.3s;
}

.footer a:hover{
    color:white;
}

.footer-top{
    display:flex;
    justify-content:space-between;
    gap:40px;
    margin-bottom:80px;
}

.footer-logo{
    color:white !important;
    font-size:46px;
    font-weight:800;
    letter-spacing:14px;
    margin-bottom: -30px;
}

.footer-mail{
    color:#aaa !important;
    font-size:20px;
}

.footer-links{
    display:flex;
    gap:46px;
    flex-wrap:wrap;
    margin-bottom:90px;
}

.footer-links a{
    font-size:13px;
    letter-spacing:4px;
    text-transform:uppercase;
}

.footer-bottom{
    display:flex;
    justify-content:space-between;
    color:#555;
    font-size:13px;
    letter-spacing:2px;
    text-transform:uppercase;
}

/*================ MOBILE ================*/

@media(max-width:1000px){
    .header{
        padding:0 25px;
    }

    .header.scrolled{
        padding:0 25px;
    }

    .header nav{
        display:none;
    }

    .hero{
        padding:120px 35px 80px;
        background-position:center top;
    }

    .story{
        grid-template-columns:1fr;
        gap:80px;
        padding:120px 35px;
    }

    .story-left p{
        font-size:19px;
        line-height:1.85;
    }

    .stats{
        padding:110px 30px;
    }

    .stats-grid{
        grid-template-columns:1fr;
        gap:70px;
    }

    .label{
        font-size:18px;
    }

    .quote{
        padding:140px 30px;
    }

    .quote-container{
        width:100%;
    }

    .quote-author{
        margin-top:50px;
        font-size:14px;
        letter-spacing:6px;
    }

    .music{
        padding:120px 30px;
    }

    .music-header p{
        font-size:18px;
    }

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

    .release-card{
        min-height:260px;
    }

    .release-grid:hover .release-card:not(:hover){
        opacity:1;
        transform:none;
    }

    .featured-release{
        grid-template-columns:1fr;
        min-height:auto;
        padding:110px 30px;
        gap:50px;
    }

    .featured-info p{
        font-size:18px;
    }

    .featured-button{
        width:100%;
    }

    .platforms{
        gap:10px;
    }

    .platforms a{
        font-size:12px;
        padding:12px 14px;
    }

    .visual-editorial{
        padding:120px 30px 150px;
    }

    .visual-editorial-header{
        margin-bottom:70px;
    }

    .editorial-grid{
        grid-template-columns:1fr;
        gap:22px;
    }

    .editorial-photo,
    .editorial-photo-large,
    .editorial-photo-small,
    .editorial-photo-tall,
    .editorial-photo-wide{
        grid-column:auto;
        height:460px;
        margin-top:0;
    }

    .editorial-photo-offset{
        margin-top:0;
    }

    .lyrics{
        padding:130px 30px;
    }

    .lyrics-list p{
        padding:32px 0;
    }

    .lyrics-list p:nth-child(even){
        margin-left:0;
    }

    .platforms-section{
        padding:120px 30px;
    }

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

    .platform-card{
        min-height:220px;
    }

    .final-links{
        gap:28px;
    }

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

    .footer-logo{
        font-size:38px;
    }
}

@media(max-width:520px){
    .header{
        height:72px;
    }

    .logo{
        font-size:22px;
        gap:7px;
    }

    .hero h1{
        word-break:normal;
    }

    .button{
        width:100%;
        max-width:270px;
    }

    .scroll-down{
        display:none;
    }

    .editorial-photo,
    .editorial-photo-large,
    .editorial-photo-small,
    .editorial-photo-tall,
    .editorial-photo-wide{
        height:340px;
    }

    .footer-mail{
        font-size:16px;
    }
}

@media (prefers-reduced-motion: reduce){
    *, *::before, *::after{
        animation-duration:.01ms !important;
        animation-iteration-count:1 !important;
        scroll-behavior:auto !important;
        transition-duration:.01ms !important;
    }
}
/* ================= MOBILE HERO ================= */

@media (max-width: 768px) {

    .hero {
        background-position: 60% center;
    }

}

@media (max-width: 768px) {

    .hero-button{
        width: auto;
        padding: 16px 34px;
        border-radius: 999px;
        font-size: 15px;
        letter-spacing: .08em;
    }

}

/* ===== BUTTON ICON FIX ===== */

.button {
    color: #fff !important;
}

.button .button-icon,
.button span,
.button svg,
.button i {
    color: #fff !important;
    fill: #fff !important;
    stroke: #fff !important;
}

.button:hover .button-icon,
.button:hover span,
.button:hover svg,
.button:hover i {
    color: #000 !important;
    fill: #000 !important;
    stroke: #000 !important;
}
.button {
    gap: 16px;
}

.button-play {
    width: 0;
    height: 0;
    display: inline-block;
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    border-left: 11px solid #fff;
}

.button:hover .button-play {
    border-left-color: #000;
}