:root {

    --primary: #0f172a;
    --secondary: #1e293b;
    --accent: #2563eb;

    --text: #0f172a;
    --muted: #64748b;

    --white: #ffffff;
    --border: #e2e8f0;

    --radius: 18px;

    --container: 1280px;

    --shadow:
        0 10px 30px rgba(0,0,0,0.06);

    --transition: all .3s ease;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:
        Inter,
        system-ui,
        sans-serif;

    background:#f8fafc;
    color:var(--text);
    line-height:1.6;
}

img{
    max-width:100%;
}

a{
    text-decoration:none;
    color:inherit;
}

.container{
    width:90%;
    max-width:var(--container);
    margin:auto;
}

.site-navbar {
    width: 100%;
    background: #fff;
    border-bottom: 1px solid #eee;
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 12px 0;
}

/* BRAND SECTION */
.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 220px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-title {
    font-weight: 700;
    font-size: 16px;
    color: #111;
}

.logo-tagline {
    font-size: 12px;
    color: #666;
}

/* NAV LINKS */
.nav-links {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.nav-links a {
    text-decoration: none;
    font-size: 14px;
    color: #333;
    padding: 6px 10px;
    border-radius: 6px;
    transition: 0.2s;
}

.nav-links a:hover {
    background: #f2f2f2;
}

/* MOBILE SAFETY */
@media (max-width: 768px) {
    .nav-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-links {
        width: 100%;
        justify-content: flex-start;
        flex-wrap: wrap;
    }
}