@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:ital,opsz,wght@0,9..40,100;0,9..40,400;0,9..40,500;1,9..40,400&display=swap');

*, *::before, *::after {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    background: #000;
    color: #fff;
    font-family: 'DM Sans', sans-serif;
    overflow-x: hidden;
}

body::after {
    content: "";
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 999;
    opacity: 0.35;
}

.topnav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 32px;
    height: 56px;
    background: rgba(0, 0, 0, 0.85);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.topnav-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 0.08em;
    color: white;
    text-decoration: none;
    user-select: none;
}

.topnav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.topnav-btn {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    padding: 7px 16px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.topnav-btn:hover {
    color: white;
    border-color: rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.07);
}

.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 120px 64px 80px;
    position: relative;
    overflow: hidden;
}

.hero-eyebrow {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
    margin: 0 0 32px;
    opacity: 0;
    transform: translateY(12px);
    animation: fadeUp 0.8s ease 0.2s forwards;
}

.hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(4.5rem, 13vw, 11rem);
    line-height: 0.92;
    letter-spacing: 0.02em;
    margin: 0 0 48px;
    max-width: 900px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.9s ease 0.35s forwards;
}

.hero-title em {
    font-style: normal;
    color: rgba(255, 255, 255, 0.22);
}

.hero-divider {
    width: 48px;
    height: 1px;
    background: rgba(255, 255, 255, 0.25);
    margin: 0 0 40px;
    opacity: 0;
    animation: fadeUp 0.8s ease 0.5s forwards;
}

.hero-body {
    font-size: clamp(1rem, 1.8vw, 1.25rem);
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.65);
    max-width: 560px;
    margin: 0;
    opacity: 0;
    transform: translateY(12px);
    animation: fadeUp 0.9s ease 0.6s forwards;
}

.mission {
    padding: 80px 64px 120px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 80px;
    align-items: start;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.mission-label {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.3);
    margin: 0 0 28px;
}

.mission-heading {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.8rem, 6vw, 5rem);
    line-height: 1;
    letter-spacing: 0.03em;
    margin: 0;
    color: white;
}

.mission-right {
    padding-top: 12px;
}

.mission-stat {
    margin: 0 0 48px;
}

.mission-stat-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 7vw, 5.5rem);
    line-height: 1;
    letter-spacing: 0.02em;
    color: white;
    display: block;
}

.mission-stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-top: 4px;
    display: block;
}

.pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    background: rgba(255, 255, 255, 0.07);
}

.pillar {
    background: #000;
    padding: 48px 40px;
    transition: background 0.3s ease;
}

.pillar:hover {
    background: rgba(255, 255, 255, 0.04);
}

.pillar-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 0.95rem;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.2);
    margin: 0 0 24px;
}

.pillar-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    letter-spacing: 0.04em;
    margin: 0 0 16px;
    color: white;
}

.pillar-body {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

.cta {
    padding: 100px 64px;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.cta-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 8vw, 7rem);
    line-height: 0.95;
    letter-spacing: 0.03em;
    margin: 0 0 40px;
    max-width: 700px;
}

.cta-link {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: black;
    background: white;
    text-decoration: none;
    padding: 14px 36px;
    border-radius: 999px;
    transition: background 0.2s ease, transform 0.15s ease;
}

.cta-link:hover {
    background: rgba(255, 255, 255, 0.88);
    transform: scale(1.03);
}

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

@media (max-width: 768px) {
    html, body {
        overflow-x: hidden;
    }

    .topnav {
        padding: 0 18px;
        height: 50px;
    }

    .topnav-logo {
        font-size: 1.3rem;
    }

    .topnav-btn {
        font-size: 0.75rem;
        padding: 5px 10px;
        letter-spacing: 0.03em;
    }

    .hero {
        padding: 100px 24px 60px;
    }

    .mission {
        grid-template-columns: 1fr;
        gap: 48px;
        padding: 60px 24px 80px;
    }

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

    .pillar {
        padding: 36px 24px;
    }

    .cta {
        padding: 80px 24px;
    }
}