/* ── Reporting Form ── */
.reporting-wrap {
    max-width: 680px;
    margin: 0 auto;
}

.reporting-intro {
    background: var(--surface-elevated);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-subtle);
    padding: var(--space-xl);
    margin-bottom: var(--space-xl);
}

.reporting-intro p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: var(--space-md);
}

.reporting-intro p:last-child { margin-bottom: 0; }

.reporting-intro .shield-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, rgba(var(--theme-primary-rgb), 0.12), rgba(var(--theme-accent-ink-rgb), 0.10));
    color: var(--scgc-copper);
    font-size: 1.5rem;
    margin-bottom: var(--space-md);
}

.reporting-form-card {
    background: var(--surface-elevated);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-subtle);
    padding: var(--space-xl);
}

.reporting-form-card h2 {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-bottom: var(--space-lg);
}

.form-hint {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-top: 4px;
}

.form-label .required {
    color: var(--scgc-copper);
    margin-left: 2px;
}

.form-label .optional {
    font-weight: 400;
    color: var(--text-muted);
    font-size: 0.82rem;
}

textarea.form-control {
    min-height: 160px;
    resize: vertical;
}

.btn-submit-report {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 16px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
    color: var(--theme-ink);
    background: linear-gradient(135deg, var(--scgc-copper) 0%, var(--scgc-copper-dark) 100%);
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition-base);
}

.btn-submit-report:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow-accent);
}

.btn-submit-report:active {
    transform: translateY(0);
}

.privacy-note {
    text-align: center;
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-top: var(--space-md);
}

.privacy-note i { color: var(--teal); margin-right: 4px; }

/* Success state */
.success-message {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    padding: var(--space-lg);
    background: rgba(var(--theme-success-rgb), 0.06);
    border: 1px solid rgba(var(--theme-success-rgb), 0.18);
    border-radius: var(--radius-md);
    color: var(--theme-success);
    margin-bottom: var(--space-xl);
}

.success-message i {
    font-size: 1.25rem;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Error state */
.error-banner {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    padding: var(--space-lg);
    background: rgba(var(--theme-danger-rgb), 0.06);
    border: 1px solid rgba(var(--theme-danger-rgb), 0.18);
    border-radius: var(--radius-md);
    color: var(--theme-danger);
    margin-bottom: var(--space-xl);
}

.error-banner i {
    font-size: 1.25rem;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Honeypot */
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }
