:root{
    --bg:#081311;
    --panel:#10201d;
    --text:#f5f1e8;
    --muted:#b8c4bf;
    --gold:#d5b66f;
    --line:rgba(255,255,255,.10);
}

*{
    box-sizing:border-box;
}

body{
    margin:0;
    background:
        radial-gradient(
            circle at top,
            #16332d 0,
            #081311 45%,
            #050b0a 100%
        );
    color:var(--text);
    font-family:
        Inter,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
}

.section-wrap{
    width:min(1080px,calc(100% - 36px));
    margin:0 auto;
}

.section-hero{
    padding:100px 0 54px;
}

.section-kicker{
    color:var(--gold);
    font-weight:800;
    font-size:.82rem;
    letter-spacing:.15em;
    text-transform:uppercase;
    margin-bottom:16px;
}

.section-hero h1{
    max-width:900px;
    margin:0;
    font-size:clamp(2.4rem,7vw,5rem);
    line-height:1;
    letter-spacing:-.04em;
}

.section-intro{
    max-width:780px;
    margin:25px 0 0;
    color:var(--muted);
    font-size:clamp(1.05rem,2vw,1.28rem);
    line-height:1.7;
}

.section-body{
    padding:18px 0 90px;
}

.section-status{
    padding:25px;
    border:1px solid var(--line);
    border-radius:20px;
    background:rgba(255,255,255,.045);
    display:flex;
    gap:14px;
    align-items:flex-start;
}

.section-status span{
    color:var(--gold);
    font-size:1.25rem;
}

.section-status p{
    margin:0;
    color:var(--muted);
    line-height:1.7;
}

.section-related{
    display:grid;
    grid-template-columns:
        repeat(2,minmax(0,1fr));
    gap:12px;
    margin-top:22px;
}

.section-link{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
    padding:18px 20px;
    border:1px solid var(--line);
    border-radius:14px;
    color:var(--text);
    text-decoration:none;
    background:rgba(255,255,255,.025);
}

.section-link:hover{
    border-color:rgba(213,182,111,.5);
    color:var(--gold);
}

.section-footer{
    padding:30px 0 40px;
    border-top:1px solid var(--line);
    color:var(--muted);
    font-size:.9rem;
}

@media(max-width:650px){

    .section-hero{
        padding:70px 0 42px;
    }

    .section-related{
        grid-template-columns:1fr;
    }

}
