:root {
    --bg-color: #0a0a0a;
    --text-color: #ffffff;
    --accent-color: #d4af37; /* Metallic Gold-ish */
    --secondary-text: #a0a0a0;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    height: 100vh;
    overflow: hidden; /* Prevent scrolling if content fits */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
}

/* Background Animation */
.background-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    filter: blur(80px);
    opacity: 0.6;
}

.blob {
    position: absolute;
    border-radius: 50%;
    animation: float 20s infinite alternate;
}

.blob-1 {
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, #2a2a2a 0%, transparent 70%);
    top: -10%;
    left: -10%;
    animation-delay: 0s;
}

.blob-2 {
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, #1a1a1a 0%, transparent 70%);
    bottom: -10%;
    right: -10%;
    animation-delay: -5s;
}

.blob-3 {
    width: 30vw;
    height: 30vw;
    background: radial-gradient(circle, #333 0%, transparent 70%); /* Subtle grey highlight */
    top: 40%;
    left: 40%;
    animation-delay: -10s;
}

@keyframes float {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(50px, 50px) scale(1.1); }
}

.overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, transparent 0%, #000 90%); /* Vignette */
    z-index: 0;
    pointer-events: none;
}

/* Container */
.container {
    z-index: 10;
    max-width: 800px;
    padding: 2rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 3rem;
    align-items: center;
}

/* Helper Classes */
.hidden { display: none; }
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
}
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

@keyframes fadeInUp {
    to { opacity: 1; transform: translateY(0); }
}

/* Header */
.logo {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    margin-bottom: 0.5rem;
    background: linear-gradient(45deg, #fff, #aaa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.tagline {
    font-size: 0.8rem;
    letter-spacing: 0.3em;
    color: var(--secondary-text);
    text-transform: uppercase;
}

/* Hero */
.hero h1 {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.hero .subtitle {
    font-size: 1.1rem;
    color: var(--secondary-text);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Loading Bar */
.loading-container {
    width: 100%;
    max-width: 400px;
    margin: 2rem auto;
}

.status-text {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    color: var(--text-color);
    min-height: 1.2em;
}

.progress-bar {
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
}

.progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #888, #fff);
    border-radius: 4px;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
    transition: width 0.5s ease-out;
}

.progress-stats {
    display: flex;
    justify-content: space-between;
    margin-top: 0.5rem;
    font-size: 0.75rem;
    color: var(--secondary-text);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* CTA Section */
.newsletter {
    width: 100%;
    max-width: 600px;
}

.newsletter p {
    margin-bottom: 2rem;
    color: var(--secondary-text);
    font-size: 1.1rem;
    line-height: 1.6;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: transparent;
    color: var(--text-color);
    padding: 1rem 2.5rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.cta-button:hover {
    background: #fff;
    color: #000;
    border-color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.cta-button ion-icon {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.cta-button:hover ion-icon {
    transform: translateX(5px);
}

/* Footer & Socials */
footer {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}

.socials {
    display: flex;
    gap: 1.5rem;
}

.socials a {
    color: var(--secondary-text);
    font-size: 1.5rem;
    transition: color 0.3s ease, transform 0.3s ease;
}

.socials a:hover {
    color: var(--text-color);
    transform: translateY(-3px);
}

footer p {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.941);
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 1.5rem;
        gap: 2rem;
    }
    
    .logo {
        font-size: 2rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }
}
