/* Global Styles */
body {
    font-family: 'Inter', system-ui, sans-serif;
    background-color: #f5f3ff;
}

.gradient-text {
    background: linear-gradient(135deg, #6d28d9 0%, #a78bfa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.glass-nav {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 10px 40px -10px rgba(124, 58, 237, 0.1);
}

#particle-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.hero-bg {
    background: linear-gradient(135deg, #1e1b4b 0%, #4c1d95 50%, #312e81 100%);
    position: relative;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(167, 139, 250, 0.2) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
}

/* Secondary Page Specifics */
.sub-hero {
    padding-top: 8rem;
    padding-bottom: 4rem;
}