:root {
    --glass-bg: #121212;
    --glass-panel: rgba(30, 30, 30, 0.6);
    --glass-border: rgba(255, 255, 255, 0.1);
    --neon-blue: #00f0ff;
    --neon-purple: #8a2be2;
    --text-glow: #e0e0e0;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    background-color: var(--glass-bg);
    background-image: url('data:image/svg+xml;utf8,<svg width="100%" height="100%" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="a" patternUnits="userSpaceOnUse" width="20" height="20"><path d="M0 20L20 0" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23a)"/></svg>');
    color: var(--text-glow);
    font-family: 'Inter', -apple-system, sans-serif;
    line-height: 1.6;
}
a { text-decoration: none; color: inherit; transition: 0.3s; }

/* Hamburger Menu layout (Vertical Nav always hidden behind a button visually) */
.menu-btn {
    position: fixed; top: 30px; right: 30px; z-index: 200;
    width: 50px; height: 50px; border-radius: 50%;
    background: var(--glass-panel); backdrop-filter: blur(10px); border: 1px solid var(--glass-border);
    display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 5px; cursor: pointer;
}
.menu-btn span { width: 20px; height: 2px; background: var(--neon-blue); transition: 0.3s;}

.side-menu {
    position: fixed; top: 0; right: -300px; width: 300px; height: 100vh; z-index: 150;
    background: rgba(18,18,18,0.95); backdrop-filter: blur(20px); border-left: 1px solid var(--glass-border);
    padding: 100px 30px 30px; display: flex; flex-direction: column; gap: 20px; transition: 0.3s;
}
.side-menu.active { right: 0; }
.side-menu a { font-size: 18px; font-weight: 500; color: #aaa; padding-bottom: 10px; border-bottom: 1px solid var(--glass-border);}
.side-menu a:hover { color: var(--neon-blue); padding-left: 10px; }

/* Main Wrapper with intense padding top */
.wrapper { padding: 80px 5% 50px; max-width: 1400px; margin: 0 auto; }

/* Brand absolute left */
.brand { font-size: 28px; font-weight: 900; letter-spacing: 2px; text-transform: uppercase; background: linear-gradient(45deg, var(--neon-blue), var(--neon-purple)); -webkit-background-clip: text; -webkit-text-fill-color: transparent;}

/* Splitting Hero into text and a big 'window' */
.hero-sec { display: flex; justify-content: space-between; align-items: center; gap: 50px; margin-top: 40px; margin-bottom: 100px;}
.h-txt { flex: 1; }
.h-txt h1 { font-size: 64px; line-height: 1.1; margin-bottom: 20px; }
.h-txt p { font-size: 18px; color: #888; margin-bottom: 40px; }
.h-acts { display: flex; gap: 20px; }
.btn-neon { background: transparent; color: var(--neon-blue); border: 1px solid var(--neon-blue); padding: 12px 30px; border-radius: 4px; font-weight: bold; text-transform: uppercase; box-shadow: inset 0 0 10px rgba(0,240,255,0.2);}
.btn-neon:hover { background: var(--neon-blue); color: #000; box-shadow: 0 0 20px rgba(0,240,255,0.6);}

/* Window pane */
.h-window {
    flex: 1; height: 400px; border-radius: 20px;
    background: var(--glass-panel); backdrop-filter: blur(15px); border: 1px solid var(--glass-border);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    display: flex; flex-direction: column; padding: 30px; position: relative; overflow: hidden;
}
.h-window::before { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: conic-gradient(transparent, transparent, transparent, var(--neon-purple)); animation: rotate 10s linear infinite; z-index: -1; opacity: 0.1;}
@keyframes rotate { 100% { transform: rotate(360deg); } }
.hw-data { flex: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 20px; align-content: center;}
.hw-item b { display: block; font-size: 32px; color: var(--neon-blue); }
.hw-item span { font-size: 12px; color: #888; }

/* Grid Layout for the rest */
.bento {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-bottom: 100px;
}
.b-panel {
    background: var(--glass-panel); backdrop-filter: blur(10px); border: 1px solid var(--glass-border);
    border-radius: 16px; padding: 40px;
}
.b-wide { grid-column: 1 / -1; display: flex; gap: 40px; align-items: center; }

/* Features */
.f-box h3 { font-size: 20px; color: #fff; margin-bottom: 15px; }
.f-box p { font-size: 15px; color: #aaa; }

/* Trust Strip inside Wide Panel */
.trust-list { display: flex; justify-content: space-around; width: 100%; }
.tl-item { font-size: 14px; font-weight: bold; color: #ccc; }

/* Nodes */
.n-wrap { display: flex; gap: 15px; flex-wrap: wrap; margin-top: 20px; }
.n-tag { background: rgba(0,0,0,0.5); border: 1px solid var(--glass-border); padding: 8px 16px; border-radius: 8px; font-size: 13px;}
.n-tag span { color: var(--neon-purple); margin-left: 10px;}

/* Accordion FAQ */
.faq-list { display: flex; flex-direction: column; gap: 15px; }
.fq-item { border-bottom: 1px solid var(--glass-border); padding-bottom: 15px; }
.fq-q { font-weight: bold; cursor: pointer; color: var(--neon-blue); display: flex; justify-content: space-between; }
.fq-a { font-size: 14px; color: #888; padding-top: 10px; display: none; }

/* Reviews */
.r-slide { display: flex; flex-direction: column; gap: 20px; }
.r-card { background: rgba(0,0,0,0.3); padding: 20px; border-radius: 8px; border-left: 2px solid var(--neon-purple);}
.r-card .s { color: var(--neon-blue); font-size: 12px; margin-bottom: 10px;}
.r-card p { font-size: 14px; margin-bottom: 10px; font-style: italic;}
.r-card b { font-size: 12px; color: #666; }

footer { text-align: center; padding: 40px 0; border-top: 1px solid var(--glass-border); font-size: 12px; color: #666;}

@media (max-width: 900px) {
    .hero-sec { flex-direction: column; text-align: center;}
    .h-acts { justify-content: center; }
    .bento { grid-template-columns: 1fr; }
    .trust-list { flex-direction: column; gap: 20px; align-items: center;}
}