:root {
    --bg: #f5f7f6;
    --text-main: #1f2d27;
    --text-muted: #5f6f68;
    --green-accent: #3a8f6b;
    --green-light: #cceee0;
    --card-bg: #ffffff;
    --border: #e2e8e5;
    --font: "Inter", sans-serif;
}

body {
    margin: 0;
    font-family: var(--font);
    background: var(--bg);
    color: var(--text-main);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* HEADER */

header {
    padding: 24px 40px;
    display: flex;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-mark {
    width: 36px;
    height: 36px;
    border-radius: 6px;
    background: var(--green-accent);
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 600;
}

/* HERO */

main {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
}

.hero {
    max-width: 700px;
    background: var(--card-bg);
    padding: 60px 50px;
    border-radius: 16px;
    border: 1px solid var(--border);
    text-align: center;
}

.hero h1 {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 36px;
    line-height: 1.6;
}

.status-badge {
    display: inline-block;
    padding: 10px 22px;
    border-radius: 30px;
    background: var(--green-light);
    color: var(--green-accent);
    font-weight: 600;
    font-size: 0.95rem;
}

/* FOOTER */

footer {
    text-align: center;
    padding: 20px 0;
    font-size: 0.9rem;
    color: var(--text-muted);
}
