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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: #f7f4ef;
    color: #1d1f23;
    overflow-x: hidden;
}

/* BACKGROUND */

.bg-grid {
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 0, 0, .025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, .025) 1px, transparent 1px);
    background-size: 70px 70px;
    z-index: -2;
}

.orange-glow {
    position: fixed;
    width: 900px;
    height: 900px;
    background: radial-gradient(circle, #ff6b2c15 0%, transparent 70%);
    top: -350px;
    right: -250px;
    z-index: -1;
}

.orange-glow-2 {
    position: fixed;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, #ff6b2c10 0%, transparent 70%);
    bottom: -250px;
    left: -250px;
    z-index: -1;
}

/* GLOBAL */

.container {
    width: 90%;
    max-width: 1450px;
    margin: auto;
}

section {
    padding: 100px 0;
}

a {
    text-decoration: none;
    color: inherit;
}

.section-title {
    font-size: 78px;
    line-height: 1;
    letter-spacing: -4px;
    margin-bottom: 24px;
    font-weight: 900;
}

.section-sub {
    font-size: 20px;
    line-height: 1.9;
    color: #666;
    max-width: 900px;
    margin-bottom: 80px;
}

/* NAV */

nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    background: rgba(247, 244, 239, .9);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(0, 0, 0, .05);
}

.nav-inner {
    height: 110px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 16px;

    img {
        width: 216px;
        margin-top: 10px;
    }
}

/* .logo-box {
            width: 52px;
            height: 52px;
            border-radius: 16px;
            background: linear-gradient(135deg, #ff6b2c, #ff935f);
        } */

.logo h2 {
    font-size: 28px;
    font-weight: 900;
}

.logo span {
    display: block;
    font-size: 11px;
    letter-spacing: 2px;
    color: #777;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    gap: 36px;
    color: #555;
}

.nav-links a:hover {
    color: #ff6b2c;
}

.nav-btn {
    padding: 16px 30px;
    border-radius: 60px;
    background: #ff6b2c;
    color: white;
    font-weight: 700;
    box-shadow: 0 12px 30px rgba(255, 107, 44, .2);
}

/* HERO */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 70px;
    align-items: center;
    margin-top: 53px;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #ff6b2c;
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 28px;
}

.hero h1 {
    font-size: 102px;
    line-height: .9;
    letter-spacing: -6px;
    margin-bottom: 34px;
    font-weight: 900;
}

.hero h1 span {
    color: #ff6b2c;
}

.hero p {
    font-size: 21px;
    line-height: 1.9;
    color: #666;
    max-width: 760px;
    margin-bottom: 45px;
}

.hero-buttons {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.btn-primary {
    padding: 18px 36px;
    border-radius: 60px;
    background: #ff6b2c;
    color: white;
    font-weight: 700;
    box-shadow: 0 12px 30px rgba(255, 107, 44, .18);
}

.btn-secondary {
    padding: 18px 36px;
    border-radius: 60px;
    background: white;
    border: 1px solid rgba(0, 0, 0, .08);
    font-weight: 600;
}

/* HERO VISUAL */

.hero-visual {
    position: relative;
}

.hero-card {
    background: white;
    border-radius: 40px;
    padding: 26px;
    border: 1px solid rgba(0, 0, 0, .06);
    box-shadow: 0 30px 90px rgba(0, 0, 0, .08);
}

.hero-card img {
    width: 100%;
    height: 720px;
    object-fit: cover;
    border-radius: 28px;
}

.floating {
    position: absolute;
    background: rgba(255, 255, 255, .94);
    border-radius: 24px;
    padding: 18px 24px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, .08);
    border: 1px solid rgba(0, 0, 0, .05);
}

.float-1 {
    top: -20px;
    left: -20px;
}

.float-2 {
    bottom: -20px;
    right: -20px;
}

.floating span {
    display: block;
    color: #ff6b2c;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 8px;
    font-weight: 700;
}

.floating h4 {
    font-size: 20px;
}

/* MOVEMENT */

.movement {
    background: #1d1f23;
    color: white;
}

.movement .section-title {
    color: white;
}

.movement .section-sub {
    color: #cfcfcf;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat {
    background: #26282d;
    border-radius: 34px;
    padding: 42px;
}

.stat h3 {
    font-size: 62px;
    color: #ff6b2c;
    margin-bottom: 14px;
}

.stat p {
    color: #d4d4d4;
    line-height: 1.8;
}

/* FEATURED EVENT */

.featured-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.featured-image {
    position: relative;
}

.featured-image img {
    width: 100%;
    border-radius: 40px;
    height: 720px;
    object-fit: cover;
    box-shadow: 0 30px 90px rgba(0, 0, 0, .08);
}

.featured-content .tag {
    display: inline-block;
    padding: 10px 16px;
    border-radius: 50px;
    background: #fff1ea;
    color: #ff6b2c;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 26px;
}

.featured-content h2 {
    font-size: 74px;
    line-height: 1;
    letter-spacing: -4px;
    margin-bottom: 26px;
}

.featured-content h4 {
    font-size: 20px;
    margin-bottom: 28px;
    color: #ff6b2c;
}

.featured-content p {
    font-size: 20px;
    line-height: 1.9;
    color: #666;
    margin-bottom: 40px;
}

/* ECOSYSTEM */

.ecosystem-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.ecosystem-card {
    background: white;
    border-radius: 32px;
    padding: 38px;
    border: 1px solid rgba(0, 0, 0, .06);
    box-shadow: 0 20px 60px rgba(0, 0, 0, .04);
    transition: .35s;
}

.ecosystem-card:hover {
    transform: translateY(-8px);
}

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

.ecosystem-card p {
    color: #666;
    line-height: 1.8;
}

/* DIALOGUES */

.dialogue-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.dialogue {
    background: white;
    border-radius: 38px;
    padding: 46px;
    border: 1px solid rgba(0, 0, 0, .06);
    box-shadow: 0 20px 60px rgba(0, 0, 0, .04);
}

.dialogue h3 {
    font-size: 42px;
    line-height: 1.1;
    margin: 24px 0 18px;
}

.dialogue p {
    color: #666;
    line-height: 1.9;
}

.tag {
    display: inline-block;
    padding: 10px 16px;
    border-radius: 50px;
    background: #fff1ea;
    color: #ff6b2c;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
}

/* LEADERS */

.leaders-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.leader {
    position: relative;
    overflow: hidden;
    border-radius: 34px;
    height: 540px;
}

.leader img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.leader-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, .82));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 36px;
    color: white;
}

.leader-overlay h3 {
    font-size: 36px;
    margin-bottom: 12px;
}

.leader-overlay p {
    line-height: 1.7;
    color: #ddd;
}

/* IMPACT */

.impact {
    background: #1d1f23;
    color: white;
}

.impact .section-title {
    color: white;
}

.impact .section-sub {
    color: #d2d2d2;
}

/* MEDIA */

.media-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.media-card {
    background: white;
    border-radius: 34px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, .06);
    box-shadow: 0 20px 60px rgba(0, 0, 0, .04);
}

.media-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.media-content {
    padding: 34px;
}

.media-content h3 {
    font-size: 32px;
    line-height: 1.2;
    margin: 22px 0 16px;
}

.media-content p {
    color: #666;
    line-height: 1.8;
}

/* CTA */

.cta-box {
    background: #1d1f23;
    border-radius: 44px;
    padding: 110px 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, #ff6b2c22 0%, transparent 70%);
    top: -300px;
    right: -200px;
}

.cta-box h2 {
    font-size: 88px;
    line-height: 1;
    letter-spacing: -4px;
    margin-bottom: 30px;
    color: white;
}

.cta-box p {
    max-width: 900px;
    margin: auto;
    font-size: 21px;
    line-height: 1.9;
    color: #d3d3d3;
    margin-bottom: 45px;
}

/* FOOTER */

footer {
    padding: 70px 0;
    border-top: 1px solid rgba(0, 0, 0, .06);
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-left p {
    color: #777;
    margin-top: 10px;
}

.footer-links {
    display: flex;
    gap: 28px;
    color: #666;
}

/* RESPONSIVE */

@media(max-width:1200px) {

    .hero h1 {
        font-size: 76px;

    }

    .section-title,
    .featured-content h2 {
        font-size: 56px;
    }

    .ecosystem-grid,
    .stats-grid,
    .media-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:980px) {

    .hero-grid,
    .featured-grid,
    .dialogue-grid {
        grid-template-columns: 1fr;
    }

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

    .hero h1 {
        font-size: 58px;
    }

    .section-title {
        font-size: 46px;
    }

    .cta-box h2 {
        font-size: 54px;
    }

    .nav-links {
        display: none;
    }
}

@media(max-width:640px) {

    .ecosystem-grid,
    .stats-grid,
    .media-grid {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 46px;
        letter-spacing: 0.5px;
    }

    .section-title {
        font-size: 38px;
        letter-spacing: 0.5px;
    }

    .cta-box {
        padding: 70px 30px;
    }

    .nav-btn {
        display: none;
        padding: 16px 19px
    }

    .popup-title {
        font-size: 26px !important;
    }

    #cookie-banner {
        .btn-light {
            margin-bottom: 10px;
        }
    }

    section {
        padding: 80px 0;
    }
}