:root {
    --green: #197f33;
    --dark: #202d23;
    --muted: #404d43;
    --sage: #d0dcd2;
    --mint: #f4fff7;
    --white: #ffffff;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    background: linear-gradient(135deg, var(--mint) 0%, var(--white) 50%, var(--sage) 100%);
    color: var(--dark);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.container {
    padding: 2rem;
    max-width: 600px;
    width: 100%;
}

.logo {
    width: 320px;
    height: auto;
    margin-bottom: 2rem;
    filter: drop-shadow(0 4px 12px rgba(25, 127, 51, 0.15));
}

h1 {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--dark);
    letter-spacing: -0.5px;
    margin-bottom: 0.5rem;
}

.bar {
    display: inline-block;
    width: 60px;
    height: 4px;
    background: var(--green);
    border-radius: 2px;
    margin-bottom: 1.5rem;
}

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

.tagline.small {
    margin-top: 1.5rem;
    font-size: 0.95rem;
}

.email {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--green);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--green);
    border-radius: 50px;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.email:hover {
    background: var(--green);
    color: var(--white);
}

.email svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* Responsive */
@media (max-width: 480px) {
    .container {
        padding: 1.5rem;
    }

    .logo {
        width: 220px;
    }

    h1 {
        font-size: 1.8rem;
    }

    .tagline {
        font-size: 1rem;
    }
}
