/* ==========================================================================
   THE FINE FLECK — COMING SOON PAGE
   Animated luxury landing page with gold particles, countdown, and email capture
   ========================================================================== */

/* ==========================================================================
   CSS CUSTOM PROPERTIES
   ========================================================================== */
:root {
    --navy-950: #060913;
    --navy-900: #0B1120;
    --navy-800: #111A2E;
    
    --gold-300: #F3E5AB;
    --gold-400: #E5C358;
    --gold-500: #D4AF37;
    --gold-600: #B8860B;
    --gold-gradient: linear-gradient(135deg, #F3E5AB 0%, #D4AF37 50%, #AA7C11 100%);
    --gold-glow: rgba(212, 175, 55, 0.25);
    
    --cream-50: #FCFBF9;
    
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--navy-950);
    color: var(--cream-50);
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ==========================================================================
   CANVAS BACKGROUND
   ========================================================================== */
#gold-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* ==========================================================================
   MAIN CONTAINER
   ========================================================================== */
.coming-soon-container {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 24px;
}

.content-wrapper {
    text-align: center;
    max-width: 700px;
    width: 100%;
    position: relative;
    z-index: 2;
}

/* ==========================================================================
   LOGO
   ========================================================================== */
.logo-animate {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    animation: fadeInDown 1s ease-out 0.2s both;
}

.brand-logo {
    width: 48px;
    height: 48px;
    object-fit: contain;
    filter: drop-shadow(0 0 12px var(--gold-glow));
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

/* ==========================================================================
   TAGLINE BADGE
   ========================================================================== */
.tagline-animate {
    margin-bottom: 32px;
    animation: fadeInDown 1s ease-out 0.4s both;
}

.tagline-badge {
    display: inline-block;
    padding: 8px 20px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold-400);
    background: rgba(212, 175, 55, 0.05);
    backdrop-filter: blur(8px);
}

/* ==========================================================================
   HEADLINE
   ========================================================================== */
.headline-animate {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.gold-text {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ==========================================================================
   SUBHEADLINE
   ========================================================================== */
.subheadline-animate {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--gray-400);
    max-width: 560px;
    margin: 0 auto 48px;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.subheadline-animate strong {
    color: var(--gold-300);
    font-weight: 600;
}

/* ==========================================================================
   COUNTDOWN TIMER
   ========================================================================== */
.countdown-animate {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 48px;
    animation: fadeInUp 1s ease-out 1s both;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 80px;
}

.countdown-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.countdown-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gray-400);
    margin-top: 8px;
}

.countdown-separator {
    font-size: 2rem;
    color: var(--gold-500);
    font-weight: 700;
    animation: pulse 1.5s ease-in-out infinite;
}

/* ==========================================================================
   EMAIL SIGNUP
   ========================================================================== */
.signup-animate {
    margin-bottom: 48px;
    animation: fadeInUp 1s ease-out 1.2s both;
}

.signup-form {
    max-width: 480px;
    margin: 0 auto;
}

.input-group {
    display: flex;
    gap: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: var(--radius-full);
    padding: 6px;
    backdrop-filter: blur(12px);
    transition: all 0.3s ease;
}

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

.input-group input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 12px 20px;
    color: var(--cream-50);
    font-family: var(--font-body);
    font-size: 0.95rem;
    outline: none;
    min-width: 0;
}

.input-group input::placeholder {
    color: var(--gray-400);
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border: none;
    border-radius: var(--radius-full);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-primary {
    background: var(--gold-gradient);
    color: var(--navy-900);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.btn-icon {
    font-size: 1rem;
}

.signup-note {
    font-size: 0.85rem;
    color: var(--gray-400);
    margin-top: 16px;
}

.success-message {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 24px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: var(--radius-md);
    color: var(--gold-300);
}

.success-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--gold-500);
    color: var(--navy-900);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

/* ==========================================================================
   TRUST BADGES
   ========================================================================== */
.trust-animate {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-bottom: 48px;
    animation: fadeInUp 1s ease-out 1.4s both;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--gray-400);
}

.trust-icon {
    font-size: 1.2rem;
}

/* ==========================================================================
   TEMPORARY STORE LINK
   ========================================================================== */
.temp-store-animate {
    margin-bottom: 48px;
    animation: fadeInUp 1s ease-out 1.5s both;
}

.btn-temp-store {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: transparent;
    color: var(--gold-300);
    border: 2px solid var(--gold-500);
    border-radius: var(--radius-full);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-temp-store:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.2);
}

.btn-temp-store .btn-icon {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.btn-temp-store:hover .btn-icon {
    transform: translateX(4px);
}

.temp-store-note {
    font-size: 0.85rem;
    color: var(--gray-400);
    margin-top: 12px;
    font-style: italic;
}

/* ==========================================================================
   SOCIAL LINKS
   ========================================================================== */
.social-animate {
    animation: fadeInUp 1s ease-out 1.7s both;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--gold-400);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--gold-500);
    transform: translateY(-3px);
}

/* ==========================================================================
   FLOATING SHAPES
   ========================================================================== */
.floating-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: var(--gold-gradient);
    opacity: 0.03;
    animation: float 20s infinite ease-in-out;
}

.shape-1 {
    width: 400px;
    height: 400px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 300px;
    height: 300px;
    top: 60%;
    right: 10%;
    animation-delay: 5s;
}

.shape-3 {
    width: 200px;
    height: 200px;
    bottom: 20%;
    left: 20%;
    animation-delay: 10s;
}

.shape-4 {
    width: 350px;
    height: 350px;
    top: 30%;
    right: 20%;
    animation-delay: 15s;
}

.shape-5 {
    width: 250px;
    height: 250px;
    bottom: 10%;
    right: 30%;
    animation-delay: 8s;
}

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(30px, -30px) scale(1.05);
    }
    50% {
        transform: translate(-20px, 20px) scale(0.95);
    }
    75% {
        transform: translate(20px, 10px) scale(1.02);
    }
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 768px) {
    .coming-soon-container {
        padding: 24px 16px;
    }
    
    .countdown-animate {
        gap: 12px;
    }
    
    .countdown-item {
        min-width: 60px;
    }
    
    .countdown-number {
        font-size: 2rem;
    }
    
    .input-group {
        flex-direction: column;
        border-radius: var(--radius-md);
        padding: 8px;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .trust-animate {
        gap: 16px;
    }
    
    .trust-item {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .countdown-separator {
        display: none;
    }
    
    .countdown-animate {
        gap: 8px;
    }
    
    .countdown-item {
        min-width: 50px;
    }
    
    .countdown-number {
        font-size: 1.5rem;
    }
    
    .countdown-label {
        font-size: 0.65rem;
    }
}
