body {
    font-family: "Plus Jakarta Sans", sans-serif;
    color: #1f2d44;
    background: #f4f7fb;
}

.bg-pattern {
    min-height: 100vh;
    background:
        radial-gradient(circle at 15% 8%, rgba(93, 132, 255, 0.18), transparent 32%),
        radial-gradient(circle at 90% 16%, rgba(32, 173, 126, 0.14), transparent 28%),
        #f4f7fb;
}

.public-navbar {
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid #e6ebf3;
    transition: box-shadow .22s ease, background-color .22s ease, border-color .22s ease;
}

.public-navbar.is-scrolled {
    background: rgba(255, 255, 255, 0.92);
    border-bottom-color: #dbe5f4;
    box-shadow: 0 10px 28px rgba(24, 42, 72, 0.08);
}

.user-nav-btn {
    max-width: 240px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.brand-mark {
    background: linear-gradient(135deg, #15263f 0%, #223a61 100%);
    color: #fff;
    border-radius: 999px;
    padding: 7px 12px;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    font-weight: 800;
}

.brand-text {
    color: #60708a;
    font-size: 0.9rem;
}

.hero-section {
    padding: 58px 0 36px;
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    border: 1px solid #d8e4ff;
    background: #eff4ff;
    color: #2f5cff;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 6px 12px;
}

.hero-title {
    margin-top: 12px;
    margin-bottom: 10px;
    font-family: "Playfair Display", serif;
    font-weight: 700;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    line-height: 1.15;
    color: #16263f;
}

.hero-lead {
    color: #61728f;
    font-size: 1rem;
    max-width: 620px;
}

.lookup-card {
    border-radius: 16px;
    background: linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
}

.section-title {
    font-weight: 700;
    color: #1d304e;
}

.profile-grid {
    display: grid;
    gap: 9px;
}

.profile-grid div {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 12px;
    border-bottom: 1px dashed #e6edf7;
    padding-bottom: 8px;
}

.profile-grid span {
    color: #6f7f96;
    font-size: 0.88rem;
}

.profile-grid strong {
    font-weight: 600;
}

.sum-box {
    border: 1px solid #e3ebf7;
    border-radius: 12px;
    background: #fcfdff;
    padding: 11px 12px;
    height: 100%;
}

.sum-box small {
    display: block;
    color: #6f7f96;
    font-size: 0.78rem;
    margin-bottom: 4px;
}

.sum-box strong {
    font-size: 0.97rem;
    font-weight: 700;
}

.table-modern th {
    font-size: 0.77rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #677890;
    border-bottom-color: #e5ecf6;
}

.table-modern td {
    border-bottom-color: #edf2f8;
}

.reveal-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .65s ease, transform .65s ease;
}

.reveal-up.reveal-delay-1 {
    transition-delay: .08s;
}

.reveal-up.reveal-delay-2 {
    transition-delay: .16s;
}

.reveal-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.public-footer {
    border-top: 1px solid #e3eaf5;
    background: rgba(255, 255, 255, 0.75);
}

.footer-contact a {
    color: #425672;
    text-decoration: none;
    font-size: 0.9rem;
}

.footer-contact a:hover {
    color: #204a9f;
}

.dot-sep {
    margin: 0 8px;
    color: #8ea1bb;
}

@media (max-width: 767.98px) {
    .hero-section {
        padding-top: 36px;
    }

    .profile-grid div {
        grid-template-columns: 1fr;
        gap: 3px;
    }

    .dot-sep {
        display: none;
    }

    .footer-contact {
        display: grid;
        gap: 4px;
    }
}
