/* DESIGN SYSTEM - FIRST LINE */
:root {
    --primary-black: #090909;
    --pure-white: #F7F7F7;
    --strategic-green: #4EAA4C;
    --deep-green: #30632F;
    --glow-green: rgba(78, 170, 76, 0.2);
    --glass-bg: rgba(255, 255, 255, 0.02);
    --glass-border: rgba(255, 255, 255, 0.05);
    --transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    --font-main: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

body {
    background-color: var(--primary-black);
    color: var(--pure-white);
    font-family: var(--font-main);
    overflow-x: hidden;
    line-height: 1.5;
}

/* Base Headings */
h1,
h2,
h3 {
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.01em;
}

/* Glassmorphism Utility */
.glass-effect {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 4px;
    /* More executive sharp look */
}

/* Button Premium */
.btn-premium {
    padding: 16px 32px;
    border-radius: 2px;
    /* Sharp corners for elite feel */
    text-transform: uppercase;
    font-weight: 800;
    font-size: 0.75rem;
    letter-spacing: 2px;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

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

.btn-primary:hover {
    background: #5dc35b;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px var(--glow-green);
}

.btn-secondary {
    background: transparent;
    border: 1px solid var(--glass-border);
    color: var(--pure-white);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--strategic-green);
    transform: translateY(-3px);
}

/* Layout Utilities */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}

section {
    padding: 160px 0;
    /* More breathing room */
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition-smooth);
    background: rgba(9, 9, 9, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
}

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

.logo-text {
    font-weight: 800;
    font-size: 1.2rem;
    letter-spacing: 3px;
    background: linear-gradient(90deg, #fff, var(--strategic-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
    align-items: center;
}

.nav-links a {
    color: var(--pure-white);
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: var(--transition-smooth);
    opacity: 0.6;
}

.nav-links a:hover {
    opacity: 1;
    color: var(--strategic-green);
}

.nav-links .btn-premium {
    padding: 10px 20px;
    font-size: 0.7rem;
    opacity: 1;
}

/* SECTION BASICS */
.section-label {
    color: var(--strategic-green);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 5px;
    margin-bottom: 25px;
    display: block;
    text-transform: uppercase;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1.1;
    margin-bottom: 50px;
    max-width: 850px;
}

/* HERO SECTION */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    /* Space for navbar */
    position: relative;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 40px;
}

.hero h1 {
    font-size: clamp(2.5rem, 8vw, 5.5rem);
    line-height: 0.95;
    margin-bottom: 35px;
    font-weight: 900;
}

.hero-subheadline {
    font-size: 1.1rem;
    max-width: 550px;
    opacity: 0.7;
    margin-bottom: 45px;
    font-weight: 400;
    line-height: 1.5;
}

.hero-tags {
    margin-bottom: 40px;
    display: flex;
    gap: 12px;
}

.tag {
    font-size: 0.65rem;
    color: var(--strategic-green);
    border: 1px solid var(--deep-green);
    padding: 5px 15px;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    background: rgba(78, 170, 76, 0.05);
}

.hero-btns {
    display: flex;
    gap: 20px;
}

.glow-sphere {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--glow-green) 0%, transparent 70%);
    top: -100px;
    right: -100px;
    z-index: -1;
    filter: blur(60px);
    animation: pulseGlow 10s infinite alternate;
}

@keyframes pulseGlow {
    0% {
        transform: scale(1);
        opacity: 0.4;
    }

    100% {
        transform: scale(1.2);
        opacity: 0.7;
    }
}

/* ABOUT SECTION */
.about-desc {
    font-size: 1.4rem;
    max-width: 900px;
    margin-bottom: 60px;
    font-weight: 300;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.about-card {
    padding: 40px;
    transition: var(--transition-smooth);
}

.about-card:hover {
    border-color: var(--strategic-green);
    transform: translateY(-10px);
}

.about-card h3 {
    color: var(--strategic-green);
    margin-bottom: 15px;
}

/* SERVICES SECTION */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.service-card {
    padding: 50px 30px;
    position: relative;
    overflow: hidden;
    height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: var(--transition-smooth);
}

.service-card:hover {
    background: rgba(78, 170, 76, 0.05);
    border-color: var(--strategic-green);
}

.service-num {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 3rem;
    font-weight: 900;
    opacity: 0.05;
    transition: var(--transition-smooth);
}

.service-card:hover .service-num {
    opacity: 0.2;
    transform: translateY(-10px);
}

.service-card h3 {
    font-size: 1.2rem;
    line-height: 1.3;
}

/* INTEL SECTION */
.intel-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.intel-steps {
    margin-top: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.step {
    padding: 20px;
    border-bottom: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 700;
}

.step span {
    color: var(--strategic-green);
}

.intel-visual {
    height: 400px;
    padding: 40px;
    position: relative;
}

.dashboard-mock {
    height: 100%;
    display: flex;
    align-items: flex-end;
    gap: 10px;
}

.bar {
    flex: 1;
    background: var(--strategic-green);
    border-radius: 4px 4px 0 0;
    opacity: 0.3;
    animation: barUp 3s infinite alternate;
}

.bar:nth-child(2) {
    animation-delay: 0.5s;
    height: 70%;
}

.bar:nth-child(1) {
    animation-delay: 0s;
    height: 40%;
}

.bar:nth-child(3) {
    animation-delay: 1s;
    height: 90%;
}

@keyframes barUp {
    from {
        transform: scaleY(0.7);
    }

    to {
        transform: scaleY(1);
    }
}

/* CONTACT SECTION */
.contact-box {
    padding: 80px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

input,
select,
textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    padding: 15px;
    color: white;
    font-family: var(--font-main);
    border-radius: 4px;
    outline: none;
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--strategic-green);
}

textarea {
    grid-column: span 2;
}

.crisis-alert {
    color: var(--strategic-green);
    font-size: 0.8rem;
    margin-bottom: 20px;
    font-weight: 700;
}

/* FOOTER */
.footer {
    padding: 80px 0 40px;
    border-top: 1px solid var(--glass-border);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer-info p {
    margin-top: 10px;
    opacity: 0.6;
}

.footer-contact a {
    color: var(--strategic-green);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 700;
}

.footer-bottom {
    text-align: center;
    opacity: 0.4;
    font-size: 0.8rem;
    padding-top: 40px;
    border-top: 1px solid var(--glass-border);
}

/* BACKGROUNDS */
#particle-canvas-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    pointer-events: none;
}

/* REVEAL ANIMATIONS */
.reveal-hidden {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.reveal-active {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Service card staggered reveals */
.service-card:nth-child(2n) {
    transition-delay: 0.1s;
}

.service-card:nth-child(3n) {
    transition-delay: 0.2s;
}

/* Custom Text Reveal */
.text-reveal {
    animation: textAppear 1.2s cubic-bezier(0.23, 1, 0.32, 1);
}

@keyframes textAppear {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .nav-content {
        flex-direction: column;
        gap: 20px;
    }

    .nav-links {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }

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

    .about-grid {
        grid-template-columns: 1fr;
    }

    .intel-grid {
        grid-template-columns: 1fr;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    textarea {
        grid-column: span 1;
    }

    .contact-box {
        padding: 40px 20px;
    }
}