/* ==========================================================================
   DESIGN SYSTEM & VARIABLES (Light Mode)
   ========================================================================== */
:root {
    /* Color Palette (Clean, premium light theme) */
    --bg-primary: #f8fafc;
    --card-bg: #ffffff;
    --card-border: #e2e8f0;
    
    --text-main: #0f172a;
    --text-muted: #475569;
    --text-dark: #94a3b8;
    
    /* Vibrant Accent Colors */
    --accent-indigo: #4f46e5;
    --accent-purple: #7c3aed;
    --accent-blue: #0ea5e9;
    
    /* Typography */
    --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    
    /* Spacing & Scaling */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2.5rem;
    --spacing-xl: 4rem;
    
    --transition-smooth: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    width: 100%;
    height: 100%;
    background-color: var(--bg-primary);
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ==========================================================================
   LAYOUT WRAPPER
   ========================================================================== */
.wrapper {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-md);
}

/* ==========================================================================
   CLEAN MINIMALIST CARD
   ========================================================================== */
.card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 24px;
    padding: var(--spacing-lg) var(--spacing-lg);
    width: 100%;
    max-width: 580px;
    box-shadow: 
        0 10px 30px rgba(15, 23, 42, 0.04),
        0 1px 3px rgba(15, 23, 42, 0.02);
    transition: var(--transition-smooth);
}

.card:hover {
    box-shadow: 
        0 20px 40px rgba(15, 23, 42, 0.06),
        0 1px 3px rgba(15, 23, 42, 0.02);
}

/* ==========================================================================
   CARD HEADER Elements
   ========================================================================== */
.card-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
}

.logo-box {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: var(--spacing-xs);
    position: relative;
    padding: 5px;
}

/* Static Logo Rings (Animations Removed) */
.logo-ring-outer {
    transform-origin: center;
}

.logo-ring-inner {
    transform-origin: center;
}

.logo-core {
    transform-origin: center;
}

/* Static Status Badge */
.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    border-radius: 100px;
    padding: 6px 14px;
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.status-dot {
    width: 7px;
    height: 7px;
    background-color: var(--accent-blue);
    border-radius: 50%;
}

/* ==========================================================================
   CARD BODY Elements
   ========================================================================== */
.card-body {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.headline {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 2.25rem;
    line-height: 1.25;
    letter-spacing: -0.02em;
    color: var(--text-main);
    margin-bottom: var(--spacing-sm);
}

.highlight-text {
    background: linear-gradient(135deg, var(--accent-indigo) 0%, var(--accent-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tagline {
    font-size: 0.98rem;
    color: var(--text-muted);
    max-width: 440px;
    margin: 0 auto;
    font-weight: 400;
    line-height: 1.65;
}

/* ==========================================================================
   CARD FOOTER Elements (Static Progress Bar)
   ========================================================================== */
.card-footer {
    width: 100%;
}

.progress-wrapper {
    max-width: 440px;
    margin: 0 auto;
}

.progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: var(--spacing-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.progress-bar-bg {
    width: 100%;
    height: 6px;
    background: #e2e8f0;
    border-radius: 100px;
    overflow: hidden;
    position: relative;
}

.progress-bar-fill {
    height: 100%;
    width: 85%;
    border-radius: 100px;
    background: linear-gradient(90deg, var(--accent-indigo), var(--accent-purple));
    position: relative;
}

/* ==========================================================================
   RESPONSIVENESS & MEDIA QUERIES
   ========================================================================== */

/* Large Mobile Devices */
@media (max-width: 640px) {
    :root {
        --spacing-md: 1.25rem;
        --spacing-lg: 1.75rem;
    }
    
    .card {
        padding: var(--spacing-lg) var(--spacing-md);
        border-radius: 20px;
    }
    
    .headline {
        font-size: 1.85rem;
    }
    
    .tagline {
        font-size: 0.92rem;
    }
}

/* Small Mobile Devices */
@media (max-width: 380px) {
    .headline {
        font-size: 1.6rem;
    }
    
    .status-badge {
        padding: 5px 10px;
        font-size: 0.72rem;
    }
}

/* Visual centering adjustment for taller viewports */
@media (min-height: 800px) {
    .card {
        margin-top: -5vh;
    }
}
