:root {
    --color-bg-start: #6c006c;
    --color-bg-mid1: #4f158a;
    --color-bg-mid2: #2f1fa1;
    --color-bg-mid3: #0025b6;
    --color-bg-end: #0029cc;
    --neon-pink: #f900bf;
    --neon-cyan: #0ffbfb;
    --text-light: #f0f0f0;
    --text-mid: #c0c0c0;
    --card-bg-color: rgba(10, 5, 30, 0.7);
    --card-border-color: rgba(100, 50, 150, 0.5);
}

/* --- BASE & BACKGROUNDS --- */
body {
    font-family: 'Rajdhani', sans-serif;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    color: var(--text-light);
    background-color: var(--color-bg-start); /* Fallback */
    overflow-x: hidden;
    position: relative;
}
#dynamic-background {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: -2;
    background: linear-gradient(135deg, var(--color-bg-start), var(--color-bg-mid1) 25%, var(--color-bg-mid2) 50%, var(--color-bg-mid3) 75%, var(--color-bg-end));
    animation: subtleShift 20s ease-in-out infinite alternate;
}
#particle-overlay {
    position: fixed; top:0; left:0; width:100%; height:100%;
    pointer-events: none; z-index: -1;
}
@keyframes subtleShift {
    0% { background-position: 0% 0%; filter: hue-rotate(0deg) brightness(100%); }
    50% { filter: hue-rotate(20deg) brightness(110%); }
    100% { background-position: 100% 100%; filter: hue-rotate(-10deg) brightness(90%); }
}

/* --- LAYOUT & TYPOGRAPHY --- */
.page-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 6rem 1.5rem 4rem 1.5rem;
}
.content-section {
    margin-bottom: 4rem;
}
.text-center { text-align: center; }
.main-logo { height: 4rem; margin: 0 auto 1.5rem auto; mix-blend-mode: screen; opacity: 0.8; }
.section-title {
    font-family: 'Audiowide', cursive;
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
}
.section-paragraph {
    font-size: 1.125rem;
    line-height: 1.6;
    max-width: 48rem;
    margin: 0 auto 1.5rem auto;
    color: var(--text-mid);
}
.section-quote {
    font-style: italic;
    font-size: 1.25rem;
    font-weight: 600;
    max-width: 48rem;
    margin: 0 auto;
}
.vision-tagline {
    font-family: 'Audiowide', cursive;
    font-style: italic;
    font-size: 1.5rem;
    margin-top: 0.5rem;
}
.neon-text-pink { color: #fff; text-shadow: 0 0 5px var(--neon-pink), 0 0 10px var(--neon-pink), 0 0 20px var(--neon-pink), 0 0 30px #a1007a; }
.neon-text-cyan { color: #fff; text-shadow: 0 0 5px var(--neon-cyan), 0 0 10px var(--neon-cyan), 0 0 20px var(--neon-cyan), 0 0 30px #00a1a1; }

/* --- CARDS & GRIDS --- */
.feature-grid, .steps-grid {
    display: grid;
    gap: 1.5rem;
}
.card {
    background-color: var(--card-bg-color);
    backdrop-filter: blur(8px);
    border: 1px solid var(--card-border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 1.5rem;
    border-radius: 0.75rem;
    text-align: center;
}
.card:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.2), 0 0 15px var(--neon-pink); }
.card.cyan-hover:hover { box-shadow: 0 10px 20px rgba(0,0,0,0.2), 0 0 15px var(--neon-cyan); }
.card-icon { font-size: 3rem; margin-bottom: 1rem; }
.card-title { font-family: 'Orbitron', sans-serif; font-size: 1.25rem; font-weight: 600; margin-bottom: 0.5rem; }
.card-text { font-size: 0.875rem; color: var(--text-mid); line-height: 1.6; }
.icon-glow-pink { color: var(--neon-pink); filter: drop-shadow(0 0 8px var(--neon-pink)); }
.icon-glow-cyan { color: var(--neon-cyan); filter: drop-shadow(0 0 8px var(--neon-cyan)); }
.step-number { font-family: 'Orbitron', sans-serif; font-size: 3rem; font-weight: 700; margin-bottom: 1rem; }

/* --- MOBILE MENU --- */
#menu-toggle { position: fixed; top: 1.5rem; right: 1.5rem; font-size: 1.5rem; color: var(--text-light); background: rgba(10, 5, 30, 0.5); border: 1px solid transparent; border-radius: 8px; width: 44px; height: 44px; cursor: pointer; z-index: 1001; transition: all 0.2s; display: flex; align-items: center; justify-content: center; }
#menu-toggle:hover { color: var(--neon-pink); }
.hidden { display: none; }
#slide-menu { position: fixed; top: 0; right: 0; width: 280px; max-width: 80vw; height: 100%; background-color: rgba(10, 5, 30, 0.95); backdrop-filter: blur(10px); z-index: 1000; padding-top: 6rem; box-shadow: -5px 0 15px rgba(0,0,0,0.3); transform: translateX(100%); transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1); }
#slide-menu.open { transform: translateX(0); }
#slide-menu ul { list-style: none; padding: 0; margin: 0; }
#slide-menu ul li a { display: block; padding: 15px 25px; color: var(--text-light); text-decoration: none; font-family: 'Orbitron', sans-serif; font-size: 1.1rem; transition: color 0.2s, background-color 0.2s; border-bottom: 1px solid rgba(255,255,255,0.1); }
#slide-menu ul li a:hover { color: var(--neon-pink); background-color: rgba(249, 0, 191, 0.1); }
#slide-menu ul li a.active { color: var(--neon-cyan); background-color: rgba(0, 255, 251, 0.1); font-weight: bold; }

/* --- FOOTER --- */
.footer { text-align: center; padding: 2rem 1rem; margin-top: 4rem; color: var(--text-mid); font-size: 0.9rem; border-top: 1px solid var(--card-border-color); }
.footer-logo { height: 2.5rem; margin: 0 auto 1rem auto; mix-blend-mode: screen; opacity: 0.7; }
.footer-links { margin-top: 1rem; }
.footer-links a { margin: 0 0.75rem; color: var(--text-mid); text-decoration: none; transition: color 0.2s; font-size: 0.75rem; }
.footer-links a:hover { color: var(--neon-pink); }

/* --- RESPONSIVE BREAKPOINTS --- */
@media (min-width: 768px) {
    .main-logo { height: 5rem; }
    .section-title { font-size: 3rem; }
    .section-paragraph, .section-quote { font-size: 1.25rem; }
    .vision-tagline { font-size: 1.875rem; }
    .feature-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
    .steps-grid { grid-template-columns: repeat(3, 1fr); gap: 3rem; }
}
@media (min-width: 1024px) {
    .feature-grid { grid-template-columns: repeat(3, 1fr); }
}