:root {
    --orange: #E8692D;
    --orange-light: #F28C5A;
    --teal: #4BA3B7;
    --teal-light: #6BBDD0;
    --teal-dark: #3A8A9D;
    --charcoal: #3D3D3D;
    --gray: #9A9A9A;
    --dark: #0C1219;
    --dark-blue: #0F1A24;
    --goal-green: #4ADE80;
    --strategy-yellow: #FBBF24;
    --measure-pink: #F472B6;
    --initiative-teal: #2DD4BF;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    overflow-x: clip;
    max-width: 100vw;
}

body {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    background: linear-gradient(180deg, var(--dark) 0%, var(--dark-blue) 100%);
    color: white;
    min-height: 100vh;
}

/* Background elements */
.bg-grid {
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(rgba(75,163,183,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(75,163,183,0.02) 1px, transparent 1px);
    background-size: 80px 80px;
    pointer-events: none;
    z-index: 0;
}

.bg-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
    z-index: 0;
    /* GPU layer hints to prevent flickering from blur recompositing */
    will-change: transform;
    transform: translateZ(0);
}

.bg-orb-1 {
    top: -30%;
    right: -20%;
    width: 70vw;
    height: 70vw;
    background: radial-gradient(circle, rgba(75,163,183,0.12) 0%, transparent 60%);
}

.bg-orb-2 {
    bottom: -40%;
    left: -20%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(232,105,45,0.08) 0%, transparent 60%);
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(12, 18, 25, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.nav-logo {
    height: 36px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: white;
}

.btn {
    padding: 8px 18px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
}

.btn-ghost {
    background: var(--teal-dark);
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
}

.btn-ghost:hover {
    background: var(--teal-light);
}

.btn-primary {
    background: var(--orange);
    color: white;
}

.btn-primary:hover {
    background: var(--orange-light);
}

/* Hamburger Menu */
.hamburger-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    gap: 5px;
    z-index: 200;
}

.hamburger-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger-btn.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 150;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    max-width: 85vw;
    height: 100vh;
    background: linear-gradient(180deg, var(--dark) 0%, var(--dark-blue) 100%);
    border-left: 1px solid rgba(255,255,255,0.08);
    z-index: 160;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.mobile-menu-header span {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.close-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.close-btn:hover {
    background: rgba(255,255,255,0.1);
}

.close-btn svg {
    width: 20px;
    height: 20px;
    color: white;
}

.mobile-menu-content {
    padding: 24px 20px;
}

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 32px;
}

.mobile-menu-links a {
    display: block;
    padding: 14px 16px;
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    border-radius: 10px;
    transition: all 0.2s ease;
}

.mobile-menu-links a:hover {
    background: rgba(255,255,255,0.05);
    color: white;
}

.mobile-menu-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.mobile-menu-buttons .btn {
    width: 100%;
    padding: 14px 20px;
    font-size: 15px;
    text-align: center;
}

body.menu-open {
    overflow: hidden;
}

.float-image-right
{
    position: absolute;
    width:1240px;
}

@media (max-width: 1100px) {
    .float-image-right {
        position: absolute;
        width: 900px;
    }
}

@media (max-width: 968px) {
    .float-image-right {
        position: absolute;
        width: 350px;
    }

    /* Responsive Navigation */
    .nav-links {
        display: none;
    }

    .hamburger-btn {
        display: flex;
    }

    .mobile-menu-overlay,
    .mobile-menu {
        display: block;
    }
}



/* Footer */
.footer {
    color: #D2D5DC;
    padding: 60px 0 0;
    position: relative;
    z-index: 10;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-brand {
    max-width: 400px;
}

.footer-logo {
    height: 36px;
    margin-bottom: 20px;
}

.footer-brand p {
    margin: 0 0 20px;
    font-size: 14px;
    line-height: 1.6;
    color: #D2D5DC;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social .fab {
    font-size: 26px;
    cursor: pointer;
    color: #D2D5DC;
    transition: color 0.2s;
}

.footer-social .fab:hover {
    color: var(--teal);
}

.footer-title {
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding-bottom: 12px;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--orange);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

a {
    text-decoration: none;
    color: #D2D5DC;
    transition: color 0.2s;
    color: var(--teal-light);
}

a:hover {
    color: var(--teal);
}


.footer-links a {
    text-decoration: none;
    color: #D2D5DC;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--teal);
}

.footer-content p {
    margin: 0;
    font-size: 14px;
    color: #D2D5DC;
    line-height: 1.6;
}

.footer-spacer {
    height: 12px;
}

.footer-bottom {
    margin-top: 50px;
    padding: 20px 0 30px;
    border-top: 1px solid rgba(210, 213, 220, 0.2);
    text-align: center;
}

.footer-legal {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.footer-legal a {
    text-decoration: none;
    color: #D2D5DC;
    font-size: 12px;
    transition: color 0.2s;
}

.footer-legal a:hover {
    color: var(--teal);
}

.footer-legal span {
    color: rgba(210, 213, 220, 0.4);
}

.footer-copyright {
    font-size: 11px;
    color: rgba(210, 213, 220, 0.7);
    letter-spacing: 0.5px;
    margin: 0;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
    gap: 40px;
}

/* Footer responsive */
@media (max-width: 1100px) {
    .footer-top {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 40px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 600px) {
    .footer {
        padding: 40px 0 0;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        margin-top: 30px;
    }
}

.doc-image
{
    max-width: 500px;
}

.doc-image-large
{
    max-width: 90%;
}

@media (max-width: 768px) {
    .doc-image {
        max-width: 300px;
    }

    .doc-image-large
    {
        max-width: 90%;
    }
}