:root{
    --green:#8BC34A;
    --green-light:#b7e37d;
    --bg:#050505;
    --white:#ffffff;
    --text:rgba(255,255,255,0.82);
    --glass:rgba(255,255,255,0.06);
    --border:rgba(255,255,255,0.08);
}

/* RESET */

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

html,
body{
    overflow-x:hidden;
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#050505;
    color:#fff;
    line-height:1.8;
}

/* FOND */

body::after{
    content:"";
    position:fixed;
    inset:0;

    background:
    radial-gradient(
        circle at top left,
        rgba(139,195,74,.12),
        transparent 35%
    ),
    radial-gradient(
        circle at bottom right,
        rgba(139,195,74,.08),
        transparent 30%
    );

    z-index:-2;
}

.grain{
    position:fixed;
    inset:0;
    opacity:.03;
    pointer-events:none;
    background-image:url("https://www.transparenttextures.com/patterns/asfalt-dark.png");
    z-index:-1;
}

/* HERO */

.hero{
    padding:180px 20px 80px;
    text-align:center;
}

.hero-content{
    max-width:900px;
    margin:auto;
}

.badge{
    display:inline-block;
    padding:12px 22px;
    border-radius:999px;
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.08);
    color:var(--green-light);
    margin-bottom:30px;
    font-size:.8rem;
    text-transform:uppercase;
    letter-spacing:2px;
}

.hero h1{
    font-size:clamp(3rem,8vw,5rem);
    font-weight:800;
    margin-bottom:30px;
    line-height:1;
}

.hero p{
    color:var(--text);
    max-width:800px;
    margin:auto;
}

/* SECTION */

.section{
    padding:40px 20px;
}

.container{
    max-width:1200px;
    margin:auto;
}

/* GRID */

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

/* CARD */

.card{
    background:var(--glass);
    border:1px solid var(--border);
    border-radius:30px;
    padding:40px;
    backdrop-filter:blur(14px);
    transition:.3s ease;
}

.card:hover{
    transform:translateY(-6px);
    border-color:rgba(139,195,74,.4);
}

.card h2{
    color:var(--green-light);
    font-size:1.6rem;
    margin-bottom:18px;
}

.card p{
    color:var(--text);
}

.card strong{
    color:#fff;
}

/* BLOCS SIMPLES */

.section .card{
    max-width:1200px;
}

/* QUOTE */

.quote-section{
    padding:80px 20px;
    text-align:center;
}

.quote{
    max-width:900px;
    margin:auto;
    font-size:1.3rem;
    color:var(--text);
    font-style:italic;
}

/* RESPONSIVE */

@media(max-width:900px){

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

    .card{
        padding:30px;
    }

    .hero{
        padding:140px 20px 60px;
    }

    .hero h1{
        font-size:3rem;
    }
}