:root {
    --bg-body: #050505;
    --gold: #c5a059;
    --text-main: #b5b5b5;
    --white: #ffffff;
    --line-subtle: rgba(197, 160, 89, 0.3);
}

body { 
    background-color: var(--bg-body) !important; 
    color: var(--text-main); 
    font-family: 'Inter', sans-serif; 
    margin: 0; 
    -webkit-font-smoothing: antialiased;
}

header { 
    padding: 90px 0 70px 0;
    text-align: center;
    background: #111;
}

.logo { 
    font-weight: 600; 
    font-size: 4rem; 
    color: var(--gold); 
    text-transform: uppercase; 
    letter-spacing: 15px; 
    margin: 0;
}

.tagline-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 45px;
}

.tagline-line {
    flex-grow: 1;
    height: 1px;
    background: var(--line-subtle);
    max-width: 150px;
}

.tagline { 
    padding: 0 40px;
    text-transform: uppercase;
    font-weight: 300;
    letter-spacing: 6px;
    font-size: 0.9rem;
    color: var(--white);
}

nav { 
    display: flex; 
    justify-content: center; 
    background: #000;
    border-top: 1px solid #222;
    border-bottom: 2px solid var(--gold);
}

nav a { 
    color: var(--white); 
    text-decoration: none; 
    font-weight: 600; 
    font-size: 0.85rem; 
    text-transform: uppercase; 
    letter-spacing: 3px;
    padding: 25px 40px;
    border-right: 1px solid #222;
}

nav a:hover { background: var(--gold); color: #000; }

.container { max-width: 850px; margin: 80px auto; padding: 0 40px; }

h1, h2 { color: var(--white); font-weight: 700; font-size: 2.5rem; margin-bottom: 30px; }

.section-tag { color: var(--gold); font-weight: 700; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 3px; margin-bottom: 20px; display: block; }

p { font-size: 1.2rem; line-height: 2; text-align: justify; }

.insight { border-left: 4px solid var(--gold); padding: 25px; background: #111; font-style: italic; color: #fff; margin: 40px 0; }