@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
    --bg-dark: #06090e;
    --bg-surface: #0a0f16;
    --text-primary: #ffffff;
    --text-secondary: #94a3b8;
    --accent-slate: #475569;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition-smooth: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

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

body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2.5rem;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(rgba(6, 9, 14, 0.85), rgba(6, 9, 14, 0.98)),
        url('assets/hero-bg.png') center/cover no-repeat;
    text-align: center;
    overflow: hidden;
}

.hero-header {
    margin-bottom: 2rem;
    position: relative;
    z-index: 10;
}

.tagline {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 7px;
    margin-right: -7px;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    display: block;
    opacity: 0.8;
}

.power-text {
    font-family: var(--font-heading);
    font-size: 4.2rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1rem;
    /* Reduced from 2rem to bring subtitle closer */
    letter-spacing: -1px;
    background: linear-gradient(to bottom, #ffffff 60%, #94a3b8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtext {
    color: var(--text-secondary);
    font-size: 1.1rem;
    /* Slightly smaller from 1.3rem */
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    letter-spacing: 0.5px;
    text-transform: none;
    opacity: 0.8;
}

/* Fixed Scroll Indicator - GUARANTEED BOTTOM */
.scroll-wrapper {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    z-index: 100;
}

.scroll-wrapper.reveal {
    transform: translate(-50%, 30px);
}

.scroll-wrapper.reveal.active {
    transform: translate(-50%, 0);
}

.scroll-text {
    font-family: var(--font-heading);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-right: -3px;
    color: var(--accent-slate);
    font-weight: 600;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: -40px;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--text-secondary);
    animation: scroll-line-anim 3s infinite cubic-bezier(0.15, 0.41, 0.69, 0.94);
}

@keyframes scroll-line-anim {
    0% {
        top: -40px;
    }

    40% {
        top: 0;
    }

    60% {
        top: 0;
    }

    100% {
        top: 40px;
    }
}

/* Initiatives Section */
.section-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    /* Increased from 0.8rem */
    text-transform: uppercase;
    letter-spacing: 5px;
    margin-right: -5px;
    color: var(--accent-slate);
    font-weight: 500;
    opacity: 0.8;
}

.initiatives-carousel-style {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    overflow-x: auto;
    padding-bottom: 2rem;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

.initiatives-carousel-style::-webkit-scrollbar {
    display: none;
}

.initiative-card {
    flex: 0 0 320px;
    padding: 3rem 2.5rem;
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.initiative-card:hover {
    background: rgba(255, 255, 255, 0.02);
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

.card-category {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-slate);
    font-weight: 600;
}

.card-status {
    font-size: 0.55rem;
    padding: 0.2rem 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 100px;
    color: var(--accent-slate);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.initiative-card h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #fff;
}

.initiative-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}

.initiative-card.muted {
    opacity: 0.5;
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition-smooth);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

footer {
    padding: 8rem 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.footer-info {
    font-size: 0.75rem;
    color: rgba(148, 163, 184, 0.3);
    letter-spacing: 3px;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    font-size: 0.6rem;
    color: rgba(148, 163, 184, 0.2);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.access-link {
    font-size: 0.6rem;
    color: rgba(148, 163, 184, 0.12);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: color 0.3s ease;
}

.access-link:hover {
    color: rgba(148, 163, 184, 0.4);
}

@media (max-width: 768px) {
    .power-text {
        font-size: 2.8rem;
    }

    .initiative-card {
        flex: 0 0 280px;
        padding: 2.5rem 2rem;
    }

    .initiatives-carousel-style {
        justify-content: flex-start;
        padding: 0 1.5rem 2rem 1.5rem;
        margin: 0 -1.5rem;
        gap: 1rem;
    }

    .container {
        padding: 0 1.5rem;
    }

    .footer-container {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
}