    .dashboard-hero {
        align-items: flex-start;
        background: #1f4d50;
        color: #fff;
        display: flex;
        justify-content: space-between;
        gap: 24px;
        padding: 36px;
    }

    .dashboard-hero h1 {
        font-size: 40px;
        line-height: 1.1;
        margin: 0;
    }

    .eyebrow {
        color: #a8d8c6;
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 0;
        margin: 0 0 10px;
        text-transform: uppercase;
    }

    .hero-copy {
        color: #dcefeb;
        font-size: 16px;
        margin: 12px 0 0;
    }

    .hero-actions,
    .filter-actions,
    .task-actions {
        align-items: center;
        display: flex;
        gap: 10px;
    }

    .hero-actions form {
        margin: 0;
    }

    .primary-action,
    .ghost-action,
    .muted-action {
        border-radius: 6px;
        cursor: pointer;
        display: inline-flex;
        font: inherit;
        justify-content: center;
        padding: 11px 16px;
        text-decoration: none;
        white-space: nowrap;
    }

    .primary-action {
        background: #f0b65a;
        border: 1px solid #f0b65a;
        color: #1d2a2e;
        font-weight: 700;
    }

    .ghost-action {
        background: transparent;
        border: 1px solid rgba(255, 255, 255, 0.34);
        color: #fff;
    }

    .muted-action {
        background: #eef4f1;
        border: 1px solid #cfdad4;
        color: #51615d;
    }

    .stats-grid {
        display: grid;
        gap: 14px;
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        padding: 22px 36px 0;
    }

    .stat-card {
        background: #fff;
        border: 1px solid #dfe8e2;
        border-radius: 8px;
        padding: 18px;
    }

    .stat-card strong {
        display: block;
        font-size: 30px;
        line-height: 1;
        margin-top: 8px;
    }

    .stat-label {
        color: #687672;
        font-size: 13px;
    }

    .filter-panel {
        align-items: end;
        background: #fff;
        border: 1px solid #dfe8e2;
        border-radius: 8px;
        display: grid;
        gap: 14px;
        grid-template-columns: 2fr 1fr 1fr auto;
        margin: 22px 36px;
        padding: 18px;
    }

    .filter-panel label {
        color: #51615d;
        font-size: 13px;
        font-weight: 700;
        padding: 0 !important;
    }

    .filter-panel label span {
        display: block;
        margin-bottom: 8px;
    }

    .task-list-header {
        align-items: center;
        display: flex;
        justify-content: space-between;
        margin: 0 36px 14px;
    }

    .task-list-header h2 {
        font-size: 22px;
        margin: 0;
    }

    .task-list-header span,
    .muted-text {
        color: #687672;
    }

    .task-grid {
        display: grid;
        gap: 14px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        padding: 0 36px 36px;
    }

    .task-card,
    .empty-state {
        background: #fff;
        border: 1px solid #dfe8e2;
        border-radius: 8px;
        padding: 20px;
    }

    .task-card {
        display: flex;
        flex-direction: column;
        gap: 14px;
        min-height: 220px;
    }

    .task-card-complete {
        background: #f8fbf9;
    }

    .task-card h3 {
        font-size: 20px;
        line-height: 1.3;
        margin: 0;
        overflow-wrap: anywhere;
    }

    .task-card h3 a,
    .task-actions a {
        text-decoration: none;
    }

    .task-card p {
        color: #51615d;
        line-height: 1.5;
        margin: 0;
    }

    .task-status,
    .task-meta {
        align-items: center;
        color: #687672;
        display: flex;
        flex-wrap: wrap;
        font-size: 13px;
        gap: 8px;
    }

    .status-dot-active,
    .status-dot-complete {
        border-radius: 999px;
        display: inline-flex;
        height: 10px;
        width: 10px;
    }

    .status-dot-active {
        background: #ef7d57;
    }

    .status-dot-complete {
        background: #2f9e6d;
    }

    .category-pill {
        background: #e8f4ee;
        border: 1px solid #cce2d6;
        border-radius: 999px;
        color: #275d4a;
        padding: 5px 10px;
    }

    .muted-pill {
        background: #f0f2f1;
        border-color: #dde4e0;
        color: #687672;
    }

    .task-actions {
        border-top: 1px solid #edf2ef;
        margin-top: auto;
        padding-top: 14px;
    }

    .task-actions a {
        color: #2f6f73;
        font-weight: 700;
    }

    .task-actions .danger-link {
        color: #b64242;
    }

    .empty-state {
        grid-column: 1 / -1;
        padding: 42px;
        text-align: center;
    }

    .empty-state h3 {
        font-size: 26px;
        margin: 0 0 8px;
    }

    .empty-state p {
        color: #687672;
        margin: 0 0 18px;
    }

    .chat-message-text {
        overflow-wrap: anywhere;
        white-space: pre-wrap;
    }

    .chat-bubble {
        touch-action: pan-y;
        transition: box-shadow 160ms ease, transform 160ms ease;
    }

    .chat-bubble-highlight {
        box-shadow: 0 0 0 3px rgba(51, 126, 132, 0.38);
    }

    .chat-bubble-menu-open {
        box-shadow: 0 0 0 3px rgba(51, 126, 132, 0.32);
    }

    .message-context-menu {
        background: #fff;
        border: 1px solid #d7e3dd;
        border-radius: 7px;
        box-shadow: 0 14px 36px rgba(18, 39, 33, 0.2);
        display: grid;
        min-width: 170px;
        overflow: hidden;
        padding: 5px;
        position: fixed;
        z-index: 1200;
    }

    .message-context-menu[hidden],
    .message-context-menu [hidden] {
        display: none;
    }

    .message-context-menu button,
    .message-context-menu a {
        align-items: center;
        background: transparent;
        border: 0;
        border-radius: 5px;
        color: #1d2a2e;
        cursor: pointer;
        display: flex;
        font: inherit;
        min-height: 38px;
        padding: 8px 11px;
        text-align: left;
        text-decoration: none;
        width: 100%;
    }

    .message-context-menu button:hover,
    .message-context-menu button:focus-visible,
    .message-context-menu a:hover,
    .message-context-menu a:focus-visible {
        background: #edf5f2;
        outline: none;
    }

    .message-context-menu .danger-link {
        color: #b64242;
    }

    .chat-reply-quote {
        background: rgba(51, 126, 132, 0.1);
        border: 0;
        border-left: 3px solid #337e84;
        color: inherit;
        cursor: pointer;
        display: grid;
        font: inherit;
        gap: 3px;
        margin: 8px 0;
        max-width: 100%;
        padding: 7px 10px;
        text-align: left;
        width: 100%;
    }

    .chat-reply-quote span {
        font-size: 12px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .chat-reply-preview {
        align-items: center;
        background: #edf5f2;
        border-left: 3px solid #337e84;
        display: flex;
        gap: 12px;
        justify-content: space-between;
        margin-bottom: 6px;
        padding: 7px 10px;
    }

    .chat-reply-preview[hidden] {
        display: none;
    }

    .chat-reply-preview div {
        display: grid;
        min-width: 0;
    }

    .chat-reply-preview span {
        font-size: 12px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .chat-reply-preview button {
        background: transparent;
        border: 0;
        color: inherit;
        cursor: pointer;
        font-size: 22px;
        padding: 2px 6px;
    }

