:root {
    --bg-black: #020202;
    --bg-surface: #0a0a0c;
    --accent: #FF3333;
    --accent-glow: rgba(255, 51, 51, 0.4);
    --text-primary: #ffffff;
    --text-secondary: #88888e;
    --border: rgba(255, 255, 255, 0.08);
    --glass: rgba(10, 10, 15, 0.85);
}

* { margin: 0; padding: 0; box-sizing: border-box; scroll-behavior: smooth; }
body { background: var(--bg-black); color: var(--text-primary); font-family: 'Plus Jakarta Sans', sans-serif; overflow-x: hidden; line-height: 1.4; }

/* --- NAV --- */
.glass-nav {
    position: fixed; top: 0; left: 0; width: 100%; padding: 20px 5%;
    display: flex; justify-content: space-between; align-items: center;
    z-index: 1000; background: rgba(0,0,0,0.8); backdrop-filter: blur(30px);
    border-bottom: 1px solid var(--border);
}
.brand { display: flex; align-items: center; gap: 15px; font-weight: 800; font-size: 1.4rem; }
.brand img { height: 40px; border-radius: 8px; }
.ticker { color: #fff; font-family: 'JetBrains Mono', monospace; letter-spacing: -1px; }

.nav-links { display: flex; gap: 40px; }
.nav-links a {
    color: var(--text-secondary); text-decoration: none; font-size: 0.85rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 1px; transition: 0.3s;
}
.nav-links a:hover { color: var(--accent); }

/* --- HERO --- */
.hero-v2 {
    height: 100vh; position: relative; display: flex; align-items: center; justify-content: center;
    text-align: center; padding: 0 5%; overflow: hidden;
}
.video-container { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: -2; }
.hero-bg-video { width: 100%; height: 100%; object-fit: cover; opacity: 0.5; }
.video-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at center, transparent 0%, var(--bg-black) 100%);
}

.badge {
    display: inline-block; padding: 8px 20px; background: rgba(255,51,51,0.1);
    border: 1px solid var(--accent); color: var(--accent); border-radius: 50px;
    font-size: 0.75rem; font-weight: 800; margin-bottom: 30px; letter-spacing: 2px;
}
.hero-content h1 {
    font-size: clamp(3.5rem, 10vw, 8rem); font-weight: 800; line-height: 0.85;
    letter-spacing: -4px; margin-bottom: 30px;
    background: linear-gradient(180deg, #FFFFFF 30%, #555555 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-subtext { font-size: 1.3rem; color: var(--text-secondary); max-width: 700px; margin: 0 auto 50px; font-weight: 500; }

/* --- PANELS --- */
.panel-pro { max-width: 1400px; margin: 150px auto; padding: 0 5%; }
.section-header { margin-bottom: 60px; }
.pre-title { color: var(--accent); font-size: 0.8rem; font-weight: 800; letter-spacing: 3px; }
.title { font-size: 3.5rem; font-weight: 800; letter-spacing: -2px; margin-top: 10px; }

/* --- STATS --- */
.stats-mega-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: 20px; overflow: hidden; }
.stat-box { background: var(--bg-surface); padding: 40px; position: relative; }
.stat-box label { display: block; color: var(--text-secondary); font-size: 0.7rem; font-weight: 800; margin-bottom: 15px; letter-spacing: 2px; }
.stat-box strong { font-size: 1.8rem; font-family: 'JetBrains Mono', monospace; color: #fff; }
.stat-bar { position: absolute; bottom: 0; left: 0; width: 0%; height: 3px; background: var(--accent); transition: 1s; }

/* --- TOKEN FACTORY --- */
.factory-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)); gap: 30px; margin-bottom: 50px; }
.factory-group { background: var(--bg-surface); border: 1px solid var(--border); padding: 40px; border-radius: 24px; }
.factory-group h3 { font-size: 1.2rem; margin-bottom: 30px; color: var(--accent); }
.input-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field label { display: block; font-size: 0.65rem; color: var(--text-secondary); text-transform: uppercase; margin-bottom: 8px; }
input { width: 100%; background: #000; border: 1px solid var(--border); padding: 15px; color: #fff; border-radius: 12px; font-family: 'JetBrains Mono'; font-size: 0.9rem; }
input:focus { border-color: var(--accent); outline: none; box-shadow: 0 0 15px var(--accent-glow); }

/* --- BUTTONS --- */
.btn-main { background: var(--accent); color: #fff; padding: 20px 40px; border-radius: 12px; font-weight: 800; text-decoration: none; text-transform: uppercase; border: none; cursor: pointer; transition: 0.3s; box-shadow: 0 10px 40px var(--accent-glow); display: inline-block; }
.btn-main:hover { transform: translateY(-5px); box-shadow: 0 20px 60px var(--accent-glow); }
.btn-secondary { background: rgba(255,255,255,0.05); color: #fff; padding: 20px 40px; border-radius: 12px; font-weight: 800; text-decoration: none; text-transform: uppercase; border: 1px solid var(--border); cursor: pointer; transition: 0.3s; display: inline-block; }
.btn-secondary:hover { border-color: #fff; background: rgba(255,255,255,0.1); }
.btn-glow { background: #fff; color: #000; padding: 12px 30px; border-radius: 50px; font-weight: 800; text-decoration: none; transition: 0.3s; }
.btn-glow:hover { box-shadow: 0 0 30px rgba(255,255,255,0.4); transform: scale(1.05); }

/* --- CHECKOUT --- */
.gateways-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.gate-card { background: var(--bg-surface); border: 1px solid var(--border); padding: 50px; border-radius: 30px; text-align: center; }
.gate-icon { font-size: 3rem; margin-bottom: 20px; color: var(--accent); }

/* --- FOOTER --- */
footer { padding: 100px 5%; background: #000; border-top: 1px solid var(--border); text-align: center; }
.social-mega-row { display: flex; justify-content: center; gap: 50px; margin: 50px 0; font-size: 2rem; }
.social-mega-row a { color: var(--text-secondary); transition: 0.4s; }
.social-mega-row a:hover { color: var(--accent); transform: scale(1.2); }
