:root {
    --primary: #00E5FF;
    --primary-alt: #2962FF;
    --primary-glow: rgba(0, 229, 255, 0.4);
    --bg-obsidian: #050505;
    --bg-card: rgba(15, 15, 20, 0.8);
    --text-white: #FFFFFF;
    --text-muted: #888899;
    --border-glass: rgba(255, 255, 255, 0.08);
    --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Outfit', sans-serif; }
body { background-color: var(--bg-obsidian); color: var(--text-white); overflow-x: hidden; line-height: 1.5; }

/* Grid Background */
.grid-bg {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background-image: linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 50px 50px; z-index: -2;
}

.glow-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(41, 98, 255, 0.05), transparent 70%); z-index: -1;
}

/* Layout */
.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Navbar */
nav { position: fixed; top: 0; width: 100%; z-index: 1000; padding: 24px 0; transition: var(--transition-smooth); }
nav.scrolled { padding: 16px 0; background: rgba(10, 10, 10, 0.8); backdrop-filter: blur(20px); border-bottom: 1px solid var(--border-glass); }

.nav-wrap { display: flex; justify-content: space-between; align-items: center; }

.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; color: #fff; font-weight: 800; letter-spacing: 2px; }
.logo img { width: 35px; border-radius: 8px; }

.nav-links { display: flex; gap: 40px; }
.nav-links a { text-decoration: none; color: var(--text-muted); font-size: 13px; font-weight: 600; letter-spacing: 1.5px; transition: var(--transition-smooth); }
.nav-links a:hover { color: #fff; }

/* Buttons */
.btn { padding: 14px 28px; border-radius: 100px; display: inline-flex; align-items: center; gap: 10px; transition: var(--transition-smooth); border: none; font-weight: 700; text-decoration: none; cursor: pointer; }
.btn-electric { background: var(--primary); color: var(--bg-obsidian); box-shadow: 0 0 20px var(--primary-glow); }
.btn-electric:hover { box-shadow: 0 0 35px var(--primary-glow); transform: translateY(-2px); }

.btn-primary { background: #fff; color: #000; }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(255,255,255,0.2); }

.btn-outline { border: 1px solid var(--border-glass); color: #fff; background: rgba(255,255,255,0.02); backdrop-filter: blur(10px); }
.btn-outline:hover { background: rgba(255,255,255,0.06); transform: translateY(-3px); }

.btn-upgrade {
    background: #00E5FF;
    color: #050505;
    padding: 24px 64px;
    font-size: 18px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 100px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 0 50px rgba(0, 229, 255, 0.5);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.btn-upgrade::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.4), transparent);
    transform: rotate(45deg);
    transition: 0.8s;
}

.btn-upgrade:hover::after {
    left: 100%;
}

.btn-upgrade:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 80px rgba(0, 229, 255, 0.7);
}

/* Hero Section Components */
.profile-hero { padding-top: 140px; text-align: center; }
.pfp-wrap { position: relative; width: 140px; height: 140px; margin: 0 auto 30px; }
.pfp-img { width: 100%; height: 100%; border-radius: 40px; border: 2px solid var(--primary); box-shadow: 0 0 40px var(--primary-glow); object-fit: cover; }
.verified-icon { position: absolute; bottom: -5px; right: -5px; background: var(--primary); color: var(--bg-obsidian); width: 30px; height: 30px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 16px; border: 4px solid var(--bg-obsidian); }

.bot-name { font-size: 84px; font-weight: 950; letter-spacing: -4px; text-transform: uppercase; margin-bottom: 50px; }

/* Hero */
.hero { padding-top: 80px; padding-bottom: 120px; text-align: center; }
.hero-content { display: flex; flex-direction: column; align-items: center; }

.section-tag { color: var(--primary); font-size: 14px; font-weight: 800; letter-spacing: 5px; margin-bottom: 24px; display: block; }
h1 { font-size: clamp(48px, 8vw, 96px); font-weight: 900; line-height: 0.95; margin-bottom: 30px; letter-spacing: -4px; }
.text-reveal { background: linear-gradient(135deg, #fff 30%, #555 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }

.hero p { max-width: 650px; color: var(--text-muted); font-size: 20px; margin-bottom: 50px; }
.hero-btns { display: flex; gap: 20px; margin-bottom: 80px; }

@keyframes floating { 0%, 100% { transform: translateY(0px); } 50% { transform: translateY(-20px); } }
.float-anim { animation: floating 6s ease-in-out infinite; }

/* Stats Banner */
.stats-banner { background: var(--bg-card); border: 1px solid var(--border-glass); border-radius: 40px; padding: 60px; display: flex; justify-content: space-around; text-align: center; margin-bottom: 120px; }
.stat-box h2 { font-size: 42px; font-weight: 800; color: #fff; margin-bottom: 8px; }
.stat-box p { color: var(--text-muted); font-size: 14px; letter-spacing: 1px; text-transform: uppercase; font-weight: 600; }

/* Features Section */
.section-title { font-size: 48px; font-weight: 800; text-align: center; margin-bottom: 80px; }

.bento-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-template-rows: repeat(2, 350px); gap: 24px; margin-bottom: 150px; }
.bento-item { background: var(--bg-card); border: 1px solid var(--border-glass); border-radius: 32px; padding: 40px; position: relative; overflow: hidden; transition: var(--transition-smooth); }
.bento-item:hover { border-color: rgba(0, 229, 255, 0.3); transform: translateY(-10px); }
.bento-item i { font-size: 32px; color: var(--primary); margin-bottom: 24px; display: block; }
.bento-item h3 { font-size: 24px; font-weight: 700; margin-bottom: 15px; }
.bento-item p { color: var(--text-muted); font-size: 16px; }

.item-large { grid-column: span 2; }
.item-tall { grid-row: span 2; }

/* Responsive */
@media (max-width: 1000px) {
    .bento-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
    h1 { font-size: 60px; }
    .nav-links { display: none; }
}

@media (max-width: 600px) {
    .bento-grid { grid-template-columns: 1fr; }
    .item-large { grid-column: auto; }
    .item-tall { grid-row: auto; }
    .hero-btns { flex-direction: column; width: 100%; }
    .btn { width: 100%; justify-content: center; }
}
