:root {
    --green: #1D9E75;
    --green-dark: #157a5a;
    --bg: #f8f9fa;
    --text: #1a1a1a;
    --muted: #6c757d;
    --border: #dee2e6;
    --card-bg: #ffffff;
    --radius: 12px;
}

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

body {
    font-family: 'Work Sans', sans-serif;
    background: var(--bg);
    color: var(--text);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

a { color: var(--green); text-decoration: none; }
a:hover { color: var(--green-dark); text-decoration: underline; }

/* ── Nav ── */
.nav {
    background: var(--card-bg);
    border-bottom: 1px solid var(--border);
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    height: 56px;
    gap: 1rem;
}
.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--green);
    text-decoration: none;
}
.nav-brand:hover { text-decoration: none; color: var(--green-dark); }
.nav-brand svg { width: 24px; height: 24px; }

/* ── Main ── */
.main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
}

/* ── Card ── */
.card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    max-width: 480px;
    width: 100%;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

/* ── Placeholder ── */
.placeholder-icon {
    width: 56px;
    height: 56px;
    background: #e8f5ef;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
}
.placeholder-icon svg { width: 28px; height: 28px; color: var(--green); }

.card h1 { font-size: 1.35rem; font-weight: 700; margin-bottom: 0.5rem; text-align: center; }
.card p  { color: var(--muted); font-size: 0.95rem; text-align: center; line-height: 1.6; }

.badge-coming {
    display: inline-block;
    background: #e8f5ef;
    color: var(--green);
    font-size: 0.78rem;
    font-weight: 600;
    padding: 0.2rem 0.65rem;
    border-radius: 99px;
    margin-bottom: 1rem;
}

/* ── Footer ── */
.footer {
    text-align: center;
    padding: 1.25rem;
    font-size: 0.8rem;
    color: var(--muted);
    border-top: 1px solid var(--border);
}
