/* -- CSS Reset & Root -- */
:root {
    --bg-dark: #060b19;
    --electric-blue: #00c3ff;
    --electric-blue-glow: rgba(0, 195, 255, 0.4);
    --sunburst-gold: #ffae00;
    --sunburst-gold-glow: rgba(255, 174, 0, 0.4);
    --text-main: #f0f4ff;
    --text-muted: #a0a8be;
    
    --glass-bg: rgba(16, 24, 46, 0.4);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    line-height: 1.6;
    position: relative;
}

/* -- Background Effects -- */
.stars {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: radial-gradient(var(--glass-border) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.3;
    z-index: -2;
}

.glow-orb {
    position: fixed;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(120px);
    z-index: -1;
    animation: drift 20s infinite alternate linear;
}

.glow-orb.blue {
    background: var(--electric-blue-glow);
    top: -200px;
    right: -100px;
}

.glow-orb.gold {
    background: var(--sunburst-gold-glow);
    bottom: -200px;
    left: -100px;
    animation-delay: -10s;
}

@keyframes drift {
    0% { transform: translate(0, 0); }
    100% { transform: translate(-100px, 100px); }
}

/* -- Typography -- */
h1, h2, h3, h4, .nav-brand {
    font-family: 'Outfit', sans-serif;
}

/* -- Navigation -- */
.glass-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    position: fixed;
    top: 0; width: 100%;
    z-index: 100;
    background: rgba(6, 11, 25, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 2px;
    background: linear-gradient(90deg, var(--sunburst-gold), var(--electric-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* -- Hero Section -- */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 100vh;
    padding: 0 10%;
    margin-top: 4rem;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    position: relative;
    z-index: 10;
}

.badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(0, 195, 255, 0.1);
    border: 1px solid var(--electric-blue);
    color: var(--electric-blue);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.title {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.highlight {
    background: linear-gradient(90deg, var(--sunburst-gold), #ffd000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px var(--sunburst-gold-glow);
}

.subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.store-badges {
    display: flex;
    gap: 1.5rem;
}

.store-btn img {
    height: 55px;
    width: auto;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.store-btn:hover img {
    transform: translateY(-3px);
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.5));
}

.google-play img {
    height: 80px;
    margin-top: -12px; /* Adjusting for baseline diff in typical badges */
}

/* -- Hero Visual / Logo Art -- */
.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.logo-container {
    position: relative;
    width: 400px;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.app-icon {
    width: 250px;
    height: 250px;
    border-radius: 55px;
    z-index: 5;
    box-shadow: 0 20px 50px rgba(0, 195, 255, 0.3), inset 0 0 0 2px rgba(255,255,255,0.2);
    animation: float 6s ease-in-out infinite;
    object-fit: cover;
}

.logo-glow {
    position: absolute;
    width: 100%; height: 100%;
    background: radial-gradient(circle, var(--electric-blue-glow) 0%, transparent 70%);
    z-index: 1;
    animation: pulse 4s ease-in-out infinite alternate;
}

.orbit-ring {
    position: absolute;
    border: 1px dashed rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
}

.ring-1 { width: 320px; height: 320px; animation: spin 20s linear infinite; border-style: solid; border-color: rgba(0, 195, 255, 0.2) transparent transparent transparent; }
.ring-2 { width: 420px; height: 420px; animation: spin-reverse 35s linear infinite; border-color: rgba(255, 174, 0, 0.2) transparent transparent transparent; border-style: solid; }
.ring-3 { width: 550px; height: 550px; animation: spin 50s linear infinite; opacity: 0.5;}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

@keyframes pulse {
    0% { transform: scale(0.8); opacity: 0.5; }
    100% { transform: scale(1.1); opacity: 1; }
}

@keyframes spin { 100% { transform: translate(-50%, -50%) rotate(360deg); } }
@keyframes spin-reverse { 100% { transform: translate(-50%, -50%) rotate(-360deg); } }

/* -- Features Section -- */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 5rem 10%;
    position: relative;
    z-index: 10;
}

.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: var(--glass-shadow);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
}

.glass-panel.visible {
    opacity: 1;
    transform: translateY(0);
}

.glass-panel:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 195, 255, 0.15);
    border-color: rgba(0, 195, 255, 0.3);
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    padding: 1rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.05);
}

.card-icon.electric { color: var(--electric-blue); text-shadow: 0 0 15px var(--electric-blue); }
.card-icon.strategic { color: var(--sunburst-gold); text-shadow: 0 0 15px var(--sunburst-gold); }

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 1rem;
}

/* -- Footer -- */
footer {
    padding: 2rem 10%;
    margin-top: 4rem;
}

.glass-footer {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    border-top: 1px solid var(--glass-border);
    border-radius: 24px 24px 0 0;
    padding: 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-brand {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #fff;
    letter-spacing: 1px;
}

.footer-left p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    margin-left: 1.5rem;
    transition: color 0.3s;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--electric-blue);
}

/* -- Privacy Page Styles -- */
.privacy-container {
    max-width: 800px;
    margin: 8rem auto 4rem;
    padding: 3rem;
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    box-shadow: var(--glass-shadow);
}

.privacy-container h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #fff;
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 1rem;
}

.privacy-container h2 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    color: var(--electric-blue);
}

.privacy-container p {
    margin-bottom: 1rem;
    color: var(--text-muted);
}

.privacy-container ul {
    margin-bottom: 1rem;
    padding-left: 2rem;
    color: var(--text-muted);
}

.privacy-container li {
    margin-bottom: 0.5rem;
}

/* -- Responsive -- */
@media (max-width: 992px) {
    .hero {
        flex-direction: column-reverse;
        text-align: center;
        margin-top: 6rem;
        gap: 4rem;
    }
    .title { font-size: 3.5rem; }
    .subtitle { margin: 0 auto 2rem; }
    .store-badges { justify-content: center; }
}

@media (max-width: 600px) {
    .title { font-size: 2.5rem; }
    .app-icon { width: 180px; height: 180px; }
    .ring-1, .ring-2, .ring-3 { display: none; } /* simplify on mobile */
    .glass-footer { flex-direction: column; text-align: center; }
    .footer-links a { margin: 0 0.75rem; display: inline-block; }
}
