:root {
    --bg-color: #faf9f6; /* Off-white/Parchment */
    --text-primary: #1a1a1a;
    --text-secondary: #555;
    --accent-color: #8da49c; /* Soft sage from logo palette */
    --font-main: 'Inter', sans-serif;
}

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

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

/* Grain Effect */
.grain {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3%3Cfilter id='noiseFilter'%3%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3%3C/filter%3%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3%3C/svg%3");
}

.container {
    max-width: 800px;
    padding: 2rem;
    text-align: center;
    z-index: 5;
}

#main-logo {
    max-width: 280px;
    height: auto;
    margin-bottom: 2.5rem;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.02));
}

h1 {
    font-weight: 500;
    font-size: 2.5rem;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: var(--text-primary);
}

p {
    font-weight: 300;
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 3rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background: white;
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}

.dot {
    width: 8px;
    height: 8px;
    background-color: var(--accent-color);
    border-radius: 50%;
    margin-right: 10px;
    animation: blink 2s infinite ease-in-out;
}

footer {
    position: absolute;
    bottom: 2rem;
    left: 0;
    right: 0;
    font-size: 0.75rem;
    color: #999;
}

/* Animations */
@keyframes blink {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 1; }
}

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

.fade-in {
    animation: fadeIn 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.fade-in-delayed {
    opacity: 0;
    animation: fadeIn 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
}

.fade-in-delayed-more {
    opacity: 0;
    animation: fadeIn 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.6s forwards;
}

@media (max-width: 600px) {
    h1 { font-size: 1.8rem; }
    p { font-size: 1rem; }
    #main-logo { max-width: 220px; }
}
