:root {
    --bg-dark: #0f1115;      /* Deep luxurious charcoal/navy */
    --text-main: #fcfcfc;
    --text-muted: #a1a1aa;
    
    /* Luxurious Gold/Champagne palette */
    --accent-gold-dark: #b89047;
    --accent-gold: #d4af37;
    --accent-gold-light: #f3e5ab;
    --accent-bronze: #cd7f32;
    
    --glass-bg: rgba(25, 28, 35, 0.4);
    --glass-border: rgba(212, 175, 55, 0.15); /* Gold tinted border */
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    /* Subtle noise/texture for premium feel */
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.03'/%3E%3C/svg%3E");
}

/* Typography styles */
.serif-text {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 600;
}

/* Animated Background with Glassmorphism */
.background-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

/* Subtle architectural grid lines */
.grid-overlay {
    position: absolute;
    inset: 0;
    background-size: 50px 50px;
    background-image: 
        linear-gradient(to right, rgba(212, 175, 55, 0.03) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(212, 175, 55, 0.03) 1px, transparent 1px);
    z-index: 0;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.35;
    animation: float 25s infinite ease-in-out;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: var(--accent-gold);
    top: -150px;
    left: -100px;
    animation-delay: 0s;
}

.orb-2 {
    width: 600px;
    height: 600px;
    background: var(--accent-bronze);
    bottom: -200px;
    right: -150px;
    animation-delay: -7s;
}

.orb-3 {
    width: 400px;
    height: 400px;
    background: var(--accent-gold-light);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -12s;
    opacity: 0.2;
}

.glass-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, transparent 0%, var(--bg-dark) 100%);
    backdrop-filter: blur(25px);
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(60px, -60px) scale(1.05); }
    66% { transform: translate(-40px, 40px) scale(0.95); }
}

/* Layout & Content */
.content-wrapper {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    padding: 2rem 5%;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 1.5rem;
    animation: fadeDown 1s ease-out;
}

.logo {
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #fff;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-light {
    font-weight: 300;
    color: var(--accent-gold);
}

.hero {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    max-width: 850px;
    margin: 0 auto;
    padding: 3rem 0;
}

.badge {
    padding: 0.5rem 1.25rem;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid var(--accent-gold-dark);
    border-radius: 2rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-gold-light);
    margin-bottom: 2.5rem;
    backdrop-filter: blur(12px);
    animation: fadeUp 1s ease-out 0.2s both;
}

.title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 400;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
    animation: fadeUp 1s ease-out 0.4s both;
}

.gradient-text {
    background: linear-gradient(135deg, var(--accent-gold-light), var(--accent-gold), var(--accent-gold-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    padding-right: 0.1em; /* prevents italic cut-off */
}

.subtitle {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: var(--text-muted);
    margin-bottom: 3.5rem;
    max-width: 600px;
    line-height: 1.7;
    animation: fadeUp 1s ease-out 0.6s both;
    font-weight: 300;
}

/* Form Styles */
.notify-form {
    display: flex;
    gap: 0.5rem;
    width: 100%;
    max-width: 500px;
    animation: fadeUp 1s ease-out 0.8s both;
    margin-bottom: 4rem;
}

.email-input {
    flex-grow: 1;
    padding: 1.125rem 1.5rem;
    border-radius: 0.25rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--text-main);
    font-family: inherit;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(12px);
}

.email-input::placeholder {
    color: #6b7280;
    font-weight: 300;
}

.email-input:focus {
    border-color: var(--accent-gold);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.15);
    background: rgba(30, 32, 40, 0.6);
}

.submit-btn {
    padding: 1.125rem 2rem;
    border-radius: 0.25rem;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-dark));
    border: none;
    color: #0f1115;
    font-family: inherit;
    font-size: 0.9375rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.25);
}

.success-message {
    color: var(--accent-gold-light);
    font-weight: 400;
    animation: fadeIn 0.5s ease-out;
    padding: 1.25rem;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 0.25rem;
    border: 1px solid rgba(212, 175, 55, 0.2);
    width: 100%;
}

/* Features Preview Section */
.features-preview {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    animation: fadeUp 1s ease-out 1s both;
    width: 100%;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.feature-number {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--accent-gold);
}

.feature-text {
    font-size: 0.875rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.divider {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, rgba(212, 175, 55, 0.3), transparent);
}

/* Footer */
footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 1.5rem;
    color: #6b7280;
    font-size: 0.875rem;
    animation: fadeIn 1s ease-out 1.2s both;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-links a {
    color: #6b7280;
    transition: color 0.3s, transform 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-links svg {
    width: 18px;
    height: 18px;
}

.social-links a:hover {
    color: var(--accent-gold);
    transform: translateY(-2px);
}

/* Keyframe Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .features-preview {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .divider {
        width: 40px;
        height: 1px;
        background: linear-gradient(to right, transparent, rgba(212, 175, 55, 0.3), transparent);
    }
    
    .notify-form {
        flex-direction: column;
    }
    
    .title {
        font-size: 2.75rem;
    }
    
    footer {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
}
