:root {
    --bg-base: #080404;
    --bg-card: rgba(229, 9, 20, 0.015);
    --text-main: #FFFFFF;
    --text-muted: #A1A1AA;
    --accent-red: #E50914;
    /* Premium red */
    --accent-red-hover: #F61520;
    --accent-glow: rgba(229, 9, 20, 0.2);
    --border-color: rgba(229, 9, 20, 0.1);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

html {
    overflow-x: hidden;
}

body {
    background-color: var(--bg-base);
    background-image:
        /* Glossy reflection with slight red tint */
        linear-gradient(125deg, rgba(255, 100, 100, 0.04) 0%, rgba(255, 50, 50, 0.01) 25%, transparent 35%, transparent 100%),
        /* Bottom right red shine (intensified) */
        linear-gradient(315deg, rgba(229, 9, 20, 0.08) 0%, transparent 55%);
    background-attachment: fixed;
    color: var(--text-main);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}

/* Premium Ambient Background */
body::before {
    content: '';
    position: fixed;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 60%);
    filter: blur(80px);
    z-index: 0;
    pointer-events: none;
}

body::after {
    content: '';
    position: fixed;
    bottom: -10%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(229, 9, 20, 0.04) 0%, transparent 60%);
    filter: blur(60px);
    z-index: 0;
    pointer-events: none;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

/* HEADER */
header {
    padding: 16px 0;
    border-bottom: 1px solid var(--border-color);
    background: rgba(5, 5, 5, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img {
    height: 44px;
    width: auto;
    border-radius: 50%;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.1));
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(229, 9, 20, 0.1);
    border: 1px solid rgba(229, 9, 20, 0.2);
    color: var(--accent-red);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 0 20px rgba(229, 9, 20, 0.05);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: var(--accent-red);
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(229, 9, 20, 0.7);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(229, 9, 20, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 8px rgba(229, 9, 20, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(229, 9, 20, 0);
    }
}

/* HERO SECTION */
.hero {
    padding: 0;
    text-align: center;
    max-width: 850px;
    margin: 0 auto;
}

.hero-logo {
    height: 120px;
    width: auto;
    border-radius: 50%;
    margin-top: 32px;
    margin-bottom: 32px;
    filter: drop-shadow(0 0 20px rgba(229, 9, 20, 0.3));
}

.tagline {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--accent-red);
    font-weight: 800;
    margin-bottom: 24px;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin-bottom: 24px;
    background: linear-gradient(180deg, #FFFFFF 0%, #A1A1AA 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 56px;
    font-weight: 400;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* POSITIONING BANNER */
.positioning-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 48px;
    margin-bottom: 56px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.positioning-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 30px 60px rgba(229, 9, 20, 0.1);
    border-color: rgba(229, 9, 20, 0.3);
}

.positioning-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-red), transparent);
}

.positioning-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--text-main);
}

.positioning-subtitle {
    font-size: 1.3rem;
    color: var(--accent-red);
    font-weight: 700;
}

/* FOCUS PILLARS */
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 70px;
}

.pillar-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 30px 20px;
    border-radius: 16px;
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-muted);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.pillar-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(229, 9, 20, 0.3);
    color: var(--text-main);
    transform: translateY(-5px);
}

.pillar-item i {
    display: block;
    font-size: 1.8rem;
    color: var(--accent-red);
    margin-bottom: 16px;
    transition: transform 0.3s ease;
}

.pillar-item:hover i {
    transform: scale(1.1);
}

/* ACTIONS & CONTACT */
.cta-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    padding: 16px 36px;
    border-radius: 10px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--accent-red);
    color: #FFFFFF;
    box-shadow: 0 4px 15px rgba(229, 9, 20, 0.3);
}

.btn-primary:hover {
    background: var(--accent-red-hover);
    box-shadow: 0 8px 25px rgba(229, 9, 20, 0.5);
    transform: translateY(-2px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-main);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}



@media (max-width: 768px) {
    /* Hide status badge on mobile */
    .status-badge {
        display: none !important;
    }
    
    /* Hero Section Tweaks */
    .hero-logo {
        height: 90px;
        margin-top: 16px;
        margin-bottom: 24px;
    }

    .tagline {
        font-size: 0.75rem;
        letter-spacing: 2px;
        margin-bottom: 16px;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero-description {
        font-size: 1.05rem;
        margin-bottom: 40px;
    }
    
    /* Make buttons full width */
    .cta-group {
        flex-direction: column;
        gap: 16px;
        width: 100%;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    /* Positioning Card Tweaks */
    .positioning-card {
        padding: 32px 20px;
        margin-bottom: 40px;
    }

    .positioning-title {
        font-size: 1.5rem;
    }

    .positioning-subtitle {
        font-size: 1.1rem;
    }

    /* Pillars */
    .pillars-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 50px;
    }
    
    .pillar-item {
        padding: 20px;
    }

    /* Client Logos */
    .client-logo {
        height: 60px;
        margin: 0 8px;
        padding: 8px 12px;
    }

    .section-title {
        font-size: 1.6rem;
        margin-bottom: 30px;
    }

}

/* CLIENTS SECTION */
.clients-section {
    padding: 80px 0 0 0;
    border-top: 1px solid var(--border-color);
    overflow: hidden;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 50px;
}

.marquee-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 20px 0 30px 0;
    -webkit-mask-image: linear-gradient(to right, transparent, black 150px, black calc(100% - 150px), transparent);
    mask-image: linear-gradient(to right, transparent, black 150px, black calc(100% - 150px), transparent);
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: scroll-left 40s linear infinite;
    align-items: center;
}

.marquee-track:hover {
    animation-play-state: paused;
}

.client-logo {
    height: 80px;
    width: auto;
    max-width: 220px;
    margin: 0 16px;
    padding: 15px 25px;
    background-color: #FFFFFF;
    border-radius: 12px;
    object-fit: contain;
    flex-shrink: 0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.client-logo:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 25px rgba(229, 9, 20, 0.4);
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}