/* CSS VARIABLES & RESET */
:root {
    --bg-color: #050505; 
    --text-main: #f9fafb;
    --text-muted: #a1a1aa;
    --primary: #6366f1; /* Indigo */
    --primary-glow: rgba(99, 102, 241, 0.5);
    --accent: #06b6d4; /* Cyan */
    --accent-glow: rgba(6, 182, 212, 0.5);
    --glass-bg: rgba(20, 20, 25, 0.6);
    --glass-border: rgba(255, 255, 255, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    position: relative;
}

/* BACKGROUND GLOW EFFECTS */
.bg-orbs {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    z-index: -1;
    overflow: hidden;
    background: radial-gradient(circle at 15% 50%, rgba(99, 102, 241, 0.08), transparent 25%),
                radial-gradient(circle at 85% 30%, rgba(6, 182, 212, 0.08), transparent 25%);
}

/* UTILITIES */
a { text-decoration: none; color: inherit; transition: all 0.3s ease; }
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    flex: 1;
    position: relative;
    z-index: 1;
}

/* ANIMATIONS */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes pulseGlow {
    0% { box-shadow: 0 0 15px var(--glass-border); }
    50% { box-shadow: 0 0 25px var(--primary-glow); border-color: var(--primary); }
    100% { box-shadow: 0 0 15px var(--glass-border); }
}

/* NAVIGATION */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
    border-bottom: 1px solid var(--glass-border);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    font-size: 1.75rem;
    font-weight: 800;
    letter-spacing: -1px;
    background: linear-gradient(to right, #fff, var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links { display: flex; gap: 30px; align-items: center; font-weight: 500; font-size: 0.95rem; }
.nav-links a { position: relative; }
.nav-links a::after {
    content: ''; position: absolute; width: 0; height: 2px;
    bottom: -5px; left: 0; background: var(--accent);
    transition: width 0.3s ease;
}
.nav-links a:hover::after { width: 100%; }

/* BUTTONS */
.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--primary-glow);
}

/* HEADERS */
.hero, .page-header {
    padding: 100px 0 60px;
    text-align: center;
    animation: fadeInUp 0.8s ease-out both;
}

h1 {
    font-size: 4rem;
    line-height: 1.1;
    font-weight: 900;
    margin-bottom: 25px;
    letter-spacing: -1.5px;
}

.highlight {
    background: linear-gradient(to right, var(--accent), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 40px;
    font-weight: 300;
}

/* GLASS CARDS */
.grid-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    padding: 40px 30px;
    border-radius: 20px;
    transition: all 0.4s ease;
    animation: fadeInUp 1s ease-out both;
}

.glass-card:nth-child(2) { animation-delay: 0.2s; }
.glass-card:nth-child(3) { animation-delay: 0.4s; }

.glass-card:hover {
    transform: translateY(-8px);
    border-color: rgba(99, 102, 241, 0.4);
    box-shadow: 0 10px 40px rgba(0,0,0,0.5), inset 0 0 20px rgba(255,255,255,0.02);
}

.glass-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
}
.glass-card h3::before {
    content: '✦';
    color: var(--accent);
    font-size: 1.2rem;
}

.glass-card p { color: var(--text-muted); font-size: 1rem; line-height: 1.7; }

/* CONTACT PAGE (CENTERED COMPLIANCE BOX) */
.contact-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 80px;
}
.legal-info-box {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    padding: 50px;
    border-radius: 24px;
    max-width: 600px;
    width: 100%;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}
.legal-info-box h3 { color: var(--accent); margin-bottom: 15px; font-size: 1.3rem; margin-top: 25px; }
.legal-info-box h3:first-child { margin-top: 0; }
.legal-info-box p { color: var(--text-muted); margin-bottom: 8px; font-size: 1.05rem; }
.legal-info-box strong { color: #fff; font-weight: 600; }
.contact-email {
    display: inline-block; margin-top: 20px; font-size: 1.25rem;
    color: var(--primary); font-weight: 700;
}
.contact-email:hover { color: var(--accent); text-shadow: 0 0 10px var(--accent-glow); }

/* FOOTER */
footer {
    text-align: center; padding: 40px 20px;
    border-top: 1px solid var(--glass-border);
    background: rgba(0,0,0,0.3); backdrop-filter: blur(10px);
    color: var(--text-muted); font-size: 0.9rem; margin-top: auto;
}
.footer-legal { margin-top: 15px; font-size: 0.8rem; color: #52525b; line-height: 1.8; }
.footer-legal span { color: #71717a; }

@media (max-width: 768px) {
    h1 { font-size: 2.8rem; }
    .nav-links { display: none; }
}