:root {
    --color-bg: #0a0a0f;
    --color-bg-deep: #050508;
    --color-gold: #d4a853;
    --color-gold-light: #f0d890;
    --color-gold-dark: #a67c32;
    --color-text: #e8e4dc;
    --color-text-muted: #9a9590;
    --color-accent: #6b5b95;
    --color-cosmic: #1a1a2e;
    --color-blue: #4285F4;
    --color-green: #34A853;
    --color-red: #EA4335;
    --font-display: 'Cinzel', serif;
    --font-body: 'Cormorant Garamond', serif;
    --font-modern: 'Outfit', sans-serif;
}

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

body {
    font-family: var(--font-body);
    background: var(--color-bg);
    color: var(--color-text);
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.7;
}

/* Starfield */
.starfield { position: fixed; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; z-index: 0; }
.stars {
    position: absolute; width: 100%; height: 100%;
    background-image:
        radial-gradient(2px 2px at 20px 30px, #fff, transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(255,255,255,0.8), transparent),
        radial-gradient(1px 1px at 90px 40px, #fff, transparent),
        radial-gradient(2px 2px at 160px 120px, rgba(255,255,255,0.9), transparent),
        radial-gradient(1px 1px at 230px 80px, #fff, transparent),
        radial-gradient(2px 2px at 300px 150px, rgba(255,255,255,0.7), transparent),
        radial-gradient(1px 1px at 370px 200px, #fff, transparent),
        radial-gradient(2px 2px at 450px 50px, rgba(255,255,255,0.8), transparent);
    background-size: 500px 300px;
    animation: twinkle 8s ease-in-out infinite;
}
.stars:nth-child(2) { background-position: 50px 50px; animation-delay: -2s; opacity: 0.6; }
.stars:nth-child(3) { background-position: 100px 100px; animation-delay: -4s; opacity: 0.4; }
@keyframes twinkle { 0%,100% { opacity: 1; } 50% { opacity: 0.5; } }

.cosmic-gradient {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background:
        radial-gradient(ellipse at 20% 20%, rgba(107,91,149,0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(212,168,83,0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(26,26,46,0.8) 0%, transparent 70%);
    pointer-events: none; z-index: 1;
}

.content { position: relative; z-index: 10; }

/* Navigation */
nav {
    position: fixed; top: 0; left: 0; right: 0;
    padding: 1.2rem 3rem;
    display: flex; justify-content: space-between; align-items: center;
    z-index: 100;
    background: linear-gradient(to bottom, rgba(10,10,15,0.95), rgba(10,10,15,0.7), transparent);
    backdrop-filter: blur(10px);
}
.logo {
    font-family: var(--font-display); font-size: 1.4rem; font-weight: 500;
    color: var(--color-gold); letter-spacing: 0.15em; text-decoration: none;
}
.logo-sanskrit { font-size: 0.7rem; display: block; color: var(--color-text-muted); letter-spacing: 0.3em; margin-top: 2px; }
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a {
    font-family: var(--font-modern); font-size: 0.85rem; font-weight: 400;
    color: var(--color-text-muted); text-decoration: none; letter-spacing: 0.05em;
    transition: color 0.3s ease;
}
.nav-links a:hover { color: var(--color-gold); }
.nav-cta {
    font-family: var(--font-modern); font-size: 0.85rem; font-weight: 400;
    padding: 0.7rem 1.8rem; background: transparent;
    border: 1px solid var(--color-gold); color: var(--color-gold);
    cursor: pointer; letter-spacing: 0.1em; transition: all 0.3s ease; text-decoration: none;
}
.nav-cta:hover { background: var(--color-gold); color: var(--color-bg); }

/* Hero */
.hero {
    min-height: 100vh; display: flex; flex-direction: column;
    justify-content: center; align-items: center; text-align: center;
    padding: 6rem 2rem 4rem;
}
.hero-symbol { font-size: 3rem; color: var(--color-gold); margin-bottom: 2rem; animation: float 6s ease-in-out infinite; text-shadow: 0 0 30px rgba(212,168,83,0.5); }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-15px); } }
.hero h1 {
    font-family: var(--font-display); font-size: clamp(2.5rem,8vw,5rem); font-weight: 400;
    letter-spacing: 0.2em; color: var(--color-gold-light); margin-bottom: 1rem;
    text-shadow: 0 0 60px rgba(212,168,83,0.3);
}
.hero-tagline { font-family: var(--font-body); font-size: clamp(1.1rem,3vw,1.5rem); font-weight: 300; font-style: italic; color: var(--color-text); max-width: 600px; margin-bottom: 1.5rem; opacity: 0.9; }
.hero-description { font-family: var(--font-modern); font-size: 1rem; font-weight: 300; color: var(--color-text-muted); max-width: 560px; margin-bottom: 2.5rem; line-height: 1.8; }
.hero-badges { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; margin-bottom: 2rem; }
.hero-badge {
    font-family: var(--font-modern); font-size: 0.75rem; padding: 0.5rem 1.2rem;
    border: 1px solid rgba(212,168,83,0.3); border-radius: 50px;
    color: var(--color-gold); letter-spacing: 0.05em;
    background: rgba(212,168,83,0.08);
}

/* Sections */
section { padding: 7rem 2rem; max-width: 1200px; margin: 0 auto; }
.section-label {
    font-family: var(--font-modern); font-size: 0.75rem; font-weight: 500;
    letter-spacing: 0.3em; color: var(--color-gold); text-transform: uppercase; margin-bottom: 1rem;
}
.section-title {
    font-family: var(--font-display); font-size: clamp(1.8rem,5vw,2.8rem); font-weight: 400;
    color: var(--color-text); margin-bottom: 1.5rem; letter-spacing: 0.05em;
}
.section-subtitle { font-family: var(--font-modern); font-size: 1.05rem; color: var(--color-text-muted); max-width: 700px; line-height: 1.8; font-weight: 300; }
.section-center { text-align: center; }
.section-center .section-subtitle { margin: 0 auto 4rem; }

/* Stats Bar */
.stats-bar {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem; padding: 4rem 2rem; max-width: 1000px; margin: 0 auto;
    border-top: 1px solid rgba(212,168,83,0.15); border-bottom: 1px solid rgba(212,168,83,0.15);
}
.stat-item { text-align: center; }
.stat-number { font-family: var(--font-display); font-size: 2.5rem; color: var(--color-gold-light); letter-spacing: 0.05em; }
.stat-label { font-family: var(--font-modern); font-size: 0.8rem; color: var(--color-text-muted); letter-spacing: 0.15em; text-transform: uppercase; margin-top: 0.5rem; }

/* Product Cards */
.shakti-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2.5rem; margin-top: 3rem; }
.shakti-card {
    background: linear-gradient(145deg, rgba(26,26,46,0.6), rgba(10,10,15,0.8));
    border: 1px solid rgba(212,168,83,0.2); padding: 2.5rem 2rem;
    position: relative; overflow: hidden; transition: all 0.4s ease;
}
.shakti-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, transparent, var(--color-gold), transparent); opacity: 0; transition: opacity 0.4s ease; }
.shakti-card:hover { transform: translateY(-5px); border-color: rgba(212,168,83,0.4); box-shadow: 0 20px 60px rgba(0,0,0,0.4); }
.shakti-card:hover::before { opacity: 1; }
.shakti-symbol { font-size: 2.5rem; margin-bottom: 1.5rem; }
.shakti-name { font-family: var(--font-display); font-size: 1.3rem; color: var(--color-gold-light); letter-spacing: 0.1em; margin-bottom: 0.5rem; }
.shakti-sanskrit { font-family: var(--font-body); font-size: 0.9rem; color: var(--color-text-muted); font-style: italic; margin-bottom: 1.2rem; }
.shakti-description { font-family: var(--font-modern); font-size: 0.95rem; font-weight: 300; color: var(--color-text); line-height: 1.8; }
.shakti-status { display: inline-block; margin-top: 1.5rem; font-family: var(--font-modern); font-size: 0.75rem; letter-spacing: 0.15em; padding: 0.5rem 1rem; border-radius: 2px; }
.status-live { background: rgba(212,168,83,0.2); color: var(--color-gold); }
.status-coming { background: rgba(107,91,149,0.2); color: var(--color-accent); }
a.shakti-status { text-decoration: none; transition: all 0.3s ease; }
a.shakti-status:hover { background: rgba(212,168,83,0.4); transform: translateX(5px); }

/* How It Works */
.how-it-works-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 2rem; margin-top: 3rem; counter-reset: step; }
.step-card {
    text-align: center; padding: 2.5rem 1.5rem; position: relative;
    background: linear-gradient(145deg, rgba(26,26,46,0.4), rgba(10,10,15,0.6));
    border: 1px solid rgba(212,168,83,0.1); transition: all 0.3s ease;
}
.step-card:hover { border-color: rgba(212,168,83,0.3); }
.step-number {
    font-family: var(--font-display); font-size: 2.5rem; color: var(--color-gold);
    opacity: 0.3; margin-bottom: 1rem;
}
.step-card h3 { font-family: var(--font-display); font-size: 1rem; color: var(--color-gold-light); letter-spacing: 0.1em; margin-bottom: 0.8rem; }
.step-card p { font-family: var(--font-modern); font-size: 0.9rem; color: var(--color-text-muted); line-height: 1.7; font-weight: 300; }

/* Technology Section */
.tech-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; margin-top: 3rem; }
.tech-stack-list { list-style: none; display: flex; flex-direction: column; gap: 1.5rem; }
.tech-stack-list li {
    font-family: var(--font-modern); font-size: 0.95rem; font-weight: 300;
    color: var(--color-text); padding: 1.2rem 1.5rem;
    background: linear-gradient(135deg, rgba(26,26,46,0.5), rgba(10,10,15,0.7));
    border-left: 2px solid var(--color-gold); line-height: 1.6;
}
.tech-stack-list li strong { color: var(--color-gold-light); font-weight: 500; display: block; margin-bottom: 0.3rem; }
.tech-description p { font-family: var(--font-modern); font-size: 1rem; color: var(--color-text-muted); line-height: 1.8; font-weight: 300; margin-bottom: 1.5rem; }
.cloud-badge {
    display: inline-flex; align-items: center; gap: 0.75rem;
    padding: 1rem 1.5rem; border: 1px solid rgba(66,133,244,0.3);
    border-radius: 8px; background: rgba(66,133,244,0.08);
    font-family: var(--font-modern); font-size: 0.85rem; color: #8ab4f8; margin-top: 1rem;
}
.cloud-badge svg { width: 24px; height: 24px; }

/* About / Team */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-content p { font-family: var(--font-modern); font-size: 1rem; margin-bottom: 1.5rem; color: var(--color-text); line-height: 1.8; font-weight: 300; }
.founder-card {
    padding: 2.5rem; background: linear-gradient(145deg, rgba(26,26,46,0.6), rgba(10,10,15,0.8));
    border: 1px solid rgba(212,168,83,0.2); text-align: center;
}
.founder-avatar {
    width: 100px; height: 100px; border-radius: 50%;
    background: linear-gradient(135deg, var(--color-gold-dark), var(--color-gold));
    margin: 0 auto 1.5rem; display: flex; align-items: center; justify-content: center;
    font-size: 2.5rem; color: var(--color-bg);
}
.founder-name { font-family: var(--font-display); font-size: 1.3rem; color: var(--color-gold-light); letter-spacing: 0.1em; margin-bottom: 0.3rem; }
.founder-role { font-family: var(--font-modern); font-size: 0.85rem; color: var(--color-text-muted); margin-bottom: 1rem; }
.founder-bio { font-family: var(--font-modern); font-size: 0.9rem; color: var(--color-text); line-height: 1.7; font-weight: 300; }
.company-details { margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid rgba(212,168,83,0.15); }
.company-details p { font-family: var(--font-modern); font-size: 0.85rem; color: var(--color-text-muted); margin-bottom: 0.5rem; }

/* CTA */
.cta-section { text-align: center; padding: 8rem 2rem; background: linear-gradient(to bottom, transparent, rgba(26,26,46,0.3), transparent); }
.cta-box { max-width: 550px; margin: 0 auto; }
.cta-section p { font-size: 1.1rem; color: var(--color-text-muted); margin-bottom: 2.5rem; }
.whatsapp-cta {
    display: inline-flex; align-items: center; gap: 0.75rem;
    padding: 1.2rem 3rem; font-family: var(--font-display); font-size: 1rem; letter-spacing: 0.1em;
    background: linear-gradient(135deg, #25d366, #128c7e); border: none; border-radius: 50px;
    color: #fff; text-decoration: none; cursor: pointer; transition: all 0.4s ease;
    box-shadow: 0 8px 32px rgba(37,211,102,0.3);
}
.whatsapp-cta:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(37,211,102,0.45); }
.whatsapp-cta svg { width: 24px; height: 24px; fill: #fff; }
.cta-note { font-family: var(--font-modern); font-size: 0.85rem; color: var(--color-text-muted); margin-top: 1.5rem; }

/* Footer */
footer { text-align: center; padding: 4rem 2rem; border-top: 1px solid rgba(212,168,83,0.1); }
.footer-logo { font-family: var(--font-display); font-size: 1.2rem; color: var(--color-gold); letter-spacing: 0.2em; margin-bottom: 0.5rem; }
.footer-tagline { font-family: var(--font-body); font-style: italic; color: var(--color-text-muted); font-size: 1rem; margin-bottom: 1.5rem; }
.footer-links { display: flex; gap: 2rem; justify-content: center; flex-wrap: wrap; margin-bottom: 1.5rem; }
.footer-links a { font-family: var(--font-modern); font-size: 0.85rem; color: var(--color-text-muted); text-decoration: none; letter-spacing: 0.1em; transition: color 0.3s ease; }
.footer-links a:hover { color: var(--color-gold); }
.footer-contact { font-family: var(--font-modern); font-size: 0.85rem; color: var(--color-text-muted); margin-bottom: 1.5rem; }
.footer-contact a { color: var(--color-gold); text-decoration: none; }
.footer-copy { font-family: var(--font-modern); font-size: 0.75rem; color: var(--color-text-muted); opacity: 0.6; }

/* Animations */
.fade-in { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease, transform 0.8s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* Responsive */
@media (max-width: 900px) {
    .tech-grid, .about-grid { grid-template-columns: 1fr; gap: 3rem; }
    .nav-links a:not(.nav-cta) { display: none; }
}
@media (max-width: 768px) {
    nav { padding: 1rem 1.5rem; }
    .logo { font-size: 1.1rem; }
    .nav-cta { padding: 0.5rem 1rem; font-size: 0.75rem; }
    section { padding: 5rem 1.5rem; }
    .whatsapp-cta { padding: 1rem 2rem; font-size: 0.9rem; }
}
