
:root {
    --bg-dark: #05070a;
    --accent-purple: #8a2be2;
    --accent-blue: #0070f3;
    --accent-lime: #a2ff00;
    --accent-feed: #ff4b2b;
    --accent-cast: #00ff87;
    --glass: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --text-muted: #94a3b8;
}

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

body {
    background-color: var(--bg-dark);
    color: white;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-align: center;
}

/* Background Animation */
.background-glow {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: -1;
    background: radial-gradient(circle at 50% 50%, rgba(138, 43, 226, 0.08) 0%, transparent 50%);
}

.orb {
    position: absolute;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(162, 255, 0, 0.03) 0%, transparent 70%);
    filter: blur(100px);
    z-index: -1;
    animation: float 25s infinite alternate ease-in-out;
}

@keyframes float {
    from { transform: translate(-10%, -10%) scale(1); }
    to { transform: translate(10%, 10%) scale(1.1); }
}

/* Container & Animation */
.container {
    padding: 2rem;
    max-width: 650px;
    z-index: 10;
    opacity: 0;
    transform: translateY(20px);
    animation: reveal 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

@keyframes reveal {
    to { opacity: 1; transform: translateY(0); }
}

.glass-card {
    background: var(--glass);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid var(--glass-border);
    padding: 4rem 2.5rem;
    border-radius: 32px;
    box-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.7);
}

/* Brands & Typography */
.brand-logo {
    font-size: 3.8rem;
    font-weight: 800;
    letter-spacing: -3px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--accent-lime);
    box-shadow: 0 0 25px var(--accent-lime);
}

.status-badge {
    display: inline-block;
    padding: 8px 18px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2.5rem;
    border: 1px solid var(--glass-border);
}

h1 {
    font-size: 2.8rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 800;
    letter-spacing: -1px;
    background: linear-gradient(to bottom, #fff 40%, rgba(255,255,255,0.5) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 3rem;
    font-size: 1.15rem;
    font-weight: 400;
}

/* Navigation Dock */
.suite-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 1rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-item {
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    padding: 10px 18px;
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid transparent;
    background: transparent;
}

.nav-item:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-2px);
}

.nav-item.active {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--glass-border);
}

/* Footer info */
.suite-info {
    margin-top: 2rem;
    font-size: 0.8rem;
    color: #475569;
    letter-spacing: 0.5px;
}

/* Responsive */
@media (max-width: 640px) {
    .brand-logo { font-size: 2.8rem; }
    h1 { font-size: 2rem; }
    .glass-card { padding: 3rem 1.5rem; }
    .suite-nav { gap: 8px; }
}
