```css
/* =========================
   HOLLOCONNECT AI
   PREMIUM FUTURISTIC CSS
========================= */

:root{
    --bg:#040816;
    --bg-secondary:#0b1022;
    --cyan:#3df6ff;
    --blue:#4f7cff;
    --purple:#9c5cff;
    --white:#ffffff;
    --text:#b9c4e2;
    --glass:rgba(8,15,35,.75);
    --border:rgba(255,255,255,0.08);
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Inter',sans-serif;

    background:
    radial-gradient(circle at 15% 20%, rgba(0,245,255,.25), transparent 35%),
    radial-gradient(circle at 85% 15%, rgba(124,77,255,.25), transparent 35%),
    radial-gradient(circle at 50% 80%, rgba(0,255,179,.18), transparent 35%),
    linear-gradient(
        135deg,
        #020617,
        #07122d,
        #040816,
        #12002f
    );

    color:white;
    overflow-x:hidden;
}
body::before{
    content:'';
    position:fixed;
    inset:-200px;

    background:
    radial-gradient(circle,#00f5ff22,transparent 40%),
    radial-gradient(circle,#7c4dff22,transparent 40%),
    radial-gradient(circle,#00ffb322,transparent 40%);

    filter:blur(140px);

    animation:auroraMove 20s linear infinite;

    z-index:-3;
}

@keyframes auroraMove{

    0%{
        transform:translate(-100px,-50px);
    }

    50%{
        transform:translate(100px,50px);
    }

    100%{
        transform:translate(-100px,-50px);
    }

}
/* =========================
   GLOBAL
========================= */

.container{
    width:90%;
    max-width:1300px;
    margin:auto;
}

a{
    text-decoration:none;
    color:inherit;
}

section{
    padding:120px 0;
}

.section-title{
    text-align:center;
    margin-bottom:70px;
}

.section-title span{
    color:var(--cyan);
    text-transform:uppercase;
    letter-spacing:3px;
    font-size:.9rem;
}

.section-title h2{
    margin-top:15px;
    font-size:3rem;
    font-family:'Space Grotesk',sans-serif;
}

/* =========================
   BACKGROUND EFFECTS
========================= */

.noise{
    position:fixed;
    inset:0;
    pointer-events:none;
    opacity:.03;
    z-index:9999;
}

.grid-overlay{
    position:fixed;
    inset:0;
    pointer-events:none;
    background-image:
    linear-gradient(rgba(255,255,255,.03) 1px,transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,.03) 1px,transparent 1px);
    background-size:60px 60px;
    z-index:-1;
}

/* =========================
   HEADER
========================= */

.header{
    position:fixed;
    top:20px;
    left:50%;
    transform:translateX(-50%);

    width:min(95%,1100px);
    max-width:1100px;

    overflow:hidden;

    background:rgba(8,15,35,.75);

    backdrop-filter:blur(30px);
    -webkit-backdrop-filter:blur(30px);

    border:1px solid rgba(61,246,255,.15);

    border-radius:18px;

    box-shadow:
    0 0 40px rgba(0,255,255,.08),
    0 20px 60px rgba(0,0,0,.4);

    z-index:1000;
} 
    .header .container{
    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:14px 25px;
}

.logo{
    display:flex;
    align-items:center;
    gap:15px;
}
@media(max-width:768px){

    .logo{
        gap:10px;
    }

    .logo-icon{
        width:50px;
        height:50px;
    }

}
.logo-icon{
    width:42px;
    height:42px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;

    background:
    linear-gradient(
    135deg,
    var(--cyan),
    var(--purple));

    font-size:1.4rem;

    box-shadow:
    0 0 30px rgba(61,246,255,.4);
}

.logo h2{
    font-size:1.2rem;
}

.logo span{
    color:var(--text);
    font-size:.8rem;
}

.navbar{
    display:flex;
    gap:25px;
}

.navbar a{
    color:var(--text);
    transition:.3s;
}

.navbar a:hover{
    color:var(--cyan);
}

.nav-btn{
    padding:12px 24px;
    border-radius:50px;

    background:
    linear-gradient(
    135deg,
    var(--cyan),
    var(--blue));

    color:#000;
    font-weight:700;
}

/* =========================
   HERO
========================= */

.hero{
    min-height:100vh;
    display:flex;
    align-items:center;
    justify-content:center;
}
  .header:hover{
    border-color:rgba(61,246,255,.4);

    box-shadow:
    0 0 60px rgba(0,255,255,.15),
    0 20px 80px rgba(0,0,0,.5);
}
.hero-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    align-items:center;
}

.hero-tag{
    display:inline-block;

    padding:12px 20px;

    border:1px solid rgba(61,246,255,.3);

    border-radius:50px;

    color:var(--cyan);

    margin-bottom:25px;
}

.hero h1{
    font-family:'Space Grotesk',sans-serif;
    font-size:5rem;
    line-height:1;
    margin-bottom:25px;
}

.hero h1 span{
    background:
    linear-gradient(
    90deg,
    var(--cyan),
    var(--purple));

    -webkit-background-clip:text;
    color:transparent;
}

.hero p{
    color:var(--text);
    font-size:1.1rem;
    line-height:1.8;
    max-width:650px;
}

.hero-buttons{
    display:flex;
    gap:20px;
    margin-top:35px;
}

.btn-primary{
    padding:15px 30px;

    border-radius:15px;

    background:
    linear-gradient(
    135deg,
    var(--cyan),
    var(--blue));

    color:#000;
    font-weight:700;
}

.btn-secondary{
    padding:15px 30px;

    border-radius:15px;

    border:1px solid var(--border);

    background:rgba(255,255,255,.03);
}

.hero-stats{
    display:flex;
    gap:40px;
    margin-top:50px;
}

.stat h3{
    color:var(--cyan);
    font-size:2rem;
}

.stat span{
    color:var(--text);
}

/* =========================
   AI ORB
========================= */

.hero-visual{
    position:relative;
    height:700px;
}

.ai-core{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
}

.core-center{
    width:150px;
    height:150px;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    background:
    linear-gradient(
    135deg,
    var(--cyan),
    var(--purple));

    font-size:2rem;
    font-weight:700;

    box-shadow:
    0 0 100px rgba(61,246,255,.7);
}

.core-ring{
    position:absolute;
    border:1px solid rgba(255,255,255,.15);
    border-radius:50%;
}

.ring-1{
    width:250px;
    height:250px;
    top:-50px;
    left:-50px;
    animation:spin 18s linear infinite;
}

.ring-2{
    width:350px;
    height:350px;
    top:-100px;
    left:-100px;
    animation:spinReverse 12s linear infinite;
}

.ring-3{
    width:450px;
    height:450px;
    top:-150px;
    left:-150px;
    animation:spin 25s linear infinite;
}

.orb{
    position:absolute;
    border-radius:50%;
    filter:blur(80px);
}

.orb-1{
    width:250px;
    height:250px;
    background:var(--cyan);
    top:20%;
    right:10%;
    opacity:.2;
}

.orb-2{
    width:300px;
    height:300px;
    background:var(--purple);
    bottom:15%;
    left:10%;
    opacity:.2;
}

.orb-3{
    width:220px;
    height:220px;
    background:var(--blue);
    top:55%;
    left:55%;
    opacity:.2;
}

/* =========================
   CARDS
========================= */

.feature-grid,
.product-grid,

.team-grid{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:30px;

    max-width:1000px;
    margin:0 auto;
}
.team-card{
    min-height:120px;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    text-align:center;
}

.feature-card,
.product-card,
.team-card,
.vision-card,
.story-card,
.investor-card,
.leader-card{

    background:var(--glass);

    backdrop-filter:blur(20px);

    border:1px solid var(--border);

    border-radius:25px;

    padding:30px;

    transition:.4s;
}

.feature-card:hover,
.product-card:hover,
.team-card:hover,
.leader-card:hover{
    transform:translateY(-10px);

    border-color:rgba(61,246,255,.4);

    box-shadow:
    0 0 40px rgba(61,246,255,.15);
}

.feature-card i{
    font-size:2rem;
    color:var(--cyan);
    margin-bottom:20px;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:992px){

.hero-grid{
    grid-template-columns:1fr;
}

.navbar{
    display:none;
}

.hero h1{
    font-size:3.5rem;
}

.hero-visual{
    height:500px;
}

}

@media(max-width:768px){

.section-title h2{
    font-size:2rem;
}

.hero-buttons{
    flex-direction:column;
}

.hero-stats{
    flex-direction:column;
    gap:20px;
}

}
.hidden{
    opacity:0;
    transform:translateY(50px);
    transition:all .8s ease;
}

.show{
    opacity:1;
    transform:translateY(0);
}
/* =========================
   VISION
========================= */

.vision-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    align-items:center;
}

.vision-left h2{
    font-size:3rem;
    margin:20px 0;
}

.vision-left p{
    margin-bottom:20px;
}

.section-label{
    color:var(--cyan);
    text-transform:uppercase;
    letter-spacing:2px;
}

.vision-right{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
}

.vision-card h3{
    color:var(--cyan);
    margin-bottom:10px;
}

blockquote{
    margin-top:30px;
    padding:25px;
    border-left:4px solid var(--cyan);
    background:rgba(255,255,255,.03);
    border-radius:15px;
    color:#fff;
}

/* =========================
   STORY
========================= */

.story-card{
    max-width:900px;
    margin:auto;
}

.story-card h3{
    margin-bottom:20px;
    color:var(--cyan);
}

/* =========================
   LEADERSHIP
========================= */

.leaders-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
}

.leader-card{
    display:block;
}

.leader-role{
    color:var(--cyan);
    font-weight:600;
    margin-bottom:15px;
}

.leader-card h3{
    font-size:2rem;
    margin-bottom:15px;
}

.view-profile{
    display:inline-block;
    margin-top:20px;
    color:var(--cyan);
}

/* =========================
   INVESTOR
========================= */

.investor-card{
    text-align:center;

    background:
    linear-gradient(
    135deg,
    rgba(61,246,255,.08),
    rgba(156,92,255,.08));
}

.investor-card span{
    color:var(--cyan);
}

.investor-card h2{
    font-size:3rem;
    margin:20px 0;
}

/* =========================
   FOOTER
========================= */

.footer{
    border-top:1px solid var(--border);
    text-align:center;
    padding:70px 0;
}

.footer h2{
    margin-bottom:15px;
}

.footer p{
    margin-bottom:20px;
}

.footer-links{
    display:flex;
    justify-content:center;
    gap:25px;
    margin:30px 0;
}

.footer-links a{
    color:var(--text);
}

.footer-links a:hover{
    color:var(--cyan);
}

.copyright{
    color:#8ea3c7;
}

/* =========================
   ANIMATIONS
========================= */

@keyframes spin{
    from{
        transform:rotate(0deg);
    }
    to{
        transform:rotate(360deg);
    }
}

@keyframes spinReverse{
    from{
        transform:rotate(360deg);
    }
    to{
        transform:rotate(0deg);
    }
}

/* =========================
   MOBILE
========================= */

@media(max-width:992px){

    .vision-grid,
    .leaders-grid{
        grid-template-columns:1fr;
    }

}

@media(max-width:768px){

    .vision-right{
        grid-template-columns:1fr;
    }

}
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
span,
div{
    color:white !important;
}
/* =========================
   SCI-FI NETWORK CORE
========================= */

.hero-visual{
    display:flex;
    justify-content:center;
    align-items:center;
    position:relative;
    height:700px;
}

.network-core{
    position:relative;
    width:min(500px,100%);
    height:500px;
}

.center-node{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);

    width:140px;
    height:140px;

    border-radius:50%;

    display:flex;
    justify-content:center;
    align-items:center;

    font-size:2rem;
    font-weight:700;

    background:
    linear-gradient(135deg,#00f5ff,#6e4bff);

    box-shadow:
    0 0 60px #00f5ff,
    0 0 120px rgba(0,245,255,.4);

    animation:pulseCore 3s ease-in-out infinite;
}

.node{
    position:absolute;

    width:110px;
    height:110px;

    border-radius:50%;

    display:flex;
    justify-content:center;
    align-items:center;

    background:
    rgba(255,255,255,.04);

    border:
    1px solid rgba(255,255,255,.15);

    backdrop-filter:blur(20px);

    color:white;

    font-weight:600;

    transition:.4s;
}

.node:hover{
    transform:scale(1.1);
    box-shadow:
    0 0 30px #00f5ff;
}

.ai-node{
    top:0;
    left:50%;
    transform:translateX(-50%);
}

.voice-node{
    left:0;
    top:50%;
    transform:translateY(-50%);
}

.mobile-node{
    right:0;
    top:50%;
    transform:translateY(-50%);
}

.holo-node{
    bottom:0;
    left:50%;
    transform:translateX(-50%);
}

.connection{
    position:absolute;
    background:
    linear-gradient(
    90deg,
    transparent,
    #00f5ff,
    transparent);

    height:2px;

    animation:
    pulse 2s infinite;
}

.c1{
    width:140px;
    top:90px;
    left:180px;
    transform:rotate(90deg);
}

.c2{
    width:140px;
    top:250px;
    left:20px;
}

.c3{
    width:140px;
    top:250px;
    right:20px;
}

.c4{
    width:140px;
    bottom:90px;
    left:180px;
    transform:rotate(90deg);
}

@keyframes pulse{

    0%{
        opacity:.2;
    }

    50%{
        opacity:1;
    }

    100%{
        opacity:.2;
    }

}
.header::before{
    content:'';

    position:absolute;
    inset:0;

    background:
    linear-gradient(
        90deg,
        transparent,
        rgba(0,245,255,.08),
        transparent
    );

    animation:headerScan 6s linear infinite;
}

@keyframes headerScan{

    from{
        transform:translateX(-100%);
    }

    to{
        transform:translateX(100%);
    }

}
@keyframes pulseCore{

    0%{
        transform:translate(-50%,-50%) scale(1);
    }

    50%{
        transform:translate(-50%,-50%) scale(1.08);
        box-shadow:
        0 0 80px #00f5ff,
        0 0 160px rgba(0,245,255,.8);
    }

    100%{
        transform:translate(-50%,-50%) scale(1);
    }

}
.hero::before{
    content:'';

    position:absolute;

    width:900px;
    height:900px;

    background:
    radial-gradient(
        circle,
        rgba(0,245,255,.15),
        transparent 70%
    );

    top:-250px;
    right:-250px;

    filter:blur(80px);

    z-index:-1;
}
.vision{
    background:
    linear-gradient(
    180deg,
    transparent,
    rgba(0,245,255,.03)
    );
}

.story{
    background:
    linear-gradient(
    180deg,
    transparent,
    rgba(124,77,255,.03)
    );
}

.products{
    background:
    linear-gradient(
    180deg,
    transparent,
    rgba(0,255,179,.03)
    );
}
.logo{
    position:relative;
}

.logo::after{
    content:'';

    position:absolute;

    width:120px;
    height:120px;

    background:#00f5ff22;

    filter:blur(50px);

    left:-40px;
    top:-40px;

    z-index:-1;
}
.leader-card{
    background: rgba(8,15,35,.75) !important;

    border:1px solid rgba(0,245,255,.2);

    backdrop-filter: blur(25px);

    border-radius:24px;

    padding:35px;

    box-shadow:
    0 0 40px rgba(0,245,255,.08);

    transition:.4s;
}

.leader-card:hover{
    transform:translateY(-10px);

    border-color:#00f5ff;

    box-shadow:
    0 0 50px rgba(0,245,255,.25);
}
.team-grid{
    display:grid;
    grid-template-columns:repeat(3, 260px);
    justify-content:center;
    gap:30px;

    max-width:900px;
    margin:0 auto;
}
@media (max-width: 900px){

    .team-grid{
        grid-template-columns:repeat(2,260px);
    }

}

@media (max-width: 600px){

    .team-grid{
        grid-template-columns:260px;
    }

}

.team-card{
    background: rgba(8,15,35,.75) !important;

    border:1px solid rgba(0,245,255,.2);

    border-radius:24px;

    padding:30px;

    text-align:center;

    backdrop-filter:blur(25px);

    transition:.4s;
}

.team-card:hover{
    transform:translateY(-10px);

    border-color:#00f5ff;

    box-shadow:
    0 0 50px rgba(0,245,255,.25);
}
.product-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:30px;
}

.product-card{
    background: rgba(8,15,35,.75) !important;

    border:1px solid rgba(124,77,255,.25);

    border-radius:24px;

    padding:30px;

    backdrop-filter:blur(25px);

    transition:.4s;
}

.product-card:hover{
    transform:translateY(-10px);

    border-color:#7c4dff;

    box-shadow:
    0 0 50px rgba(124,77,255,.25);
}
/* PROFILE PAGES FIX */

.hero-content{
    max-width:900px;
    text-align:center;
    margin:auto;
}

.section{
    max-width:1200px;
    margin:0 auto;
    padding:100px 40px;
}

.section-header{
    text-align:center;
    margin-bottom:50px;
}

.section-header span{
    display:block;
    color:#00f5ff;
    letter-spacing:3px;
    margin-bottom:10px;
}

.section-header h2{
    font-size:clamp(2rem,8vw,3rem);
}

.glass-card{
    max-width:1000px;
    margin:0 auto;
    padding:40px;
}

.products-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:25px;
    max-width:1200px;
    margin:0 auto;
}

.products-grid .glass-card{
    text-align:center;
}

.hero h1{
        font-size:clamp(2.2rem, 8vw, 5rem);
    font-weight:900;

    background:linear-gradient(
    135deg,
    #ffffff,
    #00f5ff
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.glass-card{
    background:rgba(8,15,35,.65);
    border:1px solid rgba(0,245,255,.2);
    backdrop-filter:blur(25px);
    border-radius:24px;
    padding:50px;
    max-width:1000px;
    margin:0 auto;
    box-shadow:
    0 0 30px rgba(0,245,255,.08),
    0 20px 50px rgba(0,0,0,.3);
}
/* RESPONSIBILITY CARDS */

.role-card{
    background:rgba(8,15,35,.75);
    border:1px solid rgba(0,245,255,.2);
    border-radius:24px;
    padding:35px;
    text-align:center;
    backdrop-filter:blur(25px);
    transition:.4s;
}

.role-card:hover{
    transform:translateY(-10px);
    border-color:#00f5ff;
    box-shadow:
    0 0 40px rgba(0,245,255,.25);
}
.products-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

@media(max-width:768px){

    .products-grid{
        grid-template-columns:1fr;
    }

}
/* PROFILE FOOTER FIX */

footer{
    margin-top:100px;
    padding:60px 20px;

    text-align:center;

    border-top:1px solid rgba(0,245,255,.15);

    background:rgba(8,15,35,.4);

    backdrop-filter:blur(20px);
}

footer h2{
    font-size:2.5rem;
    margin-bottom:15px;
}

footer p{
    color:#b9c4e2;
    margin-bottom:30px;
}

.footer-line{
    width:120px;
    height:2px;

    background:#00f5ff;

    margin:0 auto 30px auto;
}

footer .btn-primary{
    display:inline-block;
}
.hero{
    min-height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
}

.hero-content{
    width:100%;
    max-width:900px;
    margin:0 auto;
}

.hero-content h1{
    margin:20px 0;
}

.hero-content p{
    max-width:800px;
    margin:0 auto;
}
@media (max-width:768px){

    html,
    body{
        overflow-x:hidden;
    }

    .container{
        width:95%;
    }

    .hero{
        padding-top:120px;
        min-height:auto;
    }

    .hero-grid,
    .vision-grid,
    .leaders-grid{
        grid-template-columns:1fr;
    }

    .feature-grid,
    .product-grid,
    .team-grid{
        grid-template-columns:1fr;
    }

    .hero h1{
        font-size:2rem !important;
        line-height:1.2;
    }

    .hero p{
        font-size:1rem;
        max-width:100%;
    }

    .hero-buttons{
        flex-direction:column;
        align-items:center;
    }

    .hero-stats{
        flex-direction:column;
        gap:20px;
        align-items:center;
    }

    .hero-visual{
        height:300px;
    }

    .network-core{
        width:280px;
        height:280px;
        transform:scale(.65);
        margin:auto;
    }

    .navbar,
    .nav-btn{
        display:none;
    }

    .header{
        width:95%;
    }
}
@media(max-width:768px){

    .leader-card,
    .team-card,
    .product-card,
    .feature-card,
    .role-card,
    .glass-card{

        width:100%;
        max-width:100%;
    }

    .products-grid,
    .feature-grid,
    .team-grid,
    .leaders-grid,
    .vision-right{

        grid-template-columns:1fr !important;
    }

    .section{
        padding:60px 20px;
    }

}
.product-card h3{
    margin-bottom:15px;
}

.product-card p{
    margin-top:10px;
    line-height:1.7;
    color:#b9c4e2 !important;
}
@media (max-width:768px){

    .network-core{
        width:350px !important;
        height:350px !important;
        transform:none !important;
        margin:auto;
    }

    .hero-visual{
        height:450px !important;
        overflow:visible !important;
    }

}