:root {
    --bg-dark: #0E0E34;
    --accent: #9A4D87;
    --text-main: #F7F6F7;
    --text-dim: #cbd5e1;
    --font-main: 'Lora', serif;
}

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

body {
    background: linear-gradient(125deg, #010203, #020408, #001233, #020408, #010203);
    background-size: 300% 300%;
    animation: futuristicPulse 10s ease infinite;
    font-family: var(--font-main);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

#bg-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

@keyframes futuristicPulse {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes gradientBG {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Header */
.site-header {
    padding: 20px 0;
    position: fixed;
    width: 100%;
    z-index: 1000;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.logo {
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: 2px;
}

.main-nav a {
    color: white;
    text-decoration: none;
    margin-left: 15px;
    font-size: 1.1rem;
    transition: 0.3s;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 20px;
    border-radius: 30px;
}

.main-nav a:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    color: white;
}

/* Mega Headline */
.mega-headline-wrap {
    padding: 160px 0 40px;
    text-align: center;
}

.mega-headline {
    font-size: 10vw;
    font-weight: 900;
    color: violet;
    -webkit-text-stroke: 2px black;
    text-shadow: 0 0 10px rgba(238, 130, 238, 0.5);
    /* Optional glow for pop */
    letter-spacing: -2px;
}

/* Landing Layout */
.split-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    padding: 80px 0;
}

.hero-intro-text {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-sub-text {
    font-size: 1.2rem;
    color: var(--text-dim);
    margin-bottom: 40px;
}

/* Capabilities */
.key-capabilities h3 {
    font-size: 1.8rem;
    /* Increased size specifically for heading look */
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #FFFFFF;
    /* High visibility */
    margin-bottom: 30px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.cap-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.cap-marker {
    width: 10px;
    height: 10px;
    background: var(--accent);
    margin-top: 8px;
    flex-shrink: 0;
    border-radius: 2px;
}

.cap-item strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.cap-item p {
    color: var(--text-dim);
    font-size: 0.95rem;
}

/* Image Frame */
.image-frame img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Who We Are Section */
.section-dark {
    background-color: var(--bg-card);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.section-padded {
    padding: 100px 0;
}

.section-label {
    font-size: 1.8rem;
    /* Increased size specifically for heading look */
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #FFFFFF;
    /* High visibility */
    margin-bottom: 30px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.prose {
    font-size: 1.15rem;
    color: var(--text-dim);
    margin-bottom: 25px;
    line-height: 1.8;
}

/* Buttons */
/* Buttons - Glassmorphism */
.btn {
    padding: 12px 28px;
    border-radius: 8px;
    /* Slightly more rounded for glass effect */
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
    display: inline-block;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.btn-primary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.btn-primary:hover {
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.05);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border-color: rgba(255, 255, 255, 0.6);
}

/* Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: 1s all ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Cursor Spotlight */
#cursor-light {
    position: fixed;
    top: 0;
    left: 0;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

@media (max-width: 900px) {
    .split-grid {
        grid-template-columns: 1fr;
    }

    .mega-headline {
        font-size: 14vw;
    }
}