/* ==========================================================================
   Sempre Marketing - Coming Soon Page Styles
   Designed with deep dark aesthetic, animated organic mesh, topography waves & glassmorphism
   ========================================================================== */

:root {
    --bg-dark: #06070c;
    --bg-card: rgba(255, 255, 255, 0.035);
    --border-card: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(0, 210, 255, 0.3);
    
    --primary-blue: #0052ff;
    --primary-cyan: #00d2ff;
    --accent-purple: #7000ff;
    --accent-teal: #00f2fe;
    
    --text-main: #ffffff;
    --text-muted: #94a3b8;
    --text-dim: #64748b;
    
    --font-heading: 'Outfit', 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;

    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;

    --transition-smooth: cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Box Sizing */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    height: 100%;
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ==========================================================================
   Background Animated Layers (Matching Slide 13)
   ========================================================================== */

.bg-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    overflow: hidden;
    background: radial-gradient(circle at 50% 50%, #0d111e 0%, #06070c 100%);
}

/* Floating Organic Mesh Blobs */
.blob {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    will-change: transform, opacity;
}

.blob-1 {
    bottom: -10%;
    left: -10%;
    width: 55vw;
    height: 55vw;
    max-width: 700px;
    max-height: 700px;
    background: radial-gradient(circle, rgba(0, 210, 255, 0.25) 0%, rgba(0, 82, 255, 0.15) 50%, transparent 80%);
    filter: blur(90px);
    animation: floatBlob1 22s var(--transition-smooth) infinite alternate;
}

.blob-2 {
    top: -15%;
    right: -10%;
    width: 60vw;
    height: 60vw;
    max-width: 750px;
    max-height: 750px;
    background: radial-gradient(circle, rgba(112, 0, 255, 0.28) 0%, rgba(0, 82, 255, 0.18) 50%, transparent 80%);
    filter: blur(100px);
    animation: floatBlob2 26s var(--transition-smooth) infinite alternate;
}

.blob-3 {
    top: 40%;
    left: 15%;
    width: 40vw;
    height: 40vw;
    max-width: 500px;
    max-height: 500px;
    background: radial-gradient(circle, rgba(0, 242, 254, 0.18) 0%, rgba(0, 162, 255, 0.1) 60%, transparent 80%);
    filter: blur(80px);
    animation: floatBlob3 18s var(--transition-smooth) infinite alternate;
}

.blob-4 {
    bottom: 5%;
    right: 10%;
    width: 45vw;
    height: 45vw;
    max-width: 550px;
    max-height: 550px;
    background: radial-gradient(circle, rgba(0, 82, 255, 0.22) 0%, rgba(112, 0, 255, 0.12) 60%, transparent 80%);
    filter: blur(95px);
    animation: floatBlob4 20s var(--transition-smooth) infinite alternate;
}

@keyframes floatBlob1 {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(60px, -40px) scale(1.1); }
    100% { transform: translate(-30px, 50px) scale(0.95); }
}

@keyframes floatBlob2 {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-70px, 60px) scale(1.08); }
    100% { transform: translate(40px, -30px) scale(0.92); }
}

@keyframes floatBlob3 {
    0% { transform: translate(0, 0) scale(0.9); }
    100% { transform: translate(50px, -60px) scale(1.15); }
}

@keyframes floatBlob4 {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-50px, -40px) scale(1.05); }
}

/* Topographic Waves Canvas */
#topoCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.7;
    pointer-events: none;
}

/* Interactive Cursor Glow */
.cursor-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    margin-top: -300px;
    margin-left: -300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 210, 255, 0.12) 0%, rgba(0, 82, 255, 0.04) 40%, transparent 70%);
    pointer-events: none;
    z-index: 2;
    transition: opacity 0.5s ease;
    mix-blend-mode: screen;
}

/* Film Grain Texture Overlay */
.grain-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
    opacity: 0.28;
    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.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    mix-blend-mode: overlay;
}

/* ==========================================================================
   Main Content Layout
   ========================================================================== */

.main-container {
    position: relative;
    z-index: 10;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem 1.5rem 6rem;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

/* Status Pill Badge */
.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-full);
    backdrop-filter: blur(12px);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    color: var(--primary-cyan);
    margin-bottom: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.status-badge:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(0, 210, 255, 0.3);
    transform: translateY(-2px);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--primary-cyan);
    box-shadow: 0 0 10px var(--primary-cyan);
    animation: pulseGlow 2s infinite ease-in-out;
}

@keyframes pulseGlow {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.6; box-shadow: 0 0 16px var(--primary-cyan); }
}

/* Brand Logo Container */
.logo-wrapper {
    position: relative;
    margin-bottom: 2.5rem;
    display: inline-block;
}

.logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 140%;
    background: radial-gradient(ellipse at center, rgba(0, 210, 255, 0.2) 0%, rgba(0, 82, 255, 0.08) 50%, transparent 75%);
    filter: blur(25px);
    border-radius: 50%;
    z-index: -1;
    pointer-events: none;
}

.brand-logo {
    max-width: 320px;
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.5));
    transition: transform 0.4s var(--transition-smooth);
}

.brand-logo:hover {
    transform: scale(1.03);
}

/* Main Text Content */
.text-content {
    max-width: 680px;
    margin-bottom: 2.5rem;
}

.main-title {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 1.25rem;
    color: var(--text-main);
}

.gradient-text {
    background: linear-gradient(135deg, #ffffff 10%, var(--primary-cyan) 50%, var(--primary-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    filter: drop-shadow(0 2px 10px rgba(0, 210, 255, 0.3));
}

.subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-muted);
}

.white-text {
    color: var(--text-main);
    font-weight: 600;
}

/* Action Card & Email Form */
.action-card {
    width: 100%;
    max-width: 540px;
    margin-bottom: 3rem;
}

.notify-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.input-group {
    position: relative;
    display: flex;
    align-items: center;
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-full);
    padding: 6px 6px 6px 18px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.input-group:focus-within {
    border-color: var(--border-hover);
    box-shadow: 0 10px 35px rgba(0, 210, 255, 0.15), 0 0 0 2px rgba(0, 210, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
}

.input-icon {
    width: 20px;
    height: 20px;
    color: var(--text-dim);
    flex-shrink: 0;
    margin-right: 12px;
    transition: color 0.3s ease;
}

.input-group:focus-within .input-icon {
    color: var(--primary-cyan);
}

.input-group input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 0.95rem;
    width: 100%;
}

.input-group input::placeholder {
    color: var(--text-dim);
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--primary-cyan) 0%, var(--primary-blue) 100%);
    border: none;
    outline: none;
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    padding: 14px 24px;
    border-radius: var(--radius-full);
    cursor: pointer;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(0, 162, 255, 0.35);
    transition: all 0.3s var(--transition-smooth);
}

.btn-primary:hover {
    transform: translateY(-1px) scale(1.02);
    box-shadow: 0 6px 25px rgba(0, 210, 255, 0.5);
    background: linear-gradient(135deg, #33dcff 0%, #1a66ff 100%);
}

.btn-primary:active {
    transform: translateY(0) scale(0.98);
}

.btn-icon {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

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

/* Form Feedback */
.form-feedback {
    font-size: 0.85rem;
    font-weight: 500;
    min-height: 20px;
    opacity: 0;
    transform: translateY(-5px);
    transition: all 0.3s ease;
}

.form-feedback.show {
    opacity: 1;
    transform: translateY(0);
}

.form-feedback.success {
    color: #4ade80;
}

.form-feedback.error {
    color: #f87171;
}

/* Social & Contact Buttons */
.social-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.social-label {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: var(--text-dim);
    text-transform: uppercase;
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-full);
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    backdrop-filter: blur(12px);
    transition: all 0.3s var(--transition-smooth);
}

.social-btn svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease, color 0.3s ease;
}

.social-btn:hover {
    color: var(--text-main);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(0, 210, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 210, 255, 0.15);
}

.social-btn:hover svg {
    color: var(--primary-cyan);
    transform: scale(1.1);
}

/* ==========================================================================
   Footer
   ========================================================================== */

.footer {
    position: relative;
    z-index: 10;
    margin-top: auto;
    padding-bottom: 2rem;
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-dim);
}

/* ==========================================================================
   Animations
   ========================================================================== */

.fade-in-down {
    animation: fadeInDown 0.8s var(--transition-smooth) forwards;
}

.fade-in-scale {
    animation: fadeInScale 0.9s var(--transition-smooth) forwards;
}

.fade-in-up {
    animation: fadeInUp 0.9s var(--transition-smooth) forwards;
}

.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.45s; }

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

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.92);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

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

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */

@media (max-width: 640px) {
    .main-container {
        padding: 2rem 1.25rem 4rem;
    }

    .status-badge {
        margin-bottom: 1.75rem;
    }

    .brand-logo {
        max-width: 240px;
    }

    .logo-wrapper {
        margin-bottom: 1.75rem;
    }

    .input-group {
        flex-direction: column;
        align-items: stretch;
        border-radius: var(--radius-md);
        padding: 12px;
        gap: 12px;
    }

    .input-group input {
        padding: 6px 0;
        text-align: center;
    }

    .input-icon {
        display: none;
    }

    .btn-primary {
        justify-content: center;
        width: 100%;
        padding: 14px;
        border-radius: var(--radius-md);
    }

    .social-links {
        gap: 8px;
    }

    .social-btn {
        padding: 8px 14px;
        font-size: 0.8rem;
    }
}
