:root {
    --tech-bg: #0a0b10;
    --tech-panel: #13151f;
    --tech-text: #e2e8f0;
    --tech-blue: #00f0ff;
    --tech-purple: #8a2be2;
    --tech-line: rgba(0, 240, 255, 0.2);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    background-color: var(--tech-bg); color: var(--tech-text);
    font-family: 'Exo 2', 'Rajdhani', 'Segoe UI', sans-serif;
    overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }

/* Glowing Grid Background */
body::before {
    content: ''; position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
    background-image: 
        linear-gradient(var(--tech-line) 1px, transparent 1px),
        linear-gradient(90deg, var(--tech-line) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: -2; opacity: 0.3;
    transform: perspective(500px) rotateX(60deg) translateY(-100px) translateZ(-200px);
    transform-origin: top center;
}

/* Nav */
.tech-nav {
    display: flex; justify-content: space-between; align-items: center;
    padding: 20px 40px; border-bottom: 1px solid var(--tech-line);
    background: rgba(10,11,16,0.8); backdrop-filter: blur(10px);
    position: sticky; top: 0; z-index: 100;
}
.brand-glow {
    font-size: 24px; font-weight: 900; letter-spacing: 2px;
    color: #fff; text-shadow: 0 0 10px var(--tech-blue), 0 0 20px var(--tech-blue);
}
.nav-links { display: flex; gap: 30px; }
.nav-links a { font-size: 14px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; transition: color 0.3s;}
.nav-links a:hover, .nav-links a.active { color: var(--tech-blue); text-shadow: 0 0 8px var(--tech-blue);}
.btn-glow {
    background: transparent; border: 1px solid var(--tech-blue); color: var(--tech-blue);
    padding: 10px 24px; font-size: 14px; font-weight: bold; text-transform: uppercase;
    box-shadow: 0 0 10px inset var(--tech-line), 0 0 10px var(--tech-line);
    transition: all 0.3s;
}
.btn-glow:hover { background: var(--tech-blue); color: #000; box-shadow: 0 0 20px var(--tech-blue);}

/* Hero */
.hero-tech { text-align: center; padding: 100px 20px; position: relative;}
.hero-tech::after {
    content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 600px; height: 600px; background: radial-gradient(circle, rgba(138,43,226,0.2) 0%, transparent 70%);
    z-index: -1;
}
.hero-tech h1 { font-size: 64px; font-weight: 900; margin-bottom: 20px; text-transform: uppercase; letter-spacing: -1px;}
.hero-tech p { font-size: 20px; color: #94a3b8; max-width: 700px; margin: 0 auto 40px auto; line-height: 1.6;}
.btn-solid-glow {
    background: linear-gradient(90deg, var(--tech-blue), var(--tech-purple)); color: #fff;
    padding: 15px 40px; font-size: 18px; font-weight: bold; text-transform: uppercase; border: none;
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.4); display: inline-block; margin-right: 20px; transition: all 0.3s;
}
.btn-solid-glow:hover { transform: scale(1.05); box-shadow: 0 0 30px rgba(138, 43, 226, 0.6);}

/* Panels */
.panel-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; max-width: 1200px; margin: 0 auto 80px auto; padding: 0 20px;}
.tech-panel {
    background: var(--tech-panel); border: 1px solid var(--tech-line); padding: 40px;
    position: relative; overflow: hidden;
}
.tech-panel::before {
    content: ''; position: absolute; top: 0; left: 0; width: 4px; height: 100%;
    background: linear-gradient(to bottom, var(--tech-blue), var(--tech-purple));
}
.tp-icon { font-size: 40px; margin-bottom: 20px; color: var(--tech-blue);}
.tech-panel h3 { font-size: 24px; margin-bottom: 15px; text-transform: uppercase;}
.tech-panel p { font-size: 15px; color: #94a3b8; line-height: 1.6;}

/* Stats */
.stats-tech {
    max-width: 1200px; margin: 0 auto 80px auto; display: flex; justify-content: space-around;
    background: var(--tech-panel); padding: 40px; border: 1px solid var(--tech-line); border-radius: 8px;
}
.st-num { font-size: 48px; font-weight: 900; background: linear-gradient(90deg, var(--tech-blue), var(--tech-purple)); -webkit-background-clip: text; -webkit-text-fill-color: transparent;}
.st-lbl { font-size: 14px; text-transform: uppercase; font-weight: bold; color: #64748b; margin-top: 5px; letter-spacing: 1px;}

/* Nodes & Trust */
.bot-section { max-width: 1200px; margin: 0 auto 80px auto; display: grid; grid-template-columns: 1fr 1fr; gap: 40px; padding: 0 20px;}
.box-border { border: 1px solid var(--tech-line); padding: 40px; background: rgba(19,21,31,0.7);}
.box-border h2 { font-size: 28px; margin-bottom: 30px; text-transform: uppercase; color: var(--tech-blue);}
.node-line { display: flex; justify-content: space-between; border-bottom: 1px dashed var(--tech-line); padding: 15px 0;}
.node-line:last-child { border-bottom: none; }
.n-ping { color: var(--tech-blue); font-family: monospace; font-size: 16px;}

.trust-item { margin-bottom: 20px; display: flex; align-items: center; gap: 15px;}
.trust-item::before { content: '>'; color: var(--tech-purple); font-weight: bold; font-family: monospace;}
.trust-item span { font-size: 18px; font-weight: 600;}
.user-rev { margin-top: 40px; padding-top: 20px; border-top: 1px solid var(--tech-line); font-style: italic; color: #94a3b8;}
.user-rev b { color: var(--tech-blue); font-style: normal; margin-top: 10px; display: block;}

/* FAQ */
.faq-tech { max-width: 800px; margin: 0 auto 80px auto; padding: 0 20px;}
.faq-tech h2 { text-align: center; font-size: 36px; margin-bottom: 40px; text-transform: uppercase;}
.q-block { margin-bottom: 30px; border-left: 2px solid var(--tech-purple); padding-left: 20px;}
.q-block h4 { font-size: 18px; margin-bottom: 10px; color: #fff;}
.q-block p { font-size: 15px; color: #94a3b8; line-height: 1.6;}

@media (max-width: 900px) {
    .tech-nav { flex-direction: column; gap: 20px; }
    .hero-tech h1 { font-size: 40px; }
    .panel-grid { grid-template-columns: 1fr; }
    .stats-tech { flex-direction: column; gap: 30px; text-align: center; }
    .bot-section { grid-template-columns: 1fr; }
}