:root {
    --bg-color: #050505;
    --accent-primary: #00f2fe;
    --accent-secondary: #7000ff;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --text-primary: #ffffff;
    --text-secondary: #aaaaaa;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

body {
    background: var(--bg-color);
    color: var(--text-primary);
    min-height: 100vh;
    overflow-x: hidden;
}

.background-blobs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    filter: blur(80px);
}

.blob {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    opacity: 0.3;
    animation: blob-move 20s infinite alternate;
}

.blob-1 { background: var(--accent-primary); top: -200px; left: -200px; }
.blob-2 { background: var(--accent-secondary); bottom: -200px; right: -200px; animation-delay: -5s; }
.blob-3 { background: #7028e4; top: 50%; left: 50%; animation-delay: -10s; }

@keyframes blob-move {
    from { transform: translate(0, 0); }
    to { transform: translate(100px, 100px); }
}

.glass-container {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 4rem;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 32px;
    position: relative;
    box-shadow: 0 40px 100px rgba(0,0,0,0.8);
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5rem;
}

.logo {
    font-size: 2.5rem;
    font-weight: 900;
    letter-spacing: 0.5rem;
    background: linear-gradient(to right, #fff, #888);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.status-badge {
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    background: rgba(0, 242, 254, 0.1);
    border: 1px solid var(--accent-primary);
    color: var(--accent-primary);
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 2px;
}

.hero { text-align: center; margin-bottom: 5rem; }
h1 { font-size: 6rem; font-weight: 900; letter-spacing: -2px; margin-bottom: 1rem; }
.subtitle { color: var(--text-secondary); font-size: 1.2rem; margin-bottom: 3rem; }

.glow-on-hover {
    padding: 1rem 3rem;
    background: #fff;
    color: #000;
    border: none;
    border-radius: 12px;
    font-weight: 900;
    cursor: pointer;
    transition: 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.glow-on-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255,255,255,0.3);
}

/* VISION SLIDER */
.vision-slide {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: 1.5s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vision-slide.active { opacity: 1; }

.vision-caption {
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--glass-border);
    max-width: 600px;
    text-align: center;
    font-weight: 900;
    letter-spacing: 1px;
}

/* TABS */
.tabs-container {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.tab-btn {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--text-secondary);
    padding: 1rem 2rem;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 900;
    transition: 0.3s;
}

.tab-btn.active {
    background: var(--accent-primary);
    color: #000;
    border-color: var(--accent-primary);
}

.tab-content { display: none; }
.tab-content.active { display: block; animation: fadeIn 0.5s; }

.tier-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    background: rgba(255,255,255,0.02);
    padding: 3rem;
    border-radius: 24px;
    border: 1px solid var(--glass-border);
}

.tier-specs ul { list-style: none; margin-top: 1rem; }
.tier-specs li { margin-bottom: 10px; color: var(--text-secondary); font-size: 0.9rem; }
.tier-specs li::before { content: '◈ '; color: var(--accent-primary); }

/* WIDGETS */
.chat-toggle {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px; height: 60px;
    border-radius: 50%;
    background: var(--accent-primary);
    border: none; color: #000;
    font-size: 1.5rem; font-weight: 900;
    cursor: pointer;
    z-index: 1000; box-shadow: 0 10px 30px rgba(0,242,254,0.3);
}

.payment-options { display: flex; gap: 10px; margin-bottom: 1rem; }
.payment-btn {
    flex: 1; padding: 10px; background: rgba(255,255,255,0.05);
    border: 1px solid var(--glass-border); color: #fff; border-radius: 10px;
    font-size: 0.7rem; font-weight: 700; cursor: pointer; transition: 0.3s;
}
.payment-btn.active { background: var(--accent-primary); color: #000; border-color: var(--accent-primary); }

.chat-widget {
    position: fixed;
    bottom: 100px; right: 30px;
    width: 350px;
    background: rgba(10,10,10,0.95);
    backdrop-filter: blur(40px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    display: none;
    flex-direction: column;
    z-index: 1000;
    overflow: hidden;
}

.chat-widget.active { display: flex; animation: slideUp 0.3s; }

.chat-header {
    background: rgba(255,255,255,0.05);
    padding: 1rem; font-weight: 900; font-size: 0.8rem;
    border-bottom: 1px solid var(--glass-border);
}

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideUp { from { transform: translateY(20px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
