/* ==========================================
   HOME HERO
========================================== */

.hero{
    min-height:120vh;
    padding:155px 20px 110px;
    display:flex;
    justify-content:center;
    align-items:center;
    position:relative;
    overflow:hidden;
    background:
        radial-gradient(circle at 18% 30%, rgba(255,106,0,.22), transparent 28%),
        radial-gradient(circle at 82% 72%, rgba(255,38,63,.14), transparent 34%),
        linear-gradient(135deg, rgba(5,5,5,.95), rgba(16,7,3,.92), rgba(5,5,5,.95));
}

.hero::before{
    content:"";
    position:absolute;
    inset:0;
    background:
        linear-gradient(to bottom, rgba(0,0,0,.05), rgba(0,0,0,.55)),
        linear-gradient(90deg, rgba(255,106,0,.08), transparent 20%, transparent 80%, rgba(255,106,0,.08));
    pointer-events:none;
    z-index:1;
}

.hero-light{
    position:absolute;
    width:900px;
    height:900px;
    border-radius:50%;
    background:radial-gradient(circle, rgba(255,106,0,.22), transparent 68%);
    filter:blur(70px);
    animation:heroFloat 13s ease-in-out infinite;
    z-index:1;
}

.hero-city-lines{
    position:absolute;
    left:0;
    right:0;
    bottom:0;
    height:34%;
    background:
        linear-gradient(to top, rgba(0,0,0,.75), transparent),
        repeating-linear-gradient(90deg, rgba(255,106,0,.11) 0 1px, transparent 1px 90px);
    opacity:.28;
    pointer-events:none;
    z-index:1;
}

.hero-card{
    position:relative;
    z-index:5;
    width:min(1050px, 100%);
    padding:92px 72px;
    text-align:center;
    border-radius:38px;
    background:linear-gradient(145deg, rgba(22,22,22,.86), rgba(8,8,8,.92));
    border:1px solid rgba(255,106,0,.20);
    box-shadow:
        0 35px 100px rgba(0,0,0,.62),
        0 0 90px rgba(255,106,0,.12);
    backdrop-filter:blur(24px);
}

.hero-character{
    position:absolute;
    bottom:0;
    height:58%;
    max-height:620px;
    opacity:1;
    z-index:3;
    pointer-events:none;
    object-fit:contain;
    filter:drop-shadow(0 25px 55px rgba(0,0,0,.85));
    transition:opacity 1.1s ease, transform 1.1s ease;
}

.js-enabled .hero-character{
    opacity:1;
}

.hero-character-left{
    left:55px;
    transform:translateX(-80px) translateY(40px);
}

.hero-character-right{
    right:55px;
    transform:translateX(80px) translateY(40px);
}

.hero-character.visible,
.hero-character.show{
    opacity:1;
    transform:translateX(0) translateY(0);
}

/* ==========================================
   GLOBAL PAGE HERO
========================================== */

.page-hero{
    position:relative;
    isolation:isolate;
    overflow:hidden;
    min-height:72vh;
    padding:170px min(8vw, 120px) 90px;
    display:grid;
    grid-template-columns:minmax(0, 1fr) minmax(360px, .85fr);
    align-items:center;
    gap:70px;
    border-bottom:1px solid rgba(255,106,0,.12);
}

.page-hero::before{
    content:"";
    position:absolute;
    inset:70px min(4vw, 70px) 40px;
    border-radius:38px;
    border:1px solid rgba(255,106,0,.12);
    background:
        linear-gradient(145deg, rgba(255,255,255,.035), transparent 40%),
        radial-gradient(circle at 18% 35%, rgba(255,106,0,.14), transparent 35%),
        radial-gradient(circle at 80% 60%, rgba(255,38,63,.10), transparent 38%);
    box-shadow:
        inset 0 0 0 1px rgba(255,255,255,.025),
        0 40px 120px rgba(0,0,0,.38);
    z-index:-2;
}

.page-hero::after{
    content:"";
    position:absolute;
    right:min(6vw, 90px);
    bottom:30px;
    width:min(42vw, 660px);
    height:min(42vw, 660px);
    border-radius:50%;
    background:radial-gradient(circle, rgba(255,106,0,.22), transparent 68%);
    filter:blur(55px);
    opacity:.85;
    z-index:-2;
}

.page-hero > .eyebrow,
.page-hero > h1,
.page-hero > p{
    grid-column:1;
    position:relative;
    z-index:3;
}

.page-hero h1{
    font-family:var(--font-heading);
    font-size:clamp(4.4rem, 9vw, 9rem);
    line-height:.86;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:28px;
    color:var(--color-white);
    text-shadow:
        0 0 55px rgba(255,106,0,.22),
        0 10px 40px rgba(0,0,0,.65);
}

.page-hero p{
    max-width:760px;
    color:var(--color-muted);
    font-size:1.12rem;
    line-height:1.85;
}

.page-hero-img{
    grid-column:2;
    grid-row:1 / span 3;
    position:relative;
    z-index:2;
    width:100%;
    max-height:520px;
    object-fit:contain;
    justify-self:center;
    align-self:end;
    filter:
        drop-shadow(0 35px 70px rgba(0,0,0,.7))
        drop-shadow(0 0 35px rgba(255,106,0,.22));
    animation:pageHeroFloat 9s ease-in-out infinite;
    transform-origin:center bottom;
}

.page-hero-art{
    grid-column:2;
    grid-row:1 / span 3;
    position:relative;
    min-height:520px;
    z-index:2;
}

.page-hero-art picture{
    position:absolute;
    inset:0;
    display:block;
}

.page-hero-art img{
    position:absolute;
    inset:auto 0 0 0;
    width:100%;
    height:100%;
    object-fit:contain;
    filter:
        drop-shadow(0 35px 70px rgba(0,0,0,.72))
        drop-shadow(0 0 35px rgba(255,106,0,.24));
    animation:pageHeroFloat 9s ease-in-out infinite;
}



.eyebrow{
    display:inline-block;
    margin-bottom:22px;
    padding:10px 22px;
    border-radius:999px;
    background:rgba(255,106,0,.12);
    border:1px solid rgba(255,106,0,.25);
    color:var(--color-primary);
    font-size:.78rem;
    font-weight:900;
    letter-spacing:3px;
    text-transform:uppercase;
}

/* ==========================================
   TYPOGRAPHY
========================================== */

.hero h1{
    font-family:var(--font-heading);
    font-size:clamp(4.4rem, 10vw, 9.2rem);
    line-height:.85;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:28px;
    color:var(--color-white);
}

.hero h1 span{
    color:var(--color-primary);
}

.hero p{
    max-width:820px;
    margin:0 auto;
    color:var(--color-muted);
    font-size:1.13rem;
    line-height:1.85;
}

/* ==========================================
   HERO BUTTONS
========================================== */

.hero-buttons{
    margin-top:46px;
    display:flex;
    justify-content:center;
    gap:18px;
    flex-wrap:wrap;
}

.hero-main-btn{
    min-width:300px;
    padding:18px 36px;
    font-size:1.08rem;
    font-weight:900;
    border-radius:18px;
    transition:.35s ease;
}

.hero-main-btn:hover{
    transform:translateY(-5px);
}

/* ==========================================
   HERO BUTTONS
========================================== */

.hero-buttons{
    margin-top:50px;

    display:flex;
    justify-content:center;
    gap:22px;
    flex-wrap:wrap;
}

.hero-buttons .btn{

    min-width:320px;
    padding:20px 42px;

    font-size:1.08rem;
    font-weight:900;

    border-radius:20px;

    transition:.35s ease;
}

.hero-buttons .btn:hover{

    transform:translateY(-6px) scale(1.03);

}

/* ==========================================
   HERO BUTTONS
========================================== */

.hero-buttons{
    margin-top:50px;
    display:flex;
    justify-content:center;
    gap:22px;
    flex-wrap:wrap;
}

.hero-buttons a{

    display:flex;
    justify-content:center;
    align-items:center;

    width:320px;
    height:62px;

    border-radius:18px;

    font-size:1.08rem;
    font-weight:900;

    text-decoration:none;

    transition:.35s;

}

.hero-buttons:not(.hero-buttons-bottom) a:first-child{
    background:linear-gradient(135deg,#ff7a00,#ff9800);
    color:#000;
}

.hero-buttons:not(.hero-buttons-bottom) a:last-child{
    background:linear-gradient(135deg,#ff7a00,#ff9800);
    color:#000;
}

.hero-buttons-bottom a{
    background:#1c1c1c;
    color:#fff;
    border:1px solid rgba(255,255,255,.12);
}

.hero-buttons a:hover{

    transform:translateY(-5px);

}
/* ==========================================
   SCROLL INDICATOR
========================================== */

.scroll-indicator{
    position:absolute;
    left:50%;
    bottom:42px;
    width:28px;
    height:48px;
    border:1px solid rgba(255,255,255,.28);
    border-radius:999px;
    transform:translateX(-50%);
    z-index:5;
}

.scroll-indicator span{
    position:absolute;
    left:50%;
    top:10px;
    width:5px;
    height:5px;
    background:var(--color-primary);
    border-radius:50%;
    transform:translateX(-50%);
}

/* ==========================================
   ANIMATIONS
========================================== */

@keyframes pageHeroFloat{
    0%,100%{
        transform:translateY(0) scale(1);
    }

    50%{
        transform:translateY(-18px) scale(1.025);
    }
}
.logo{
    display:flex;
    align-items:center;
    gap:14px;

    color:white;
    text-decoration:none;

    font-family:var(--font-heading);
    font-size:2rem;
    font-weight:900;
    letter-spacing:1px;
}

.logo img{
    width:42px;
    height:42px;
    object-fit:contain;
    transition:.35s ease;
}

.logo:hover img{
    transform:rotate(-8deg) scale(1.08);
}

.logo strong{
    color:var(--color-primary);
    font-weight:900;
}
