:root {
    --bg-color: #f7f6f4;
    --card-bg: rgba(255, 255, 255, 0.8);
    --card-border: rgba(0, 0, 0, 0.06);
    --text-primary: #1a1a18;
    --text-secondary: #6b6b62;
    --accent-1: #2d4a38;
    --accent-2: #8a7a5a;
    --accent-glow: rgba(45, 74, 56, 0.15);
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

/* Dynamic animated background blob */
#blob {
    background: linear-gradient(to right, var(--accent-1), var(--accent-2));
    height: 34vmax;
    aspect-ratio: 1;
    position: absolute;
    left: 50%;
    top: 50%;
    translate: -50% -50%;
    border-radius: 50%;
    animation: rotate 20s infinite;
    opacity: 0.12;
    z-index: 1;
}

#blur {
    height: 100%;
    width: 100%;
    position: absolute;
    z-index: 2;
    backdrop-filter: blur(12vmax);
    -webkit-backdrop-filter: blur(12vmax);
}

@keyframes rotate {
    from {
        rotate: 0deg;
    }
    50% {
        scale: 1 1.5;
    }
    to {
        rotate: 360deg;
    }
}

.container {
    width: 100%;
    max-width: 800px;
    padding: 2rem;
    z-index: 10;
    position: relative;
}

.glass-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 24px;
    padding: 3rem;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04), inset 0 1px 0 rgba(255, 255, 255, 0.6);
    transform: translateY(20px);
    opacity: 0;
    animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 3rem;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--accent-1), #3d6b50);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 0 20px var(--accent-glow);
}

.logo-icon svg {
    width: 20px;
    height: 20px;
}

.logo span {
    font-size: 1.25rem;
    font-weight: 500;
    letter-spacing: -0.01em;
    font-family: 'Playfair Display', serif;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(45, 74, 56, 0.06);
    border: 1px solid rgba(45, 74, 56, 0.12);
    border-radius: 100px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--accent-1);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    line-height: 1.15;
    font-weight: 400;
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
    color: var(--text-primary);
}

h1 span.gradient {
    background: linear-gradient(to right, var(--accent-1), var(--accent-2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-style: italic;
}

p {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 600px;
    margin-bottom: 2.5rem;
    font-weight: 400;
}

.footer {
    border-top: 1px solid var(--card-border);
    padding-top: 1.5rem;
}

.footer p {
    font-size: 0.875rem;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .glass-card {
        padding: 2rem;
    }
    
    h1 {
        font-size: 2.5rem;
    }
}
