/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    min-height: 100%;
    /* Ensure full height baseline */
    overflow-x: hidden;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background-color: #F8FAFC;
    /* Slate-50 */
    color: #0F172A;
    /* Slate-900 */
    min-height: 100vh;
    /* Allow body to grow with content */
    width: 100%;
    position: relative;
    /* overflow-x: hidden; REMOVED to fix double scrollbar */
    display: flex;
    flex-direction: column;
}

/* Container & Layout */
.container {
    width: 100%;
    /* Use flex-grow to ensure centralized vertical positioning if content is short */
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 60px 20px;
}

/* Decorative Blobs - Reduced motion/size issues */
.blob {
    position: fixed;
    border-radius: 50%;
    filter: blur(80px);
    /* Reduced blur slightly for perfo */
    z-index: -1;
    opacity: 0.5;
    will-change: transform;
    /* GPU Optimization */
}

.blob-1 {
    width: 450px;
    height: 450px;
    top: -100px;
    left: -100px;
    background-color: rgba(99, 102, 241, 0.12);
    /* Indigo */
    animation: float 14s infinite ease-in-out;
}

.blob-2 {
    width: 400px;
    height: 400px;
    bottom: -80px;
    right: -80px;
    background-color: rgba(16, 185, 129, 0.12);
    /* Emerald */
    animation: float 16s infinite ease-in-out reverse;
}

@keyframes float {
    0% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(30px, 40px);
    }

    100% {
        transform: translate(0, 0);
    }
}

/* Content Wrapper */
.content {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 500px;
    /* Slightly more compact */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Branding */
.brand {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 40px;
    animation: fadeInDown 0.8s ease-out;
}

.logo-icon {
    width: 48px;
    height: 48px;
    background-color: #4F46E5;
    border-radius: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    box-shadow: 0 10px 25px -5px rgba(79, 70, 229, 0.4);
}

.logo-text {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #1E293B;
}

.logo-text span {
    color: #4F46E5;
}

/* Main Card */
.card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    width: 100%;
    padding: 56px 40px;
    border-radius: 32px;
    box-shadow: 0 20px 50px -12px rgba(0, 0, 0, 0.08), 0 0 1px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.6);
    margin-bottom: 32px;
    animation: fadeInUp 0.8s ease-out;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.icon-wrapper {
    position: relative;
    width: 96px;
    height: 96px;
    background-color: #F8FAFC;
    border-radius: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 32px;
    color: #64748B;
    border: 1px solid #F1F5F9;
}

.status-badge {
    position: absolute;
    bottom: -10px;
    background: #0F172A;
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.dot {
    width: 6px;
    height: 6px;
    background-color: #F59E0B;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(245, 158, 11, 0.6);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(0.9);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

h1 {
    font-size: 32px;
    font-weight: 900;
    line-height: 1.2;
    color: #0F172A;
    margin-bottom: 16px;
    letter-spacing: -0.03em;
}

p {
    color: #64748B;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 36px;
    max-width: 90%;
}

/* Progress Bar */
.progress-container {
    width: 100%;
    margin-bottom: 36px;
    background-color: #F8FAFC;
    padding: 16px;
    border-radius: 16px;
    border: 1px solid #F1F5F9;
}

.progress-label {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    font-weight: 700;
    color: #475569;
    margin-bottom: 10px;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background-color: #E2E8F0;
    border-radius: 100px;
    overflow: hidden;
}

.progress-fill {
    width: 55%;
    height: 100%;
    background-color: #4F46E5;
    border-radius: 100px;
    position: relative;
    overflow: hidden;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: linear-gradient(90deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.4) 50%,
            rgba(255, 255, 255, 0) 100%);
    transform: translateX(-100%);
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    100% {
        transform: translateX(100%);
    }
}

/* Button */
.contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 16px 24px;
    background-color: #0F172A;
    color: white;
    border-radius: 14px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.1);
}

.contact-btn:hover {
    background-color: #1E293B;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.2);
}

/* What's New Section */
.whats-new {
    width: 100%;
    margin-bottom: 40px;
    animation: fadeInUp 1s ease-out 0.2s backwards;
}

.new-header {
    margin-bottom: 20px;
    padding: 0 10px;
}

.new-header h2 {
    font-size: 16px;
    font-weight: 800;
    color: #1E293B;
    margin-bottom: 6px;
}

.new-header p {
    font-size: 13px;
    color: #64748B;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    text-align: left;
}

.feature-item {
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid white;
    padding: 18px;
    border-radius: 20px;
    transition: all 0.2s ease;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 8px 20px -4px rgba(0, 0, 0, 0.05);
}

.f-icon {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.bg-indigo {
    background-color: #EEF2FF;
    color: #4F46E5;
}

.bg-emerald {
    background-color: #ECFDF5;
    color: #10B981;
}

.f-content h3 {
    font-size: 13px;
    font-weight: 700;
    color: #334155;
    margin-bottom: 4px;
}

.f-content p {
    font-size: 11px;
    line-height: 1.5;
    color: #64748B;
    margin-bottom: 0;
}

/* Footer */
footer {
    font-size: 12px;
    font-weight: 600;
    color: #94A3B8;
    letter-spacing: 0.05em;
    opacity: 0.8;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Optimization */
@media (max-width: 540px) {
    .container {
        padding: 40px 16px;
        /* Less horizontal padding */
        /* min-height handled by body */
    }



    .content {
        padding: 0;
    }

    .card {
        padding: 40px 24px;
        border-radius: 24px;
    }

    h1 {
        font-size: 26px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .blob {
        width: 280px;
        height: 280px;
        opacity: 0.4;
    }
}