/* ============================================================
   FONTS
============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

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

body {
    min-height: 100vh;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: linear-gradient(135deg, #ecfdf5 0%, #ffffff 50%, #f0fdfa 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1.5rem;
    overflow: hidden;
    position: relative;
}

/* ============================================================
   ANIMATED BACKGROUND BLOBS
============================================================ */
.bg-blob {
    position: fixed;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    pointer-events: none;
    animation: float 20s ease-in-out infinite;
}

.bg-blob-1 {
    width: 400px;
    height: 400px;
    background: #6ee7b7;
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.bg-blob-2 {
    width: 350px;
    height: 350px;
    background: #a7f3d0;
    bottom: -80px;
    left: -80px;
    animation-delay: -7s;
}

.bg-blob-3 {
    width: 250px;
    height: 250px;
    background: #34d399;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -14s;
    opacity: 0.15;
}

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

/* ============================================================
   CONTAINER
============================================================ */
.container {
    max-width: 48rem;
    width: 100%;
    position: relative;
    z-index: 10;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 2rem;
    border: 1px solid rgba(16, 185, 129, 0.15);
    box-shadow: 0 25px 60px -15px rgba(16, 185, 129, 0.15);
    padding: 3rem 2.5rem;
    text-align: center;
}

@media (max-width: 640px) {
    .container {
        padding: 2rem 1.5rem;
        border-radius: 1.5rem;
    }
}

/* ============================================================
   LOGO
============================================================ */
.logo-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
}

.logo {
    width: 3.5rem;
    height: 3.5rem;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px -8px rgba(16, 185, 129, 0.4);
}

.logo-icon {
    width: 2rem;
    height: 2rem;
    color: #ffffff;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #111827;
    letter-spacing: -0.02em;
}

/* ============================================================
   CONTENT
============================================================ */
.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.icon-wrapper {
    width: 4rem;
    height: 4rem;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
}

.icon {
    width: 2rem;
    height: 2rem;
    color: #10b981;
}

.title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #111827;
    letter-spacing: -0.02em;
}

@media (max-width: 640px) {
    .title {
        font-size: 1.875rem;
    }
}

.subtitle {
    font-size: 1.125rem;
    color: #6b7280;
    line-height: 1.8;
    max-width: 32rem;
    margin: 0 auto;
}

@media (max-width: 640px) {
    .subtitle {
        font-size: 1rem;
    }
}

/* ============================================================
   PROGRESS BAR
============================================================ */
.progress-wrapper {
    width: 100%;
    max-width: 24rem;
    margin: 0.5rem 0;
}

.progress-bar {
    width: 100%;
    height: 0.5rem;
    background: #e5e7eb;
    border-radius: 9999px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #34d399, #10b981);
    border-radius: 9999px;
    transition: width 1.5s ease-in-out;
    animation: shimmer 2s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

.progress-label {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: #059669;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* ============================================================
   FEATURES PREVIEW
============================================================ */
.features-preview {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem 1rem;
    margin: 0.5rem 0;
}

.feature-tag {
    font-size: 0.75rem;
    font-weight: 500;
    color: #6b7280;
    background: rgba(16, 185, 129, 0.06);
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    border: 1px solid rgba(16, 185, 129, 0.1);
    transition: all 0.3s;
}

.feature-tag:hover {
    background: rgba(16, 185, 129, 0.12);
    color: #059669;
    transform: translateY(-2px);
}

/* ============================================================
   NOTIFY BUTTON
============================================================ */
.notify-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #10b981, #059669);
    color: #ffffff;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px -8px rgba(16, 185, 129, 0.35);
    text-decoration: none;
    margin-top: 0.5rem;
}

.notify-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px -8px rgba(16, 185, 129, 0.45);
}

.notify-btn:active {
    transform: translateY(0);
}

.notify-icon {
    width: 1.125rem;
    height: 1.125rem;
}

/* ============================================================
   FOOTER
============================================================ */
.footer {
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(229, 231, 235, 0.6);
}

.footer p {
    font-size: 0.75rem;
    color: #9ca3af;
}

.footer-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.social-link {
    font-size: 0.75rem;
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s;
}

.social-link:hover {
    color: #10b981;
}

.social-divider {
    font-size: 0.75rem;
    color: #d1d5db;
}