/* ==================================================
   RESET
================================================== */

:root{

    --bg:#07111F;
    --bg2:#0C1627;
    --card:#111827;

    --gold:#D4AF37;
    --gold-light:#F5D97E;

    --white:#ffffff;
    --text:#d4d8df;
    --muted:#94A3B8;

    --radius:22px;

    --transition:.35s ease;

    --shadow:0 20px 50px rgba(0,0,0,.35);

    --container:1300px;

}

*{

margin:0;

padding:0;

box-sizing:border-box;

}

html{

scroll-behavior:smooth;

}

body{

background:var(--bg);

font-family:Poppins,sans-serif;

color:white;

overflow-x:hidden;

}

img{

display:block;

max-width:100%;

}

a{

text-decoration:none;

color:inherit;

}

button{

font-family:inherit;

cursor:pointer;

}

.container{

width:min(92%,var(--container));

margin:auto;

}

section{

padding:120px 0;

}

.section-tag{

color:var(--gold);

font-size:14px;

letter-spacing:5px;

margin-bottom:20px;

text-transform:uppercase;

}

.section-description{

max-width:700px;

margin:20px auto 0;

color:var(--muted);

text-align:center;

line-height:1.7;

}