:root {
    --bg-color: #030614;
    --text-color: #ffffff;
    --accent-blue: #007bff;
    --accent-glow: #00bcd4;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --font-main: 'Outfit', sans-serif;
    --nav-height: 70px;
}

body {
    margin: 0;
    padding: 0;
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-main);
    overflow: hidden;
    /* Lock scroll for app-like feel */
    height: 100vh;
}

/* Jazz: Dynamic Background */
.background-globes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

.globe {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
    animation: pulse 10s infinite alternate;
}

.globe-1 {
    width: 60vw;
    height: 60vw;
    top: -20%;
    left: -20%;
    background: radial-gradient(circle, #001f3f, transparent 70%);
}

.globe-2 {
    width: 50vw;
    height: 50vw;
    bottom: -10%;
    right: -10%;
    background: radial-gradient(circle, #003366, transparent 70%);
    animation-delay: -5s;
}

.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.3;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.3;
    }

    100% {
        transform: scale(1.1);
        opacity: 0.5;
    }
}

/* Layout: Compact & Above Fold */
.app-container {
    display: flex;
    flex-direction: column;
    height: 100vh;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.glass-header {
    height: var(--nav-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 1rem;
    padding: 0 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: transform 0.3s;
}

.logo-area:hover {
    transform: scale(1.02);
}

.brand-logo {
    height: 50px;
    width: auto;
    filter: drop-shadow(0 0 8px rgba(0, 188, 212, 0.5));
}

.brand-name {
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: 1px;
    background: linear-gradient(90deg, #fff, #aaa);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-btn {
    background: transparent;
    border: none;
    color: #888;
    font-family: var(--font-main);
    font-weight: 500;
    font-size: 1rem;
    margin-left: 1.5rem;
    cursor: pointer;
    transition: color 0.3s, text-shadow 0.3s;
    position: relative;
}

.nav-btn:hover {
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.nav-btn::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-glow);
    transition: width 0.3s;
}

.nav-btn:hover::after {
    width: 100%;
}

/* Content Area */
.content-area {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    overflow: visible;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Hero & General Content Styling */
.hero-content {
    text-align: center;
    max-width: 800px;
    animation: floatUp 0.8s ease-out;
}

h1 {
    font-size: 5rem;
    line-height: 1;
    margin-bottom: 1.5rem;
    letter-spacing: -2px;
}

.gradient-text {
    background: linear-gradient(135deg, #fff 30%, var(--accent-glow) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 20px rgba(0, 188, 212, 0.3));
}

p {
    font-size: 1.25rem;
    color: #aaa;
    line-height: 1.6;
}

.hero-actions {
    margin-top: 3rem;
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.cta-button {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.cta-button.primary {
    background: white;
    color: black;
    border: none;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.cta-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.cta-button.secondary {
    background: rgba(255, 255, 255, 0.05);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

/* Glass Card & Internal pages */
.glass-card {
    background: rgba(23, 25, 35, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 3rem;
    backdrop-filter: blur(30px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    text-align: left;
}

.badge {
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-glow));
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    display: inline-block;
}

@keyframes floatUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

/* Responsive */
@media (max-width: 768px) {
    h1 {
        font-size: 3rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .glass-header {
        flex-direction: column;
        height: auto;
        padding: 1rem;
    }

    .nav-btn {
        margin: 0 0.5rem;
    }

    body {
        overflow-y: auto;
        height: auto;
    }
}