:root {
    --bg-color: #000000;
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --accent: #3b82f6; 
    --accent-glow: rgba(59, 130, 246, 0.5);
    --glass-border: rgba(255, 255, 255, 0.1);
    --surface-dark: #111;
    --drift-speed: 20s; /* Default drift speed variable */
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-primary);
    line-height: 1.6;
}

/* Home Page Specifics */
body.home-page {
    overflow: hidden; /* Prevent scroll on main view if fitting to screen */
    height: 100vh;
}

.split-layout {
    display: flex;
    height: 100vh;
    width: 100vw;
}

/* --- Left Side: Visual --- */
.visual-side {
    flex: 1;
    background-color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.visual-side::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
    animation: light-drift var(--drift-speed) ease-in-out infinite alternate;
    pointer-events: none;
    z-index: 1;
}

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

.image-container {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.hero-image {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    filter: drop-shadow(0 0 50px rgba(59, 130, 246, 0.2));
}

/* --- Right Side: Content --- */
.content-side {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 40px 60px;
    background: linear-gradient(135deg, #0a0a0a 0%, #000000 100%);
    border-left: 1px solid var(--glass-border);
    position: relative;
    overflow-y: auto;
}

/* Header & Nav */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    margin-bottom: 40px;
}

/* On home page, push header to top but keep layout flexible */
body.home-page header {
    margin-bottom: auto; 
    padding-bottom: 40px;
}

.logo a {
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 0.9rem;
    transition: color 0.3s;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--text-primary);
}

/* Main Hero Content */
.hero-content {
    margin-bottom: auto;
    max-width: 600px;
}

h1 {
    font-size: 5rem;
    font-weight: 800;
    letter-spacing: -2px;
    line-height: 1;
    margin-bottom: 20px;
    background: linear-gradient(to right, #fff, #94a3b8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle {
    font-size: 1.5rem;
    color: var(--accent);
    margin-bottom: 30px;
    font-weight: 500;
}

.description p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 90%;
}

.actions {
    display: flex;
    gap: 20px;
}

.cta-button {
    padding: 15px 40px;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.cta-button.primary {
    background: var(--text-primary);
    color: #000;
}

.cta-button.primary:hover {
    background: var(--accent);
    color: #fff;
    box-shadow: 0 0 20px var(--accent-glow);
}

.cta-button.secondary {
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
}

.cta-button.secondary:hover {
    border-color: var(--text-primary);
    background: rgba(255,255,255,0.05);
}

/* Footer */
footer {
    border-top: 1px solid var(--glass-border);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    color: var(--text-secondary);
    font-size: 0.8rem;
    width: 100%;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--text-primary);
}

/* --- Privacy Page Styles --- */
.privacy-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
    min-height: 80vh;
}

.privacy-content {
    background: var(--surface-dark);
    border: 1px solid var(--glass-border);
    padding: 40px;
    border-radius: 12px;
}

.privacy-content h1 {
    font-size: 2.5rem; /* Smaller than hero */
    margin-bottom: 10px;
    background: none;
    -webkit-text-fill-color: var(--text-primary);
}

.effective-date {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 40px;
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 20px;
}

.privacy-content section {
    margin-bottom: 40px;
}

.privacy-content h2 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-primary);
    border-left: 3px solid var(--accent);
    padding-left: 15px;
}

.privacy-content p, .privacy-content li {
    color: #ccc;
    font-size: 1rem;
    margin-bottom: 15px;
}

.privacy-content ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

/* Adjust header/footer for non-home pages */
body:not(.home-page) header {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 40px;
}

body:not(.home-page) footer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 40px;
    margin-top: 40px;
}

/* Mobile Responsiveness */
@media (max-width: 968px) {
    body.home-page {
        overflow: auto;
        height: auto;
    }

    .split-layout {
        flex-direction: column;
        height: auto;
    }

    .visual-side {
        height: 50vh;
        min-height: 400px;
    }
    
    .hero-image {
        max-height: 90%;
    }

    .content-side {
        padding: 40px 20px;
        min-height: 50vh;
    }

    h1 {
        font-size: 3.5rem;
    }
    
    .actions {
        flex-direction: column;
    }
    
    .cta-button {
        text-align: center;
    }
    
    footer {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        align-items: center;
    }
    
    .privacy-content {
        padding: 20px;
    }
}