/* ---------- Global ---------- */
[hidden] { display: none !important; }

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
                 Helvetica, Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 20px;
    background-color: #f0f2f5;
    color: #1c1e21;
    background: #f9f9f9;   /* lighter FB-like background */
    padding: 40px;         /* increased spacing around content */
}

/* ---------- Header ---------- */
#header {
    opacity: 0;                    /* start invisible */
    transition: opacity 0.5s ease-in-out;
}
#header.visible {
    opacity: 1;
}

/* ---------- Typography ---------- */
h1 {
    text-align: center;
    font-size: 2.4em;
    color: #1877F2;
    margin-bottom: 0.4em;
    font-weight: 600;
}

h2 {
    font-size: 1.6em;
    margin-top: 24px;
    color: #1c1e21;
    font-weight: 600;
}

h3 {
    font-size: 1.3em;
    margin-top: 20px;
    color: #1c1e21;
    font-weight: 600;
}

p {
    font-size: 1.05em;
    margin-bottom: 18px;
    color: #1c1e21;
}

/* ---------- Layout ---------- */
.container {
    max-width: 900px;
    margin: 0 auto;
    background: #ffffff;
    padding: 28px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.section {
    margin-bottom: 40px;
}

.item {
    margin-bottom: 20px;
}

.item strong {
    font-weight: 600;
    color: #1c1e21;
}

.value {
    color: #606770;
}

.footer {
    margin-top: 40px;
    font-size: 13px;
    color: #65676b;
    text-align: center;
}

/* ---------- Links ---------- */
a {
    color: #0077cc;
    text-decoration: none;
    font-weight: 500;
}

/* ---------- Wrappers ---------- */
.tc-wrapper {
    text-align: center;
}

.form-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

/* ---------- Cards ---------- */
.card {
    max-width: 600px;
    margin: auto;
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    text-align: center;
}

/* ---------- Mailchimp Button ---------- */
 #mc_embed_signup {background:#fff; false;clear:left; font:14px Helvetica,Arial,sans-serif; width: 600px;}
#mc_embed_signup input.button {
    background-color: #1877F2 !important; /* Facebook blue */
    color: #ffffff !important;
    border: none;
    border-radius: 8px;
    padding: 12px 20px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: box-shadow 0.2s ease, transform 0.1s ease;
    line-height: 1.2;
    height: auto;
    vertical-align: middle;
    box-sizing: border-box;
    display: inline-block;
}

#mc_embed_signup input.button:hover {
    background-color: #155db2 !important;
    box-shadow: 0 6px 18px rgba(24, 119, 242, 0.45);
    transform: translateY(-1px);
}

/* ---------- Analysis Form ---------- */
.tc-form {
    text-align: left;
}

.tc-form label {
    font-size: 14px;
    font-weight: 600;
    color: #1c1e21;
}

.tc-form input {
    padding: 10px 12px;
    width: 220px;
    border-radius: 8px;
    border: 1px solid #ccd0d5;
    font-size: 14px;
    margin-top: 4px;
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.tc-form input:hover,
.tc-form input:focus {
    border-color: #1877F2;
    box-shadow: 0 0 0 3px rgba(24, 119, 242, 0.35);
    outline: none;
}

.tc-form button {
    margin-top: 6px;
    padding: 12px 20px;
    background: #1877F2;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: box-shadow 0.2s ease, transform 0.1s ease;
}

.tc-form button:hover {
    box-shadow: 0 6px 18px rgba(24, 119, 242, 0.45);
    transform: translateY(-1px);
}

/* ---------- Top-left logo ---------- */
.top-left-logo {
    position: fixed;
    top: 40px;
    left: 40px;
    z-index: 1000;
}

.top-left-logo img {
    width: 44px;
    opacity: 0.9;
    transition: opacity 0.2s ease;
}

.top-left-logo:hover img {
    opacity: 1;
}
 
/* Section caret & collapsible content */
.section h2 {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #f1f5f9;
    padding: 12px 16px;
    border-radius: 6px;
}

.caret {
    font-size: 1.1em;
    transition: transform 0.25s ease;
}

.caret.open {
    transform: rotate(90deg);
}

.section-content {
    padding: 16px 20px;
    display: none;
}

.section.open .section-content {
    display: block;
}

/* Section spacing override */
.section {
    margin-top: 36px;
}

/* Horizontal rules */
hr {
    border: none;
    border-top: 1px solid #e5e7eb;
    margin: 40px 0;
}

/* ---------- Auth alerts ---------- */
.alert {
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.5;
    margin: 12px 0;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.alert--error {
    background: #fff2f2;
    border: 1px solid #fca5a5;
    color: #b91c1c;
}

.alert--warning {
    background: #fffbeb;
    border: 1px solid #fcd34d;
    color: #92400e;
}

.alert--success {
    background: #f0fdf4;
    border: 1px solid #86efac;
    color: #166534;
}

.alert__icon {
    flex-shrink: 0;
    font-style: normal;
}

/* ---------- Auth message (post-signup) ---------- */
.auth-message {
    text-align: center;
    padding: 24px 16px;
}

.auth-message__icon {
    font-size: 2.4em;
    display: block;
    margin-bottom: 12px;
}

.auth-message p {
    color: #444;
    font-size: 15px;
    margin: 0;
}

/* ---------- Button states ---------- */
.tc-form button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.btn-link {
    background: none;
    border: none;
    color: #0077cc;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    padding: 0;
    text-decoration: none;
    margin-top: 8px;
    display: inline-block;
}

.btn-link:hover {
    color: #005fa3;
}

.btn-link:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* ---------- Verify email page ---------- */
.verify-card {
    max-width: 480px;
    margin: 60px auto 0;
    text-align: center;
    padding: 40px 32px;
}

.verify-card__icon {
    font-size: 3em;
    display: block;
    margin-bottom: 16px;
}

.verify-card h2 {
    font-size: 1.4em;
    color: #111;
    margin: 0 0 12px;
}

.verify-card p {
    color: #555;
    font-size: 14px;
    margin-bottom: 20px;
}

.verify-card .tc-btn {
    display: inline-block;
    padding: 11px 24px;
    background: #1877F2;
    color: white;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: box-shadow 0.2s ease, transform 0.1s ease;
}

.verify-card .tc-btn:hover {
    box-shadow: 0 6px 18px rgba(24, 119, 242, 0.4);
    transform: translateY(-1px);
}

.spinner {
    width: 36px;
    height: 36px;
    border: 3px solid #e5e7eb;
    border-top-color: #1877F2;
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ---------- Toast ---------- */
.tc-toast {
    position: fixed;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%) translateY(12px);
    background: #1c1e21;
    color: #fff;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
    opacity: 0;
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 9999;
    white-space: nowrap;
    pointer-events: none;
}

.tc-toast--success { background: #166534; }
.tc-toast--error   { background: #b91c1c; }

.tc-toast--visible {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* Progress container */
.progress-container {
    max-width: 760px;
    margin: 0 auto;
    background: #fcfcfb;
    padding: 48px 56px;
    border-radius: 6px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

/* ---------- Stats grid ---------- */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.stat-card {
    background: #fff;
    padding: 20px 24px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    border: 1px solid #f0f2f5;
}

.stat-card__value {
    font-size: 2em;
    font-weight: 700;
    color: #1877F2;
    line-height: 1;
    margin-bottom: 6px;
}

.stat-card__label {
    font-size: 13px;
    color: #65676b;
    font-weight: 500;
}

/* ---------- Chart card ---------- */
.chart-card {
    background: #fff;
    border-radius: 10px;
    padding: 20px 24px;
    margin-bottom: 24px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    border: 1px solid #f0f2f5;
}

.chart-card__title {
    font-size: 14px;
    font-weight: 600;
    color: #1c1e21;
    margin-bottom: 16px;
}

/* ---------- Report list (dashboard) ---------- */
.reports-table {
    background: #fff;
    border-radius: 10px;
    border: 1px solid #f0f2f5;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    overflow: hidden;
}

.report-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 18px;
    border-bottom: 1px solid #f0f2f5;
    transition: background 0.15s ease;
}

.report-row:last-child {
    border-bottom: none;
}

.report-row:hover {
    background: #f8fafd;
}

.report-row__left {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.report-row__title {
    display: flex;
    align-items: center;
    gap: 8px;
}

.report-row__ticker {
    font-size: 12px;
    font-weight: 700;
    color: #1877F2;
    background: #e8f0fe;
    border-radius: 4px;
    padding: 1px 6px;
    letter-spacing: 0.5px;
}

.report-row__id {
    font-size: 13px;
    font-family: ui-monospace, "SF Mono", monospace;
    color: #333;
    font-weight: 500;
}

.report-row__date {
    font-size: 12px;
    color: #65676b;
}

.report-row__link {
    font-size: 13px;
    font-weight: 600;
    color: #1877F2;
    text-decoration: none;
    padding: 6px 12px;
    border-radius: 6px;
    transition: background 0.15s ease;
    white-space: nowrap;
}

.report-row__link:hover {
    background: #e8f0fe;
}

/* ---------- Filter bar ---------- */
.filter-bar {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 14px;
    flex-wrap: wrap;
}

.filter-bar__label {
    font-size: 13px;
    color: #65676b;
    font-weight: 500;
}

.filter-bar select,
.filter-bar input[type="search"] {
    padding: 8px 12px;
    border: 1px solid #ccd0d5;
    border-radius: 8px;
    font-size: 13px;
    background: #fff;
    color: #1c1e21;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.filter-bar select:focus,
.filter-bar input[type="search"]:focus {
    border-color: #1877F2;
    box-shadow: 0 0 0 3px rgba(24,119,242,0.15);
}

/* ---------- Empty state ---------- */
.empty-state {
    text-align: center;
    padding: 56px 24px;
    color: #65676b;
}

.empty-state__icon {
    font-size: 2.8em;
    display: block;
    margin-bottom: 14px;
}

.empty-state p {
    font-size: 15px;
    color: #65676b;
    margin-bottom: 20px;
}

/* ---------- Page header row ---------- */
.page-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.page-header__title {
    font-size: 1.3em;
    font-weight: 700;
    color: #1c1e21;
    margin: 0;
}

.page-header__sub {
    font-size: 13px;
    color: #65676b;
    margin-top: 2px;
}

/* ---------- Profile header ---------- */
.profile-header {
    display: flex;
    gap: 20px;
    align-items: center;
    background: #fff;
    padding: 24px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    border: 1px solid #f0f2f5;
    margin-bottom: 24px;
}

.profile-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #1877F2;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6em;
    font-weight: 700;
    flex-shrink: 0;
    letter-spacing: -1px;
}

.profile-info {
    flex: 1;
}

.profile-info__name {
    font-size: 1.15em;
    font-weight: 700;
    color: #1c1e21;
    margin-bottom: 2px;
}

.profile-info__email {
    font-size: 14px;
    color: #65676b;
    margin-bottom: 2px;
}

.profile-info__since {
    font-size: 12px;
    color: #999;
}

.profile-actions {
    display: flex;
    gap: 10px;
    margin-top: 14px;
    flex-wrap: wrap;
}

.btn-primary {
    padding: 9px 18px;
    background: #1877F2;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: box-shadow 0.2s ease, transform 0.1s ease;
}

.btn-primary:hover {
    box-shadow: 0 4px 14px rgba(24,119,242,0.4);
    transform: translateY(-1px);
    color: #fff;
}

.btn-secondary {
    padding: 9px 18px;
    background: transparent;
    color: #1877F2;
    border: 1px solid #1877F2;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: background 0.15s ease;
}

.btn-secondary:hover {
    background: #e8f0fe;
    color: #1877F2;
}

/* ---------- Section label ---------- */
.section-label {
    font-size: 13px;
    font-weight: 700;
    color: #65676b;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin: 24px 0 10px;
}

/* ---------- Responsive ---------- */
@media (max-width: 600px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .profile-header {
        flex-direction: column;
        text-align: center;
    }

    .profile-actions {
        justify-content: center;
    }

    .filter-bar {
        flex-direction: column;
        align-items: flex-start;
    }

    .page-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

/* ---------- Ticker autocomplete ---------- */
.ticker-autocomplete {
    position: relative;
}
.ticker-dropdown {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    background: #fff;
    border: 1.5px solid #e5e7eb;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,.1);
    z-index: 200;
    overflow: hidden;
}
.ticker-item {
    padding: 10px 14px;
    cursor: pointer;
    font-size: 14px;
    color: #111827;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background .1s;
}
.ticker-item:hover,
.ticker-item.active {
    background: #f3f4f6;
}
.ticker-item__symbol {
    font-weight: 600;
    color: #1877F2;
    min-width: 52px;
}
.ticker-item__name {
    color: #6b7280;
    font-size: 13px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-left: 8px;
}

/* ---------- Paywall modal ---------- */
.paywall-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    animation: fadeIn 0.2s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.paywall-card {
    background: #fff;
    border-radius: 12px;
    padding: 32px;
    max-width: 420px;
    width: 90%;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    animation: slideUp 0.25s ease;
}

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

.paywall-card__title {
    font-size: 1.3em;
    font-weight: 700;
    color: #1c1e21;
    margin: 0 0 8px;
}

.paywall-card__body {
    font-size: 14px;
    color: #65676b;
    margin: 0 0 24px;
}

.credit-options {
    display: flex;
    gap: 10px;
}

.credit-option-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 16px 8px;
    background: #f0f2f5;
    border: 2px solid transparent;
    border-radius: 10px;
    cursor: pointer;
    transition: border-color 0.15s, background 0.15s, transform 0.1s;
    font-family: inherit;
}

.credit-option-btn:hover {
    background: #e8f0fe;
    border-color: #1877F2;
    transform: translateY(-2px);
}

.credit-option__amount {
    font-size: 1.5em;
    font-weight: 700;
    color: #1877F2;
}

.credit-option__label {
    font-size: 12px;
    color: #65676b;
    margin-top: 2px;
}

.paywall-divider {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 20px 0 16px;
    color: #b0b3b8;
    font-size: 12px;
}
.paywall-divider::before,
.paywall-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #e4e6eb;
}

.subscription-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 14px 16px;
    background: #f6f0ff;
    border: 2px solid #7c3aed;
    border-radius: 10px;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.15s, transform 0.1s;
    text-align: left;
}
.subscription-btn:hover {
    background: #ede9fe;
    transform: translateY(-1px);
}
.subscription-btn__left {
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.subscription-btn__name {
    font-size: 14px;
    font-weight: 600;
    color: #1c1e21;
}
.subscription-btn__detail {
    font-size: 12px;
    color: #65676b;
}
.subscription-btn__right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 3px;
}
.subscription-btn__badge {
    font-size: 11px;
    font-weight: 700;
    color: #7c3aed;
    background: #ede9fe;
    border-radius: 4px;
    padding: 1px 6px;
    letter-spacing: 0.3px;
}
.subscription-btn__price {
    font-size: 1.3em;
    font-weight: 700;
    color: #7c3aed;
}

/* ===================== LANDING PAGE ===================== */
html { scroll-behavior: smooth; }

body.lp-page { padding: 0; }

.lp-inner {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ── Nav ── */
.lp-nav {
    background: #fff;
    border-bottom: 1px solid #e4e6eb;
    padding: 14px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}
.lp-nav__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ── Hero ── */
.lp-hero {
    background: #fff;
    padding: 64px 0 56px;
}
.lp-hero__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}
.lp-hero__eyebrow {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #1877F2;
    margin-bottom: 14px;
}
.lp-hero__headline {
    font-size: 2.3em;
    font-weight: 800;
    color: #1c1e21;
    line-height: 1.2;
    margin: 0 0 16px;
    text-align: left;
}
.lp-hero__sub {
    font-size: 16px;
    color: #65676b;
    line-height: 1.6;
    margin: 0 0 28px;
}
.lp-hero__ctas {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.lp-hero__cta-primary {
    padding: 13px 24px;
    background: #1877F2;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: box-shadow 0.2s, transform 0.1s;
}
.lp-hero__cta-primary:hover {
    box-shadow: 0 6px 18px rgba(24,119,242,0.4);
    transform: translateY(-1px);
    color: #fff;
}
.lp-hero__cta-secondary {
    padding: 13px 24px;
    background: transparent;
    color: #1877F2;
    border: 1.5px solid #1877F2;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: background 0.15s;
}
.lp-hero__cta-secondary:hover {
    background: #e8f0fe;
    color: #1877F2;
}

/* ── Mock report card ── */
.mock-report {
    background: #fff;
    border: 1px solid #e4e6eb;
    border-radius: 14px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    padding: 24px;
}
.mock-report__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
.mock-report__ticker {
    display: flex;
    align-items: center;
    gap: 10px;
}
.mock-report__ticker-badge {
    font-size: 13px;
    font-weight: 700;
    color: #1877F2;
    background: #e8f0fe;
    border-radius: 6px;
    padding: 4px 10px;
    letter-spacing: 0.5px;
}
.mock-report__name {
    font-size: 14px;
    font-weight: 600;
    color: #1c1e21;
}
.mock-report__trend {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 700;
    color: #1a7f37;
    background: #e6f4ea;
    border-radius: 20px;
    padding: 4px 12px;
}
.mock-report__conf-label {
    font-size: 11px;
    font-weight: 700;
    color: #65676b;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 6px;
}
.mock-report__conf-bar-wrap {
    background: #f0f2f5;
    border-radius: 4px;
    height: 8px;
    margin-bottom: 6px;
    overflow: hidden;
}
.mock-report__conf-bar {
    height: 100%;
    width: 78%;
    background: linear-gradient(90deg, #1877F2, #34d399);
    border-radius: 4px;
}
.mock-report__conf-value {
    font-size: 13px;
    font-weight: 700;
    color: #1877F2;
    margin-bottom: 20px;
}
.mock-report__levels {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 20px;
}
.mock-report__level {
    background: #f8fafd;
    border: 1px solid #e4e6eb;
    border-radius: 8px;
    padding: 10px 14px;
}
.mock-report__level-label {
    font-size: 11px;
    font-weight: 700;
    color: #65676b;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}
.mock-report__level-value {
    font-size: 16px;
    font-weight: 700;
    color: #1c1e21;
}
.mock-report__chart-label {
    font-size: 11px;
    font-weight: 600;
    color: #b0b3b8;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 6px;
}
.mock-report__chart {
    background: #f8fafd;
    border-radius: 8px;
    height: 72px;
    display: flex;
    align-items: flex-end;
    padding: 8px 10px;
    gap: 3px;
}
.mock-report__bar {
    flex: 1;
    background: #dbe8fd;
    border-radius: 3px 3px 0 0;
}
.mock-report__bar--accent { background: #1877F2; }

/* ── How it works ── */
.lp-steps {
    padding: 64px 0;
    background: #f9f9f9;
}
.lp-section-title {
    font-size: 1.5em;
    font-weight: 800;
    color: #1c1e21;
    text-align: center;
    margin: 0 0 8px;
}
.lp-section-sub {
    font-size: 15px;
    color: #65676b;
    text-align: center;
    margin: 0 0 40px;
}
.lp-steps__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.lp-step {
    background: #fff;
    border-radius: 12px;
    padding: 28px 20px;
    border: 1px solid #e4e6eb;
    text-align: center;
}
.lp-step__num {
    width: 36px;
    height: 36px;
    background: #e8f0fe;
    color: #1877F2;
    font-size: 16px;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}
.lp-step__title {
    font-size: 14px;
    font-weight: 700;
    color: #1c1e21;
    margin-bottom: 8px;
}
.lp-step__desc {
    font-size: 13px;
    color: #65676b;
    line-height: 1.6;
}

/* ── Product preview ── */
.lp-preview {
    padding: 64px 0;
    background: #fff;
}
.lp-preview__card {
    background: #fff;
    border: 1px solid #e4e6eb;
    border-radius: 14px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.07);
    overflow: hidden;
}
.lp-preview__card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid #f0f2f5;
    flex-wrap: wrap;
    gap: 12px;
}
.lp-preview__metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-bottom: 1px solid #f0f2f5;
}
.lp-preview__metric {
    padding: 18px 24px;
    border-right: 1px solid #f0f2f5;
}
.lp-preview__metric:nth-child(3n) { border-right: none; }
.lp-preview__metric-label {
    font-size: 11px;
    font-weight: 700;
    color: #65676b;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 6px;
}
.lp-preview__metric-value {
    font-size: 18px;
    font-weight: 700;
    color: #1c1e21;
}
.lp-preview__summary {
    padding: 20px 24px;
}
.lp-preview__summary-label {
    font-size: 11px;
    font-weight: 700;
    color: #65676b;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 10px;
}
.lp-preview__summary-text {
    font-size: 14px;
    color: #444;
    line-height: 1.7;
    margin: 0;
}

/* ── Value prop compare ── */
.lp-compare {
    padding: 64px 0;
    background: #f9f9f9;
}
.lp-compare__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.lp-compare__col {
    border-radius: 12px;
    padding: 28px 24px;
}
.lp-compare__col--bad {
    background: #fff8f8;
    border: 1px solid #fca5a5;
}
.lp-compare__col--good {
    background: #f0fdf4;
    border: 1px solid #86efac;
}
.lp-compare__col-header {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 16px;
}
.lp-compare__col--bad .lp-compare__col-header { color: #b91c1c; }
.lp-compare__col--good .lp-compare__col-header { color: #166534; }
.lp-compare__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.lp-compare__list li {
    font-size: 13px;
    color: #444;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.5;
}
.lp-compare__col--bad .lp-compare__list li::before {
    content: '✗'; color: #ef4444; font-weight: 700; flex-shrink: 0;
}
.lp-compare__col--good .lp-compare__list li::before {
    content: '✓'; color: #22c55e; font-weight: 700; flex-shrink: 0;
}

/* ── Social proof ── */
.lp-proof {
    background: #1877F2;
    padding: 52px 0;
}
.lp-proof__grid {
    display: flex;
    justify-content: center;
    gap: 64px;
    flex-wrap: wrap;
}
.lp-proof__stat { text-align: center; }
.lp-proof__number {
    font-size: 2.2em;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-bottom: 6px;
}
.lp-proof__label {
    font-size: 14px;
    color: rgba(255,255,255,0.75);
    font-weight: 500;
}

/* ── Pricing teaser ── */
.lp-pricing {
    padding: 64px 0;
    background: #fff;
    text-align: center;
}
.lp-pricing__sub {
    font-size: 15px;
    color: #65676b;
    margin: 0 0 32px;
}
.lp-pricing__cards {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}
.lp-pricing__card {
    background: #fff;
    border: 1px solid #e4e6eb;
    border-radius: 12px;
    padding: 20px 28px;
    min-width: 160px;
}
.lp-pricing__card-title {
    font-size: 12px;
    font-weight: 700;
    color: #65676b;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 6px;
}
.lp-pricing__card-price {
    font-size: 1.8em;
    font-weight: 800;
    color: #1877F2;
    line-height: 1;
}
.lp-pricing__card-detail {
    font-size: 12px;
    color: #65676b;
    margin-top: 4px;
}

/* ── Try it now ── */
.lp-action {
    padding: 64px 0;
    background: #f9f9f9;
}

/* ── Final CTA ── */
.lp-final-cta {
    padding: 80px 0;
    background: #1c1e21;
    text-align: center;
}
.lp-final-cta__headline {
    font-size: 2em;
    font-weight: 800;
    color: #fff;
    margin: 0 0 12px;
}
.lp-final-cta__sub {
    font-size: 15px;
    color: rgba(255,255,255,0.6);
    margin: 0 0 28px;
}

/* ── Landing responsive ── */
@media (max-width: 768px) {
    .lp-hero__inner { grid-template-columns: 1fr; }
    .lp-hero__card { display: none; }
    .lp-hero__headline { font-size: 1.8em; }
    .lp-steps__grid { grid-template-columns: 1fr; }
    .lp-compare__grid { grid-template-columns: 1fr; }
    .lp-preview__metrics { grid-template-columns: repeat(2, 1fr); }
    .lp-preview__metric:nth-child(2n) { border-right: none; }
    .lp-preview__metric:nth-child(3n) { border-right: 1px solid #f0f2f5; }
    .lp-proof__grid { gap: 32px; }
}

/* ── About page ── */
.lp-hero--center { text-align: center; }
.lp-hero--center .lp-hero__headline { text-align: center; }
.lp-hero--center .lp-hero__ctas { justify-content: center; }

.about-quote {
    background: #f0f6ff;
    border-left: 4px solid #1877F2;
    border-radius: 0 12px 12px 0;
    padding: 24px 28px;
    margin: 32px 0;
}
.about-quote__text {
    font-size: 17px;
    font-weight: 500;
    color: #1c1e21;
    line-height: 1.65;
    margin: 0;
}

.about-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 32px;
}
.about-card {
    background: #fff;
    border: 1px solid #e4e6eb;
    border-radius: 12px;
    padding: 24px 20px;
}
.about-card__icon { font-size: 1.6em; margin-bottom: 12px; }
.about-card__title {
    font-size: 14px;
    font-weight: 700;
    color: #1c1e21;
    margin-bottom: 6px;
}
.about-card__desc {
    font-size: 13px;
    color: #65676b;
    line-height: 1.6;
}

.about-disclaimer {
    background: #fffbeb;
    border: 1px solid #fcd34d;
    border-radius: 10px;
    padding: 20px 24px;
}
.about-disclaimer p {
    font-size: 14px;
    color: #92400e;
    margin: 0;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .about-cards { grid-template-columns: 1fr; }
}

/* ── Auth layout ── */
.auth-layout {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.auth-left {
    background: linear-gradient(145deg, #1877F2 0%, #1254b8 100%);
    padding: 48px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.auth-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    margin-bottom: 52px;
}
.auth-brand__name {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
}

.auth-left__headline {
    font-size: 2em;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin: 0 0 14px;
    text-align: left;
}
.auth-left__sub {
    font-size: 15px;
    color: rgba(255,255,255,0.75);
    line-height: 1.6;
    margin: 0 0 32px;
    max-width: 340px;
}

.auth-trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 20px;
    padding: 7px 16px;
    font-size: 13px;
    color: #fff;
    font-weight: 500;
    margin-bottom: 40px;
    width: fit-content;
}

.auth-mock {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 12px;
    padding: 18px 20px;
    max-width: 300px;
    backdrop-filter: blur(4px);
}
.auth-mock__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
}
.auth-mock__ticker {
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    background: rgba(255,255,255,0.2);
    border-radius: 5px;
    padding: 3px 9px;
    letter-spacing: 0.5px;
}
.auth-mock__trend {
    font-size: 12px;
    font-weight: 700;
    color: #34d399;
    background: rgba(52,211,153,0.15);
    border-radius: 20px;
    padding: 3px 10px;
}
.auth-mock__row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}
.auth-mock__row:last-child { margin-bottom: 0; }
.auth-mock__label {
    font-size: 11px;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.auth-mock__value {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
}
.auth-mock__bar-wrap {
    background: rgba(255,255,255,0.15);
    border-radius: 4px;
    height: 6px;
    margin: 10px 0 4px;
    overflow: hidden;
}
.auth-mock__bar {
    height: 100%;
    width: 78%;
    background: linear-gradient(90deg, #60a5fa, #34d399);
    border-radius: 4px;
}
.auth-mock__bar-label {
    font-size: 11px;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.auth-mock__bar-value {
    font-size: 12px;
    font-weight: 700;
    color: #93c5fd;
}

.auth-right {
    background: #f9f9f9;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px 32px;
}

.auth-card {
    width: 100%;
    max-width: 380px;
    background: #fff;
    border: 1px solid #e4e6eb;
    border-radius: 16px;
    padding: 36px 32px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.auth-card h2 {
    font-size: 1.35em;
    font-weight: 700;
    color: #1c1e21;
    margin: 0 0 4px;
    text-align: left;
}
.auth-card__sub {
    font-size: 14px;
    color: #65676b;
    margin: 0 0 28px;
}

.auth-field {
    margin-bottom: 14px;
}
.auth-field label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #1c1e21;
    margin-bottom: 6px;
}
.auth-field input {
    width: 100%;
    padding: 11px 14px;
    border: 1px solid #ccd0d5;
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    color: #1c1e21;
    background: #fff;
    box-sizing: border-box;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.auth-field input:focus {
    border-color: #1877F2;
    box-shadow: 0 0 0 3px rgba(24,119,242,0.15);
    outline: none;
}

.auth-optional {
    margin-bottom: 14px;
}
.auth-optional summary {
    font-size: 13px;
    color: #1877F2;
    font-weight: 500;
    cursor: pointer;
    padding: 4px 0;
    list-style: none;
    user-select: none;
}
.auth-optional summary::-webkit-details-marker { display: none; }
.auth-optional[open] summary { margin-bottom: 14px; }

.auth-btn {
    width: 100%;
    padding: 12px;
    background: #1877F2;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    margin-top: 6px;
    transition: box-shadow 0.2s, transform 0.1s, background 0.15s;
}
.auth-btn:hover {
    box-shadow: 0 6px 18px rgba(24,119,242,0.4);
    transform: translateY(-1px);
}
.auth-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.auth-switch {
    text-align: center;
    font-size: 13px;
    color: #65676b;
    margin-top: 20px;
    margin-bottom: 0;
}
.auth-switch a {
    color: #1877F2;
    font-weight: 600;
    text-decoration: none;
}
.auth-switch a:hover { text-decoration: underline; }

@media (max-width: 768px) {
    .auth-layout { grid-template-columns: 1fr; }
    .auth-left {
        padding: 28px 24px 32px;
        justify-content: flex-start;
    }
    .auth-left__headline { font-size: 1.5em; }
    .auth-left__sub { display: none; }
    .auth-trust-badge { display: none; }
    .auth-mock { display: none; }
    .auth-right { padding: 32px 16px 48px; align-items: flex-start; }
}

/* ============================================================
   REPORT PAGE
   ============================================================ */

body.report-page {
    padding: 0;
    background: #f3f4f6;
}

.progress-container {
    max-width: 520px;
    margin: 80px auto 0;
    padding: 32px 28px 28px;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(0,0,0,.07);
    text-align: center;
}

/* Strip padding injected by the backend's <style> from the #results container */
#results .container {
    max-width: 820px !important;
    margin: 0 auto !important;
    padding: 24px 16px 48px !important;
}

/* Report header (replaces backend <h1>) */
.report-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    padding: 20px 0 18px;
    margin-bottom: 8px;
    border-bottom: 1px solid #e4e6eb;
}
.report-header__left {
    display: flex;
    align-items: center;
    gap: 12px;
}
.report-back {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: #f3f4f6;
    color: #1c1e21;
    text-decoration: none;
    flex-shrink: 0;
    transition: background .15s;
}
.report-back:hover { background: #e4e6eb; }
.report-header__ticker {
    font-size: 1.4em;
    font-weight: 700;
    color: #1c1e21;
    letter-spacing: -.01em;
}
.report-header__date {
    font-size: 12px;
    color: #8a8d91;
    margin-top: 2px;
}

/* Trend badge */
.report-badge {
    display: inline-block;
    padding: 5px 13px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
}
.report-badge--bullish { background: #dcfce7; color: #166534; }
.report-badge--bearish { background: #fee2e2; color: #991b1b; }
.report-badge--neutral { background: #f3f4f6; color: #65676b; }

/* Section cards */
#results .section.report-card {
    background: #fff !important;
    border-radius: 12px !important;
    box-shadow: 0 1px 6px rgba(0,0,0,.06) !important;
    border: 1px solid #e4e6eb !important;
    padding: 0 !important;
    margin-bottom: 14px !important;
    overflow: hidden;
    opacity: 0;
    animation: reportCardIn .35s ease forwards;
}
#results .section.report-card:nth-child(1) { animation-delay: .04s; }
#results .section.report-card:nth-child(2) { animation-delay: .08s; }
#results .section.report-card:nth-child(3) { animation-delay: .12s; }
#results .section.report-card:nth-child(4) { animation-delay: .16s; }
#results .section.report-card:nth-child(5) { animation-delay: .20s; }
#results .section.report-card:nth-child(6) { animation-delay: .24s; }
#results .section.report-card:nth-child(7) { animation-delay: .28s; }
#results .section.report-card:nth-child(8) { animation-delay: .32s; }
#results .section.report-card:nth-child(n+9) { animation-delay: .36s; }

#results .section.report-card h2 {
    font-size: 13px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: .06em !important;
    color: #65676b !important;
    padding: 14px 18px !important;
    margin: 0 !important;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #f0f1f3;
    user-select: none;
}
#results .section.report-card h2::after {
    content: "›";
    font-size: 18px;
    font-weight: 400;
    color: #adb1b8;
    transform: rotate(90deg);
    transition: transform .2s;
    display: inline-block;
}
#results .section.report-card.open h2::after {
    transform: rotate(-90deg);
}
#results .section.report-card .section-content {
    padding: 16px 18px 18px !important;
}
#results .section.report-card:not(.open) .section-content {
    display: none;
}

/* Indicator values */
#results .section.report-card .indicator-row {
    display: flex !important;
    justify-content: space-between !important;
    align-items: baseline !important;
    padding: 6px 0 !important;
    border-bottom: 1px solid #f3f4f6 !important;
    font-size: 14px !important;
}
#results .section.report-card .indicator-row:last-child {
    border-bottom: none !important;
}
#results .section.report-card .indicator-label {
    color: #65676b !important;
    font-size: 13px !important;
}
#results .section.report-card .indicator-value {
    font-weight: 600 !important;
    color: #1c1e21 !important;
    font-size: 13px !important;
    font-family: ui-monospace, monospace !important;
}

/* News cards */
.report-news-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.report-news-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 14px;
    background: #f8fafd;
    border: 1px solid #e4e6eb;
    border-radius: 8px;
    text-decoration: none;
    color: #1c1e21;
    font-size: 13px;
    transition: background .15s, border-color .15s;
}
.report-news-item:hover {
    background: #eef3fd;
    border-color: #c5d7fb;
}
.report-news-item__title {
    flex: 1;
    font-weight: 500;
}
.report-news-item__arrow {
    color: #1877F2;
    font-size: 15px;
    flex-shrink: 0;
}

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

@media (max-width: 600px) {
    #results .container { padding: 12px 12px 40px !important; }
    .report-header__ticker { font-size: 1.2em; }
    #results .section.report-card h2 { padding: 12px 14px !important; }
    #results .section.report-card .section-content { padding: 12px 14px 14px !important; }
}

/* ANALYSIS MODAL */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.45);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 16px;
}
.modal-overlay[hidden] { display: none; }
.modal-box {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 8px 40px rgba(0,0,0,.18);
    width: 100%;
    max-width: 400px;
    overflow: hidden;
    animation: modalIn .18s ease;
}
@keyframes modalIn {
    from { opacity: 0; transform: translateY(-10px) scale(.97); }
    to   { opacity: 1; transform: none; }
}
.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px 14px;
    border-bottom: 1px solid #e4e6eb;
}
.modal-title {
    font-size: 15px;
    font-weight: 700;
    color: #1c1e21;
}
.modal-close {
    background: none;
    border: none;
    font-size: 16px;
    color: #8a8d91;
    cursor: pointer;
    padding: 2px 6px;
    border-radius: 6px;
    line-height: 1;
    transition: background .15s, color .15s;
}
.modal-close:hover { background: #f3f4f6; color: #1c1e21; }
.modal-body { padding: 20px 20px 4px; }
.modal-label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: #65676b;
    text-transform: uppercase;
    letter-spacing: .05em;
    margin-bottom: 8px;
}
.modal-input {
    width: 100%;
    padding: 10px 13px;
    border: 1.5px solid #d1d5db;
    border-radius: 8px;
    font-size: 15px;
    font-family: ui-monospace, monospace;
    text-transform: uppercase;
    letter-spacing: .05em;
    outline: none;
    transition: border-color .15s;
    box-sizing: border-box;
}
.modal-input:focus { border-color: #1877F2; }
.modal-error {
    font-size: 13px;
    color: #dc2626;
    margin-top: 8px;
}
.modal-footer { padding: 16px 20px 20px; }

/* REPORT CURSOR */
.report-container {
    cursor: url('/assets/cursor-arrow.svg') 2 2, auto;
}
.report-container a,
.report-container button {
    cursor: pointer;
}
.report-container input,
.report-container textarea {
    cursor: text;
}

/* ===== #userReports: mirrors #results report-card styles ===== */
#userReports .container {
    max-width: 820px !important;
    margin: 0 auto !important;
    padding: 24px 16px 48px !important;
}

#userReports .section.report-card {
    background: #fff !important;
    border-radius: 12px !important;
    box-shadow: 0 1px 6px rgba(0,0,0,.06) !important;
    border: 1px solid #e4e6eb !important;
    padding: 0 !important;
    margin-bottom: 14px !important;
    overflow: hidden;
    opacity: 0;
    animation: reportCardIn .35s ease forwards;
}
#userReports .section.report-card:nth-child(1) { animation-delay: .04s; }
#userReports .section.report-card:nth-child(2) { animation-delay: .08s; }
#userReports .section.report-card:nth-child(3) { animation-delay: .12s; }
#userReports .section.report-card:nth-child(4) { animation-delay: .16s; }
#userReports .section.report-card:nth-child(5) { animation-delay: .20s; }
#userReports .section.report-card:nth-child(6) { animation-delay: .24s; }
#userReports .section.report-card:nth-child(7) { animation-delay: .28s; }
#userReports .section.report-card:nth-child(8) { animation-delay: .32s; }
#userReports .section.report-card:nth-child(n+9) { animation-delay: .36s; }

#userReports .section.report-card h2 {
    font-size: 13px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: .06em !important;
    color: #65676b !important;
    padding: 14px 18px !important;
    margin: 0 !important;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #f0f1f3;
    user-select: none;
}
#userReports .section.report-card h2::after {
    content: "›";
    font-size: 18px;
    font-weight: 400;
    color: #adb1b8;
    transform: rotate(90deg);
    transition: transform .2s;
    display: inline-block;
}
#userReports .section.report-card.open h2::after {
    transform: rotate(-90deg);
}
#userReports .section.report-card .section-content {
    padding: 16px 18px 18px !important;
}
#userReports .section.report-card:not(.open) .section-content {
    display: none;
}
#userReports .section.report-card .indicator-row {
    display: flex !important;
    justify-content: space-between !important;
    align-items: baseline !important;
    padding: 6px 0 !important;
    border-bottom: 1px solid #f3f4f6 !important;
    font-size: 14px !important;
}
#userReports .section.report-card .indicator-row:last-child {
    border-bottom: none !important;
}
#userReports .section.report-card .indicator-label {
    color: #65676b !important;
    font-size: 13px !important;
}
#userReports .section.report-card .indicator-value {
    font-weight: 600 !important;
    color: #1c1e21 !important;
    font-size: 13px !important;
    font-family: ui-monospace, monospace !important;
}

/* Styled error state for user_reports page */
.ur-error {
    max-width: 520px;
    margin: 80px auto 0;
    padding: 32px 28px;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(0,0,0,.07);
    text-align: center;
    color: #991b1b;
    font-size: 15px;
}
.ur-error__title {
    font-weight: 700;
    font-size: 17px;
    margin-bottom: 8px;
}
.ur-error__action {
    margin-top: 20px;
    display: inline-block;
    padding: 9px 20px;
    background: #1877F2;
    color: #fff;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}

@media (max-width: 600px) {
    #userReports .container { padding: 12px 12px 40px !important; }
    #userReports .section.report-card h2 { padding: 12px 14px !important; }
    #userReports .section.report-card .section-content { padding: 12px 14px 14px !important; }
}
