:root {
    --navy: #2c3e5c;
    --navy-dark: #1f2c42;
    --blue: #0369a1;
    --ink: #1e2530;
    --muted: #64748b;
    --bg: rgba(255, 255, 255, 0.8);
    --card: #ffffff;
    --border: #e3e7ee;
    --active-bg: #dff6e8;
    --active-text: #1c8a4d;
    --green: #1b7a45;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    min-height: 100vh;
    background: var(--bg);
    background-image:
        radial-gradient(
            circle at 15% 10%,
            rgba(31, 127, 209, 0.06),
            transparent 45%
        ),
        radial-gradient(
            circle at 85% 90%,
            rgba(44, 62, 92, 0.06),
            transparent 45%
        );
    font-family:
        Figtree,
        ui-sans-serif,
        system-ui,
        sans-serif,
        'Apple Color Emoji',
        'Segoe UI Emoji',
        Segoe UI Symbol,
        'Noto Color Emoji';
    color: var(--ink);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 48px 16px 6px 16px;
}

.page {
    width: 100%;
    max-width: 1024px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.card {
    flex: 1 1 auto;
    background: var(--card);
    border: 1px solid var(--border);
    /* border-radius: 14px; */
    box-shadow:
        0 20px 45px -20px rgba(30, 44, 66, 0.25),
        0 2px 8px rgba(30, 44, 66, 0.04);
    padding: 32px;
    animation: rise 0.5s ease both;
}

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

.brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 28px;
}

.brand svg {
    width: 100%;
    max-width: 340px;
    height: auto;
    display: block;
}

h1.title {
    font-weight: 600;
    font-size: 30px;
    color: #0369a1;
    margin: 0 0 30px;
    letter-spacing: 0.2px;
    text-align: center;
}

.body-text {
    font-size: 18px;
    line-height: 28px;
    color: #334155;
    text-align: justify;
}
.body-text b {
    color: var(--ink);
    font-weight: 700;
}

.status-line {
    font-size: 18px;
    line-height: 28px;
    color: #334155;
    margin: 0 0 30px;
    text-align: justify;
}

.status-pill {
    background: var(--active-bg);
    color: var(--active-text);
    font-weight: 600;
    font-size: 13px;
    padding: 4px 14px;
    letter-spacing: 0.3px;
}

.seal {
    display: block;
    width: 136px;
    height: auto;
    margin: 0 auto;
    /* border-radius: 6px; */
    /* box-shadow: 0 8px 18px -8px rgba(23, 87, 47, 0.55); */
}

.verify-link {
    margin: 14px 0 0;
    font-family: -apple-system, 'Segoe UI', sans-serif;
    font-size: 13.5px;
}
.verify-link a {
    color: var(--blue);
    text-decoration: none;
    font-weight: 600;
}
.verify-link a:hover {
    text-decoration: underline;
}

footer {
    margin-top: 26px;
    text-align: center;
    font-size: 14px;
    color: var(--muted);
}
footer .links {
    margin-top: 6px;
}
footer a {
    color: var(--blue);
    text-decoration: none;
}
footer a:hover {
    text-decoration: underline;
}
footer .sep {
    margin: 0 6px;
    color: #c2c8d2;
}

@media (max-width: 640px) {
    .card {
        padding: 34px 22px 28px;
    }
    .brand {
        flex-direction: column;
        gap: 12px;
        margin-bottom: 22px;
    }
    h1.title {
        margin-bottom: 22px;
    }

    .page {
        gap: 0;
    }
}
