:root {
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
    --primary: #1e3a8a; /* Deep blue */
    --accent: #f59e0b; /* Amber/Yellow */
    --text-main: #1e293b;
    --text-muted: #475569;
}

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

body {
    font-family: var(--font-body);
    color: var(--text-main);
    background-color: #f8fafc;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* Dynamic Light Background */
.dynamic-background {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    z-index: 0;
    background: #f1f5f9;
    overflow: hidden;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.6;
    animation: drift 20s infinite alternate ease-in-out;
}

.blob-1 { width: 600px; height: 600px; background: #bfdbfe; top: -100px; left: -100px; }
.blob-2 { width: 500px; height: 500px; background: #fde68a; bottom: -200px; right: -100px; animation-delay: -5s; }
.blob-3 { width: 400px; height: 400px; background: #e2e8f0; top: 40%; left: 50%; animation-delay: -10s; }

.grid-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: linear-gradient(rgba(148, 163, 184, 0.1) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(148, 163, 184, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 1;
}

/* Container & Glass Card */
.container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 750px;
    padding: 2rem;
    margin: 0 auto;
}

.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 24px;
    padding: 3.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05), inset 0 0 0 1px rgba(255, 255, 255, 0.5);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transform: perspective(1000px);
}

.logo-wrapper {
    background: white;
    padding: 1.5rem;
    border-radius: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    margin: 0 auto 2rem auto;
}

.logo {
    max-width: 320px;
    height: auto;
    display: block;
}

.subtitle {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.subtitle::before,
.subtitle::after {
    content: '';
    display: inline-block;
    width: 30px;
    height: 2px;
    background-color: var(--accent);
    margin: 0 15px;
}

.title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.description {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

.description strong {
    color: var(--text-main);
}

/* Progress Bar */
.progress-section {
    max-width: 500px;
    margin: 0 auto 2.5rem;
}

.progress-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.6rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
}

.percentage-text {
    color: var(--primary);
    font-weight: 700;
    font-size: 1.1rem;
}

.progress-bar-bg {
    width: 100%;
    height: 8px;
    background: rgba(30, 58, 138, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--accent), #fbbf24);
    border-radius: 10px;
    transition: width 2s cubic-bezier(0.2, 0.8, 0.2, 1);
    position: relative;
}
.progress-bar-fill::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(
        45deg,
        rgba(255, 255, 255, 0.2) 25%,
        transparent 25%,
        transparent 50%,
        rgba(255, 255, 255, 0.2) 50%,
        rgba(255, 255, 255, 0.2) 75%,
        transparent 75%,
        transparent
    );
    background-size: 20px 20px;
    animation: progressStripe 1s linear infinite;
}

/* Contact */
.contact {
    border-top: 1px solid rgba(0,0,0,0.08);
    padding-top: 1.5rem;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.contact a {
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    transition: color 0.2s;
}

.contact a:hover {
    color: var(--accent);
}

.social-links {
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: transform 0.2s, color 0.2s;
}

.social-icon:hover {
    color: #e1306c;
    transform: scale(1.1);
}

@keyframes drift {
    0% { transform: translate(0px, 0px) scale(1); }
    33% { transform: translate(30px, -50px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
    100% { transform: translate(0px, 0px) scale(1); }
}

@keyframes progressStripe {
    0% { background-position: 0 0; }
    100% { background-position: 20px 0; }
}

@media (max-width: 600px) {
    .glass-card { padding: 2rem 1.5rem; }
    .title { font-size: 1.8rem; }
}
