:root {
    --bg: #0f0f0f;
    --card-bg: #1a1a1a;
    --text: #f0f0f0;
    --text-muted: #888;
    --accent: #b5f44a;
    --accent-blue: #49B3FC;
    --border: #2a2a2a;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: 'eurostile-extended', sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* --- NAV --- */

nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(15, 15, 15, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 0px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    border-bottom: 1px solid var(--border);
}

.nav-logo {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.nav-logo img {
    height: 120px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--accent);
}

/* --- HERO --- */

.hero {
    min-height: 100vh;
    padding: 140px 60px 60px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.hero-title-wrap {
    width: max-content;
    max-width: 100%;
    text-align: right;
    overflow: visible;
}

.hero-title-wrap .hero-cta-join {
    margin-top: 2rem;
    display: inline-block;
    background: var(--accent);
    color: #fff;
    border: 1.5px solid var(--accent);
    border-radius: 30px;
}

.hero-title-wrap .hero-cta-join:hover {
    background: #94d43a;
    border-color: #94d43a;
    color: #fff;
}

.hero h1 {
    font-size: clamp(5.4rem, 15.6vw, 14.4rem);
    font-weight: 800;
    line-height: 0.75;
    letter-spacing: -0.04em;
    color: var(--text);
    text-align: right;
    padding-bottom: 0.15em;
    overflow: visible;
    word-break: break-word;
}

.hero-visual {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    filter: blur(8px);
}

.hero-visual canvas {
    width: 100%;
    height: 100%;
}

.hero-visual.loading::after {
    content: 'Loading...';
    color: var(--text-muted);
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: transparent;
    background-image: none;
    mix-blend-mode: normal;
    opacity: 1;
}

/* --- BLUR OVERLAY --- */

.blur-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 15, 15, 0.3);
    z-index: 1;
    pointer-events: none;
}

.hero h1 span {
    color: var(--accent);
}

.hero-tagline {
    font-size: 1.275rem;
    color: var(--text-muted);
    letter-spacing: 0.08em;
    text-transform: lowercase;
    text-align: right;
    margin-top: 0.5rem;
}

.hero-sub {
    font-size: 0.99rem;
    color: var(--text-muted);
    font-weight: 300;
    max-width: 380px;
    line-height: 1.7;
    margin: 0;
    border-left: 2px solid var(--border);
    padding-left: 20px;
}

.hero-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 40px;
}

.hero-cta {
    margin-top: 44px;
    display: inline-block;
    background: var(--accent);
    color: #fff;
    text-decoration: none;
    padding: 14px 34px;
    font-weight: 600;
    font-size: 0.82rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: background 0.3s, transform 0.2s;
}

.hero-cta:hover {
    background: #94d43a;
    transform: translateY(-2px);
}

.hero .hero-cta {
    margin-top: 0;
    background: transparent;
    color: var(--accent);
    border: 1.5px solid var(--accent);
    border-radius: 30px;
    transition: background 0.3s, color 0.3s, transform 0.2s;
    white-space: nowrap;
}

.hero .hero-cta:hover {
    background: var(--accent);
    color: #fff;
}

.hero .hero-cta-join {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}

.hero .hero-cta-join:hover {
    background: #94d43a;
    border-color: #94d43a;
    color: #fff;
}

/* --- SECTIONS --- */

section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 80px 40px;
    position: relative;
    z-index: 2;
}

h2 {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1.1;
    margin-bottom: 50px;
    color: var(--text);
}

.about-collective-img {
    max-width: 100%;
    width: min(720px, 90vw);
    height: auto;
    border-radius: 8px;
    margin-bottom: 44px;
    border: 1px solid var(--border);
}

p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 16px;
    font-weight: 300;
}

/* --- FEATURE CARDS --- */

.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.feature-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 32px;
}

.feature-card h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 0.88rem;
    margin-bottom: 0;
}

/* --- FOOTER --- */

footer {
    padding: 40px;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
}

.footer-logo {
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 3px;
}

footer p {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin: 0;
}

/* --- MOBILE --- */

@media (max-width: 600px) {
    nav {
        padding: 12px 16px;
        flex-wrap: wrap;
        gap: 12px;
    }

    .nav-logo img {
        height: 48px;
    }

    .nav-links {
        gap: 16px;
        flex-wrap: wrap;
        justify-content: flex-end;
    }

    .nav-links a {
        font-size: 0.7rem;
        letter-spacing: 0.5px;
    }

    .hero {
        padding: 88px 20px 40px;
        min-height: 100vh;
    }

    .hero-title-wrap {
        width: 100%;
        max-width: 100%;
        text-align: center;
    }

    .hero h1 {
        font-size: clamp(3rem, 18vw, 5.4rem);
        text-align: center;
        line-height: 0.85;
    }

    .hero-tagline {
        text-align: center;
        font-size: 1rem;
        margin-top: 0.75rem;
    }

    .hero-title-wrap .hero-cta-join {
        margin-top: 1.5rem;
    }

    .hero-bottom {
        flex-direction: column;
        align-items: stretch;
        gap: 24px;
        margin-top: auto;
    }

    .hero-sub {
        max-width: 100%;
        padding-left: 16px;
        font-size: 0.9rem;
    }

    .hero-cta {
        margin-top: 0;
        text-align: center;
        padding: 12px 24px;
    }

    section {
        padding: 48px 20px;
    }

    .features {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .feature-card {
        padding: 24px;
    }

    footer {
        padding: 24px 20px;
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}
