/* ==============================
   NAVBAR
============================== */

.navbar {
    width: 100%;
    height: 70px;
    background: rgba(255, 255, 255, 0.86);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid #e5e5e7;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 48px;
    position: sticky;
    top: 0;
    z-index: 50;
}

.nav-left,
.nav-right {
    display: flex;
    align-items: center;
    gap: 28px;
}

.navbar a {
    text-decoration: none;
    color: #1d1d1f;
    font-size: 15px;
    font-weight: 400;
    transition: opacity 0.2s ease;
}

.navbar a:hover {
    opacity: 0.55;
}

/* ==============================
   PAGE GENERAL
============================== */

.page {
    max-width: 1180px;
    margin: 0 auto;
    padding: 64px 28px;
}

.page-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 34px;
}

.eyebrow {
    margin: 0 0 12px 0;
    color: #6e6e73;
    font-size: 14px;
    font-weight: 400;
}

h1 {
    margin: 0;
    font-size: 42px;
    line-height: 1.08;
    letter-spacing: -1px;
    font-weight: 600;
    color: #1d1d1f;
}

h2 {
    font-size: 22px;
    font-weight: 600;
    letter-spacing: -0.3px;
    margin: 0 0 20px 0;
}

h3 {
    font-size: 15px;
    font-weight: 600;
}


/* ==============================
   NAVBAR ACTIVE STATE
============================== */

.navbar a.nav-active {
    background: #1d1d1f;
    color: #ffffff;
    padding: 9px 14px;
    border-radius: 999px;
    font-weight: 600;
    opacity: 1;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.10);
}

.navbar a.nav-active:hover {
    opacity: 1;
    background: #000000;
}

.navbar .nav-right a.nav-active {
    background: transparent;
    color: #1d1d1f;
    box-shadow: none;
    padding: 0;
}

@media (max-width: 560px) {
    .navbar a.nav-active {
        padding: 8px 12px;
    }
}
