/* Palette: Deep Void, Neon Purple, Lavender, White */
:root {
    --bg: #050505;
    --card-bg: rgba(255, 255, 255, 0.05);
    --purple: #8A2BE2;
    --purple-light: #E0B0FF;
    --text: #FFFFFF;
    --text-muted: #B3B3B3;
    
    --font: 'Outfit', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: var(--font);
    line-height: 1.6;
    overflow-x: hidden;
}

.container { width: 90%; max-width: 1200px; margin: 0 auto; }
.section-padding { padding: 120px 0; }
a { text-decoration: none; color: inherit; transition: 0.3s; }

/* Ambient Background */
.ambient-glow {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at 20% 30%, rgba(138, 43, 226, 0.15), transparent 40%),
                radial-gradient(circle at 80% 70%, rgba(75, 0, 130, 0.15), transparent 40%);
    z-index: -1;
    pointer-events: none;
}

/* Header */
.glass-header { padding: 20px 0; background: rgba(5, 5, 5, 0.7); backdrop-filter: blur(10px); position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid rgba(255, 255, 255, 0.05); }
.header-row { display: flex; justify-content: space-between; align-items: center; }

.logo { font-size: 1.5rem; font-weight: 700; letter-spacing: 2px; }
.purple { color: var(--purple); }

.future-nav a { margin-left: 30px; font-weight: 500; color: var(--text-muted); font-size: 0.9rem; text-transform: uppercase; }
.future-nav a:hover, .future-nav a.active { color: var(--purple-light); text-shadow: 0 0 10px rgba(224, 176, 255, 0.5); }

.menu-btn { display: none; background: transparent; border: 1px solid var(--purple); color: var(--purple); padding: 8px 15px; border-radius: 20px; cursor: pointer; }

/* Mobile Menu */
.mobile-nav { position: fixed; top: 0; right: -100%; width: 100%; height: 100%; background: #000; z-index: 2000; display: flex; flex-direction: column; justify-content: center; align-items: center; transition: 0.4s; }
.mobile-nav.active { right: 0; }
.close-btn { position: absolute; top: 30px; right: 30px; background: none; border: none; font-size: 2rem; color: var(--text); cursor: pointer; }
.mobile-nav a { font-size: 2rem; margin: 15px 0; font-weight: 700; }

@media (max-width: 900px) {
    .future-nav { display: none; }
    .menu-btn { display: block; }
}

/* Hero */
.hero-vision { padding: 100px 0; text-align: center; display: flex; align-items: center; min-height: 80vh; }
.hero-content { max-width: 900px; }

.pill-tag { background: rgba(138, 43, 226, 0.2); color: var(--purple-light); padding: 5px 15px; border-radius: 50px; font-size: 0.8rem; font-weight: 700; display: inline-block; margin-bottom: 20px; border: 1px solid rgba(138, 43, 226, 0.3); }
.hero-content h1 { font-size: 4.5rem; line-height: 1.1; font-weight: 900; margin-bottom: 30px; }
.text-gradient { background: linear-gradient(90deg, #FFFFFF, #E0B0FF); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.hero-content p { font-size: 1.3rem; color: var(--text-muted); margin-bottom: 50px; max-width: 600px; margin-left: auto; margin-right: auto; }

.hero-actions { display: flex; justify-content: center; gap: 20px; }
.btn-primary { background: linear-gradient(135deg, var(--purple), #4B0082); color: white; padding: 15px 40px; border-radius: 50px; font-weight: 700; border: none; box-shadow: 0 0 20px rgba(138, 43, 226, 0.4); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 0 30px rgba(138, 43, 226, 0.6); }
.btn-secondary { background: transparent; border: 1px solid var(--text-muted); color: var(--text); padding: 14px 40px; border-radius: 50px; font-weight: 700; }
.btn-secondary:hover { border-color: var(--text); background: rgba(255,255,255,0.05); }

/* Pillars */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.pillar-card { background: var(--card-bg); padding: 40px; border-radius: 20px; border: 1px solid rgba(255,255,255,0.05); transition: 0.3s; }
.pillar-card:hover { background: rgba(255,255,255,0.1); border-color: var(--purple); }
.icon-circle { width: 60px; height: 60px; background: rgba(138, 43, 226, 0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 20px; color: var(--purple-light); }
.pillar-card h3 { font-size: 1.5rem; margin-bottom: 10px; }
.pillar-card p { color: var(--text-muted); }

/* Quote */
.vision-quote { padding: 80px 0; text-align: center; border-top: 1px solid rgba(255,255,255,0.05); border-bottom: 1px solid rgba(255,255,255,0.05); }
.vision-quote blockquote { font-size: 2.5rem; font-weight: 300; color: var(--purple-light); margin-bottom: 20px; line-height: 1.3; }
.vision-quote cite { color: var(--text-muted); font-style: normal; text-transform: uppercase; letter-spacing: 2px; }

/* About */
.about-flex { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-text h1 { font-size: 3rem; margin-bottom: 20px; }
.purple-line { width: 80px; height: 4px; background: var(--purple); margin-bottom: 30px; border-radius: 2px; }
.lead { font-size: 1.2rem; color: var(--text); margin-bottom: 30px; font-weight: 500; }
.about-text p { color: var(--text-muted); margin-bottom: 30px; }
.glow-list { list-style: none; }
.glow-list li { margin-bottom: 15px; padding-left: 20px; border-left: 2px solid var(--purple-light); color: var(--text); font-weight: 700; font-size: 1.1rem; }

.orb { width: 300px; height: 300px; border-radius: 50%; background: linear-gradient(45deg, var(--purple), #4B0082); filter: blur(60px); margin: 0 auto; opacity: 0.6; animation: pulse 5s infinite alternate; }
@keyframes pulse { 0% { transform: scale(1); opacity: 0.6; } 100% { transform: scale(1.1); opacity: 0.8; } }

/* Testimonials */
.center { text-align: center; }
.section-head { margin-bottom: 60px; }
.section-head h1 { font-size: 3rem; margin-bottom: 10px; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.t-card-glass { background: rgba(255, 255, 255, 0.03); backdrop-filter: blur(10px); padding: 40px; border-radius: 20px; border: 1px solid rgba(255,255,255,0.05); }
.t-card-glass.highlight { border-color: var(--purple); box-shadow: 0 0 30px rgba(138, 43, 226, 0.15); }
.t-content { font-style: italic; margin-bottom: 30px; color: var(--text-muted); font-size: 1.1rem; }
.t-author strong { display: block; color: var(--white); font-size: 1rem; }
.t-author span { font-size: 0.8rem; color: var(--purple-light); }

/* Contact */
.contact-wrapper { display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; }
.contact-text h2 { font-size: 2.5rem; margin-bottom: 20px; }
.contact-details { margin-top: 40px; font-size: 1.2rem; font-weight: 500; color: var(--purple-light); }

.future-form .input-group { margin-bottom: 25px; }
.future-form label { display: block; margin-bottom: 10px; color: var(--text-muted); font-size: 0.9rem; }
.future-form input, .future-form select, .future-form textarea { width: 100%; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); color: var(--text); padding: 15px; border-radius: 10px; font-family: var(--font); font-size: 1rem; }
.future-form input:focus { border-color: var(--purple); outline: none; }
.btn-glow-full { width: 100%; background: var(--purple); color: white; padding: 15px; border-radius: 10px; font-weight: 700; border: none; cursor: pointer; box-shadow: 0 0 15px rgba(138, 43, 226, 0.3); transition: 0.3s; }
.btn-glow-full:hover { background: #9B30FF; }

/* Legal */
.legal-content { max-width: 800px; margin: 0 auto; color: var(--text-muted); }
.legal-content h1 { color: var(--text); }

/* Footer */
.vision-footer { padding: 80px 0 30px; border-top: 1px solid rgba(255,255,255,0.05); margin-top: 100px; }
.footer-grid { display: flex; justify-content: space-between; align-items: center; margin-bottom: 40px; }
.f-brand h4 { font-size: 1.5rem; margin-bottom: 5px; }
.f-links a { margin-left: 20px; color: var(--text-muted); }
.f-links a:hover { color: var(--purple-light); }
.copyright { text-align: center; font-size: 0.8rem; color: #555; }

@media (max-width: 900px) {
    .hero-content h1 { font-size: 3rem; }
    .grid-3, .about-flex, .testimonials-grid, .contact-wrapper { grid-template-columns: 1fr; }
    .hero-actions { flex-direction: column; }
    .footer-grid { flex-direction: column; gap: 30px; text-align: center; }
}