:root {
    /* Premium Color Palette */
    --color-bg: #030303;
    --color-bg-light: #0a0a0a;
    --color-text: #f0f0f0;
    --color-text-muted: #888888;
    --color-accent: #e8c368; /* Rich Gold */
    --color-accent-dark: #b89838;
    --color-accent-glow: rgba(232, 195, 104, 0.4);
    
    /* Typography */
    --font-heading: 'Cinzel', serif;
    --font-body: 'Inter', sans-serif;
    
    /* Effects */
    --transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

body {
    background-color: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-body);
    overflow: hidden; /* No scrolling for a landing page */
    line-height: 1.6;
}

::selection {
    background-color: var(--color-accent);
    color: var(--color-bg);
}

/* 3D Canvas Background */
#canvas-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1; /* Behind UI */
    pointer-events: none; /* Let clicks pass through to UI if needed */
}

/* UI Overlay */
.overlay {
    position: relative;
    z-index: 10;
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    pointer-events: none; /* Ensure only interactive parts catch cursor */
}

/* Make inner elements interactive */
.header-top, .hero-content, .footer-bottom {
    pointer-events: auto; 
}

/* Header Config */
.header-top {
    width: 100%;
    display: flex;
    justify-content: center;
    padding-top: 1rem;
}

.brand-logo {
    height: 90px;
    width: auto;
    display: block;
    filter: drop-shadow(0 0 10px rgba(232, 195, 104, 0.6));
}

/* Main Hero Area */
.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 650px;
    background: radial-gradient(circle at center, rgba(10,10,10,0.85) 0%, rgba(3,3,3,0) 80%);
    padding: 3rem;
    border-radius: 20px;
}

/* Pre-animated state for GSAP */
#badge-anim, #title-anim, #subtitle-anim, #form-anim, #social-anim, #footer-anim {
    visibility: hidden;
}

.badge {
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 3px;
    color: var(--color-accent);
    border: 1px solid var(--color-accent-dark);
    padding: 0.5rem 1.2rem;
    border-radius: 30px;
    margin-bottom: 2rem;
    background: rgba(232, 195, 104, 0.05);
    backdrop-filter: blur(4px);
    cursor: default;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0,0,0,0.8);
}

.hero-subtitle {
    font-size: 1.1rem;
    font-weight: 300;
    color: #e0e0e0;
    margin-bottom: 3rem;
    max-width: 500px;
}

/* Email Form */
.notify-container {
    width: 100%;
    margin-bottom: 3rem;
}

.notify-form {
    display: flex;
    justify-content: center;
    width: 100%;
}

.input-glow-wrapper {
    position: relative;
    display: flex;
    width: 100%;
    max-width: 450px;
    background: rgba(20, 20, 20, 0.6);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 4px;
    padding: 0.4rem;
    backdrop-filter: blur(10px);
    transition: var(--transition-smooth);
}

.input-glow-wrapper:focus-within {
    border-color: var(--color-accent-dark);
    box-shadow: 0 0 15px var(--color-accent-glow);
}

.glass-input {
    flex: 1;
    background: transparent;
    border: none;
    color: var(--color-text);
    padding: 0.8rem 1.2rem;
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
}

.glass-input::placeholder {
    color: rgba(255,255,255,0.3);
}

.btn {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
    color: #000;
    font-weight: 600;
    padding: 0 1.5rem;
    border-radius: 2px;
}

.btn-primary:hover:not(:disabled) {
    filter: brightness(1.2);
    box-shadow: 0 0 20px var(--color-accent-glow);
}

.btn-primary:disabled {
    opacity: 0.6;
    cursor: wait;
}

/* Form Message Feedback */
.form-message {
    margin-top: 1rem;
    font-size: 0.9rem;
    min-height: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.form-message.success {
    color: #81c784; /* Soft Green */
    opacity: 1;
}

.form-message.error {
    color: #e57373; /* Soft Red */
    opacity: 1;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.social-links a {
    color: var(--color-text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--color-accent);
}

.dot {
    color: rgba(255,255,255,0.2);
    font-size: 0.5rem;
}

/* Footer */
.footer-bottom {
    padding-bottom: 1rem;
    text-align: center;
}

.footer-bottom p {
    color: #555;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-content {
        padding: 1.5rem;
    }
    
    .input-glow-wrapper {
        flex-direction: column;
        background: transparent;
        border: none;
        box-shadow: none;
    }
    
    .glass-input {
        background: rgba(20, 20, 20, 0.8);
        border: 1px solid rgba(255,255,255,0.1);
        border-radius: 4px;
        margin-bottom: 1rem;
        padding: 1rem;
    }
    
    .btn-primary {
        padding: 1rem;
        margin-top: 15px;
    }
}
