body {
    background-color: #0a1128;
    color: #f8f9fa;
    -webkit-font-smoothing: antialiased;
}

.glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 1px solid rgba(255, 255, 255, 0.05);
}

.glass-overlay {
    background: rgba(10, 17, 40, 0.7);
    backdrop-filter: blur(40px);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.precision-grid {
    background-image: radial-gradient(rgba(217, 4, 41, 0.1) 1px, transparent 1px);
    background-size: 32px 32px;
}

.text-glow {
    text-shadow: 0 0 15px rgba(217, 4, 41, 0.4);
}

.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 24;
}

.target-crosshair::before,
.target-crosshair::after {
    content: '';
    position: absolute;
    background-color: #d90429;
}

.target-crosshair::before {
    width: 1px;
    height: 100%;
    left: 50%;
    top: 0;
}

.target-crosshair::after {
    height: 1px;
    width: 100%;
    top: 50%;
    left: 0;
}

.fade-in {
    animation: fadeIn 1s ease-out forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.custom-cursor {
    width: 24px;
    height: 24px;
    border: 1px solid #d90429;
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, border-color 0.3s;
}

.gameplan-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: min(100%, 280px);
    max-width: 100%;
    padding: 1rem 2.5rem;
    font-family: Metropolis, sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: 1;
    text-align: center;
    text-transform: uppercase;
    box-sizing: border-box;
}

.gameplan-btn-outline {
    border: 1px solid rgba(70, 70, 77, 0.5);
    color: #f8f9fa;
    background: transparent;
}

.gameplan-btn-outline:hover {
    background: rgba(55, 58, 59, 0.1);
}

.gameplan-btn-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    width: 100%;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
}

.gameplan-cta-bar {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 28rem;
    margin-left: auto;
    margin-right: auto;
    padding: 0.5rem;
    gap: 0.5rem;
    background: #323536;
    border: 1px solid rgba(70, 70, 77, 0.3);
    box-sizing: border-box;
}

.gameplan-cta-bar input {
    width: 100%;
    min-width: 0;
    padding: 1rem 1rem;
    background: transparent;
    border: none;
    color: #f8f9fa;
    font-family: Metropolis, sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    box-sizing: border-box;
}

.gameplan-cta-bar input:focus {
    outline: none;
    ring: 0;
}

.gameplan-cta-bar .gameplan-btn {
    width: 100%;
    min-width: 0;
}

#mobile-menu.is-open {
    display: block;
}

body.mobile-menu-open {
    overflow: hidden;
}

#site-nav .gameplan-nav-inner {
    height: 5rem;
    transition: height 0.2s ease;
}

#site-nav.is-scrolled .gameplan-nav-inner {
    height: 4rem;
}

@media (min-width: 768px) {
    .gameplan-btn-group {
        flex-direction: row;
        align-items: stretch;
        max-width: none;
        margin-left: 0;
        margin-right: 0;
    }

    .gameplan-btn {
        min-width: 220px;
    }

    .gameplan-cta-bar {
        flex-direction: row;
        align-items: stretch;
        max-width: 36rem;
    }

    .gameplan-cta-bar input {
        flex: 1 1 auto;
    }

    .gameplan-cta-bar .gameplan-btn {
        width: auto;
        flex-shrink: 0;
    }
}

@media (max-width: 767px) {
    .custom-cursor {
        display: none !important;
    }

    .px-margin-desktop {
        padding-left: 1.25rem !important;
        padding-right: 1.25rem !important;
    }

    .gameplan-site section.py-32,
    .gameplan-site section.py-40,
    .gameplan-site section.py-24 {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }

    .gameplan-site section.gameplan-section-tight {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }

    .gameplan-site header.min-h-screen,
    .gameplan-site section.min-h-\[90vh\],
    .gameplan-site section.min-h-\[70vh\] {
        min-height: auto !important;
        padding-top: 6rem !important;
        padding-bottom: 2.5rem !important;
    }

    .gameplan-page-content section > div,
    .gameplan-page-content header > div,
    .gameplan-home header .relative.z-10 > div {
        text-align: center;
    }

    .gameplan-page-content section .flex.items-center.gap-3,
    .gameplan-page-content section .flex.items-center.gap-4,
    .gameplan-home header .inline-flex {
        justify-content: center;
    }

    .gameplan-page-content blockquote {
        margin-left: auto;
        margin-right: auto;
        text-align: center;
        border-left: none !important;
        border-top: 2px solid #d90429;
        padding-left: 0 !important;
        padding-top: 1rem;
    }

    .gameplan-page-content .grid.grid-cols-2 {
        justify-items: center;
        text-align: center;
    }

    .gameplan-page-content section .flex.gap-6,
    .gameplan-page-content section .flex.gap-4 {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .gameplan-home header .relative.z-10 {
        text-align: center;
    }

    .gameplan-home header h1,
    .gameplan-home header p {
        margin-left: auto;
        margin-right: auto;
    }

    .gameplan-home header .inline-flex.items-center {
        margin-left: auto;
        margin-right: auto;
    }

    .gameplan-industries-intro {
        text-align: center;
    }

    .gameplan-industries-intro .flex.items-center {
        justify-content: center;
    }

    .gameplan-industries-intro h1,
    .gameplan-industries-intro p {
        margin-left: auto;
        margin-right: auto;
    }

    .gameplan-contact-details {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem !important;
    }

    .gameplan-contact-details > div {
        text-align: center !important;
    }

    .gameplan-services-page {
        overflow-x: hidden;
        width: 100%;
        max-width: 100%;
    }

    .gameplan-services-page header {
        overflow: hidden;
    }

    .gameplan-services-page .gameplan-hero-decor {
        display: none;
    }

    .gameplan-services-page .gameplan-hero-stats {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 0.75rem;
        width: 100%;
        max-width: 100%;
        text-align: center;
    }

    .gameplan-services-page .gameplan-hero-stats .font-stats-number {
        font-size: 1.35rem;
        line-height: 1.1;
        word-break: break-word;
    }

    .gameplan-services-page .gameplan-hero-stats > div {
        min-width: 0;
    }

    .gameplan-services-page .gameplan-exec-framework,
    .gameplan-services-page .gameplan-exec-framework > div {
        text-align: center;
    }

    .gameplan-services-page .gameplan-exec-framework .flex.gap-6 {
        align-items: center;
    }
}

.gameplan-insights-card:hover {
    background: rgba(217, 4, 41, 0.05);
}
