:root {
    --primary: #003874;
    --primary-dark: #001b3e;
    --primary-container: #1a4f95;
    --on-surface: #191c1e;
    --on-surface-variant: #424751;
    --surface: #f7f9fb;
    --surface-container: #eceef0;
    --outline: #737782;
    --outline-variant: #c3c6d2;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #f8fafc;
    color: var(--on-surface);
}

h1, h2, h3, .font-brand {
    font-family: 'Manrope', sans-serif;
}

.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

/* Navbar */
.navbar {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid #e2e8f0;
}

.navbar-brand {
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    font-size: 1.2rem;
    letter-spacing: -0.02em;
    color: var(--primary) !important;
}

.nav-link {
    font-family: 'Manrope', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: #475569 !important;
    transition: color 0.2s;
}

    .nav-link:hover {
        color: var(--primary) !important;
    }

/* Buttons */
.btn-primary-custom {
    background-color: var(--primary);
    color: #fff;
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    letter-spacing: 0.02em;
    border: none;
    border-bottom: 2px solid #001b3e;
    border-radius: 0.375rem;
    padding: 0.5rem 1.5rem;
    transition: transform 0.1s;
}

    .btn-primary-custom:hover {
        background-color: #08458b;
        color: #fff;
    }

    .btn-primary-custom:active {
        transform: scale(0.97);
    }

.btn-outline-custom {
    border: 1px solid var(--outline);
    background: transparent;
    color: #505f76;
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    border-radius: 0.375rem;
    padding: 0.5rem 1.5rem;
    transition: background 0.2s;
}

    .btn-outline-custom:hover {
        background-color: var(--surface-container);
    }

/* Hero */
.hero-section {
    padding: 5rem 0;
}

.hero-img-wrapper {
    aspect-ratio: 1 / 1;
    background-color: #e0e3e5;
    border-radius: 0.5rem;
    overflow: hidden;
    border: 1px solid var(--outline-variant);
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    position: relative;
}

    .hero-img-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.floating-card {
    position: absolute;
    bottom: -1.5rem;
    left: -1.5rem;
    background: #fff;
    padding: 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 0.5rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
    max-width: 200px;
}

.progress-bar-custom {
    height: 8px;
    background: #f1f5f9;
    border-radius: 999px;
    overflow: hidden;
}

.progress-bar-fill {
    width: 80%;
    height: 100%;
    background: var(--primary);
    border-radius: 999px;
}

/* Leadership Section */
.section-leadership {
    background: #fff;
    padding: 5rem 0;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.badge-pill {
    font-family: 'Manrope', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    background: rgba(0, 56, 116, 0.08);
    color: var(--primary-container);
    padding: 0.25rem 1rem;
    border-radius: 999px;
}

.style-card {
    padding: 1.25rem;
    background: var(--surface);
    border: 1px solid var(--outline-variant);
    border-radius: 0.375rem;
    transition: border-color 0.2s;
}

    .style-card:hover {
        border-color: var(--primary);
    }

.icon-box {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,56,116,0.05);
    border-radius: 0.25rem;
    margin-bottom: 0.75rem;
    transition: background 0.2s;
}

.style-card:hover .icon-box {
    background: rgba(0,56,116,0.1);
}

/* Belbin Section */
.section-belbin {
    padding: 5rem 0;
}

.radar-wrapper {
    background: #fff;
    padding: 2.5rem;
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}

.radar-container {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.radar-ring {
    position: absolute;
    border-radius: 50%;
    border: 2px solid #f1f5f9;
}

.radar-ring-1 {
    inset: 0;
}

.radar-ring-2 {
    inset: 15%;
}

.radar-ring-3 {
    inset: 30%;
}

.radar-label {
    position: absolute;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    color: #94a3b8;
}

.radar-label-top {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.radar-label-right {
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.radar-label-bottom {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

/* Why Section */
.section-why {
    background: #f8fafc;
    padding: 5rem 0;
    border-top: 1px solid #e2e8f0;
}

.bento-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    padding: 2rem;
}

.bento-card-dark {
    background: var(--primary);
    border: 1px solid #001b3e;
    border-radius: 0.75rem;
    padding: 2rem;
    color: #fff;
}

.avatar-stack img,
.avatar-stack .avatar-more {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #fff;
    margin-left: -8px;
}

    .avatar-stack img:first-child {
        margin-left: 0;
    }

.avatar-more {
    background: var(--primary);
    color: #fff;
    font-size: 0.6rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Footer */
footer {
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
}

    footer a {
        font-family: 'Manrope', sans-serif;
        font-size: 0.7rem;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        font-weight: 600;
        color: #64748b;
        text-decoration: none;
        transition: color 0.2s;
    }

        footer a:hover {
            color: #1e40af;
        }

@media (max-width: 768px) {
    .floating-card {
        display: none;
    }
}
