File: FelonkPay\wwwroot\css\public-site.css
/* ========================================
   FelonkPay — Public Site Styles
   Landing page, auth pages, marketing
   ======================================== */

/* ?? Body override for public pages ?? */
.fc-public-body {
    background: var(--fc-bg-base);
    min-height: 100vh;
}

/* Groundwork */
.fc-pub-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(8,13,23,0.82);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--fc-border);
}

.fc-pub-nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 28px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.fc-pub-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.fc-pub-brand-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--fc-primary), var(--fc-accent));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #fff;
    box-shadow: 0 0 16px rgba(47,128,237,0.3);
}

.fc-pub-brand-text {
    font-size: 16px;
    font-weight: 800;
    color: var(--fc-text-bright);
    letter-spacing: -0.3px;
}

.fc-pub-nav-links {
    display: flex;
    align-items: center;
    gap: 6px;
}

.fc-pub-nav-link {
    padding: 6px 14px;
    font-size: 13.5px;
    font-weight: 500;
    color: var(--fc-text-secondary);
    text-decoration: none;
    border-radius: var(--fc-radius-sm);
    transition: var(--fc-transition);
}

.fc-pub-nav-link:hover {
    color: var(--fc-text);
    background: var(--fc-bg-hover);
}

.fc-pub-nav-link-auth {
    color: var(--fc-text);
    font-weight: 600;
}

.fc-pub-nav-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.fc-pub-mobile-toggle {
    display: none;
    background: none;
    border: 1px solid var(--fc-border);
    color: var(--fc-text);
    width: 36px;
    height: 36px;
    border-radius: var(--fc-radius-sm);
    cursor: pointer;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

/* ???????????????????????????????????????????
   HERO
??????????????????????????????????????????? */

.fc-pub-hero {
    padding: 140px 28px 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.fc-pub-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 50%; right: 0; bottom: 0;
    width: 800px;
    height: 800px;
    margin-left: -400px;
    margin-top: -200px;
    background: radial-gradient(ellipse, rgba(47,128,237,0.07) 0%, transparent 65%);
    pointer-events: none;
}

.fc-pub-hero-inner {
    max-width: 760px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.fc-pub-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 5px 14px 5px 6px;
    background: var(--fc-accent-dim);
    border: 1px solid rgba(45,212,191,0.2);
    border-radius: var(--fc-radius-full);
    font-size: 12px;
    font-weight: 600;
    color: var(--fc-accent-bright);
    margin-bottom: 24px;
}

.fc-pub-hero-badge .badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--fc-accent);
    box-shadow: 0 0 8px rgba(45,212,191,0.6);
}

.fc-pub-hero h1 {
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 800;
    color: var(--fc-text-bright);
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin: 0 0 20px;
}

.fc-pub-hero h1 .hero-accent {
    background: linear-gradient(135deg, #2F80ED, #2DD4BF, #7B61FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.fc-pub-hero-sub {
    font-size: clamp(15px, 2vw, 18px);
    color: var(--fc-text-secondary);
    line-height: 1.7;
    margin: 0 0 36px;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
}

.fc-pub-hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.fc-pub-hero-actions .fc-btn {
    padding: 12px 28px;
    font-size: 14.5px;
}

/* Hero preview mockup */
.fc-pub-hero-preview {
    max-width: 900px;
    margin: 60px auto 0;
    position: relative;
}

.fc-pub-hero-preview-img {
    width: 100%;
    border-radius: var(--fc-radius-xl);
    border: 1px solid var(--fc-border);
    background: var(--fc-bg-surface);
    padding: 16px;
    box-shadow: 0 24px 80px rgba(0,0,0,0.45);
}

.fc-pub-hero-preview-glow {
    position: absolute;
    top: 50%; left: 50%;
    width: 600px;
    height: 300px;
    transform: translate(-50%, -50%);
    background: radial-gradient(ellipse, rgba(16,185,129,0.1), transparent 70%);
    pointer-events: none;
    z-index: -1;
}

/* Hero trust badges */
.fc-pub-hero-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 28px;
    flex-wrap: wrap;
}

.fc-pub-hero-trust span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 600;
    color: var(--fc-text-muted);
    letter-spacing: 0.3px;
}

.fc-pub-hero-trust span i {
    font-size: 12px;
    color: var(--fc-accent);
}

/* ???????????????????????????????????????????
   SECTION PATTERNS
??????????????????????????????????????????? */

.fc-pub-section {
    padding: 80px 28px;
    max-width: 1200px;
    margin: 0 auto;
}

.fc-pub-section-header {
    text-align: center;
    margin-bottom: 52px;
}

.fc-pub-section-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.8px;
    color: var(--fc-accent);
    margin-bottom: 14px;
}

.fc-pub-section-header h2 {
    font-size: clamp(24px, 3.5vw, 36px);
    font-weight: 800;
    color: var(--fc-text-bright);
    line-height: 1.15;
    letter-spacing: -0.8px;
    margin: 0 0 14px;
}

.fc-pub-section-header p {
    font-size: 16px;
    color: var(--fc-text-secondary);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ???????????????????????????????????????????
   FEATURE GRID
??????????????????????????????????????????? */

.fc-pub-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 18px;
}

.fc-pub-feature-card {
    background: var(--fc-bg-surface);
    border: 1px solid var(--fc-border);
    border-radius: var(--fc-radius-lg);
    padding: 28px 24px;
    transition: var(--fc-transition-slow);
    position: relative;
    overflow: hidden;
}

.fc-pub-feature-card:hover {
    border-color: rgba(255,255,255,0.12);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.fc-pub-feature-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: var(--feature-accent, var(--fc-accent));
    opacity: 0;
    transition: opacity 0.2s;
}

.fc-pub-feature-card:hover::after { opacity: 1; }

.fc-pub-feature-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--fc-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-bottom: 16px;
}

.fc-pub-feature-card h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--fc-text-bright);
    margin: 0 0 8px;
}

.fc-pub-feature-card p {
    font-size: 13.5px;
    color: var(--fc-text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* ???????????????????????????????????????????
   HOW IT WORKS — STEPS
??????????????????????????????????????????? */

.fc-pub-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    counter-reset: step-counter;
}

.fc-pub-step {
    text-align: center;
    counter-increment: step-counter;
    position: relative;
    padding: 24px 16px;
}

.fc-pub-step-num {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--fc-accent-dim);
    border: 2px solid rgba(45,212,191,0.25);
    color: var(--fc-accent);
    font-size: 16px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.fc-pub-step h3 {
    font-size: 14.5px;
    font-weight: 700;
    color: var(--fc-text-bright);
    margin: 0 0 8px;
}

.fc-pub-step p {
    font-size: 13px;
    color: var(--fc-text-secondary);
    line-height: 1.5;
    margin: 0;
}

/* ???????????????????????????????????????????
   CTA SECTION
??????????????????????????????????????????? */

.fc-pub-cta {
    text-align: center;
    padding: 80px 28px;
    position: relative;
}

.fc-pub-cta-box {
    max-width: 680px;
    margin: 0 auto;
    background: var(--fc-bg-surface);
    border: 1px solid var(--fc-border);
    border-radius: var(--fc-radius-xl);
    padding: 52px 40px;
    position: relative;
    overflow: hidden;
}

.fc-pub-cta-box::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--fc-accent), var(--fc-primary), var(--fc-accent));
}

.fc-pub-cta-box h2 {
    font-size: 28px;
    font-weight: 800;
    color: var(--fc-text-bright);
    margin: 0 0 12px;
    letter-spacing: -0.5px;
}

.fc-pub-cta-box p {
    font-size: 15px;
    color: var(--fc-text-secondary);
    margin: 0 0 28px;
    line-height: 1.6;
}

/* ???????????????????????????????????????????
   FOOTER
??????????????????????????????????????????? */

.fc-pub-footer {
    border-top: 1px solid var(--fc-border);
    padding: 48px 28px 0;
}

.fc-pub-footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
}

.fc-pub-footer-brand p {
    font-size: 13px;
    color: var(--fc-text-muted);
    line-height: 1.6;
    max-width: 280px;
    margin: 0;
}

.fc-pub-footer-col h4 {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--fc-text-secondary);
    margin: 0 0 14px;
}

.fc-pub-footer-col a {
    display: block;
    font-size: 13px;
    color: var(--fc-text-muted);
    text-decoration: none;
    padding: 4px 0;
    transition: color 0.14s;
}

.fc-pub-footer-col a:hover { color: var(--fc-text); }

.fc-pub-footer-bottom {
    border-top: 1px solid var(--fc-border);
    padding: 20px 0;
    max-width: 1200px;
    margin: 0 auto;
}

.fc-pub-footer-bottom p {
    font-size: 12px;
    color: var(--fc-text-muted);
    margin: 0;
}

/* ???????????????????????????????????????????
   AUTH PAGES (Login / Register)
??????????????????????????????????????????? */

.fc-auth-page {
    min-height: calc(100vh - 64px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 20px 60px;
}

.fc-auth-card {
    width: 100%;
    max-width: 480px;
    background: var(--fc-bg-surface);
    border: 1px solid var(--fc-border);
    border-radius: var(--fc-radius-xl);
    padding: 36px 32px;
    box-shadow: var(--fc-shadow-lg);
    position: relative;
    overflow: hidden;
}

.fc-auth-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--fc-accent), var(--fc-primary));
}

.fc-auth-header {
    text-align: center;
    margin-bottom: 28px;
}

.fc-auth-header h1 {
    font-size: 22px;
    font-weight: 800;
    color: var(--fc-text-bright);
    margin: 0 0 6px;
    letter-spacing: -0.3px;
}

.fc-auth-header p {
    font-size: 13.5px;
    color: var(--fc-text-muted);
    margin: 0;
}

.fc-auth-section {
    padding: 16px;
    background: var(--fc-bg-base);
    border-radius: var(--fc-radius);
    margin-bottom: 20px;
    border: 1px solid var(--fc-border);
}

.fc-auth-section-title {
    font-size: 12px;
    font-weight: 700;
    color: var(--fc-accent);
    margin: 0 0 12px;
    display: flex;
    align-items: center;
    gap: 7px;
}

.fc-auth-footer {
    text-align: center;
    margin-top: 24px;
    font-size: 13px;
    color: var(--fc-text-muted);
}

.fc-auth-footer a {
    color: var(--fc-accent);
    font-weight: 600;
    text-decoration: none;
}

.fc-auth-footer a:hover { text-decoration: underline; }

/* ???????????????????????????????????????????
   RESPONSIVE
??????????????????????????????????????????? */

@media (max-width: 768px) {
    .fc-pub-nav-links { display: none; }
    .fc-pub-nav-links.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 64px;
        left: 0; right: 0;
        background: var(--fc-bg-elevated);
        border-bottom: 1px solid var(--fc-border);
        padding: 12px;
        gap: 4px;
    }
    .fc-pub-mobile-toggle { display: flex; }
    .fc-pub-footer-inner { grid-template-columns: 1fr 1fr; gap: 24px; }
    .fc-pub-hero { padding: 120px 20px 60px; }
    .fc-pub-cta-box { padding: 36px 24px; }
    .fc-auth-card { padding: 28px 20px; }
}

@media (max-width: 480px) {
    .fc-pub-footer-inner { grid-template-columns: 1fr; }
    .fc-pub-hero-actions { flex-direction: column; }
    .fc-pub-hero-actions .fc-btn { width: 100%; }
    .fc-pub-steps { grid-template-columns: 1fr; }
}

/* Light theme overrides for public site */
[data-theme="light"] .fc-pub-nav {
    background: rgba(255,255,255,0.88);
}

[data-theme="light"] .fc-pub-nav-links.open {
    background: var(--fc-bg-elevated);
}

[data-theme="light"] .fc-pub-hero::before {
    background: radial-gradient(ellipse, rgba(37,99,235,0.05) 0%, transparent 65%);
}

[data-theme="light"] .fc-pub-brand-icon {
    box-shadow: 0 0 12px rgba(47,128,237,0.2);
}

/* ???????????????????????????????????????????
   LEGAL PAGES (Privacy Policy / Terms of Use)
??????????????????????????????????????????? */

.fc-legal-page {
    max-width: 860px;
    margin: 0 auto;
    padding: 120px 28px 80px;
}

.fc-legal-header {
    text-align: center;
    margin-bottom: 48px;
}

.fc-legal-header h1 {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 800;
    color: var(--fc-text-bright);
    letter-spacing: -0.8px;
    margin: 10px 0 12px;
}

.fc-legal-effective {
    font-size: 13px;
    color: var(--fc-text-muted);
    margin: 0;
}

.fc-legal-body {
    line-height: 1.75;
}

.fc-legal-section {
    margin-bottom: 36px;
    padding-bottom: 36px;
    border-bottom: 1px solid var(--fc-border);
}

.fc-legal-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.fc-legal-section h2 {
    font-size: 19px;
    font-weight: 700;
    color: var(--fc-text-bright);
    margin: 0 0 14px;
    letter-spacing: -0.2px;
}

.fc-legal-num {
    color: var(--fc-accent);
    margin-right: 4px;
}

.fc-legal-section h3 {
    font-size: 15px;
    font-weight: 600;
    color: var(--fc-text);
    margin: 18px 0 8px;
}

.fc-legal-section p {
    font-size: 14px;
    color: var(--fc-text-secondary);
    margin: 0 0 12px;
    line-height: 1.75;
}

.fc-legal-section ul {
    padding-left: 20px;
    margin: 8px 0 16px;
}

.fc-legal-section ul li {
    font-size: 14px;
    color: var(--fc-text-secondary);
    margin-bottom: 6px;
    line-height: 1.65;
}

.fc-legal-section ul li strong {
    color: var(--fc-text);
}

.fc-legal-section a {
    color: var(--fc-accent);
    text-decoration: none;
    font-weight: 600;
}

.fc-legal-section a:hover {
    text-decoration: underline;
}

/* Legal callout box */
.fc-legal-callout {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 18px;
    background: var(--fc-info-dim);
    border: 1px solid rgba(99,102,241,0.2);
    border-radius: var(--fc-radius-lg);
    margin: 16px 0;
    font-size: 13.5px;
    color: var(--fc-text-secondary);
    line-height: 1.65;
}

.fc-legal-callout > i {
    color: var(--fc-info);
    font-size: 16px;
    flex-shrink: 0;
    margin-top: 2px;
}

.fc-legal-callout strong {
    color: var(--fc-text);
    display: block;
    margin-bottom: 4px;
}

.fc-legal-callout-warning {
    background: var(--fc-warning-dim);
    border-color: rgba(245,158,11,0.2);
}

.fc-legal-callout-warning > i {
    color: var(--fc-warning);
}

/* Legal grid for data usage */
.fc-legal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 14px;
    margin: 16px 0;
}

.fc-legal-grid-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px;
    background: var(--fc-bg-surface);
    border: 1px solid var(--fc-border);
    border-radius: var(--fc-radius);
}

.fc-legal-grid-icon {
    width: 34px;
    height: 34px;
    border-radius: var(--fc-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

.fc-legal-grid-item strong {
    display: block;
    font-size: 13px;
    color: var(--fc-text-bright);
    margin-bottom: 3px;
}

.fc-legal-grid-item p {
    font-size: 12px !important;
    color: var(--fc-text-muted) !important;
    margin: 0 !important;
    line-height: 1.5 !important;
}

/* Legal contact cards */
.fc-legal-contact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 14px;
    margin-top: 16px;
}

.fc-legal-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    background: var(--fc-bg-surface);
    border: 1px solid var(--fc-border);
    border-radius: var(--fc-radius);
}

.fc-legal-contact-item > i {
    color: var(--fc-accent);
    font-size: 16px;
    margin-top: 2px;
    flex-shrink: 0;
}

.fc-legal-contact-item strong {
    display: block;
    font-size: 13px;
    color: var(--fc-text-bright);
    margin-bottom: 2px;
}

.fc-legal-contact-item p {
    font-size: 12.5px !important;
    color: var(--fc-text-muted) !important;
    margin: 0 !important;
}

/* ???????????????????????????????????????????
   FEATURE TAGS (Features page)
??????????????????????????????????????????? */

.fc-feature-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 14px;
}

.fc-feature-tags span {
    display: inline-block;
    padding: 3px 9px;
    font-size: 10.5px;
    font-weight: 600;
    color: var(--fc-text-muted);
    background: var(--fc-bg-subtle);
    border: 1px solid var(--fc-border);
    border-radius: var(--fc-radius-full);
    white-space: nowrap;
}

/* ???????????????????????????????????????????
   LEGAL PAGES RESPONSIVE
??????????????????????????????????????????? */

@media (max-width: 768px) {
    .fc-legal-page { padding: 100px 16px 60px; }
    .fc-legal-grid { grid-template-columns: 1fr; }
    .fc-legal-contact { grid-template-columns: 1fr; }
}

/* Additional styles for new sections */

/* ???????????????????????????????????????????
   PAIN POINTS SECTION
??????????????????????????????????????????? */

.fc-pub-pain-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    max-width: 900px;
    margin: 0 auto;
}

.fc-pub-pain-card {
    display: grid;
    grid-template-columns: auto 1fr auto 1fr;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 24px;
    background: var(--fc-bg-surface);
    border: 1px solid var(--fc-border);
    border-radius: var(--fc-radius-lg);
    transition: var(--fc-transition-slow);
}

.fc-pub-pain-card:hover {
    border-color: rgba(255,255,255,0.08);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.fc-pub-pain-icon {
    width: 36px;
    height: 36px;
    border-radius: var(--fc-radius);
    background: var(--fc-danger-dim);
    color: var(--fc-danger);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
    margin-top: 2px;
}

.fc-pub-pain-label {
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--fc-danger);
    margin-bottom: 5px;
    opacity: 0.8;
}

.fc-pub-pain-label-fix {
    color: var(--fc-accent);
}

.fc-pub-pain-problem {
    font-size: 13px;
    color: var(--fc-text-secondary);
    line-height: 1.55;
}

.fc-pub-pain-divider {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--fc-accent-dim);
    color: var(--fc-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    flex-shrink: 0;
    margin-top: 6px;
}

.fc-pub-pain-solution {
    font-size: 13px;
    color: var(--fc-text);
    line-height: 1.55;
    font-weight: 500;
}

@media (max-width: 768px) {
    .fc-pub-pain-card {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .fc-pub-pain-icon { display: none; }
    .fc-pub-pain-divider {
        width: auto;
        height: auto;
        border-radius: 0;
        background: none;
        font-size: 9px;
        margin: 0;
        justify-content: flex-start;
    }
}

/* ???????????????????????????????????????????
   AUDIENCE / WHO IT'S FOR
??????????????????????????????????????????? */

.fc-pub-audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px;
}

.fc-pub-audience-card {
    background: var(--fc-bg-surface);
    border: 1px solid var(--fc-border);
    border-radius: var(--fc-radius-lg);
    padding: 28px 24px;
    transition: var(--fc-transition-slow);
}

.fc-pub-audience-card:hover {
    border-color: rgba(255,255,255,0.1);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(0,0,0,0.2);
}

.fc-pub-audience-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--fc-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-bottom: 16px;
}

.fc-pub-audience-card h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--fc-text-bright);
    margin: 0 0 10px;
}

.fc-pub-audience-card p {
    font-size: 13.5px;
    color: var(--fc-text-secondary);
    line-height: 1.6;
    margin: 0 0 14px;
}

/* ???????????????????????????????????????????
   SOCIAL PROOF / TRUST GRID
??????????????????????????????????????????? */

.fc-pub-proof-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
    max-width: 1000px;
    margin: 0 auto;
}

.fc-pub-proof-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 20px;
    background: var(--fc-bg-surface);
    border: 1px solid var(--fc-border);
    border-radius: var(--fc-radius-lg);
}

.fc-pub-proof-icon {
    width: 38px;
    height: 38px;
    border-radius: var(--fc-radius);
    background: var(--fc-accent-dim);
    color: var(--fc-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    flex-shrink: 0;
}

.fc-pub-proof-title {
    font-size: 13.5px;
    font-weight: 700;
    color: var(--fc-text-bright);
    margin-bottom: 4px;
}

.fc-pub-proof-desc {
    font-size: 12.5px;
    color: var(--fc-text-secondary);
    line-height: 1.55;
}

/* Public nav logo */
.fc-pub-brand-logo  { height:48px;width:auto;object-fit:contain; }

/* Public footer logo */
.fc-pub-footer-logo { height:44px;width:auto;object-fit:contain; }
