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

:root {
    --primary-color: #2d3436;
    --accent-color: #DEB347;
    --accent-secondary: #00b894;
    --accent-warm: #e17055;
    --bg-color: #ffffff;
    --card-bg: rgba(255, 255, 255, 0.9);
    --text-primary: #2d3436;
    --text-secondary: #636e72;
    --text-muted: #b2bec3;
    --border-color: rgba(0, 0, 0, 0.06);
    --shadow-color: rgba(222, 179, 71, 0.08);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg-color);
    color: var(--text-primary);
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.6;
}

/* Background Animation */
.background-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
    animation: float 20s infinite ease-in-out;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(222, 179, 71, 0.15) 0%, transparent 70%);
    top: -10%;
    right: -10%;
    animation-delay: 0s;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 184, 148, 0.12) 0%, transparent 70%);
    bottom: -10%;
    left: -5%;
    animation-delay: 7s;
}

.orb-3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(225, 112, 85, 0.1) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 14s;
}

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

/* Container */
.container {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

/* Content Card */
.content-card {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 32px;
    padding: 3rem 2.5rem;
    max-width: 700px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06),
                0 0 80px var(--shadow-color);
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Logo Section */
.logo-section {
    text-align: center;
    margin-bottom: 2rem;
}

.logo-text {
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    color: var(--accent-color);
}

/* Typography */
.main-title {
    font-size: 3.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

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

.subtitle {
    text-align: center;
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    font-weight: 400;
}

/* Progress Section */
.progress-section {
    margin-bottom: 3rem;
}

.progress-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.progress-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
}

.progress-percentage {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
}

.progress-bar-container {
    margin-bottom: 2rem;
}

.progress-bar {
    width: 100%;
    height: 12px;
    background: rgba(222, 179, 71, 0.08);
    border-radius: 100px;
    overflow: hidden;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: var(--accent-color);
    border-radius: 100px;
    position: relative;
    width: 0%;
    transition: width 2s cubic-bezier(0.4, 0, 0.2, 1);
    animation: progressAnimation 2s ease-out forwards;
}

@keyframes progressAnimation {
    to {
        width: 70%;
    }
}

.progress-glow {
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5));
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100px);
    }
    100% {
        transform: translateX(100px);
    }
}

/* Milestones */
.progress-milestones {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.milestone {
    flex: 1;
    text-align: center;
    position: relative;
}

.milestone-dot {
    width: 12px;
    height: 12px;
    background: var(--text-muted);
    border-radius: 50%;
    margin: 0 auto 0.5rem;
    transition: all 0.3s ease;
}

.milestone.completed .milestone-dot {
    background: var(--accent-color);
    box-shadow: 0 0 15px rgba(222, 179, 71, 0.4);
}

.milestone.active .milestone-dot {
    background: var(--accent-secondary);
    box-shadow: 0 0 15px rgba(0, 184, 148, 0.5);
    animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(0, 184, 148, 0.4);
    }
    50% {
        box-shadow: 0 0 0 12px rgba(0, 184, 148, 0);
    }
}

.milestone span {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
}

.milestone.completed span {
    color: var(--accent-color);
    font-weight: 600;
}

.milestone.active span {
    color: var(--accent-secondary);
    font-weight: 600;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.feature-item {
    text-align: center;
    padding: 1.5rem 1rem;
    background: rgba(222, 179, 71, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(222, 179, 71, 0.06);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(222, 179, 71, 0.1);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
    filter: grayscale(0.3);
    transition: filter 0.3s ease;
}

.feature-item:hover .feature-icon {
    filter: grayscale(0);
}

.feature-item h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.feature-item p {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* Footer */
.footer-text {
    margin-top: 2rem;
    text-align: center;
}

.footer-text p {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .content-card {
        padding: 2rem 1.5rem;
    }

    .main-title {
        font-size: 2.5rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .progress-percentage {
        font-size: 1.5rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .progress-milestones {
        gap: 0.5rem;
    }

    .milestone span {
        font-size: 0.65rem;
    }

    .orb-1, .orb-2, .orb-3 {
        width: 300px;
        height: 300px;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 2rem;
    }

    .logo-circle {
        width: 80px;
        height: 80px;
    }

    .logo-circle svg {
        width: 48px;
        height: 48px;
    }
}
