:root {
    --primary: #4f46e5;
    --primary-hover: #4338ca;
    --primary-ring: rgba(79, 70, 229, 0.2);
    --danger: #dc2626;
    --success: #10b981;
    --success-soft-bg: #ecfdf5;
    --success-soft-border: #a7f3d0;
    --warning: #f59e0b;
    --warning-soft-bg: #fffbeb;
    --warning-soft-border: #fde68a;
    --bg: #f8fafc;
    --card-bg: #ffffff;
    --text: #334155;
    --text-strong: #1e293b;
    --text-muted: #475569;
    --label: #64748b;
    --border: #e2e8f0;
    --border-input: #cbd5e1;
    --radius: 8px;
    --radius-lg: 10px;
    --primary-light: #eef2ff;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Accessibility: visible focus ring for keyboard navigation */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
summary:focus-visible,
[tabindex]:focus-visible,
[role="button"]:focus-visible,
[role="link"]:focus-visible,
[onclick]:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
    box-shadow: 0 0 0 4px var(--primary-ring);
    border-radius: var(--radius);
}

body {
    font-family: 'Inter', 'Geist Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, system-ui, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

header {
    background: var(--card-bg);
    border-bottom: 1px solid var(--border);
    padding: 0 2rem;
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.logo {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
}

.hamburger {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text);
    padding: 0.25rem;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--primary);
}

.lang-switch {
    display: flex;
    gap: 0.25rem;
}

.lang-btn {
    background: none;
    border: 1px solid var(--border);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.lang-btn:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

main {
    flex: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    width: 100%;
}

footer {
    text-align: center;
    padding: 1.5rem;
    color: var(--text-muted);
    font-size: 0.8rem;
    border-top: 1px solid var(--border);
}

.page-section {
    margin-bottom: 2rem;
}

.page-section h1 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.page-section > p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.form-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    margin-bottom: 1rem;
    max-width: 600px;
    width: 100%;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.625rem 0.75rem;
    border: 1px solid var(--border-input);
    border-radius: var(--radius-lg);
    font-size: 0.9rem;
    font-family: inherit;
    color: var(--text-strong);
    background: var(--card-bg);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-ring);
}

.btn {
    display: inline-block;
    padding: 0.625rem 1.25rem;
    border: none;
    border-radius: var(--radius-lg);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
}

.btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.08);
}

.btn-primary {
    background: var(--primary);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-hover);
}

.btn-secondary {
    background: var(--bg);
    color: var(--text);
    border: 1px solid var(--border);
}

.btn-secondary:hover {
    background: var(--border);
}

.result-card {
    background: var(--success-soft-bg);
    border: 1px solid var(--success-soft-border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
}

.error-card {
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: var(--radius);
    padding: 1rem;
    color: var(--danger);
}

.access-key-display {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1rem 0;
    padding: 1rem 1.25rem;
    background: var(--card-bg);
    border: 1px solid var(--success-soft-border);
    border-radius: var(--radius-lg);
}

.access-key-display code {
    font-family: ui-monospace, SFMono-Regular, 'SF Mono', Menlo, Consolas, 'Liberation Mono', monospace;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #047857;
    flex: 1;
    word-break: break-all;
}

.warning {
    color: var(--warning);
    font-weight: 600;
    font-size: 0.9rem;
}

.report-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.report-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.status-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 99px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.status-new,
.status-open {
    background: #eef2ff;
    color: #4f46e5;
}

.status-in_progress {
    background: #fef3c7;
    color: #b45309;
}

.status-closed {
    background: #dcfce7;
    color: #15803d;
}

.status-escalated,
.status-critical {
    background: #fef2f2;
    color: #dc2626;
}

.report-id {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-family: monospace;
}

.report-meta {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.75rem;
    font-size: 0.9rem;
}

.messages-section {
    margin-top: 1.5rem;
}

.messages-section h2 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.messages-list {
    max-height: 400px;
    overflow-y: auto;
    margin-bottom: 1rem;
}

.message {
    padding: 0.75rem 1rem;
    border-radius: var(--radius);
    margin-bottom: 0.5rem;
}

.message-whistleblower {
    background: #eff6ff;
    border-left: 3px solid var(--primary);
}

.message-compliance_officer {
    background: #f0fdf4;
    border-left: 3px solid var(--success);
}

.message-sender {
    font-weight: 600;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
}

.message-content {
    font-size: 0.9rem;
}

.message-time {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.stat-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem 1.25rem;
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--text-strong);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.stat-label {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.8rem;
    color: var(--label);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.reports-table-wrapper {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}


.reports-table {
    width: 100%;
    border-collapse: collapse;
}

.reports-table th,
.reports-table td {
    padding: 1rem 1.25rem;
    text-align: left;
    font-size: 0.9rem;
}

.reports-table th {
    background: var(--bg);
    font-weight: 600;
    color: var(--text-muted);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.reports-table tr:not(:last-child) td {
    border-bottom: 1px solid var(--border);
}

.onboarding-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.form-link {
    margin-top: 1rem;
    text-align: center;
    font-size: 0.9rem;
}

.form-link a {
    color: var(--primary);
}

@media (max-width: 640px) {
    main {
        padding: 1rem;
    }

    nav {
        flex-wrap: wrap;
        height: auto;
        padding: 0.75rem 0;
        gap: 0.5rem;
    }

    .nav-links {
        display: none;
        order: 3;
        width: 100%;
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
        padding: 0.75rem 0;
    }

    .nav-links.open {
        display: flex;
    }

    .hamburger {
        display: block;
    }

    .access-key-display {
        flex-direction: column;
        text-align: center;
    }

    .onboarding-actions {
        flex-direction: column;
    }

    .dashboard-layout {
        flex-direction: column;
    }

    .detail-panel {
        position: static;
        width: 100%;
    }
}

.btn-sm {
    padding: 0.375rem 0.75rem;
    font-size: 0.8rem;
}

.btn-full {
    width: 100%;
}

.page-narrow {
    max-width: 600px;
    margin: 0 auto;
}

.page-article {
    max-width: 780px;
    margin: 0 auto;
}

.dashboard-layout {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.dashboard-layout .reports-table-wrapper {
    flex: 1;
    min-width: 0;
}

.detail-panel {
    width: 480px;
    flex-shrink: 0;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.25rem;
}

.detail-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.detail-header h2 {
    font-size: 1.1rem;
}

.detail-meta {
    margin-bottom: 1rem;
}

.detail-status {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.status-select {
    padding: 0.25rem 0.5rem;
    border: 1px solid var(--border);
    border-radius: 4px;
    font-size: 0.8rem;
    background: var(--card-bg);
}

.detail-dates {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    font-size: 0.85rem;
}

.deadline-tag {
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 500;
}

.deadline-ok {
    background: #dcfce7;
    color: #15803d;
}

.deadline-warning {
    background: #fef3c7;
    color: #b45309;
}

.deadline-overdue {
    background: #fef2f2;
    color: #dc2626;
    font-weight: 600;
}

.deadline-cell-soon {
    color: #b45309;
    font-weight: 600;
}

.deadline-cell-urgent {
    color: #dc2626;
    font-weight: 700;
}

.detail-content-box {
    margin-bottom: 1rem;
}

.detail-content-box h3,
.detail-messages h3 {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.detail-content {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 0.75rem;
    font-size: 0.9rem;
    white-space: pre-wrap;
    max-height: 200px;
    overflow-y: auto;
}

.detail-msg-form {
    display: flex;
    gap: 0.5rem;
    align-items: flex-end;
    margin-top: 0.5rem;
}

.detail-msg-form textarea {
    flex: 1;
    padding: 0.5rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 0.85rem;
    font-family: inherit;
    resize: vertical;
}

.detail-section {
    margin-top: 1rem;
    border-top: 1px solid var(--border);
    padding-top: 0.75rem;
}

.detail-section summary {
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.audit-list {
    margin-top: 0.5rem;
}

.audit-entry {
    font-size: 0.8rem;
    padding: 0.25rem 0;
    border-bottom: 1px solid var(--border);
}

.audit-time {
    float: right;
    color: var(--text-muted);
    font-size: 0.75rem;
}

.table-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--border);
}

.table-header h2 {
    font-size: 1.1rem;
    padding: 0;
    border: none;
}

.filter-bar select {
    padding: 0.375rem 0.75rem;
    border: 1px solid var(--border);
    border-radius: 4px;
    font-size: 0.85rem;
    background: var(--card-bg);
}

.row-active {
    background: #eff6ff;
}

.stat-clickable {
    cursor: pointer;
    transition: border-color 0.2s;
}

.stat-clickable:hover {
    border-color: var(--primary);
}

.empty-state {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-style: italic;
    padding: 0.5rem 0;
}

.spinner {
    width: 24px;
    height: 24px;
    border: 3px solid var(--border);
    border-top: 3px solid var(--primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: 1rem auto;
}

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

.toast {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius);
    font-size: 0.9rem;
    font-weight: 500;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.toast-success {
    background: #dcfce7;
    color: #15803d;
    border: 1px solid #bbf7d0;
}

.toast-error {
    background: #fef2f2;
    color: #dc2626;
    border: 1px solid #fecaca;
}

.priority-badge {
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.priority-none { color: var(--text-muted); }
.priority-low { background: #dcfce7; color: #15803d; }
.priority-medium { background: #dbeafe; color: #1d4ed8; }
.priority-high { background: #fef3c7; color: #b45309; }
.priority-critical { background: #fef2f2; color: #dc2626; font-weight: 700; }

.priority-select {
    padding: 0.25rem 0.5rem;
    border: 1px solid var(--border);
    border-radius: 4px;
    font-size: 0.8rem;
    background: var(--card-bg);
}

.detail-priority {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.detail-actions {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.bulk-bar {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 1.5rem;
    background: #eff6ff;
    border-bottom: 1px solid var(--border);
    font-size: 0.85rem;
    font-weight: 500;
}

.filter-bar {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    flex-wrap: wrap;
}

.filter-bar input[type="date"] {
    padding: 0.3rem 0.5rem;
    border: 1px solid var(--border);
    border-radius: 4px;
    font-size: 0.8rem;
    background: var(--card-bg);
}

.timeline-list {
    max-height: 500px;
    overflow-y: auto;
}

.timeline-entry {
    display: flex;
    gap: 0.75rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.85rem;
}

.timeline-entry:last-child {
    border-bottom: none;
}

.timeline-icon {
    flex-shrink: 0;
    font-size: 1rem;
    line-height: 1.4;
}

.timeline-body {
    flex: 1;
    min-width: 0;
}

.timeline-head {
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem;
    align-items: baseline;
}

.timeline-actor {
    color: var(--text-muted);
    font-size: 0.8rem;
}

.timeline-time {
    margin-left: auto;
    color: var(--text-muted);
    font-size: 0.75rem;
    white-space: nowrap;
}

.timeline-text {
    margin-top: 0.25rem;
    color: var(--text);
    white-space: pre-wrap;
    word-break: break-word;
}

.timeline-message { border-left: 3px solid var(--primary); padding-left: 0.5rem; }
.timeline-note { border-left: 3px solid var(--warning); padding-left: 0.5rem; }
.timeline-audit { border-left: 3px solid var(--border); padding-left: 0.5rem; }

.analytics-section {
    margin-bottom: 2rem;
}

.analytics-row {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 1.5rem;
    align-items: start;
}

.analytics-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.25rem;
}

.analytics-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.analytics-card-header h3 {
    font-size: 1rem;
    margin: 0;
}

.analytics-chart-card {
    min-height: 220px;
}

.chart-container {
    height: 180px;
    display: flex;
    align-items: flex-end;
}

.bar-chart {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    width: 100%;
    height: 100%;
}

.bar-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    min-width: 0;
}

.bar-value {
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-bottom: 2px;
    font-weight: 600;
}

.bar-track {
    flex: 1;
    width: 100%;
    max-width: 40px;
    display: flex;
    align-items: flex-end;
}

.bar-fill {
    width: 100%;
    background: var(--primary);
    border-radius: 3px 3px 0 0;
    min-height: 2px;
    transition: height 0.3s ease;
}

.bar-label {
    font-size: 0.65rem;
    color: var(--text-muted);
    margin-top: 4px;
    white-space: nowrap;
}

.analytics-kpis {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.kpi-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1rem;
    text-align: center;
}

.kpi-value {
    display: block;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary);
}

.kpi-label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

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

    .analytics-kpis {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .kpi-card {
        flex: 1;
        min-width: 120px;
    }
}

.hero {
    text-align: center;
    padding: 5rem 1rem 4rem;
    background:
        radial-gradient(circle at 50% 0%, rgba(26, 86, 219, 0.06) 0%, transparent 60%),
        radial-gradient(circle, rgba(26, 86, 219, 0.04) 1px, transparent 1px);
    background-size: 100% 100%, 24px 24px;
}

.hero h1 {
    font-size: 2.75rem;
    line-height: 1.15;
    margin-bottom: 1.25rem;
    color: var(--text);
    font-weight: 800;
    letter-spacing: -0.02em;
}

.hero-sub {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.hero .btn-lg {
    padding: 0.875rem 2.5rem;
    font-size: 1.1rem;
}

.trust-section {
    padding: 2rem 1rem 3rem;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.trust-item {
    text-align: center;
    padding: 1.5rem 1.25rem;
    background: var(--card-bg);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.trust-item:nth-child(odd) {
    background: var(--primary-light);
}

.trust-item:nth-child(even) {
    background: var(--card-bg);
}

.trust-item:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.07);
    transform: translateY(-4px);
}

.trust-item strong {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.trust-item p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.pricing-section {
    text-align: center;
    padding: 3rem 1rem;
    background: var(--bg);
}

.pricing-section h2 {
    font-size: 1.75rem;
    margin-bottom: 2rem;
}

.pricing-section h2::before,
.trust-section h2::before,
.blog-section h2::before,
.cta-section h2::before {
    content: "";
    display: block;
    width: 48px;
    height: 3px;
    background: var(--primary);
    margin: 0 auto 1rem;
    border-radius: 2px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 700px;
    margin: 0 auto;
}

.pricing-grid-3 {
    max-width: 1000px;
}

.pricing-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.pricing-highlight {
    border: 2px solid var(--primary);
    box-shadow: 0 4px 24px rgba(26, 86, 219, 0.18), 0 0 0 4px rgba(26, 86, 219, 0.06);
    position: relative;
    transform: scale(1.03);
}

.pricing-highlight:hover {
    transform: scale(1.03) translateY(-4px);
}

.pricing-label {
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
    color: var(--text-muted);
}

.pricing-badge {
    background: var(--success);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 99px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: 0.02em;
}

.pricing-recommendation {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 99px;
    font-size: 0.8rem;
    font-weight: 700;
    white-space: nowrap;
}

.pricing-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 1.5rem;
}

.pricing-price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-muted);
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin-bottom: 1.5rem;
    width: 100%;
}

.pricing-features li {
    padding: 0.375rem 0;
    font-size: 0.9rem;
    color: var(--text);
}

.pricing-features li::before {
    content: "✓ ";
    color: var(--success);
    font-weight: 700;
}

.pricing-anchor {
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
}

.cta-section {
    text-align: center;
    padding: 3rem 1rem;
}

.cta-section h2 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.cta-section p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.btn-lg {
    padding: 0.75rem 2rem;
    font-size: 1rem;
}

.cta-sub {
    margin-top: 0.75rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.faq-section {
    max-width: 700px;
    margin: 0 auto;
    padding: 3rem 1rem;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 1.5rem;
}

.faq-more {
    text-align: center;
    margin-top: 1.25rem;
}

@media (max-width: 640px) {
    .hero h1 {
        font-size: 1.75rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-highlight {
        transform: none;
    }

    .pricing-highlight:hover {
        transform: translateY(-4px);
    }
}

/* FAQ */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.faq-item {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}

.faq-item summary {
    padding: 1rem 1.25rem;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.faq-item summary::after {
    content: '+';
    font-size: 1.25rem;
    color: var(--text-muted);
    transition: transform 0.2s;
}

.faq-item[open] summary::after {
    content: '−';
}

.faq-answer {
    padding: 0 1.25rem 1rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.faq-answer p {
    margin-bottom: 0.5rem;
}

/* User management */
.invite-form {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.invite-form input,
.invite-form select {
    padding: 0.4rem 0.6rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 0.9rem;
}

.users-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.users-table th,
.users-table td {
    padding: 0.5rem 0.75rem;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.users-table th {
    font-weight: 600;
    color: var(--text-muted);
}

.assign-select {
    padding: 0.4rem 0.6rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    width: 100%;
}

.pricing-note {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

/* Pricing toggle */
.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.pricing-toggle-label {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 500;
    transition: color 0.2s;
}

.pricing-toggle-active {
    color: var(--text);
    font-weight: 700;
}

.pricing-switch {
    position: relative;
    display: inline-block;
    width: 48px;
    height: 26px;
}

.pricing-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.pricing-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--primary);
    border-radius: 26px;
    transition: background 0.2s;
}

.pricing-slider::before {
    content: "";
    position: absolute;
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background: #fff;
    border-radius: 50%;
    transition: transform 0.2s;
}

.pricing-switch input:checked + .pricing-slider::before {
    transform: translateX(22px);
}

.pricing-grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.pricing-billing-note {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.pricing-vat-note {
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 1.5rem;
}

.btn-outline {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    border: 2px solid var(--primary);
    color: var(--primary);
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: background 0.15s, color 0.15s;
    text-align: center;
}

.btn-outline:hover {
    background: var(--primary);
    color: #fff;
}

/* Blog section */
.blog-section {
    padding: 3rem 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.blog-section h2 {
    text-align: center;
    font-size: 1.75rem;
    margin-bottom: 2rem;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
}

.blog-card {
    display: block;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    text-decoration: none;
    color: inherit;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    overflow: hidden;
}

.blog-card:nth-child(n+5) {
    display: none;
}

.blog-grid.blog-grid--expanded .blog-card:nth-child(n+5) {
    display: block;
}

.blog-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.blog-load-more {
    display: block;
    margin: 2rem auto 0;
    padding: 0.625rem 1.5rem;
    background: none;
    border: 2px solid var(--primary);
    color: var(--primary);
    border-radius: var(--radius);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease;
}

.blog-load-more:hover {
    background: var(--primary);
    color: #fff;
}

.blog-grid--expanded ~ .blog-load-more {
    display: none;
}

.blog-card-body {
    padding: 1.25rem 1.5rem;
}

.blog-card-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: var(--primary);
    background: rgba(26, 86, 219, 0.08);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    margin-bottom: 0.75rem;
}

.blog-card h3 {
    font-size: 1.05rem;
    line-height: 1.4;
    margin-bottom: 0.5rem;
}

.blog-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 0.75rem;
}

.blog-card-arrow {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
}

@media (max-width: 640px) {
    .pricing-grid-2 {
        grid-template-columns: 1fr;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }
}

footer a {
    color: var(--text-muted);
    text-decoration: underline;
}

/* E2E Encryption */
.e2e-notice {
    background: #ecfdf5;
    border: 1px solid #6ee7b7;
    border-radius: var(--radius);
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    color: #065f46;
    margin-bottom: 1rem;
}

/* Anonymity notice (report form) */
.anonymity-notice {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    background: #eff6ff;
    border: 1px solid #93c5fd;
    border-left: 4px solid #2563eb;
    border-radius: var(--radius);
    padding: 1rem 1.25rem;
    margin-bottom: 1.5rem;
    color: #1e3a8a;
}

.anonymity-notice-icon {
    font-size: 1.5rem;
    line-height: 1.2;
    flex-shrink: 0;
}

.anonymity-notice p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.e2e-badge {
    font-size: 0.75rem;
    vertical-align: middle;
}

.e2e-detail-badge {
    background: #ecfdf5;
    border: 1px solid #6ee7b7;
    border-radius: var(--radius);
    padding: 0.5rem 0.75rem;
    font-size: 0.85rem;
    color: #065f46;
    margin-bottom: 0.75rem;
}

.decrypt-input {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-family: monospace;
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
    resize: vertical;
}

.settings-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    line-height: 1.5;
}

/* Settings sidebar layout */
.settings-layout {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.settings-nav {
    position: sticky;
    top: 1rem;
    min-width: 180px;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    border-right: 1px solid var(--border);
    padding-right: 1.5rem;
}

.settings-nav-item {
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius);
    text-decoration: none;
    color: var(--text);
    font-size: 0.9rem;
    border-left: 3px solid transparent;
    transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.settings-nav-item:hover {
    background: var(--bg-hover, #f1f5f9);
}

.settings-nav-item.active {
    background: #eff6ff;
    color: var(--primary);
    font-weight: 600;
    border-left: 3px solid var(--primary);
}

.settings-content {
    flex: 1;
    min-width: 0;
    max-width: 600px;
}

@media (max-width: 768px) {
    .settings-layout {
        flex-direction: column;
        gap: 1rem;
    }
    .settings-nav {
        position: static;
        flex-direction: row;
        flex-wrap: wrap;
        border-right: none;
        border-bottom: 1px solid var(--border);
        padding-right: 0;
        padding-bottom: 0.75rem;
        min-width: unset;
    }
    .settings-content {
        max-width: 100%;
    }
}

/* Tenant switcher */
.tenant-switcher {
    padding: 0.4rem 0.6rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 0.85rem;
    background: var(--card-bg);
    cursor: pointer;
}

.mandanten-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
    margin-top: 0.75rem;
}

.mandanten-table th,
.mandanten-table td {
    padding: 0.5rem 0.75rem;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.mandanten-table th {
    font-weight: 600;
    color: var(--text-muted);
}

.add-tenant-form {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
}

.add-tenant-form input {
    padding: 0.4rem 0.6rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 0.9rem;
    flex: 1;
    min-width: 200px;
}

/* Legal pages */
.legal-page h2 {
    font-size: 1.25rem;
    margin-top: 2rem;
    margin-bottom: 0.5rem;
    color: var(--text);
}

.legal-page h3 {
    font-size: 1.05rem;
    margin-top: 1.25rem;
    margin-bottom: 0.375rem;
    color: var(--text);
}

.legal-page p {
    color: var(--text-muted);
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

.legal-page ul {
    color: var(--text-muted);
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    line-height: 1.7;
}

.legal-page ul li {
    margin-bottom: 0.25rem;
}

.legal-page a {
    color: var(--primary);
}

.legal-page em {
    display: block;
    margin-top: 2rem;
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* Terms checkbox */
.terms-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.terms-group input[type="checkbox"] {
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.terms-group label {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
    font-weight: 400;
}

.terms-group label a {
    color: var(--primary);
}


.tenant-logo { height: 36px; width: auto; object-fit: contain; }

/* Blog article pages */
.article {
    max-width: 720px;
    margin: 0 auto;
}

.article-back {
    display: inline-block;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    transition: color 0.2s;
}

.article-back:hover {
    color: var(--primary);
}

.article-tag {
    display: inline-block;
    background: #e0e7ff;
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.75rem;
}

.article h1 {
    font-size: 2rem;
    line-height: 1.3;
    margin-bottom: 0.5rem;
}

.article-meta {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
}

.article h2 {
    font-size: 1.375rem;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.article h3 {
    font-size: 1.125rem;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.article p {
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.article ul,
.article ol {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.article li {
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.article strong {
    color: var(--text);
}

.article-cta {
    margin-top: 2.5rem;
    padding: 2rem;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    text-align: center;
}

.article-cta h3 {
    margin-top: 0;
    margin-bottom: 0.5rem;
}

.article-cta p {
    color: var(--text-muted);
    margin-bottom: 1rem;
}

@media (max-width: 640px) {
    .article h1 {
        font-size: 1.5rem;
    }

    .article h2 {
        font-size: 1.2rem;
    }
}

/* Compliance / onboarding checklist (Dashboard) */
.compliance-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.25rem 1.5rem;
}

.compliance-card-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.compliance-card-header h3 {
    font-size: 1rem;
    margin: 0;
    color: var(--text-strong);
}

.compliance-progress {
    font-size: 0.8rem;
    color: var(--label);
    font-weight: 600;
}

.compliance-card .compliance-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

.compliance-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.compliance-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.4rem 0.5rem;
    border-radius: var(--radius);
    font-size: 0.9rem;
    cursor: pointer;
    transition: background 0.15s;
}

.compliance-item:hover {
    background: #f8fafc;
}

.compliance-item input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: var(--success);
    cursor: pointer;
    flex-shrink: 0;
}

.compliance-item.is-done .compliance-text {
    color: var(--text-muted);
    text-decoration: line-through;
}

.compliance-text {
    color: var(--text-strong);
}

/* Custom file upload (drag & drop) */
.file-dropzone {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1.25rem 1rem;
    border: 2px dashed var(--border-input);
    border-radius: var(--radius-lg);
    background: #f8fafc;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.file-dropzone:hover,
.file-dropzone.is-dragover {
    border-color: var(--primary);
    background: var(--primary-light);
    color: var(--text);
}

.file-dropzone-icon {
    width: 32px;
    height: 32px;
    color: var(--text-muted);
}

.file-dropzone-cta {
    color: var(--primary);
    font-weight: 600;
}

.file-dropzone input[type="file"] {
    display: none;
}

.file-list {
    margin-top: 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    font-size: 0.85rem;
}

.file-list-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text);
}

.file-list-item button {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 1rem;
    line-height: 1;
    padding: 0 0.25rem;
}

.file-list-item button:hover {
    color: var(--danger);
}

/* Empty state with icon */
.empty-state-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 2.5rem 1rem;
    color: var(--text-muted);
    text-align: center;
}

.empty-state-icon {
    width: 40px;
    height: 40px;
    color: #94a3b8;
}

.empty-state-onboarding {
    padding: 3rem 1.5rem;
    gap: 0.75rem;
}

.empty-state-onboarding .empty-state-icon {
    width: 56px;
    height: 56px;
    color: var(--primary, #2563eb);
}

.empty-state-heading {
    margin: 0.5rem 0 0;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text, #0f172a);
}

.empty-state-subtitle {
    margin: 0;
    max-width: 520px;
    color: var(--text-muted);
    line-height: 1.5;
}

.empty-state-link {
    display: inline-block;
    margin-top: 0.25rem;
    padding: 0.5rem 0.875rem;
    background: var(--bg-subtle, #f1f5f9);
    border: 1px solid var(--border, #e2e8f0);
    border-radius: 6px;
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
    font-size: 0.9rem;
    color: var(--primary, #2563eb);
    text-decoration: none;
    word-break: break-all;
}

.empty-state-link:hover {
    text-decoration: underline;
}

/* QR code caption */
.qr-caption {
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-style: italic;
}

/* Branding live preview */
.branding-preview {
    margin-top: 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: #f1f5f9;
    padding: 0.75rem;
}

.branding-preview-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--label);
    margin-bottom: 0.5rem;
}

.branding-preview-frame {
    background: var(--card-bg);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
}

.branding-preview-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    border-bottom: 1px solid var(--border);
    background: #fff;
}

.branding-preview-logo-img {
    height: 24px;
    width: auto;
    object-fit: contain;
}

.branding-preview-logo-text {
    font-weight: 700;
    font-size: 0.95rem;
}

.branding-preview-body {
    padding: 0.75rem;
    font-size: 0.85rem;
    color: var(--text);
}

.branding-preview-h {
    font-weight: 700;
    color: var(--text-strong);
    margin-bottom: 0.25rem;
    font-size: 0.95rem;
}

.branding-preview-btn {
    display: inline-block;
    margin-top: 0.5rem;
    padding: 0.4rem 0.9rem;
    border-radius: var(--radius);
    color: #fff;
    font-weight: 600;
    font-size: 0.8rem;
}

/* Channel selection cards (whistleblower entry point with multiple channels). */
.channel-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}
.channel-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1.25rem 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: #fff;
    text-decoration: none;
    color: var(--text);
    transition: border-color 0.15s, box-shadow 0.15s, transform 0.05s;
    min-height: 110px;
}
.channel-card:hover {
    border-color: var(--primary);
    box-shadow: 0 6px 16px rgba(0,0,0,0.06);
}
.channel-card:active { transform: translateY(1px); }
.channel-card-name {
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--text-strong);
    margin-bottom: 0.5rem;
}
.channel-card-cta {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
}

/* Channel admin list (settings → Meldestellen) */
.channel-list { display: flex; flex-direction: column; gap: 0.75rem; }
.channel-row {
    display: flex; align-items: center; gap: 1rem;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: #fff;
}
.channel-row.is-disabled { opacity: 0.55; background: #f8fafc; }
.channel-row-main { flex: 1; min-width: 0; }
.channel-row-name { font-weight: 600; color: var(--text-strong); }
.channel-row-desc { font-size: 0.85rem; color: var(--text-muted); }
.channel-row-actions { display: flex; gap: 0.5rem; align-items: center; }
.channel-toggle { position: relative; display: inline-block; width: 42px; height: 24px; }
.channel-toggle input { opacity: 0; width: 0; height: 0; }
.channel-toggle .slider {
    position: absolute; cursor: pointer; inset: 0;
    background: #cbd5e1; border-radius: 24px; transition: 0.2s;
}
.channel-toggle .slider::before {
    position: absolute; content: ""; height: 18px; width: 18px;
    left: 3px; bottom: 3px; background: #fff; border-radius: 50%; transition: 0.2s;
}
.channel-toggle input:checked + .slider { background: var(--primary); }
.channel-toggle input:checked + .slider::before { transform: translateX(18px); }

/* Multi-channel landing page */
.multi-hero { text-align: center; padding: 3rem 1rem 2rem; }
.multi-hero h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 0.5rem; }
.multi-hero p { color: var(--text-muted); font-size: 1.05rem; margin-bottom: 1.5rem; }
.multi-channel-grid {
    display: grid; gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    margin: 2rem 0;
}
.multi-channel-tile {
    padding: 1.25rem; border: 1px solid var(--border);
    border-radius: var(--radius); background: #fff;
}
.multi-channel-tile-icon {
    font-size: 1.6rem; margin-bottom: 0.5rem;
}
.multi-channel-tile-name {
    font-weight: 700; color: var(--text-strong);
    margin-bottom: 0.25rem;
}
.multi-channel-tile-desc {
    font-size: 0.9rem; color: var(--text-muted);
}
.multi-sticky-cta {
    position: sticky; bottom: 0; z-index: 5;
    background: var(--primary); color: #fff;
    padding: 0.85rem 1rem;
    text-align: center;
    box-shadow: 0 -4px 16px rgba(0,0,0,0.08);
}
.multi-sticky-cta a {
    color: #fff; font-weight: 700; text-decoration: underline;
}

/* Language switcher */
.lang-switch {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    margin-left: 0.5rem;
    font-size: 0.85rem;
}
.lang-link {
    padding: 2px 6px;
    color: var(--text-muted);
    text-decoration: none;
    border-radius: 4px;
}
.lang-link.is-active {
    color: var(--primary);
    font-weight: 700;
    background: rgba(79, 70, 229, 0.08);
}
