/* =========================================
   VARIABLES & THEMING
   ========================================= */
:root {
    /* Color Palette */
    --gold-primary: #D4AF37;
    --gold-light: #F3E5AB;
    --gold-dark: #AA8222;
    --gold-gradient: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-light) 50%, var(--gold-dark) 100%);
    --gold-gradient-text: linear-gradient(to right, #b48512, #f5d46c, #a8790b);
    
    --bg-cream: #FCFAF6;
    --bg-white: #FFFFFF;
    
    --text-dark: #1A1A1A;
    --text-muted: #555555;
    
    /* Typography */
    --font-heading: 'Cinzel', serif;
    --font-body: 'Outfit', sans-serif;
    
    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.4);
    --glass-border: rgba(255, 255, 255, 0.5);
    --glass-shadow: 0 8px 32px 0 rgba(212, 175, 55, 0.1);
    
    /* Animations */
    --transition-smooth: 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
}

/* =========================================
   RESET & BASE STYLES
   ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Custom Text Selection */
::selection {
    background: var(--gold-primary);
    color: #111;
}
::-moz-selection {
    background: var(--gold-primary);
    color: #111;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--bg-cream);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* =========================================
   ANIMATED BACKGROUND
   ========================================= */
.background-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
    background: radial-gradient(circle at center, var(--bg-white) 0%, var(--bg-cream) 100%);
}

.light-streak {
    position: absolute;
    filter: blur(80px);
    opacity: 0.5;
    border-radius: 50%;
    animation: float 15s infinite alternate ease-in-out;
}

.streak-1 {
    width: 600px;
    height: 300px;
    background: radial-gradient(circle, var(--gold-light) 0%, transparent 70%);
    top: -100px;
    left: -200px;
    animation-delay: 0s;
}

.streak-2 {
    width: 500px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.3) 0%, transparent 70%);
    bottom: -150px;
    right: -100px;
    animation-delay: -5s;
}

.streak-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(243, 229, 171, 0.4) 0%, transparent 70%);
    top: 30%;
    left: 40%;
    animation-delay: -10s;
}

@keyframes float {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(50px, 30px) scale(1.1); }
    100% { transform: translate(-30px, -50px) scale(0.9); }
}

/* =========================================
   GLASS LAYOUT
   ========================================= */
.glass-wrapper {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 3rem 4rem;
    max-width: 900px;
    width: 90%;
    margin: 2rem 0;
    box-shadow: var(--glass-shadow);
    text-align: center;
}

/* =========================================
   HEADER & LOGO
   ========================================= */
.header {
    margin-bottom: 2.5rem;
}

.logo-container {
    width: 280px;
    height: auto;
    margin: 0 auto 1.5rem auto;
    border-radius: 10px;
    padding: 0;
    background: transparent;
    box-shadow: none;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo {
    width: 100%;
    height: auto;
    object-fit: contain;
    mix-blend-mode: multiply; /* Light Mode: White Background -> Transparent */
    filter: drop-shadow(0px 0px 10px rgba(212, 175, 55, 0.4));
    transition: var(--transition-smooth);
}

.brand-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    letter-spacing: 0.15em;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.2;
}

.brand-subtitle {
    font-size: 1.2rem;
    letter-spacing: 0.3em;
    color: var(--gold-dark);
}

/* =========================================
   HERO SECTION
   ========================================= */
.hero {
    margin-bottom: 3.5rem;
}

.headline {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gold-gradient-text);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.sub-headline {
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.sub-headline strong {
    font-weight: 600;
    color: var(--text-dark);
}

.slogan {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--gold-dark);
    font-style: italic;
    opacity: 0.9;
}

/* =========================================
   MARQUEE TICKER
   ========================================= */
.marquee-wrapper {
    width: 100%;
    overflow: hidden;
    margin-bottom: 3.5rem;
    position: relative;
    padding: 1rem 0;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    background: rgba(212, 175, 55, 0.05); /* very light gold tint */
}

.marquee {
    display: inline-block;
    white-space: nowrap;
    animation: marquee 25s linear infinite;
}

.marquee span {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: var(--gold-dark);
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); } /* Requires the text to be doubled in HTML or long enough */
}

/* =========================================
   FEATURE CARDS
   ========================================= */
.features-section {
    margin-bottom: 3.5rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.feature-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.1));
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 15px;
    padding: 2rem 1.5rem;
    box-shadow: inset 0 0 10px rgba(212, 175, 55, 0.05), 0 5px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: var(--transition-smooth);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.5);
}

.feature-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255,255,255,0.8), rgba(255,255,255,0.4));
    box-shadow: inset 0 0 10px rgba(212, 175, 55, 0.1), 0 5px 15px rgba(212, 175, 55, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--gold-dark);
    transition: var(--transition-smooth);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.feature-card:hover .feature-icon-wrapper {
    box-shadow: inset 0 0 10px rgba(212, 175, 55, 0.2), 0 10px 20px rgba(212, 175, 55, 0.25);
    color: var(--gold-primary);
}

.feature-card h4 {
    font-family: var(--font-heading);
    color: var(--text-dark);
    font-size: 1.15rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* =========================================
   ACCORDION (FAQ)
   ========================================= */
.accordion-section {
    margin-bottom: 3.5rem;
    text-align: left;
    width: 100%;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.accordion-item {
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.accordion-header {
    width: 100%;
    background: transparent;
    border: none;
    padding: 1.2rem 0.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 1.1rem;
    color: var(--text-dark);
    transition: var(--transition-smooth);
}

.accordion-header:hover {
    color: var(--gold-primary);
}

.accordion-icon {
    color: var(--gold-dark);
    transition: transform 0.3s ease;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.accordion-item.active .accordion-content {
    max-height: 150px; /* arbitrary large enough height */
}
.accordion-item.active .accordion-icon {
    transform: rotate(45deg); /* turns plus into X */
}

.accordion-content p {
    padding: 0 0.5rem 1.2rem 0.5rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* =========================================
   URGENCY / TIMER
   ========================================= */
.urgency {
    margin-bottom: 3rem;
}

.hourglass-icon {
    color: var(--gold-dark);
    margin-bottom: 0.5rem;
    position: relative;
    display: inline-block;
}

/* Radar Pulse */
.hourglass-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 30px;
    height: 30px;
    background: transparent;
    border: 1.5px solid var(--gold-primary);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: radarPulse 2s infinite cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    pointer-events: none;
}
@keyframes radarPulse {
    0% { transform: translate(-50%, -50%) scale(0.8); opacity: 0.8; }
    100% { transform: translate(-50%, -50%) scale(3); opacity: 0; }
}

.coming-soon-text {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.countdown-container {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.time-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 60px;
}

.time-val {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold-dark);
    background: var(--glass-bg);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 10px;
    padding: 0.5rem 1rem;
    box-shadow: 0 4px 10px rgba(212, 175, 55, 0.1);
    margin-bottom: 0.5rem;
}

.time-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
}

/* =========================================
   LEAD GENERATION FORM
   ========================================= */
.lead-gen {
    margin-bottom: 3rem;
}

.subscribe-form {
    max-width: 500px;
    margin: 0 auto;
}

.input-group {
    display: flex;
    border-radius: 30px;
    background: var(--bg-white);
    padding: 5px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: var(--transition-smooth);
}

.input-group:focus-within {
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.15);
    border-color: var(--gold-primary);
}

input[type="email"] {
    flex: 1;
    border: none;
    background: transparent;
    padding: 1rem 1.5rem;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-dark);
    outline: none;
}

input[type="email"]::placeholder {
    color: #999;
}

.btn-primary {
    background: var(--gold-gradient);
    border: none;
    border-radius: 25px;
    padding: 0.8rem 1.8rem;
    color: var(--bg-white);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.btn-primary:hover {
    transform: scale(1.03);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6);
}

.btn-icon {
    width: 18px;
    height: 18px;
}

.form-message {
    margin-top: 1rem;
    font-size: 0.9rem;
    padding: 0.8rem;
    border-radius: 10px;
    transition: var(--transition-smooth);
}

.form-message.success {
    background: rgba(46, 204, 113, 0.1);
    color: #27ae60;
    border: 1px solid rgba(46, 204, 113, 0.3);
}

.form-message.error {
    background: rgba(231, 76, 60, 0.1);
    color: #c0392b;
    border: 1px solid rgba(231, 76, 60, 0.3);
}

.hidden {
    display: none;
}

/* =========================================
   FOOTER
   ========================================= */
.footer {
    border-top: 1px solid var(--glass-border);
    padding-top: 1.5rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.social-links a {
    color: var(--text-muted);
    transition: var(--transition-smooth);
    display: flex;
}

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

.copyright {
    font-size: 0.85rem;
    color: rgba(0, 0, 0, 0.4);
}

/* =========================================
   ANIMATIONS (SCROLL / LOAD)
   ========================================= */
.fade-in {
    opacity: 0;
    transition: opacity 1s ease-out;
}
.fade-in.visible {
    opacity: 1;
}

.slide-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease-out, transform 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.slide-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }
.delay-3 { transition-delay: 0.6s; }

.stagger-fade-in .pillar {
    opacity: 0;
    transform: translateY(20px);
}

.stagger-fade-in.visible .pillar {
    animation: staggerAnim 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

.stagger-fade-in.visible .pillar:nth-child(1) { animation-delay: 0.2s; }
.stagger-fade-in.visible .pillar:nth-child(2) { animation-delay: 0.4s; }
.stagger-fade-in.visible .pillar:nth-child(3) { animation-delay: 0.6s; }

@keyframes staggerAnim {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================================
   RESPONSIVE DESIGN
   ========================================= */
@media (max-width: 768px) {
    .glass-wrapper {
        padding: 2.5rem 2rem;
        margin: 1rem;
    }
    
    .headline { font-size: 2rem; }
    .sub-headline { font-size: 1.1rem; }
    .slogan { font-size: 1.3rem; }
    
    .pillars {
        gap: 2rem;
        flex-direction: column;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .input-group {
        flex-direction: column;
        border-radius: 15px;
        background: transparent;
        box-shadow: none;
        border: none;
        gap: 10px;
    }
    
    input[type="email"] {
        background: var(--bg-white);
        border-radius: 25px;
        border: 1px solid rgba(212, 175, 55, 0.3);
    }
    
    .btn-primary {
        justify-content: center;
        width: 100%;
        border-radius: 25px;
    }
}

@media (max-width: 480px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   PREMIUM AGENCY ADDITIONS
   ========================================= */

/* 1. Mouse Glow / Aura */
.mouse-glow {
    position: fixed;
    top: 0;
    left: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 60%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none; /* Crucial so it doesn't block clicks */
    z-index: 9999;
    transition: opacity 0.3s ease;
    mix-blend-mode: screen;
}

/* 2. Magnetic Button Physics Wrapper */
.btn-primary {
    transition: transform 0.1s cubic-bezier(0.25, 1, 0.5, 1), box-shadow var(--transition-smooth);
    will-change: transform;
}
.btn-primary:active {
    transform: scale(0.95) !important;
}

/* 3. Live Form Validation */
.input-group.valid {
    border-color: #2ecc71;
    box-shadow: 0 5px 20px rgba(46, 204, 113, 0.2);
}

.input-group.invalid {
    border-color: #e74c3c;
    animation: shake 0.4s cubic-bezier(.36,.07,.19,.97) both;
}

@keyframes shake {
    10%, 90% { transform: translate3d(-1px, 0, 0); }
    20%, 80% { transform: translate3d(2px, 0, 0); }
    30%, 50%, 70% { transform: translate3d(-4px, 0, 0); }
    40%, 60% { transform: translate3d(4px, 0, 0); }
}

/* 4. Custom Luxury Scrollbar */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
::-webkit-scrollbar-track {
    background: var(--bg-cream);
}
::-webkit-scrollbar-thumb {
    background: rgba(212, 175, 55, 0.4);
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--gold-primary);
}

/* 5. Typing Cursor Animation */
.typing-cursor {
    display: inline-block;
    width: 2px;
    height: 1.1em;
    background-color: var(--gold-primary);
    vertical-align: middle;
    animation: blink 0.8s step-end infinite;
    margin-left: 2px;
}
@keyframes blink {
    50% { opacity: 0; }
}

/* 6. Parallax Gold Dust Canvas */
#dust-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0; /* Above background streaks, below glass */
    pointer-events: none;
}

/* 7. Exit Intent Modal */
.exit-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-smooth);
}
.exit-modal.active {
    opacity: 1;
    pointer-events: auto;
}
.exit-modal-content {
    transform: translateY(50px) scale(0.95);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.exit-modal.active .exit-modal-content {
    transform: translateY(0) scale(1);
}

/* 8. Massive Scrolling Watermark */
.massive-watermark {
    font-family: var(--font-heading);
    position: fixed;
    top: 50%;
    left: 0;
    transform: translate(-10vw, -50%);
    font-size: 35vw;
    font-weight: 700;
    color: rgba(212, 175, 55, 0.03);
    white-space: nowrap;
    z-index: -1;
    pointer-events: none;
    letter-spacing: -0.05em;
    will-change: transform;
}

/* 9. Geo-Tag */
.geo-tag {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
    font-family: monospace;
    letter-spacing: 0.1em;
    opacity: 0.6;
}

/* =========================================
   DARK THEME SYSTEM
   ========================================= */
[data-theme="dark"] {
    --bg-cream: #0A0A0A;
    --bg-white: #111111;
    --text-dark: #F5F5F7;
    --text-muted: #A1A1A6;
    
    --glass-bg: rgba(20, 20, 20, 0.6);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-shadow: 0 15px 35px 0 rgba(0, 0, 0, 0.8), 0 0 40px rgba(212, 175, 55, 0.05);
}

[data-theme="dark"] .background-container {
    background: radial-gradient(circle at center, #111111 0%, #050505 100%);
}

[data-theme="dark"] .logo {
    mix-blend-mode: screen; /* Dark Mode: Black Background -> Transparent */
}

[data-theme="dark"] .feature-card {
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.8), rgba(10, 10, 10, 0.8));
    box-shadow: inset 0 0 10px rgba(212, 175, 55, 0.15), 0 5px 15px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

[data-theme="dark"] .feature-icon-wrapper {
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.8), rgba(10, 10, 10, 0.8));
    box-shadow: inset 0 0 10px rgba(212, 175, 55, 0.15), 0 5px 15px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

[data-theme="dark"] .accordion-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Spotlight Hover Reveal for Dark Mode */
[data-theme="dark"] .feature-card {
    transition: transform 0.4s, box-shadow 0.4s, border-color 0.4s;
}
[data-theme="dark"] .feature-card:hover {
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.4), inset 0 0 20px rgba(212, 175, 55, 0.3);
    border-color: rgba(212, 175, 55, 0.8);
    background: rgba(30, 25, 10, 0.9);
}

[data-theme="dark"] .input-group {
    background: rgba(40, 40, 40, 0.6);
    border-color: rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .time-val {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(212, 175, 55, 0.15);
}

[data-theme="dark"] .copyright {
    color: rgba(255, 255, 255, 0.4);
}

/* Theme Toggle Button UI */
.theme-toggle {
    position: fixed;
    top: 2rem;
    right: 2rem;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1000;
    color: var(--gold-primary);
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.theme-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
}
.theme-toggle .hidden {
    display: none;
}

@media (max-width: 768px) {
    .theme-toggle {
        top: 1rem;
        right: 1rem;
        width: 40px;
        height: 40px;
    }
}

/* =========================================
   ZCAD MOCKUP REDESIGN STYLES
   ========================================= */

.btn-primary.red-btn,
.red-btn {
    background: linear-gradient(135deg, #a50b0b, #6b0000) !important;
    box-shadow: 0 5px 20px rgba(165, 11, 11, 0.4), inset 0 2px 5px rgba(255, 100, 100, 0.3) !important;
    border: none;
    color: white !important;
}

.btn-primary.red-btn:hover,
.red-btn:hover {
    background: linear-gradient(135deg, #cc1111, #8b0000) !important;
    box-shadow: 0 8px 25px rgba(204, 17, 17, 0.6), inset 0 2px 5px rgba(255, 150, 150, 0.4) !important;
    color: white !important;
}

.waitlist-wrapper {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.hero-links {
    margin-top: 1.5rem;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.hero-links a {
    color: var(--gold-secondary);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.hero-links a:hover {
    color: var(--gold-primary);
}

.hero-links .divider {
    margin: 0 0.8rem;
    opacity: 0.5;
    color: var(--text-muted);
}

.launching-section {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.launching-divider {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 450px;
    margin-bottom: 2rem;
}

.launching-divider .line {
    flex-grow: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.5), transparent);
}

.launching-divider .text {
    padding: 0 1.5rem;
    font-family: var(--font-heading);
    color: var(--gold-primary);
    font-size: 1.1rem;
    letter-spacing: 0.1em;
}

.referral-success {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
}

.referral-success h3 {
    color: var(--gold-primary);
    margin-bottom: 0.5rem;
}

.referral-success p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.copy-link-box {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 0.5rem;
}

.copy-link-box input {
    flex-grow: 1;
    background: rgba(0,0,0,0.5);
    border: 1px solid var(--glass-border);
    color: white;
    padding: 0.8rem;
    border-radius: 8px;
    font-family: monospace;
}

.copy-btn {
    white-space: nowrap;
    padding: 0 1.5rem;
}

/* Light mode text readability fix */
:root:not([data-theme="dark"]) .headline,
:root:not([data-theme="dark"]) .slogan {
    color: #444 !important;
    text-shadow: none !important;
}

/* =========================================
   DUST CANVAS BACKGROUND
   ========================================= */
#dust-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    mix-blend-mode: screen;
}

/* =========================================
   AMBIENT GOLD PARTICLES CANVAS
   ========================================= */
#particles-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    mix-blend-mode: screen;
}
