/* ==========================================================================
   Marketing Pages — Shared Styles
   Used by: landing, contact, FAQ, terms, privacy, security
   ========================================================================== */

/* ── Hero Section ────────────────────────────────────────────────────────── */
.hero {
    padding: 48px 0 24px;
    position: relative;
    background: linear-gradient(180deg, var(--off-white) 0%, var(--background) 100%);
}

.hero-header {
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-header h1 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 44px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.hero-header p {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ── User Badge (header nav) ─────────────────────────────────────────────── */
.user-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    background: var(--steel-blue-lighter);
    border-radius: 20px;
    text-decoration: none;
    transition: background 0.2s;
}
.user-badge:hover { background: var(--steel-blue-light); }

.user-badge-avatar {
    width: 28px;
    height: 28px;
    background: var(--steel-blue-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 12px;
}

.user-badge-name {
    color: var(--text-primary);
    font-size: 13px;
    font-weight: 500;
    max-width: 150px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* ── Footer "Coming Soon" Labels ─────────────────────────────────────────── */
.footer-coming-soon {
    color: rgba(255,255,255,0.35);
    font-size: 14px;
    cursor: default;
}

.footer-coming-soon em {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: rgba(255,255,255,0.1);
    padding: 1px 6px;
    border-radius: 3px;
    margin-left: 6px;
    font-style: normal;
}

/* ── Responsive ──────────────────────────────────────────────────────────── */
@media (max-width: 640px) {
    .hero-header h1 {
        font-size: 32px;
    }

    .user-badge-name {
        display: none;
    }
}
