/*==========================================================
  SHADOWLABS V2
  STYLE.CSS
  PART 1
==========================================================*/

/*=========================
  RESET
=========================*/

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

html{

    scroll-behavior:smooth;

}

body{

    overflow-x:hidden;

}

/*=========================
  ROOT VARIABLES
=========================*/

:root{

    --bg:#05050a;

    --bg2:#090913;

    --green:#00ff66;

    --purple:#b040ff;

    --white:#ffffff;

    --text:#d8d8d8;

    --glass:rgba(255,255,255,.05);

    --glass2:rgba(255,255,255,.08);

    --radius:22px;

    --transition:.35s ease;

}

/*=========================
  BODY
=========================*/

body{

    background:var(--bg);

    color:var(--text);

    font-family:"Orbitron",sans-serif;

    line-height:1.7;

    position:relative;

}

/*=========================
  LINKS
=========================*/

a{

    color:inherit;

    text-decoration:none;

}

img{

    max-width:100%;

    display:block;

}

/*=========================
  BACKGROUND
=========================*/

.background-image{

    position:fixed;

    inset:0;

    background-image:url("assets/hero.webp");

    background-size:cover;

    background-position:center;

    background-repeat:no-repeat;

    z-index:-20;

    transform:scale(1.05);

}

.background-overlay{

    position:fixed;

    inset:0;

    z-index:-19;

    background:

    linear-gradient(

    rgba(5,5,10,.45),

    rgba(5,5,10,.65),

    rgba(5,5,10,.94)

    );

}

/*=========================
  STARS
=========================*/

.stars{

    position:fixed;

    inset:0;

    z-index:-18;

    opacity:.25;

    background-image:

    radial-gradient(circle,#ffffff 1px,transparent 1px);

    background-size:160px 160px;

    animation:starsMove 180s linear infinite;

}

@keyframes starsMove{

    from{

        transform:translateY(0);

    }

    to{

        transform:translateY(-800px);

    }

}

/*=========================
  PURPLE NEBULA
=========================*/

.nebula{

    position:fixed;

    width:900px;

    height:900px;

    left:-250px;

    top:-250px;

    border-radius:50%;

    background:

    radial-gradient(

    circle,

    rgba(176,64,255,.28),

    transparent 72%

    );

    filter:blur(130px);

    z-index:-17;

    animation:nebulaMove 35s ease-in-out infinite alternate;

}

@keyframes nebulaMove{

    from{

        transform:translate(0,0);

    }

    to{

        transform:translate(180px,120px);

    }

}

/*=========================
  GREEN GLOW
=========================*/

.green-glow{

    position:fixed;

    width:700px;

    height:700px;

    right:-200px;

    bottom:-180px;

    border-radius:50%;

    background:

    radial-gradient(

    circle,

    rgba(0,255,102,.18),

    transparent 75%

    );

    filter:blur(120px);

    z-index:-17;

}

/*=========================
  SCANLINES
=========================*/

.scanlines{

    position:fixed;

    inset:0;

    pointer-events:none;

    opacity:.04;

    z-index:-16;

    background:

    repeating-linear-gradient(

    180deg,

    transparent,

    transparent 3px,

    rgba(255,255,255,.08) 4px

    );

}

/*=========================
  GLOBAL SECTION
=========================*/

.section{

    width:min(1300px,92%);

    margin:140px auto;

}

.section-title{

    text-align:center;

    margin-bottom:70px;

}

.section-number{

    color:var(--purple);

    letter-spacing:4px;

    font-size:14px;

}

.section-title h2{

    color:white;

    font-size:52px;

    letter-spacing:5px;

    margin-top:14px;

}

.section-title p{

    margin-top:16px;

    color:#9f9f9f;

    letter-spacing:2px;

}

/*==========================================================
  HEADER
==========================================================*/

.header{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    height:82px;

    display:flex;

    align-items:center;

    justify-content:space-between;

    padding:0 60px;

    z-index:9999;

    background:rgba(5,5,10,.28);

    backdrop-filter:blur(20px);

    border-bottom:1px solid rgba(255,255,255,.08);

}

.header-left{

    display:flex;

    align-items:center;

}

.sw-logo{

    width:80px;

    height:auto;

    transition:.4s;

    filter:

    drop-shadow(0 0 12px rgba(176,64,255,.45));

}

.sw-logo:hover{

    transform:rotate(-6deg) scale(1.06);

}

/*==========================================================
  LIVE STATUS
==========================================================*/

.header-center{

    position:absolute;

    left:50%;

    transform:translateX(-50%);

}

.live-terminal{

    display:flex;

    align-items:center;

    gap:6px;

    font-family:"Share Tech Mono",monospace;

    color:var(--green);

    letter-spacing:1px;

    font-size:12px;

    text-transform:uppercase;

    text-shadow:

    0 0 8px var(--green),

    0 0 20px rgba(0,255,102,.35);

}

.prompt{

    color:var(--green);

}

.cursor{

    animation:blinkCursor 1s infinite;

}

@keyframes blinkCursor{

0%,50%{

opacity:1;

}

51%,100%{

opacity:0;

}

}

/*==========================================================
  NAVIGATION
==========================================================*/

.header-right nav{

    display:flex;

    align-items:center;

    gap:34px;

}

.header-right a{

    color:white;

    font-size:14px;

    letter-spacing:2px;

    transition:.35s;

    position:relative;

}

.header-right a:hover{

    color:var(--green);

}

.header-right a::after{

    content:"";

    position:absolute;

    bottom:-8px;

    left:0;

    width:0;

    height:2px;

    background:var(--green);

    transition:.35s;

}

.header-right a:hover::after{

    width:100%;

}

.mobile-menu{

    display:none;

    border:none;

    background:none;

    color:white;

    font-size:30px;

    cursor:pointer;

}

/*==========================================================
  HERO
==========================================================*/

.hero{

    min-height:100vh;

    display:flex;

    flex-direction:column;

    justify-content:flex-start;

    align-items:center;

    text-align:center;

    padding-top:140px;

    padding-bottom:80px;

}

.hero-logo{

    width:330px;

    max-width:85%;

    display:block;

    margin:10px auto 8px;

    filter:drop-shadow(0 0 25px rgba(176,64,255,.55));


}

.hero h1{

    font-size:78px;

    font-weight:800;

    line-height:1.05;

    letter-spacing:6px;

    color:white;

    margin-top:20px;

    margin-bottom:20px;

    max-width:900px;

    margin-left:auto;

    margin-right:auto;

}

.hero h1 span{

    display:block;

}

.hero h1 .purple{

    color:var(--purple);

    text-shadow:

    0 0 18px rgba(176,64,255,.55);

}

.hero p{

    margin-top:28px;

    font-size:18px;

    color:#cfcfcf;

    letter-spacing:2px;

}

.hero-button{

    display:inline-flex;

    justify-content:center;

    align-items:center;

    margin-top:45px;

    padding:16px 40px;

    border-radius:50px;

    border:1px solid var(--green);

    color:var(--green);

    background:rgba(0,255,102,.05);

    transition:.35s;

    letter-spacing:3px;

}

.hero-button:hover{

    background:var(--green);

    color:#05050a;

    transform:translateY(-4px);

    box-shadow:

    0 0 25px var(--green),

    0 0 60px rgba(0,255,102,.35);

}

/*==========================================================
  SCROLL INDICATOR
==========================================================*/

.scroll-down{

    margin-top:70px;

}

.scroll-down span{

    width:30px;

    height:52px;

    display:block;

    border:2px solid var(--green);

    border-radius:40px;

    position:relative;

}

.scroll-down span::before{

    content:"";

    position:absolute;

    width:6px;

    height:6px;

    border-radius:50%;

    background:var(--green);

    left:50%;

    transform:translateX(-50%);

    top:8px;

    animation:scrollDown 2s infinite;

}

@keyframes scrollDown{

0%{

opacity:1;

top:8px;

}

100%{

opacity:0;

top:30px;

}

}

/*==========================================================
  TERMINAL
==========================================================*/

.terminal-window{

    width:min(920px,95%);

    margin:30px auto 20px;

    background:rgba(5,5,10,.72);

    border:1px solid rgba(0,255,102,.18);

    border-radius:20px;

    overflow:hidden;

    backdrop-filter:blur(18px);

    box-shadow:

    0 0 35px rgba(0,255,102,.10),

    0 0 70px rgba(176,64,255,.12);

}

.terminal-bar{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:16px 22px;

    background:rgba(255,255,255,.04);

    border-bottom:1px solid rgba(255,255,255,.08);

}

.dots{

    display:flex;

    gap:8px;

}

.dot{

    width:12px;

    height:12px;

    border-radius:50%;

}

.dot.green{

    background:#00ff66;

}

.dot.yellow{

    background:#ffd43b;

}

.dot.red{

    background:#ff4b5c;

}

.terminal-title{

    color:#ffffff;

    font-size:13px;

    letter-spacing:2px;

}

.terminal-clock{

    font-family:"Share Tech Mono",monospace;

    color:var(--green);

    font-size:14px;

}

.terminal-output{

    padding:30px;

    min-height:380px;

    font-family:"Share Tech Mono",monospace;

    color:var(--green);

    font-size:15px;

    line-height:2;

    white-space:pre-line;

    text-shadow:

    0 0 8px rgba(0,255,102,.30);

}

.terminal-output span{

    display:block;

    margin-bottom:6px;

}

.terminal-output .success{

    color:#00ff66;

}

.terminal-output .warning{

    color:#ffd43b;

}

.terminal-output .danger{

    color:#ff5f5f;

}

.terminal-output .purple{

    color:var(--purple);

}

/*==========================================================
  GLASS CARD
==========================================================*/

.glass-card{

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    border-radius:22px;

    backdrop-filter:blur(18px);

    box-shadow:

    0 0 35px rgba(176,64,255,.12);

}

/*==========================================================
  MISSION
==========================================================*/

.mission-card{

    padding:55px;

}

.mission-grid{

    display:grid;

    grid-template-columns:2fr 1fr;

    gap:60px;

}

.mission-left h3{

    color:white;

    font-size:36px;

    margin-bottom:24px;

    letter-spacing:2px;

}

.mission-left p{

    color:#bdbdbd;

    line-height:2;

}

.mission-right{

    display:flex;

    flex-direction:column;

    gap:22px;

}

.mission-stat{

    padding:30px;

    border-radius:20px;

    background:rgba(0,255,102,.05);

    border:1px solid rgba(0,255,102,.16);

    transition:.35s;

}

.mission-stat:hover{

    transform:translateY(-8px);

    box-shadow:

    0 0 22px rgba(0,255,102,.20);

}

.mission-stat span{

    color:#8c8c8c;

    font-size:13px;

    letter-spacing:2px;

}

.mission-stat h4{

    margin-top:10px;

    color:var(--green);

    font-size:34px;

}

/*==========================================================
  PROTOCOL
==========================================================*/

.protocol-grid{

    display:grid;

    grid-template-columns:repeat(5,1fr);

    gap:25px;

}

.protocol-card{

    padding:35px;

    border-radius:22px;

    background:rgba(255,255,255,.04);

    border:1px solid rgba(255,255,255,.08);

    transition:.35s;

    backdrop-filter:blur(14px);

}

.protocol-card:hover{

    transform:translateY(-10px);

    border-color:rgba(176,64,255,.30);

    box-shadow:

    0 0 30px rgba(176,64,255,.18);

}

.protocol-number{

    width:55px;

    height:55px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    background:rgba(176,64,255,.16);

    color:var(--purple);

    font-weight:bold;

    margin-bottom:20px;

}

.protocol-card h3{

    color:white;

    margin-bottom:18px;

    letter-spacing:2px;

}

.protocol-card p{

    color:#bdbdbd;

    line-height:1.8;

}

/*==========================================================
  GALACTIC DATABASE
==========================================================*/

.database-panel{

    background:rgba(5,5,10,.72);

    border:1px solid rgba(0,255,102,.18);

    border-radius:22px;

    overflow:hidden;

    backdrop-filter:blur(16px);

    box-shadow:

    0 0 40px rgba(0,255,102,.10);

}

.database-header{

    display:grid;

    grid-template-columns:1fr 1fr 2fr;

    padding:22px 30px;

    background:rgba(0,255,102,.08);

    color:var(--green);

    letter-spacing:2px;

    font-family:"Share Tech Mono",monospace;

    font-size:14px;

}

.database-row{

    display:grid;

    grid-template-columns:1fr 1fr 2fr;

    gap:25px;

    padding:22px 30px;

    border-top:1px solid rgba(255,255,255,.06);

    transition:.3s;

    font-family:"Share Tech Mono",monospace;

}

.database-row:hover{

    background:rgba(0,255,102,.05);

    transform:translateX(8px);

}

.database-row span:first-child{

    color:#ffffff;

    letter-spacing:2px;

}

.database-row span:last-child{

    color:#bdbdbd;

}

.danger{

    color:#ff4b5c;

}

.warning{

    color:#ffb400;

}

.success{

    color:#00ff66;

}

.info{

    color:#4db8ff;

}

.purple{

    color:#b040ff;

}

.green{

    color:#00ff66;

}

/*==========================================================
  MANIFESTO
==========================================================*/

.manifesto-terminal{

    background:rgba(5,5,10,.75);

    border:1px solid rgba(176,64,255,.20);

    border-radius:22px;

    padding:40px;

    backdrop-filter:blur(16px);

    box-shadow:

    0 0 35px rgba(176,64,255,.14);

}

.manifesto-terminal div{

    display:flex;

    align-items:flex-start;

    gap:18px;

    padding:18px 0;

    border-bottom:1px solid rgba(255,255,255,.05);

    color:#d8d8d8;

    font-family:"Share Tech Mono",monospace;

}

.manifesto-terminal div:last-child{

    border:none;

}

.line-number{

    color:var(--green);

    min-width:45px;

    font-weight:bold;

}

.manifesto-terminal strong{

    color:#ffffff;

    margin-left:8px;

}

/*==========================================================
  CITADEL
==========================================================*/

.citadel-panel{

    display:grid;

    grid-template-columns:1.2fr 1fr;

    gap:35px;

}

.citadel-box{

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    border-radius:22px;

    padding:40px;

    backdrop-filter:blur(16px);

    transition:.35s;

}

.citadel-box:hover{

    transform:translateY(-8px);

    box-shadow:

    0 0 35px rgba(176,64,255,.18);

}

.citadel-box h3{

    color:#ffffff;

    margin-bottom:22px;

    letter-spacing:3px;

}

.citadel-box p{

    color:#c0c0c0;

    line-height:2;

}

/*==========================================================
  COMMAND STATUS
==========================================================*/

.status-list{

    display:flex;

    flex-direction:column;

    gap:18px;

}

.status-list div{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:18px 22px;

    border-radius:14px;

    background:rgba(0,255,102,.05);

    border:1px solid rgba(0,255,102,.15);

    transition:.3s;

}

.status-list div:hover{

    background:rgba(0,255,102,.08);

    transform:translateX(8px);

}

.status-list span{

    color:#9c9c9c;

    letter-spacing:2px;

}

.status-list strong{

    color:var(--green);

    font-family:"Share Tech Mono",monospace;

    letter-spacing:2px;

}

/*==========================================================
  FOOTER
==========================================================*/

.footer{

    margin-top:5px;

    padding:20px 20px 25px;

    text-align:center;

    background:rgba(5,5,10,.45);

    backdrop-filter:blur(16px);

    border-top:1px solid rgba(255,255,255,.08);

}

.footer-content{

    max-width:900px;

    margin:auto;

}

.footer-logo{

    width:90px;

    margin:0 auto 10px;

    filter:

    drop-shadow(0 0 18px rgba(176,64,255,.40));

}

.footer h3{

    color:white;

    letter-spacing:5px;

    font-size:32px;

    margin-bottom:15px;

}

.footer p{

    color:#bdbdbd;

    letter-spacing:2px;

}

.footer-divider{

    width:220px;

    height:1px;

    margin:18px auto;

    background:

    linear-gradient(

    90deg,

    transparent,

    var(--purple),

    transparent

    );

}

.copyright{

    font-size:13px;

    color:#8d8d8d;

    margin-top:20px;

}

/*==========================================================
  REVEAL ANIMATIONS
==========================================================*/

.reveal{

    opacity:0;

    transform:translateY(60px);

    transition:

    opacity .8s ease,

    transform .8s ease;

}

.reveal.active{

    opacity:1;

    transform:none;

}

/*==========================================================
  HOVER EFFECTS
==========================================================*/

.glass-card,
.protocol-card,
.citadel-box,
.database-panel{

    transition:

    transform .35s ease,

    box-shadow .35s ease,

    border-color .35s ease;

}

.glass-card:hover,
.database-panel:hover{

    transform:translateY(-6px);

    box-shadow:

    0 0 35px rgba(176,64,255,.18);

}

/*==========================================================
  CUSTOM SCROLLBAR
==========================================================*/

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#05050a;

}

::-webkit-scrollbar-thumb{

    background:var(--purple);

    border-radius:20px;

}

::-webkit-scrollbar-thumb:hover{

    background:var(--green);

}

/*==========================================================
  TEXT SELECTION
==========================================================*/

::selection{

    background:var(--green);

    color:#05050a;

}

/*==========================================================
  GLOW UTILITIES
==========================================================*/

.green-glow-text{

    color:var(--green);

    text-shadow:

    0 0 10px var(--green),

    0 0 25px rgba(0,255,102,.35);

}

.purple-glow-text{

    color:var(--purple);

    text-shadow:

    0 0 10px var(--purple),

    0 0 25px rgba(176,64,255,.35);

}

/*==========================================================
  IMAGE EFFECTS
==========================================================*/

.hero-logo,
.footer-logo,
.sw-logo{

    user-select:none;

    -webkit-user-drag:none;

}

/*==========================================================
  SECTION SPACING
==========================================================*/

section{

    position:relative;

    z-index:2;

}

footer{

    position:relative;

    z-index:2;

}

/*==========================================================
  RESPONSIVE DESIGN
==========================================================*/

@media(max-width:1200px){

.protocol-grid{

grid-template-columns:repeat(3,1fr);

}

.mission-grid{

grid-template-columns:1fr;

}

.citadel-panel{

grid-template-columns:1fr;

}

.database-header,

.database-row{

grid-template-columns:1fr;

gap:10px;

}

.database-header{

display:none;

}

.database-row{

padding:25px;

border-radius:18px;

margin-bottom:18px;

background:rgba(255,255,255,.03);

}

}


/*==========================================================
  LARGE TABLET / SMALL LAPTOP FIX
==========================================================*/

@media (max-width:1220px) and (min-width:901px){

    .header-right nav{
        position:relative;
    }

    .header-right nav a{
        display:none;
    }

    .mobile-menu{
        display:block;
    }

    .header-right nav.open a{
        display:block;
        position:absolute;
        right:0;
        top:55px;
        width:220px;
        padding:15px 20px;
        background:rgba(5,5,10,.95);
        border:1px solid rgba(255,255,255,.1);
        text-align:left;
    }

    .header-right nav.open a:nth-of-type(1){ top:55px; }
    .header-right nav.open a:nth-of-type(2){ top:105px; }
    .header-right nav.open a:nth-of-type(3){ top:155px; }
    .header-right nav.open a:nth-of-type(4){ top:205px; }

}

/*==========================================================
  TABLET
==========================================================*/

@media(max-width:900px){

.header{

padding:0 25px;

height:75px;

}

.header-center{

    display:flex;

    width:auto;

    max-width:260px;

    justify-content:center;

    margin:10px auto 0;

    order:3;

}

.header-right{

    position:relative;

}

.header-right nav{

    display:none;

    position:absolute;

    top:60px;

    right:0;

    width:220px;

    flex-direction:column;

    background:rgba(5,5,10,.96);

    border:1px solid rgba(176,64,255,.30);

    border-radius:18px;

    padding:20px;

    gap:18px;

    backdrop-filter:blur(18px);

    box-shadow:0 0 30px rgba(176,64,255,.20);

}

.header-right nav.open{

    display:flex;

}

.header-right nav a{

    display:block;

    width:100%;

    padding:8px 0;

    text-align:left;

}

.mobile-menu{

    display:block;

    font-size:32px;

    z-index:10001;

}

.hero{

padding-top:90px;

}

.hero-logo{

width:280px;

}

.hero h1{

font-size:52px;

letter-spacing:4px;

}

.hero p{

font-size:16px;

}

.terminal-window{

width:96%;

}

.terminal-output{

font-size:13px;

min-height:320px;

padding:22px;

}

.section-title h2{

font-size:40px;

}

.protocol-grid{

grid-template-columns:repeat(2,1fr);

}

}

/*==========================================================
  MOBILE
==========================================================*/

@media(max-width:600px){

.header{

padding:0 18px;

}

.hero{

padding-top:100px;

padding-left:20px;

padding-right:20px;

}

.hero-logo{

width:210px;

margin-bottom:30px;

}

.hero h1{

font-size:34px;

letter-spacing:2px;

}

.hero p{

font-size:14px;

line-height:1.8;

}

.hero-button{

padding:14px 26px;

font-size:13px;

letter-spacing:2px;

}

.terminal-window{

margin-top:30px;

}

.terminal-title{

font-size:11px;

}

.terminal-clock{

display:none;

}

.terminal-output{

font-size:12px;

line-height:1.8;

padding:18px;

min-height:280px;

}

.section{

margin:90px auto;

}

.section-title{

margin-bottom:40px;

}

.section-title h2{

font-size:30px;

letter-spacing:2px;

}

.mission-card{

padding:30px;

}

.protocol-grid{

grid-template-columns:1fr;

}

.protocol-card{

padding:28px;

}

.manifesto-terminal{

padding:25px;

}

.manifesto-terminal div{

display:block;

}

.line-number{

display:block;

margin-bottom:10px;

}

.citadel-box{

padding:28px;

}

.status-list div{

flex-direction:column;

align-items:flex-start;

gap:8px;

}

.footer{

padding:70px 20px 40px;

}

.footer-logo{

width:70px;

}

.footer h3{

font-size:24px;

}

.footer p{

font-size:13px;

}

}

/*==========================================================
  SMALL PHONES
==========================================================*/

@media(max-width:380px){

.hero h1{

font-size:28px;

}

.hero-logo{

width:180px;

}

.hero-button{

width:100%;

}

}

/*==========================================================
  END OF SHADOWLABS CSS
==========================================================*/


/*==========================================================
  END OF SHADOWLABS CSS
==========================================================*/

/* Footer Contact */

.footer-contact{

    display:inline-block;

    text-decoration:none;

    margin:10px 0;

    cursor:pointer;

}

.footer-contact h4{

    color:var(--purple);

    letter-spacing:5px;

    margin-bottom:3px;

    transition:.35s;

}

.footer-contact p{

    color:white;

    transition:.35s;

}

.footer-contact:hover{

    transform:translateY(-3px);

}

.footer-contact:hover h4{

    color:var(--green);

    text-shadow:
        0 0 12px var(--green),
        0 0 30px rgba(0,255,102,.35);

}

.footer-contact:hover p{

    color:var(--green);

}

.footer-quote{

    margin:10px 0 16px;

    color:#9a9a9a;

    font-style:italic;

    line-height:1.8;

    letter-spacing:1px;

}
