:root {
    --bg-color: #f2f1ee;
    --text-color: #1d1c1a;
    --accent-color: #1c2c3a;
    --secondary-text: #4d4a45;
    --font-heading: 'Unbounded', sans-serif;
    --font-body: 'Manrope', sans-serif;
    --card-bg: rgba(255, 255, 255, 0.72);
    --card-border: rgba(28, 44, 58, 0.12);
    --chip-bg: rgba(28, 44, 58, 0.08);
    --chip-border: rgba(28, 44, 58, 0.2);
    --accent-glow: rgba(241, 180, 110, 0.65);
}

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

body, html {
    height: 100%;
    font-family: var(--font-body);
    background: radial-gradient(circle at top left, #f7f1e2 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, #d5ebe8 0%, transparent 45%),
                linear-gradient(135deg, #f9f6f1 0%, #ece8e1 100%);
    color: var(--text-color);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
}

.container {
    text-align: center;
    padding: 2rem;
    max-width: 640px;
    width: 100%;
    opacity: 0;
    animation: fadeIn 1.2s ease-out forwards;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 28px;
    box-shadow: 0 20px 60px rgba(28, 44, 58, 0.15);
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 2;
}

.logo-container {
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.logo {
    max-width: 150px;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 14px 40px rgba(28, 44, 58, 0.2);
    animation: float 6s ease-in-out infinite;
}

.badge {
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    background: var(--chip-bg);
    border: 1px solid var(--chip-border);
    color: var(--accent-color);
    font-weight: 600;
}

.title {
    font-family: var(--font-heading);
    font-size: 3.1rem;
    font-weight: 600;
    letter-spacing: -0.04em;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.eyebrow {
    font-size: 0.95rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(28, 44, 58, 0.7);
    margin-bottom: 0.5rem;
}

.subtitle {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--secondary-text);
    margin-bottom: 0.5rem;
}

.description {
    font-size: 1rem;
    color: var(--secondary-text);
    opacity: 0.8;
}

.cta-row {
    display: flex;
    gap: 0.8rem;
    justify-content: center;
    flex-wrap: wrap;
    margin: 2rem 0 1.5rem;
}

.chip {
    padding: 0.6rem 1rem;
    border-radius: 999px;
    background: var(--chip-bg);
    border: 1px solid var(--chip-border);
    font-size: 0.9rem;
    color: var(--accent-color);
    font-weight: 600;
}

.progress {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.progress-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: rgba(28, 44, 58, 0.65);
}

.progress-bar {
    height: 8px;
    background: rgba(28, 44, 58, 0.1);
    border-radius: 999px;
    overflow: hidden;
}

.progress-fill {
    display: block;
    height: 100%;
    width: 72%;
    background: linear-gradient(90deg, #f1b46e 0%, #e07a5f 100%);
    border-radius: 999px;
    animation: progress 3s ease-in-out infinite;
}

.milestones {
    list-style: none;
    display: grid;
    gap: 0.5rem;
    margin: 0;
    padding: 0;
    font-size: 0.95rem;
    color: var(--secondary-text);
}

.milestones li {
    position: relative;
    padding-left: 1.6rem;
}

.milestones li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.45rem;
    width: 0.7rem;
    height: 0.7rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #f1b46e 0%, #e07a5f 100%);
    box-shadow: 0 0 12px var(--accent-glow);
}

.footer {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.loader-line {
    width: 120px;
    height: 6px;
    background: linear-gradient(90deg, rgba(28, 44, 58, 0.25), rgba(28, 44, 58, 0.7), rgba(28, 44, 58, 0.25));
    border-radius: 999px;
    animation: pulse 2.5s infinite;
}

.footer-note {
    font-size: 0.95rem;
    color: rgba(28, 44, 58, 0.65);
}

.bg-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(28, 44, 58, 0.05) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(28, 44, 58, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.5;
    pointer-events: none;
}

.bg-blur {
    position: absolute;
    border-radius: 50%;
    filter: blur(0px);
    opacity: 0.8;
    pointer-events: none;
}

.blur-one {
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(241, 180, 110, 0.7), transparent 70%);
    top: 5%;
    left: 8%;
    animation: drift 14s ease-in-out infinite;
}

.blur-two {
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(96, 168, 166, 0.6), transparent 70%);
    bottom: 8%;
    right: 10%;
    animation: drift 12s ease-in-out infinite reverse;
}

.reveal {
    opacity: 0;
    transform: translateY(16px);
    animation: rise 1s ease forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }
.delay-6 { animation-delay: 0.6s; }
.delay-7 { animation-delay: 0.7s; }
.delay-8 { animation-delay: 0.8s; }
.delay-9 { animation-delay: 0.9s; }

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% { opacity: 0.3; transform: scaleX(0.8); }
    50% { opacity: 1; transform: scaleX(1); }
    100% { opacity: 0.3; transform: scaleX(0.8); }
}

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

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@keyframes drift {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(20px, -16px); }
}

@keyframes progress {
    0%, 100% { width: 68%; }
    50% { width: 78%; }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .title {
        font-size: 2.3rem;
    }
    .subtitle {
        font-size: 1.05rem;
    }
    .container {
        padding: 1.5rem;
    }
    .progress {
        margin-bottom: 1rem;
    }
    .cta-row {
        margin: 1.5rem 0 1rem;
    }
    .bg-grid {
        background-size: 28px 28px;
    }
}
