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

html {
    scroll-behavior: smooth;
}

body {
    background: #050505;
    color: #fff;
    font-family: Arial, Helvetica, sans-serif;
    overflow-x: hidden;
}

a {
    color: inherit;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 28px 42px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(to bottom, rgba(0,0,0,0.85), transparent);
}

.logo {
    letter-spacing: 8px;
    font-weight: 800;
    font-size: 18px;
}

.nav a {
    color: #fff;
    text-decoration: none;
    margin-left: 26px;
    opacity: .75;
    font-size: 14px;
}

.nav a:hover {
    opacity: 1;
}

.inner {
    max-width: 1120px;
    margin: 0 auto;
}

.section {
    padding: 105px 24px;
    background: #050505;
}

.section h2,
.visual-section h2 {
    font-size: clamp(38px, 5vw, 68px);
    margin-bottom: 26px;
    letter-spacing: 2px;
}

.section-text,
.visual-section p {
    max-width: 800px;
    font-size: 18px;
    line-height: 1.85;
    opacity: .72;
}

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

.buttons .btn {
    min-width: 180px;
    text-align: center;
}

.buttons.left {
    justify-content: flex-start;
    margin-top: 36px;
}

.btn,
.btn.main,
button.btn,
a.btn {
    min-width: 170px;
    padding: 15px 26px;
    border: 1px solid rgba(255,255,255,.45);
    color: #fff;
    background: rgba(0,0,0,.25);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    transition: background .35s ease, color .35s ease, border-color .35s ease, transform .35s ease, box-shadow .35s ease;
    text-align: center;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn::before,
.btn.main::before,
button.btn::before,
a.btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 80%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,.35), transparent);
    transition: left .6s ease;
}

.btn:hover,
.btn.main:hover,
button.btn:hover,
a.btn:hover {
    background: rgba(255,255,255,.07);
    color: #fff;
    border-color: rgba(255,255,255,.38);
    transform: translateY(-4px) scale(1.015);
    box-shadow: 0 18px 45px rgba(0,0,0,.55);
}

.btn:hover::before,
.btn.main:hover::before,
button.btn:hover::before,
a.btn:hover::before {
    left: 130%;
}

.manifest,
.phrase {
    padding: 90px 24px;
    background:
        linear-gradient(to bottom, rgba(0,0,0,.95), rgba(0,0,0,.85)),
        url('../img/hero.png') center center / cover fixed no-repeat;
    text-align: center;
}

.big-line,
.phrase p {
    font-size: clamp(30px, 4vw, 56px);
    font-weight: 800;
    max-width: 950px;
    margin: 0 auto 24px;
}

.manifest-text {
    max-width: 760px;
    margin: 0 auto;
    font-size: 19px;
    line-height: 1.8;
    opacity: .72;
}

.cards {
    margin-top: 54px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.card {
    border: 1px solid rgba(255,255,255,.13);
    background: linear-gradient(180deg, rgba(255,255,255,.065), rgba(255,255,255,.018));
    padding: 30px;
    min-height: 210px;
    transition: .35s;
}

.card:hover {
    transform: translateY(-6px);
    border-color: rgba(255,255,255,.35);
}

.card h3 {
    font-size: 22px;
    margin-bottom: 16px;
}

.card p {
    font-size: 15px;
    line-height: 1.75;
    opacity: .65;
}

.card span {
    display: inline-block;
    margin-top: 22px;
    opacity: .45;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-size: 12px;
}

.visual-section {
    min-height: 80vh;
    padding: 120px 24px;
    display: flex;
    align-items: center;
    background:
        linear-gradient(to right, rgba(0,0,0,.95), rgba(0,0,0,.35), rgba(0,0,0,.95)),
        url('../img/hero.png') center center / cover no-repeat;
}

.contact-box {
    margin-top: 40px;
    border: 1px solid rgba(255,255,255,.13);
    padding: 34px;
    background: linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.015));
}

.contact-box p {
    font-size: 17px;
    line-height: 1.8;
    opacity: .72;
}

.alone-overlay {
    position: fixed;
    inset: 0;
    background: radial-gradient(circle at center, rgba(255,180,80,.12), transparent 30%), rgba(0,0,0,.96);
    z-index: 200;
    display: none;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 30px;
}

.alone-overlay.active {
    display: flex;
}

.alone-content {
    max-width: 760px;
    animation: fadeUp 1s ease;
}

.alone-title {
    font-size: clamp(42px, 6vw, 82px);
    font-weight: 900;
    letter-spacing: 4px;
    margin-bottom: 30px;
}

.alone-content p {
    font-size: 22px;
    line-height: 1.8;
    opacity: .75;
}

.close-alone {
    position: absolute;
    top: 28px;
    right: 34px;
    width: 46px;
    height: 46px;
    background: transparent;
    color: white;
    border: 1px solid rgba(255,255,255,.4);
    font-size: 28px;
    cursor: pointer;
}

/* ===== ANIMATION HELPERS ===== */

.section,
.hero-content,
.card,
.merch-card {
    opacity: 1;
    transform: none;
}

.fade-ready {
    opacity: 0;
    transform: translateY(30px);
    transition: all .8s ease;
}

.fade-ready.visible {
    opacity: 1;
    transform: translateY(0);
}

.hero-content {
    opacity: 1;
    transform: none;
}

/* ===== EFFECTS ===== */

.enter-overlay {
    position: fixed;
    inset: 0;
    background: #000;
    opacity: 0;
    pointer-events: none;
    z-index: 9999;
    transition: opacity 1s ease;
}

.enter-overlay.active {
    opacity: 1;
}

#migaeris-particles {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    opacity: .65;
}

/* ===== KEYFRAMES ===== */

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(45px);
    }

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

@keyframes pulseGlow {
    0% {
        transform: scale(1);
        opacity: .45;
    }

    50% {
        transform: scale(1.35);
        opacity: 1;
    }

    100% {
        transform: scale(1);
        opacity: .45;
    }
}
.site-footer {
    margin-top: 60px;
    padding: 40px 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}


.footer-logo {
    font-size: 24px;
    letter-spacing: 8px;
    margin-bottom: 10px;
    font-weight: 600;
}

.footer-copy {
    font-size: 13px;
    color: rgba(255,255,255,0.55);
}
.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

/* FIX MAIN FOOTER AFTER MERCH EDIT */
.site-footer {
    margin-top: 60px;
    padding: 56px 24px;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,.08);
    background: #030303;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-logo {
    letter-spacing: 9px;
    font-size: 24px;
    margin-bottom: 14px;
    font-weight: 400;
}

.footer-copy {
    font-size: 13px;
    opacity: .45;
    color: rgba(255,255,255,0.75);
}

/* FIX REAL MAIN FOOTER */
.footer {
    padding: 56px 24px;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,.08);
    background: #030303;
}

.footer .footer-logo {
    letter-spacing: 9px;
    font-size: 24px;
    margin-bottom: 14px;
    font-weight: 400;
}

.footer p {
    opacity: .45;
    font-size: 14px;
    margin: 0;
}
