body {
    margin:0;
    background:#04070F;
    color:#A8B2D1;
    font-family:Inter,sans-serif;
    overflow-x:hidden;
}

/* LOGO SIZE CONTROL */
.logo img {
    height:52px; /* 25% bigger */
    width:auto;
}

/* LOADER */
#loader {
    position:fixed;
    width:100%;
    height:100%;
    background:#04070F;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    z-index:9999;
}

.loader-text {
    font-family:Orbitron;
    color:#00F5FF;
    margin-bottom:20px;
}

.loader-bar {
    width:300px;
    height:4px;
    background:#0D1224;
}

.loader-progress {
    width:0%;
    height:100%;
    background:#00F5FF;
    animation:load 2s forwards;
}

@keyframes load {
    to { width:100%; }
}

/* NAVIGATION SYSTEM */

.nav-system {
    position:fixed;
    width:100%;
    top:0;
    z-index:1000;
    padding:20px 60px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}


/* burger spacing */
.menu-toggle {
    margin-left:40px;
    cursor:pointer;
    z-index:1100;
}

.menu-toggle span {
    display:block;
    width:36px;
    height:2px;
    background:#00F5FF;
    margin:8px 0;
}


.nav-overlay {
    position:fixed;
    width:100%;
    height:100vh;
    background:linear-gradient(145deg,#04070F,#0D1224);
    backdrop-filter:blur(40px);
    top:0;
    left:-100%;
    transition:0.8s cubic-bezier(0.77,0,0.18,1);
    display:flex;
    align-items:center;
    justify-content:center;
}

.nav-links a {
    font-size:64px;
    font-family:Orbitron;
    margin:30px 0;
    display:block;
    color:#00F5FF;
    position:relative;
    transition:0.4s;
}

.nav-links a:hover {
    transform:translateX(20px);
    color:#9F5CFF;
}
.nav-overlay.active {
    left:0;
}



/* HERO */

.hero {
    height:100vh;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
}

.hero h1 {
    font-family:Orbitron;
    font-size:60px;
    color:#00F5FF;
}

.hero span {
    color:#9F5CFF;
}

/* MAGNETIC BUTTON */

.btn-magnetic {
    display:inline-block;
    padding:14px 30px;
    border:1px solid #00F5FF;
    border-radius:40px;
    color:#00F5FF;
    text-decoration:none;
    transition:0.3s;
}

.btn-magnetic:hover {
    background:#00F5FF;
    color:#000;
}

/* EXPERIMENTAL INNER PAGE SYSTEM */

.exp-hero {
    height:80vh;
    display:flex;
    align-items:center;
    padding:0 8%;
    position:relative;
}

.exp-ghost-title {
    position:absolute;
    font-size:18vw;
    font-family:Orbitron;
    color:rgba(255,255,255,0.02);
    top:10%;
    left:5%;
    pointer-events:none;
}

.exp-hero h1 {
    font-size:64px;
    font-family:Orbitron;
    color:#00F5FF;
    z-index:2;
}

.exp-content {
    display:flex;
    padding:120px 8%;
    gap:80px;
}

.exp-left {
    flex:1;
}

.exp-right {
    flex:1;
    position:relative;
}

.floating-card {
    background:#0D1224;
    padding:40px;
    border:1px solid rgba(0,245,255,0.2);
    border-radius:20px;
    margin-bottom:40px;
    backdrop-filter:blur(20px);
    transition:0.5s;
}

.floating-card.alt {
    transform:translateX(60px);
}

.floating-card:hover {
    transform:translateY(-10px) scale(1.03);
    box-shadow:0 0 40px rgba(0,245,255,0.3);
}

/* RESPONSIVE */

@media(max-width:992px){
    .exp-content {
        flex-direction:column;
    }

    .exp-ghost-title {
        font-size:28vw;
    }

    .exp-hero h1 {
        font-size:42px;
    }
}

/* =========================
   QUICK SUMMARY SECTION
========================= */

.quick-summary {
    padding:140px 0;
    position:relative;
}

.section-header {
    text-align:center;
    margin-bottom:80px;
}

.section-header h2 {
    font-family:Orbitron;
    font-size:48px;
    color:#00F5FF;
}

.tagline {
    font-size:18px;
    opacity:0.7;
    max-width:700px;
    margin:20px auto 0;
}

.qs-grid {
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:40px;
}

.qs-card {
    background:#0D1224;
    padding:50px 40px;
    border-radius:20px;
    border:1px solid rgba(0,245,255,0.15);
    backdrop-filter:blur(20px);
    transition:0.5s;
}

.qs-card:hover {
    transform:translateY(-15px);
    box-shadow:0 0 40px rgba(0,245,255,0.3);
}

.qs-card h3 {
    font-family:Orbitron;
    margin-bottom:20px;
    color:#9F5CFF;
}

.qs-card ul {
    padding-left:18px;
}

.qs-card li {
    margin-bottom:12px;
    line-height:1.6;
}



/* =========================
   INDUSTRY CHALLENGES
========================= */

.industry-challenges {
    padding:160px 0;
    background:linear-gradient(180deg,#04070F,#0D1224);
}

.ic-wrapper {
    display:flex;
    gap:80px;
}

.ic-left {
    flex:1;
}

.ic-left h2 {
    font-family:Orbitron;
    font-size:52px;
    color:#00F5FF;
    margin-bottom:30px;
}

.ic-left p {
    margin-bottom:20px;
    font-size:18px;
    opacity:0.8;
}

.ic-right {
    flex:1;
    position:relative;
}

.ic-card {
    background:#0F172A;
    padding:40px;
    border-radius:20px;
    border:1px solid rgba(159,92,255,0.2);
    margin-bottom:30px;
    transition:0.5s;
}

.ic-card.alt {
    transform:translateX(60px);
}

.ic-card.highlight {
    background:linear-gradient(135deg,#0F172A,#1A1F35);
    border:1px solid rgba(0,245,255,0.3);
}

.ic-card:hover {
    transform:translateY(-10px);
    box-shadow:0 0 50px rgba(159,92,255,0.3);
}


/* =========================
   RESPONSIVE
========================= */

@media(max-width:992px){

    .qs-grid {
        grid-template-columns:1fr;
    }

    .ic-wrapper {
        flex-direction:column;
    }

    .ic-card.alt {
        transform:none;
    }

    .section-header h2 {
        font-size:36px;
    }

    .ic-left h2 {
        font-size:38px;
    }
}