:root {
    /* Color Palette - Premium Dark Theme */
    --bg-color: #0B0E14;
    --acc-primary: #7C3AED;   /* Vibrant Purple */
    --acc-secondary: #4F46E5; /* Deep Indigo */
    --acc-glow: rgba(124, 58, 237, 0.4);
    
    --text-main: #FFFFFF;
    --text-muted: #A1A1AA;
    
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

/* Typography styles */
h1, h2, h3, h4, h5 {
    font-family: var(--font-heading);
    font-weight: 700;
}
p {
    color: var(--text-muted);
}

/* Gradients & Background Effects */
.blob {
    position: fixed;
    top: -20%;
    left: -10%;
    width: 50vw;
    height: 50vw;
    border-radius: 50%;
    background: radial-gradient(circle, var(--acc-glow) 0%, transparent 60%);
    filter: blur(80px);
    z-index: -1;
    pointer-events: none;
}
.blob-right {
    top: 50%;
    left: 60%;
    background: radial-gradient(circle, rgba(79, 70, 229, 0.25) 0%, transparent 60%);
}

/* Glassmorphism Classes */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2rem;
}

/* Navigation */
.glass-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(11, 14, 20, 0.7);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    padding: 1rem 0;
}
.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1.5rem;
}
.brand-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--text-main);
    text-decoration: none;
    letter-spacing: -0.5px;
}
.brand-logo i {
    color: var(--acc-primary);
}
.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}
.nav-links a {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}
.nav-links a:hover {
    color: var(--acc-primary);
}
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-main);
    cursor: pointer;
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, var(--acc-primary), var(--acc-secondary));
    color: white !important;
    padding: 0.6rem 1.5rem;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-block;
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px var(--acc-glow);
}

/* Main Content Area */
#app-root {
    flex: 1;
    display: flex;
    flex-direction: column;
    animation: fadeIn 0.5s ease-out forwards;
}

/* Footer */
.glass-footer {
    margin-top: 4rem;
    border-top: 1px solid var(--glass-border);
    padding: 3rem 1.5rem 1.5rem;
    background: rgba(0,0,0,0.2);
}
.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}
.footer-brand h3 { margin-bottom: 0.5rem; }
.footer-links { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a { color: var(--text-muted); text-decoration: none; transition: 0.2s; }
.footer-links a:hover { color: var(--text-main); }
.footer-socials { display: flex; gap: 1rem; }
.footer-socials i { cursor: pointer; transition: 0.2s; color: var(--text-muted); }
.footer-socials i:hover { color: var(--acc-primary); }
.footer-bottom {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--glass-border);
}

/* Page Standard Layouts */
.page-container {
    padding: 4rem 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}
.page-header {
    text-align: center;
    margin-bottom: 4rem;
}
.page-header h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(to right, #fff, #a5b4fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.page-header p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    min-height: 80vh;
    padding: 0 1.5rem;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    gap: 4rem;
}
.hero-content {
    flex: 1;
    z-index: 10;
}
.hero h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}
.hero-highlight {
    color: var(--acc-primary);
    position: relative;
}
.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 500px;
}
.hero-stats {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
}
.stat {
    display: flex;
    flex-direction: column;
}
.stat-number {
    font-size: 2rem;
    font-weight: 800;
    font-family: var(--font-heading);
    color: var(--text-main);
}
.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
}
.hero-visual {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
/* Abstract shape for hero */
.abstract-shape {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, var(--acc-primary), var(--acc-secondary));
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: morph 8s ease-in-out infinite;
    box-shadow: inset 20px 20px 60px rgba(0,0,0,0.5), 0 0 40px var(--acc-glow);
}

/* Grid Layouts */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

/* Forms */
.form-group {
    margin-bottom: 1.5rem;
}
.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-size: 0.95rem;
}
.form-control {
    width: 100%;
    padding: 0.8rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--text-main);
    font-family: var(--font-body);
    transition: all 0.3s;
}
.form-control:focus {
    outline: none;
    border-color: var(--acc-primary);
    box-shadow: 0 0 0 2px rgba(124, 58, 237, 0.2);
}
textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes morph {
    0% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
    50% { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; }
    100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .menu-toggle { display: block; }
    .hero { flex-direction: column; text-align: center; padding-top: 4rem; }
    .hero-stats { justify-content: center; }
    .hero p { margin: 0 auto 2rem; }
    .grid-2 { grid-template-columns: 1fr; }
    .abstract-shape { width: 300px; height: 300px; }
    .footer-content { grid-template-columns: 1fr; text-align: center; }
    .footer-links { align-items: center; }
    .footer-socials { justify-content: center; }
}
