/* Palette: Dark, Glass, Gradient (Pink/Purple/Cyan) */
:root {
    --bg-color: #050510;
    --text-color: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --gradient: linear-gradient(135deg, #FF00CC, #3333FF);
    --nav-bg: rgba(5, 5, 16, 0.8);
    
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Outfit', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    overflow-x: hidden;
    line-height: 1.6;
}

.container { width: 90%; max-width: 1200px; margin: 0 auto; position: relative; z-index: 10; }
.section-padding { padding: 100px 0; }
a { text-decoration: none; color: inherit; transition: 0.3s; }
img { max-width: 100%; height: auto; display: block; border-radius: 10px; }

/* Glowing Orbs (Background FX) */
.glowing-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    z-index: 0;
    opacity: 0.4;
}
.orb-1 { width: 400px; height: 400px; background: #FF00CC; top: -100px; left: -100px; }
.orb-2 { width: 300px; height: 300px; background: #3333FF; bottom: 100px; right: -50px; }
.orb-3 { width: 500px; height: 500px; background: #00CCFF; top: 50%; left: 50%; transform: translate(-50%, -50%); }

/* Header */
.glass-header {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    padding: 15px 30px;
    border-radius: 50px;
    z-index: 1000;
}
.header-flex { display: flex; justify-content: space-between; align-items: center; width: 100%; }

.logo { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 700; letter-spacing: 1px; }
.gradient-text { background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; font-weight: 700; }

.glass-nav a { margin-left: 30px; font-weight: 500; font-size: 0.9rem; color: rgba(255,255,255,0.7); }
.glass-nav a:hover, .glass-nav a.active { color: #fff; text-shadow: 0 0 10px rgba(255,255,255,0.5); }

/* Mobile Menu */
.menu-btn { display: none; background: none; border: none; font-size: 1.5rem; color: #fff; cursor: pointer; }
.mobile-menu { position: fixed; top: 0; left: 0; width: 100%; height: 100vh; background: rgba(5, 5, 16, 0.95); backdrop-filter: blur(20px); z-index: 2000; display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 30px; transform: translateY(-100%); transition: 0.4s; }
.mobile-menu.active { transform: translateY(0); }
.close-btn { position: absolute; top: 30px; right: 30px; font-size: 2rem; background: none; border: none; color: #fff; cursor: pointer; }
.mobile-menu a { font-family: var(--font-heading); font-size: 2rem; color: #fff; }

@media (max-width: 900px) {
    .glass-nav { display: none; }
    .menu-btn { display: block; }
    .glass-header { width: 100%; top: 0; border-radius: 0; border-left: none; border-right: none; border-top: none; }
}

/* Hero */
.hero-glass { min-height: 100vh; display: flex; align-items: center; position: relative; padding-top: 80px; }
.glass-card { background: var(--glass-bg); backdrop-filter: blur(20px); border: 1px solid var(--glass-border); padding: 50px; border-radius: 20px; box-shadow: 0 20px 50px rgba(0,0,0,0.3); }
.hero-card { max-width: 800px; margin: 0 auto; text-align: center; }

.badge { background: rgba(255,255,255,0.1); padding: 5px 15px; border-radius: 20px; font-size: 0.8rem; letter-spacing: 2px; font-weight: 700; margin-bottom: 20px; display: inline-block; border: 1px solid var(--glass-border); color: #00CCFF; }
.hero-card h1 { font-family: var(--font-heading); font-size: 4rem; line-height: 1.1; margin-bottom: 20px; background: linear-gradient(to right, #fff, #aaa); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.hero-card p { font-size: 1.2rem; color: #ccc; margin-bottom: 40px; max-width: 600px; margin-left: auto; margin-right: auto; }

.cta-row { display: flex; justify-content: center; gap: 20px; }
.btn-gradient { background: var(--gradient); border: none; padding: 15px 40px; border-radius: 50px; font-weight: 700; color: #fff; cursor: pointer; transition: 0.3s; font-family: var(--font-heading); letter-spacing: 1px; }
.btn-gradient:hover { transform: scale(1.05); box-shadow: 0 0 20px rgba(255, 0, 204, 0.5); }
.btn-glass { background: rgba(255,255,255,0.1); border: 1px solid var(--glass-border); padding: 15px 40px; border-radius: 50px; font-weight: 700; color: #fff; transition: 0.3s; }
.btn-glass:hover { background: rgba(255,255,255,0.2); }

/* Stats & Features */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.glass-stat { background: var(--glass-bg); padding: 30px; border-radius: 15px; text-align: center; border: 1px solid var(--glass-border); }
.glass-stat strong { display: block; font-family: var(--font-heading); font-size: 3rem; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.glass-stat span { font-size: 0.9rem; color: #aaa; }

.section-title { text-align: center; margin-bottom: 60px; }
.section-title h2 { font-family: var(--font-heading); font-size: 3rem; }

.feature-card { background: var(--glass-bg); padding: 40px; border-radius: 20px; border: 1px solid var(--glass-border); transition: 0.3s; }
.feature-card:hover { transform: translateY(-10px); background: rgba(255,255,255,0.08); }
.icon { font-size: 3rem; margin-bottom: 20px; }
.feature-card h3 { font-family: var(--font-heading); margin-bottom: 15px; font-size: 1.5rem; }
.feature-card p { color: #ccc; }

/* About / Timeline */
.main-wrapper { min-height: 100vh; padding-top: 100px; position: relative; overflow: hidden; }
.large { width: 100%; max-width: 1000px; margin: 0 auto; }
.timeline { margin-top: 50px; display: flex; flex-direction: column; gap: 30px; }
.t-item { border-left: 2px solid rgba(255,255,255,0.1); padding-left: 30px; position: relative; }
.t-item::before { content: ''; position: absolute; left: -6px; top: 0; width: 10px; height: 10px; background: #FF00CC; border-radius: 50%; box-shadow: 0 0 10px #FF00CC; }
.week { color: #00CCFF; font-weight: 700; font-size: 0.8rem; letter-spacing: 2px; display: block; margin-bottom: 5px; }
.t-item h3 { font-family: var(--font-heading); font-size: 1.5rem; margin-bottom: 10px; }

/* Testimonials */
.review-card { background: var(--glass-bg); padding: 30px; border-radius: 15px; border: 1px solid var(--glass-border); }
.r-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.batch { background: rgba(255,255,255,0.1); padding: 3px 8px; border-radius: 5px; font-size: 0.7rem; font-weight: 700; }
.stars { color: #FFD700; }
.review-card p { font-style: italic; color: #ddd; margin-bottom: 20px; }
.r-author strong { display: block; color: #fff; }
.r-author span { font-size: 0.8rem; color: #aaa; }

/* Contact Form */
.contact-split { display: grid; grid-template-columns: 1fr 1.5fr; gap: 50px; }
.info-box { margin-top: 30px; padding: 20px; background: rgba(255,255,255,0.05); border-radius: 10px; line-height: 2; }

.glass-form .form-group { margin-bottom: 20px; }
.glass-form label { display: block; margin-bottom: 5px; font-weight: 500; color: #ccc; }
.glass-form input, .glass-form select, .glass-form textarea { width: 100%; background: rgba(255,255,255,0.05); border: 1px solid var(--glass-border); color: #fff; padding: 12px; border-radius: 8px; font-family: var(--font-body); }
.glass-form input:focus, .glass-form textarea:focus { border-color: #FF00CC; outline: none; }
.full { width: 100%; }

/* Legal */
.legal-card { max-width: 800px; margin: 0 auto; }
.legal-card h3 { margin-top: 30px; color: #00CCFF; }

/* Footer */
.glass-footer { border-top: 1px solid var(--glass-border); padding: 60px 0 30px; background: rgba(0,0,0,0.5); backdrop-filter: blur(10px); }
.footer-content { display: flex; justify-content: space-between; align-items: center; margin-bottom: 30px; }
.f-brand h4 { font-family: var(--font-heading); font-size: 1.5rem; }
.f-links a { margin-left: 20px; color: #aaa; }
.f-links a:hover { color: #fff; }
.copyright { text-align: center; font-size: 0.8rem; color: #666; }

/* Cookie */
.cookie-popup { position: fixed; bottom: 30px; left: 30px; background: rgba(20,20,40,0.9); padding: 20px 30px; border-radius: 15px; border: 1px solid var(--glass-border); z-index: 3000; display: none; }
.cookie-popup.active { display: block; }
.cookie-popup button { background: var(--gradient); border: none; padding: 5px 15px; border-radius: 20px; color: #fff; cursor: pointer; margin-top: 10px; font-weight: 700; }

@media (max-width: 900px) {
    .grid-3, .contact-split { grid-template-columns: 1fr; }
    .hero-card h1 { font-size: 2.5rem; }
    .cta-row { flex-direction: column; }
    .footer-content { flex-direction: column; text-align: center; gap: 20px; }
}