:root {
    --bg-color: #030407;
    --card-bg: rgba(13, 16, 26, 0.4);
    --border-color: rgba(255, 255, 255, 0.08);
    --primary: #00f0ff;
    --primary-glow: rgba(0, 240, 255, 0.2);
    --secondary: #7000ff;
    --text-main: #f0f4f8;
    --text-muted: #8a93a5;
    
    --font-sans: 'Inter', sans-serif;
    --font-mono: 'Space Grotesk', monospace;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Background Effects */
.glow-bg {
    position: fixed;
    top: -20%;
    left: -10%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, var(--secondary) 0%, transparent 50%);
    opacity: 0.15;
    filter: blur(100px);
    z-index: -2;
    animation: drift 20s infinite alternate linear;
}

.glow-bg::after {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -50%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, var(--primary) 0%, transparent 50%);
    opacity: 0.1;
    filter: blur(80px);
}

.grid-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: 
        linear-gradient(var(--border-color) 1px, transparent 1px),
        linear-gradient(90deg, var(--border-color) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: -1;
    opacity: 0.2;
    mask-image: radial-gradient(circle at center, black, transparent 80%);
    -webkit-mask-image: radial-gradient(circle at center, black, transparent 80%);
}

@keyframes drift {
    100% { transform: translateY(10%) translateX(5%); }
}

/* Typography & Utilities */
h1, h2, h3 { font-family: 'Inter', sans-serif; font-weight: 800; letter-spacing: -0.02em; }
.text-gradient {
    background: linear-gradient(135deg, var(--primary), #a259ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.glass-panel {
    background: var(--card-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 4rem;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    background: rgba(3, 4, 7, 0.6);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
}
.logo-group {
    display: flex;
    align-items: center;
    gap: 12px;
}
.nav-logo { width: 36px; height: 36px; border-radius: 50%; box-shadow: 0 0 15px var(--primary-glow); }
.nav-brand { font-family: var(--font-mono); font-weight: 700; font-size: 1.25rem; letter-spacing: 1px; }
.nav-links { display: flex; gap: 2rem; align-items: center; }
.nav-links a { color: var(--text-main); text-decoration: none; font-size: 0.95rem; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: var(--primary); }
.nav-btn { 
    display: flex; align-items: center; gap: 8px;
    padding: 0.5rem 1rem; border-radius: 8px; 
    border: 1px solid var(--border-color);
    background: rgba(255,255,255,0.03);
}
.nav-btn:hover { background: rgba(255,255,255,0.08); }

/* Hero Section */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    padding: 7rem 4rem 2rem;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
}
.badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: 100px;
    border: 1px solid var(--primary);
    background: var(--primary-glow);
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--primary);
    margin-bottom: 2rem;
}
.dot.pulse {
    width: 8px; height: 8px; background: var(--primary); border-radius: 50%;
    box-shadow: 0 0 10px var(--primary);
    animation: blink 1.5s infinite;
}
@keyframes blink { 50% { opacity: 0.3; } }

.hero-title { font-size: 4.5rem; line-height: 1.1; margin-bottom: 1.5rem; }
.hero-subtitle { font-size: 1.2rem; color: var(--text-muted); margin-bottom: 2.5rem; max-width: 500px; }

.hero-actions { display: flex; gap: 1rem; margin-bottom: 3rem; }
.btn {
    padding: 1rem 2rem; border-radius: 12px; font-weight: 600; text-decoration: none;
    font-size: 1rem; transition: all 0.2s; cursor: pointer; text-align: center;
}
.btn-primary { 
    background: var(--text-main); color: var(--bg-color); 
    box-shadow: 0 0 20px rgba(255,255,255,0.1);
}
.btn-primary:hover { background: var(--primary); box-shadow: 0 0 30px var(--primary-glow); }
.btn-secondary {
    background: transparent; color: var(--text-main);
    border: 1px solid var(--border-color);
}
.btn-secondary:hover { background: rgba(255,255,255,0.05); }

/* Contract Box */
.contract-box { width: fit-content; }
.ca-label { font-size: 0.85rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; display: block; }
.ca-inner {
    display: flex; align-items: center; gap: 1rem;
    background: rgba(0,0,0,0.4); border: 1px solid var(--border-color);
    padding: 0.8rem 1.2rem; border-radius: 10px; cursor: pointer;
    transition: border-color 0.2s;
}
.ca-inner:hover { border-color: var(--primary); }
#ca-text { font-family: var(--font-mono); color: var(--primary); font-size: 1.05rem; }
#copy-btn { background:none; border:none; color:var(--text-muted); cursor:pointer; }
#copy-btn:hover { color:white; }

/* Hero Visual */
.hero-visual { position: relative; }
.image-wrapper {
    padding: 1rem; border-radius: 32px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 40px var(--primary-glow);
    animation: float 6s infinite alternate ease-in-out;
}
.hero-img { width: 100%; height: auto; border-radius: 20px; object-fit: cover; }

@keyframes float { 100% { transform: translateY(-20px); } }

/* Sections */
.section { padding: 5rem 4rem; max-width: 1400px; margin: 0 auto; }
.section-title { font-size: 3rem; margin-bottom: 0.5rem; text-align: center;}
.section-desc { text-align: center; color: var(--text-muted); font-size: 1.1rem; margin-bottom: 4rem; }

/* Stats (Tokenomics) */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.stat-card {
    padding: 2.5rem 1.5rem; text-align: center; transition: transform 0.3s;
}
.stat-card:hover { transform: translateY(-5px); border-color: rgba(0, 240, 255, 0.4); }
.stat-icon { color: var(--primary); margin-bottom: 1.5rem; width: 32px; height: 32px; }
.stat-value { font-size: 1.75rem; font-weight: 800; font-family: var(--font-mono); margin-bottom: 0.3rem; }
.stat-label { color: var(--text-muted); font-size: 0.95rem; }

/* Features */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.feature { padding: 3rem 2rem; }
.f-icon { 
    width: 50px; height: 50px; border-radius: 12px; 
    background: rgba(112, 0, 255, 0.1); border: 1px solid var(--secondary);
    display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem; color: var(--secondary);
}
.feature h3 { font-size: 1.4rem; margin-bottom: 1rem; }
.feature p { color: var(--text-muted); }

/* Footer */
footer { border-top: 1px solid var(--border-color); padding: 3rem 4rem; margin-top: 5rem; }
.footer-content { max-width: 1400px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; }
.f-logo { font-family: var(--font-mono); font-weight: 700; font-size: 1.25rem; }
.socials { display: flex; gap: 1.5rem; }
.socials a { color: var(--text-muted); transition: color 0.2s; }
.socials a:hover { color: white; }

/* Responsive */
@media (max-width: 1024px) {
    .hero { grid-template-columns: 1fr; text-align: center; padding-top: 8rem; }
    .hero-actions { justify-content: center; }
    .contract-box { margin: 0 auto; }
    .stats-grid, .features-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .nav-links { display: none; }
    .stats-grid, .features-grid { grid-template-columns: 1fr; }
    .hero-title { font-size: 3rem; }
    .footer-content { flex-direction: column; gap: 1rem; }
}

/* Vision Section */
.vision-container {
    padding: 5rem 3rem;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    border: 1px solid var(--primary);
    box-shadow: 0 0 30px var(--primary-glow);
}
.acronym-title {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    font-family: var(--font-mono);
}
.letter-group {
    display: flex;
    align-items: center;
}
.letter {
    font-size: 4rem;
    color: var(--primary);
    margin-right: 2px;
}
.vision-quotes {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}
.quote {
    font-size: 1.25rem;
    color: var(--text-muted);
    font-style: italic;
    max-width: 600px;
}
.quote.highlighted {
    color: var(--text-main);
    font-weight: 600;
    font-size: 1.35rem;
    font-style: normal;
}
.divider {
    width: 60px;
    height: 2px;
    background: var(--primary);
    box-shadow: 0 0 10px var(--primary);
}

/* Hero Acronym Overrides */
.hero-acronym {
    justify-content: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
}
.hero-quotes {
    align-items: flex-start;
    text-align: left;
}
.hero-quotes .quote {
    font-size: 1.1rem;
    max-width: 500px;
}
.hero-divider {
    margin-left: 0;
}

/* Telegram VIP Terminal */
.mt-2 { margin-top: 2.5rem; }
.tg-terminal-container {
    width: 100%;
    max-width: 450px;
    animation: glitch 8s infinite alternate;
}
.tg-terminal {
    background: rgba(5, 8, 12, 0.85);
    border: 1px solid var(--primary);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.15);
    overflow: hidden;
}
.tg-header {
    background: rgba(255, 255, 255, 0.05);
    padding: 0.5rem 1rem;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.tg-dot { width: 10px; height: 10px; border-radius: 50%; margin-right: 6px; }
.tg-dot.red { background: #ff5f56; }
.tg-dot.yellow { background: #ffbd2e; }
.tg-dot.green { background: #27c93f; }
.tg-title { margin-left: 10px; font-family: var(--font-mono); font-size: 0.75rem; color: var(--text-muted); letter-spacing: 1px;}
.tg-body { padding: 1.5rem; font-family: var(--font-mono); }
.tg-text { font-size: 0.9rem; margin-bottom: 0.5rem; color: #a9b7c6; display: flex; align-items: center; gap: 8px;}
.tg-prompt { color: #27c93f; font-weight: 600; }
.glow-text { color: var(--primary); text-shadow: 0 0 8px var(--primary-glow); }
.tg-btn {
    display: flex; align-items: center; justify-content: center; gap: 10px;
    width: 100%; margin-top: 1.5rem; padding: 0.8rem;
    background: transparent; border: 1px solid var(--primary);
    color: var(--primary); font-family: var(--font-mono); font-weight: 700;
    text-decoration: none; border-radius: 4px; transition: all 0.3s;
    position: relative; overflow: hidden;
}
.tg-btn:hover {
    background: var(--primary); color: #000;
    box-shadow: 0 0 25px var(--primary);
}
@keyframes glitch {
    0% { box-shadow: 0 0 20px rgba(0,240,255,0.15); }
    100% { box-shadow: 0 0 35px rgba(0,240,255,0.3); }
}

/* Floating Node */
.floating-node {
    position: fixed; bottom: 30px; left: 30px; z-index: 999;
    background: rgba(13, 16, 26, 0.8);
    border: 1px solid var(--primary); border-radius: 50px;
    display: flex; align-items: center; padding: 5px 20px 5px 5px;
    text-decoration: none; color: var(--primary); transition: all 0.3s;
    box-shadow: 0 0 15px var(--primary-glow);
}
.floating-node:hover { transform: scale(1.05); box-shadow: 0 0 30px rgba(0, 240, 255, 0.4); background: rgba(0, 240, 255, 0.1); }
.node-pulse {
    width: 10px; height: 10px; background: var(--primary); border-radius: 50%;
    margin: 0 12px; animation: blink 1s infinite;
}
.node-icon { width: 18px; height: 18px; margin-right: 8px; }
.node-text { font-family: var(--font-mono); font-size: 0.85rem; font-weight: 700; letter-spacing: 0.5px;}
