/* ═══════════════════════════════════════════════════════════
   Efficient AI - Black & Orange Modern Theme
   ═══════════════════════════════════════════════════════════ */

/* ─── Reset & Tokens ─────────────────────────────────────── */

:root {
    --bg-primary: #0a0a0a;
    --bg-surface: rgba(18, 18, 18, 0.9);
    --bg-glass: rgba(22, 22, 22, 0.85);
    --bg-glass-hover: rgba(30, 30, 30, 0.9);
    --bg-input: rgba(16, 16, 16, 0.8);

    --border-subtle: rgba(255, 255, 255, 0.06);
    --border-focus: rgba(255, 140, 50, 0.4);
    --border-glass: rgba(255, 255, 255, 0.08);

    --text-primary: #f0f0f0;
    --text-secondary: #999;
    --text-tertiary: #666;

    --accent: #ff8c32;
    --accent-hover: #ffa050;
    --accent-dim: rgba(255, 140, 50, 0.12);
    --accent-glow: rgba(255, 140, 50, 0.2);
    --accent-green: #34d399;
    --accent-red: #f87171;
    --accent-amber: #fbbf24;
    --accent-purple: #c084fc;

    --gradient-brand: linear-gradient(135deg, #ff8c32 0%, #ff6b1a 100%);

    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.4);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.6);
    --shadow-glow: 0 0 16px rgba(255, 140, 50, 0.12);

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 14px;
    --radius-xl: 18px;
    --radius-full: 9999px;

    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-mono: 'JetBrains Mono', 'Fira Code', 'Consolas', monospace;

    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html,
body {
    height: 100%;
    overflow: hidden;
}

body {
    font-family: var(--font-sans);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ─── App Layout ──────────────────────────────────────────── */

#app {
    display: flex;
    flex-direction: column;
    height: 100vh;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 16px;
    overflow: hidden;
}

/* ─── Header ──────────────────────────────────────────────── */

header {
    flex-shrink: 0;
    padding: 14px 0 10px;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 18px;
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    object-fit: contain;
}

.logo h1 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: -0.02em;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-sm);
    background: transparent;
    color: var(--text-tertiary);
    cursor: pointer;
    transition: all 0.2s;
}

.about-btn:hover {
    color: var(--accent);
    border-color: var(--accent-dim);
    background: var(--accent-dim);
}

.header-status {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    color: var(--text-tertiary);
}

.status-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    transition: background 0.3s, box-shadow 0.3s;
}

.status-dot.connected {
    background: var(--accent-green);
    box-shadow: 0 0 6px rgba(52, 211, 153, 0.5);
}

.status-dot.disconnected {
    background: var(--accent-red);
    box-shadow: 0 0 6px rgba(248, 113, 113, 0.5);
    animation: pulse-red 1.5s ease-in-out infinite;
}

@keyframes pulse-red {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }
}

/* ─── About Modal ─────────────────────────────────────────── */

.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    animation: modalFadeIn 0.2s ease-out;
    padding: 20px;
}

.modal-overlay.hidden {
    display: none;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.modal-card {
    position: relative;
    max-width: 500px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    padding: 32px 28px 24px;
    background: #141414;
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    animation: modalSlideUp 0.25s var(--ease-out);
    text-align: center;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.1) transparent;
}

@keyframes modalSlideUp {
    from {
        transform: translateY(16px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-header-icon {
    margin-bottom: 12px;
}

.modal-header-icon img {
    border-radius: 10px;
}

.modal-card h2 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--accent);
}

.modal-subtitle {
    font-size: 0.84rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.modal-sections {
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.modal-section {
    padding: 12px 14px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
}

.modal-section h3 {
    font-size: 0.84rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.modal-section p {
    font-size: 0.8rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.modal-section.data-notice {
    background: rgba(255, 140, 50, 0.04);
    border-color: rgba(255, 140, 50, 0.15);
}

.modal-section.data-notice h3 {
    color: var(--accent);
}

.data-note {
    margin-top: 6px;
    font-size: 0.75rem !important;
    color: var(--text-tertiary) !important;
    font-style: italic;
}

.modal-cta {
    padding: 9px 28px;
    border: none;
    border-radius: var(--radius-full);
    background: var(--gradient-brand);
    color: white;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.15s;
    box-shadow: 0 2px 10px rgba(255, 140, 50, 0.25);
}

.modal-cta:hover {
    transform: scale(1.03);
    box-shadow: 0 4px 16px rgba(255, 140, 50, 0.35);
}

.modal-cta:active {
    transform: scale(0.97);
}

.modal-disclaimer {
    margin-bottom: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--border-subtle);
    text-align: left;
}

.modal-disclaimer h3 {
    font-size: 0.78rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text-tertiary);
}

.modal-disclaimer p {
    font-size: 0.68rem;
    line-height: 1.55;
    color: var(--text-tertiary);
}

.modal-disclaimer strong {
    color: var(--text-secondary);
}

/* ─── Queue Banner ────────────────────────────────────────── */

.queue-banner {
    flex-shrink: 0;
    margin-bottom: 6px;
    transition: all 0.3s var(--ease-out);
}

.queue-banner.hidden {
    max-height: 0;
    opacity: 0;
    margin: 0;
    overflow: hidden;
}

.queue-banner-inner {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: var(--accent-dim);
    border: 1px solid rgba(255, 140, 50, 0.18);
    border-radius: var(--radius-md);
    animation: slideDown 0.2s var(--ease-out);
}

@keyframes slideDown {
    from {
        transform: translateY(-6px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.queue-icon {
    font-size: 1.2rem;
}

.queue-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.queue-info span:first-child {
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text-primary);
}

.queue-info span:last-child {
    font-size: 0.72rem;
    color: var(--text-secondary);
}

.queue-progress {
    width: 70px;
    height: 3px;
    background: rgba(255, 140, 50, 0.1);
    border-radius: var(--radius-full);
    overflow: hidden;
}

.queue-progress-fill {
    height: 100%;
    background: var(--gradient-brand);
    border-radius: var(--radius-full);
    width: 0%;
    transition: width 0.5s var(--ease-out);
}

/* ─── Chat Area ───────────────────────────────────────────── */

main {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 6px 0;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.08) transparent;
}

main::-webkit-scrollbar {
    width: 5px;
}

main::-webkit-scrollbar-track {
    background: transparent;
}

main::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-full);
}

.messages {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding-bottom: 12px;
    overflow: hidden;
}

/* ─── Welcome Card ────────────────────────────────────────── */

.welcome-card {
    text-align: center;
    padding: 40px 28px;
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-xl);
    animation: fadeUp 0.4s var(--ease-out);
}

@keyframes fadeUp {
    from {
        transform: translateY(12px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.welcome-icon {
    margin-bottom: 12px;
    line-height: 1;
}

.welcome-icon img {
    border-radius: 10px;
}

.welcome-card h2 {
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--accent);
}

.welcome-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    max-width: 400px;
    margin: 0 auto 20px;
    line-height: 1.6;
}

.welcome-features {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.feature {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.78rem;
    color: var(--text-secondary);
    padding: 5px 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-full);
    transition: all 0.15s;
}

.feature:hover {
    border-color: rgba(255, 140, 50, 0.2);
    background: var(--accent-dim);
}

.feature-icon {
    font-size: 0.85rem;
}

/* ─── Message Bubbles ─────────────────────────────────────── */

.message {
    display: flex;
    gap: 10px;
    animation: fadeUp 0.25s var(--ease-out);
    max-width: 100%;
    overflow: hidden;
}

.message.user {
    flex-direction: row-reverse;
}

.message-avatar {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 600;
}

.message.user .message-avatar {
    background: rgba(255, 140, 50, 0.15);
    color: var(--accent);
}

.message.assistant .message-avatar {
    background: var(--accent-dim);
}

.message-body {
    max-width: 75%;
    min-width: 0;
    overflow: hidden;
}

.message-content {
    padding: 10px 14px;
    border-radius: var(--radius-lg);
    font-size: 0.88rem;
    line-height: 1.7;
    word-wrap: break-word;
    overflow-wrap: break-word;
    overflow: hidden;
}

.message.user .message-content {
    background: rgba(255, 140, 50, 0.1);
    border: 1px solid rgba(255, 140, 50, 0.15);
}

.message.assistant .message-content {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-subtle);
}

/* Thinking section */
.thinking-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 6px 10px;
    margin-bottom: 6px;
    background: rgba(192, 132, 252, 0.05);
    border: 1px solid rgba(192, 132, 252, 0.12);
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-size: 0.75rem;
    color: var(--accent-purple);
    transition: all 0.15s;
    user-select: none;
}

.thinking-toggle.active {
    animation: think-pulse 1.5s ease-in-out infinite;
}

@keyframes think-pulse {

    0%,
    100% {
        background: rgba(192, 132, 252, 0.05);
    }

    50% {
        background: rgba(192, 132, 252, 0.12);
    }
}

.thinking-toggle:hover {
    background: rgba(192, 132, 252, 0.1);
}

.thinking-toggle .toggle-arrow {
    transition: transform 0.2s;
    font-size: 0.6rem;
}

.thinking-toggle.expanded .toggle-arrow {
    transform: rotate(90deg);
}

.thinking-elapsed {
    margin-left: auto;
    font-size: 0.7rem;
    font-variant-numeric: tabular-nums;
    color: var(--text-tertiary);
}

.thinking-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s var(--ease-out);
    margin-bottom: 6px;
}

.thinking-content.expanded {
    max-height: 400px;
    overflow-y: auto;
}

.thinking-text {
    padding: 8px 10px;
    font-size: 0.8rem;
    line-height: 1.5;
    color: var(--text-tertiary);
    font-family: var(--font-mono);
    background: rgba(192, 132, 252, 0.03);
    border-radius: var(--radius-sm);
    border-left: 2px solid rgba(192, 132, 252, 0.25);
    white-space: pre-wrap;
    word-break: break-word;
}

/* Response content formatting */
.message-content p {
    margin-bottom: 6px;
}

.message-content p:last-child {
    margin-bottom: 0;
}

.message-content code {
    font-family: var(--font-mono);
    font-size: 0.83em;
    padding: 1px 5px;
    background: rgba(255, 140, 50, 0.08);
    border: 1px solid rgba(255, 140, 50, 0.1);
    border-radius: 3px;
    color: var(--accent);
}

.message-content pre {
    margin: 6px 0;
    padding: 10px 12px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    overflow-x: auto;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    line-height: 1.5;
}

.message-content pre code {
    padding: 0;
    background: none;
    border: none;
    color: var(--text-primary);
}

.message-content strong {
    color: var(--text-primary);
    font-weight: 600;
}

.message-content em {
    color: var(--text-secondary);
}

.message-content ul,
.message-content ol {
    margin: 4px 0;
    padding-left: 18px;
}

.message-content li {
    margin-bottom: 3px;
}

.message-content blockquote {
    border-left: 2px solid var(--accent);
    padding-left: 10px;
    margin: 6px 0;
    color: var(--text-secondary);
    font-style: italic;
}

/* Markdown tables */
.table-wrapper {
    overflow-x: auto;
    margin: 10px 0;
}

.md-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9em;
    border: 1px solid var(--border-glass);
}

.md-table th,
.md-table td {
    padding: 8px 12px;
    border: 1px solid var(--border-glass);
    text-align: left;
}

.md-table th {
    background: rgba(255, 255, 255, 0.05);
    font-weight: 600;
    color: var(--text-primary);
}

/* Streaming cursor */
.streaming-cursor::after {
    content: '▊';
    display: inline;
    animation: blink 0.8s step-end infinite;
    color: var(--accent);
    font-weight: 300;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

/* ─── Stats Bar ───────────────────────────────────────────── */

.message-stats {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 6px;
    padding: 4px 0;
    font-size: 0.7rem;
    color: var(--text-tertiary);
    flex-wrap: wrap;
}

.stat {
    display: flex;
    align-items: center;
    gap: 3px;
}

.stat-icon {
    font-size: 0.75rem;
}

/* ─── Feedback Buttons ────────────────────────────────────── */

.feedback-bar {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: 4px;
}

.feedback-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    background: transparent;
    color: var(--text-tertiary);
    cursor: pointer;
    font-size: 0.8rem;
    transition: all 0.15s;
}

.feedback-btn:hover {
    background: var(--accent-dim);
    border-color: rgba(255, 140, 50, 0.2);
    color: var(--text-primary);
    transform: scale(1.08);
}

.feedback-btn.active-up {
    background: rgba(52, 211, 153, 0.12);
    border-color: rgba(52, 211, 153, 0.3);
    color: var(--accent-green);
}

.feedback-btn.active-down {
    background: rgba(248, 113, 113, 0.12);
    border-color: rgba(248, 113, 113, 0.3);
    color: var(--accent-red);
}

.feedback-btn:disabled {
    cursor: default;
    opacity: 0.35;
    transform: none;
}

/* ─── Processing Indicator ────────────────────────────────── */

.processing-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    font-size: 0.82rem;
    color: var(--text-secondary);
    animation: fadeUp 0.2s var(--ease-out);
}

.processing-dots {
    display: flex;
    gap: 3px;
}

.processing-dots span {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--accent);
    animation: dotBounce 1.4s ease-in-out infinite;
}

.processing-dots span:nth-child(2) {
    animation-delay: 0.2s;
}

.processing-dots span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes dotBounce {

    0%,
    80%,
    100% {
        transform: scale(0.6);
        opacity: 0.3;
    }

    40% {
        transform: scale(1);
        opacity: 1;
    }
}

.thinking-timer {
    font-size: 0.72rem;
    color: var(--text-tertiary);
    font-variant-numeric: tabular-nums;
    margin-left: auto;
}

/* ─── Input Area ──────────────────────────────────────────── */

footer {
    flex-shrink: 0;
    padding: 10px 0 16px;
}

.input-container {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.input-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px 8px 14px;
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    transition: border-color 0.15s, box-shadow 0.15s;
}

.input-wrapper:focus-within {
    border-color: var(--border-focus);
    box-shadow: var(--shadow-glow);
}

#prompt-input {
    flex: 1;
    border: none;
    background: transparent;
    color: var(--text-primary);
    font-family: var(--font-sans);
    font-size: 0.88rem;
    line-height: 1.5;
    resize: none;
    outline: none;
    max-height: 150px;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.08) transparent;
}

#prompt-input::placeholder {
    color: var(--text-tertiary);
}

.feedback-textarea {
    width: 100%;
    background: var(--bg-input);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    padding: 10px 14px;
    color: var(--text-primary);
    font-family: var(--font-sans);
    font-size: 0.88rem;
    line-height: 1.5;
    resize: vertical;
    outline: none;
    transition: border-color 0.15s, box-shadow 0.15s;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.08) transparent;
}

.feedback-textarea:focus {
    border-color: var(--border-focus);
    box-shadow: var(--shadow-glow);
}

.feedback-textarea::placeholder {
    color: var(--text-tertiary);
}

.send-btn {
    flex-shrink: 0;
    width: 34px;
    height: 34px;
    border: none;
    border-radius: var(--radius-sm);
    background: var(--gradient-brand);
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.15s;
    box-shadow: 0 2px 6px rgba(255, 140, 50, 0.25);
}

.send-btn:hover:not(:disabled) {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(255, 140, 50, 0.35);
}

.send-btn:active:not(:disabled) {
    transform: scale(0.95);
}

.send-btn:disabled {
    opacity: 0.25;
    cursor: default;
    box-shadow: none;
}

.input-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 4px;
}

.input-meta-right {
    display: flex;
    gap: 10px;
    align-items: center;
}

.model-select {
    background: var(--bg-glass);
    color: var(--text-secondary);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-sm);
    padding: 2px 6px;
    font-size: 0.72rem;
    font-family: var(--font-sans);
    outline: none;
    cursor: pointer;
    max-width: 150px;
    text-overflow: ellipsis;
}

.model-select:focus {
    border-color: var(--border-focus);
}

.char-count {
    font-size: 0.68rem;
    color: var(--text-tertiary);
    font-variant-numeric: tabular-nums;
}

.queue-badge {
    font-size: 0.68rem;
    color: var(--text-tertiary);
    padding: 1px 7px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-full);
}

.history-badge {
    font-size: 0.68rem;
    color: var(--accent);
    padding: 1px 7px;
    background: rgba(139, 92, 246, 0.08);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: var(--radius-full);
    font-variant-numeric: tabular-nums;
}

.clear-history-btn {
    font-size: 0.68rem;
    color: var(--text-tertiary);
    padding: 1px 8px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-full);
    cursor: pointer;
    font-family: var(--font-sans);
    transition: all 0.15s;
}

.clear-history-btn:hover {
    color: var(--accent-red);
    border-color: rgba(248, 113, 113, 0.3);
    background: rgba(248, 113, 113, 0.08);
}

.ai-disclaimer {
    text-align: center;
    font-size: 0.62rem;
    color: var(--text-tertiary);
    padding: 4px 0 0;
    opacity: 0.6;
}

/* ─── Responsive ──────────────────────────────────────────── */

@media (max-width: 640px) {
    #app {
        padding: 0 8px;
    }

    .header-inner {
        padding: 8px 12px;
    }

    .logo h1 {
        font-size: 0.95rem;
    }

    .welcome-card {
        padding: 28px 18px;
    }

    .welcome-card h2 {
        font-size: 1.15rem;
    }

    .welcome-features {
        flex-direction: column;
        align-items: center;
        gap: 6px;
    }

    .message-body {
        max-width: 85%;
    }
}

/* ─── Utilities ───────────────────────────────────────────── */

.hidden {
    display: none !important;
}