:root {
    --ce-navy: #0f2942;
    --ce-teal: #0f766e;
    --ce-teal-dark: #0b5a53;
    --ce-bg: #f6f8fa;
    --ce-ink: #1c2b3a;
    --ce-muted: #5a6b7b;
    --ce-verified: #157347;
    --ce-verified-bg: #e7f5ec;
    --ce-warn: #8a5a00;
    --ce-warn-bg: #fff6e5;
    --ce-lock-bg: #eef1f5;
}

html { font-size: 15px; position: relative; min-height: 100%; }
@media (min-width: 768px) { html { font-size: 16px; } }

body {
    color: var(--ce-ink);
    background: var(--ce-bg);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

main { min-height: 68vh; }

/* Nav */
.ce-nav { background: var(--ce-navy); box-shadow: 0 1px 6px rgba(0,0,0,.15); }
.ce-nav .navbar-brand { color: #fff; font-weight: 700; }
.ce-nav .nav-link { color: #d6e0ea !important; }
.ce-nav .nav-link:hover { color: #fff !important; }
.ce-logo { color: #34d399; font-weight: 900; }
.ce-nav .form-control { min-width: 180px; }

/* Hero */
.ce-hero { background: linear-gradient(135deg, var(--ce-navy), #16385c); color: #fff; padding: 3.5rem 0; }
.ce-hero h1 { font-weight: 800; letter-spacing: -.5px; }
.ce-hero .lead { color: #cfe0ee; }
.ce-hero .form-control { height: 52px; font-size: 1.05rem; }

.container.ce-section { padding-top: 2rem; padding-bottom: 2rem; }

/* Verification trust seal */
.verified-badge {
    display: inline-flex; align-items: center; gap: .5rem;
    background: var(--ce-verified-bg); color: var(--ce-verified);
    border: 1px solid #b7dfc4; border-radius: 999px;
    padding: .45rem .9rem; font-weight: 600; font-size: .95rem;
}
.verified-badge .seal { font-size: 1.1rem; }
.verified-badge.stale { background: var(--ce-warn-bg); color: var(--ce-warn); border-color: #f0d9a8; }

/* Impostor warning */
.impostor-warning {
    background: var(--ce-warn-bg); border: 1px solid #f0d9a8; color: var(--ce-warn);
    border-radius: 10px; padding: 1rem 1.15rem; margin: 1.25rem 0;
}

/* Cards */
.rep-card { background: #fff; border: 1px solid #e3e8ee; border-radius: 12px; padding: 1.1rem 1.25rem; margin-bottom: 1rem; }
.rep-card .role { color: var(--ce-teal); font-weight: 700; text-transform: uppercase; font-size: .78rem; letter-spacing: .5px; }
.rep-card .org { font-size: 1.15rem; font-weight: 700; }

.celeb-card {
    display: block; background: #fff; border: 1px solid #e3e8ee; border-radius: 12px;
    padding: 1rem; height: 100%; text-decoration: none; color: var(--ce-ink);
    transition: box-shadow .15s ease, transform .15s ease;
}
.celeb-card:hover { box-shadow: 0 6px 20px rgba(15,41,66,.10); transform: translateY(-2px); }
.celeb-card .cat { color: var(--ce-teal); font-size: .78rem; font-weight: 700; text-transform: uppercase; }
.celeb-card .nm { font-weight: 700; font-size: 1.05rem; }

/* Locked / paid teaser */
.locked-panel { position: relative; background: var(--ce-lock-bg); border: 1px dashed #c4cdd8; border-radius: 12px; padding: 1.25rem; margin: 1.25rem 0; }
.locked-panel .blurred { filter: blur(5px); -webkit-user-select: none; user-select: none; pointer-events: none; opacity: .8; }
.locked-panel .upgrade-cta { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; gap: .5rem; }
.btn-teal { background: var(--ce-teal); border-color: var(--ce-teal); color: #fff; }
.btn-teal:hover { background: var(--ce-teal-dark); border-color: var(--ce-teal-dark); color: #fff; }

/* Pricing */
.price-card { background: #fff; border: 1px solid #e3e8ee; border-radius: 14px; padding: 1.75rem; height: 100%; }
.price-card.featured { border-color: var(--ce-teal); box-shadow: 0 8px 28px rgba(15,118,110,.12); }
.price-card .price { font-size: 2.2rem; font-weight: 800; }

/* Footer */
.ce-footer { background: #fff; border-top: 1px solid #e3e8ee; padding: 1.75rem 0; margin-top: 2.5rem; }
.ce-footer a { color: var(--ce-muted); text-decoration: none; }
.ce-footer a:hover { color: var(--ce-teal); }

.page-head { padding: 1.75rem 0 .5rem; }
.page-head h1 { font-weight: 800; }

.btn:focus, .btn:active:focus, .form-control:focus { box-shadow: 0 0 0 .2rem rgba(15,118,110,.25); }
