:root {
      --primary: #25b7a7;
      --primary-dark: #1a9e8f;
      --primary-light: #e8f8f6;
      --primary-deeper: #0d7a6e;
      --heading: #083530;
      --heading-deep: #0d524c;
      --heading-mid: #1a8c80;
      --text: #3d5250;
      --text-body: #3d5250;
      --muted: #7a9593;
      --bg: #f0f7f6;
      --bg-light: #f4fafa;
      --white: #ffffff;
      --border: #d0eeec;
      --sidebar-w: 250px;
      --topbar-h: 56px;
      --radius: 14px;
      --radius-sm: 10px;
      --shadow: 0 8px 28px rgba(8, 53, 48, 0.08);
      --shadow-hover: 0 14px 36px rgba(37, 183, 167, 0.16);
      --max-width: 1400px;
      --content-pad-x: 28px;
      --heading-title-line-height: 1.35;
      --heading-title-gap: 12px;
      --fs-body: 16px;
      --fs-h1: clamp(1.75rem, 2.8vw, 2.25rem);
      --fs-h2: clamp(1.75rem, 2.8vw, 2.25rem);
      --fs-h3: 18px;
      --fs-ui: 14px;
      --fs-small: 12px;
    }
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html {
      scroll-behavior: smooth;
      height: 100%;
      overflow: hidden;
    }
    body {
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
      font-size: var(--fs-body);
      font-weight: 400;
      line-height: 1.7;
      color: var(--text-body);
      background: #f4f6f8;
      height: 100%;
      overflow: hidden;
    }
    a { color: inherit; text-decoration: none; }
    button { font-family: inherit; cursor: pointer; border: none; background: none; }
    input, textarea, select { font-family: inherit; font-size: var(--fs-body); }
    ul { list-style: none; }
    img { display: block; max-width: 100%; }
    .is-hidden { display: none !important; }

    h1, h2, h3 {
      color: var(--heading);
      font-weight: 600;
      letter-spacing: -0.02em;
      line-height: var(--heading-title-line-height);
    }
    h1 { font-size: var(--fs-h1); }
    h2 { font-size: var(--fs-h2); }
    h3 { font-size: var(--fs-h3); }

    /* Layout: sidebar fixed | content scrolls (CA Cloud Desk) */
    .app-shell {
      display: grid;
      grid-template-columns: var(--sidebar-w) 1fr;
      height: 100vh;
      max-height: 100vh;
      max-width: none;
      margin: 0;
      padding: 0;
      gap: 0;
      align-items: stretch;
      overflow: hidden;
    }
    .sidebar {
      --sidebar-item-h: 42px;
      position: relative;
      height: 100%;
      max-height: 100vh;
      display: flex;
      flex-direction: column;
      overflow: hidden;
      background: #ffffff;
      border: none;
      border-right: 1px solid #e6eaee;
      border-radius: 0;
      padding: 0;
      box-shadow: none;
      z-index: 210;
    }
    .sidebar__nav {
      flex: 1;
      min-height: 0;
      overflow-y: auto;
      overflow-x: hidden;
      padding: 4px 0 16px;
      scrollbar-width: none;
      -ms-overflow-style: none;
    }
    .sidebar__nav::-webkit-scrollbar { width: 0; height: 0; display: none; }
    .sidebar__brand {
      display: flex;
      align-items: center;
      gap: 8px;
      height: var(--topbar-h);
      min-height: var(--topbar-h);
      max-height: var(--topbar-h);
      padding: 0 14px;
      border-bottom: 1px solid #eef1f4;
      flex-shrink: 0;
      overflow: hidden;
    }
    .sidebar__brand-logo {
      display: flex;
      align-items: center;
      min-width: 0;
      height: 100%;
    }
    .sidebar__brand-logo img {
      height: 32px;
      width: auto;
      max-width: 168px;
      object-fit: contain;
    }
    .sidebar__label { display: none; }

    .sidebar__toolbar {
      display: flex;
      align-items: center;
      gap: 8px;
      margin: 12px 14px 8px;
      padding: 0;
      height: auto;
      border: none;
      border-radius: 0;
      background: transparent;
      overflow: visible;
      flex-shrink: 0;
    }
    .sidebar__search-btn {
      flex: 0 0 36px;
      width: 36px;
      height: 36px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #5a6a76;
      border: 1px solid #d7dee4;
      border-radius: 999px;
      background: #fff;
      transition: background 0.15s ease, color 0.15s ease;
    }
    .sidebar__search-btn:hover,
    .sidebar__search-btn.is-active {
      background: #f5f9fc;
      color: #3d89c5;
      border-color: #c5d2db;
    }
    .sidebar__search-btn svg {
      width: 16px;
      height: 16px;
      stroke: currentColor;
      fill: none;
      stroke-width: 2;
      stroke-linecap: round;
      stroke-linejoin: round;
    }
    .sidebar__create-btn {
      flex: 1;
      height: 36px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 0 12px;
      font-size: var(--fs-ui);
      font-weight: 500;
      color: #3a4650;
      background: #fff;
      border: 1px solid #d7dee4;
      border-radius: 999px;
      transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
    }
    .sidebar__create-btn:hover {
      background: #f8fafb;
      color: var(--primary-deeper);
      border-color: #c5d2db;
    }
    .sidebar__create-icon {
      width: 16px;
      height: 16px;
      border-radius: 50%;
      border: 1.5px solid #6b7785;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 12px;
      line-height: 1;
      font-weight: 500;
      color: #6b7785;
    }
    .sidebar__create-btn:hover .sidebar__create-icon {
      border-color: var(--primary);
      color: var(--primary);
    }
    .sidebar__search-panel { display: none !important; }

    .sidebar__item {
      position: relative;
      display: flex;
      align-items: center;
      gap: 12px;
      width: 100%;
      min-height: var(--sidebar-item-h);
      padding: 10px 16px;
      margin-bottom: 0;
      border-radius: 0;
      font-size: 14px;
      font-weight: 500;
      color: #44515a;
      text-align: left;
      background: transparent;
      border: none;
      transition: background 0.15s ease, color 0.15s ease;
    }
    .sidebar__item::before {
      content: "";
      position: absolute;
      left: 0;
      top: 10px;
      bottom: 10px;
      width: 3px;
      border-radius: 0 3px 3px 0;
      background: transparent;
      transition: background 0.15s ease;
    }
    .sidebar__item:hover {
      background: #f5f8fa;
      color: #1f2a32;
    }
    .sidebar__item.is-active {
      background: #eef8f6;
      color: var(--primary-deeper);
      font-weight: 600;
      box-shadow: none;
    }
    .sidebar__item.is-active::before { background: var(--primary); }
    .sidebar__icon {
      width: 20px;
      height: 20px;
      border-radius: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      background: transparent;
      overflow: visible;
    }
    .sidebar__icon img {
      width: 18px;
      height: 18px;
      object-fit: contain;
      display: block;
      filter: grayscale(1) brightness(0.45);
      opacity: 0.9;
    }
    .sidebar__item:hover .sidebar__icon img,
    .sidebar__item.is-active .sidebar__icon img {
      filter: none;
      opacity: 1;
    }
    .sidebar__item.is-active .sidebar__icon {
      background: transparent;
      box-shadow: none;
    }

    .content-shell {
      min-width: 0;
      min-height: 0;
      height: 100%;
      max-height: 100vh;
      display: flex;
      flex-direction: column;
      background: #f4f6f8;
      border-left: none;
      overflow: hidden;
    }

    .topbar {
      position: relative;
      z-index: 200;
      height: var(--topbar-h);
      flex-shrink: 0;
      background: transparent;
      border-bottom: none;
      backdrop-filter: none;
      overflow: visible;
    }
    .topbar__inner {
      height: 100%;
      max-width: none;
      margin: 0;
      padding: 0 16px;
      display: grid;
      grid-template-columns: 1fr minmax(0, 420px) 1fr;
      align-items: center;
      gap: 12px;
    }
    .topbar__logo { display: none; }
    .topbar__title { display: none; }
    .sidebar-toggle {
      display: none;
      width: 40px;
      height: 40px;
      border-radius: 10px;
      font-size: 20px;
      color: var(--heading);
      align-items: center;
      justify-content: center;
      justify-self: start;
      grid-column: 1;
    }
    .topbar__search {
      width: 100%;
      min-width: 0;
      max-width: 420px;
      margin: 0;
      position: relative;
      grid-column: 2;
      justify-self: center;
      align-self: center;
    }
    .topbar__search input {
      width: 100%;
      height: 36px;
      padding: 0 12px;
      border: 1px solid #dde3ea;
      border-radius: 6px;
      background: #ffffff;
      font-size: var(--fs-ui);
      color: #334155;
      box-shadow: none;
    }
    .topbar__search input::placeholder { color: #94a3b8; }
    .topbar__search input:focus {
      outline: none;
      border-color: #cbd5e1;
      box-shadow: 0 0 0 3px rgba(148, 163, 184, 0.16);
    }
    .topbar__actions {
      margin-left: 0;
      display: flex;
      align-items: center;
      justify-content: flex-end;
      gap: 8px;
      flex-shrink: 0;
      grid-column: 3;
      justify-self: end;
      align-self: center;
    }
    .topbar__icon-btn {
      position: relative;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--text);
    }
    .topbar__icon-btn:hover { background: #e8eef2; color: var(--primary-dark); }
    .topbar__icon-btn svg { width: 20px; height: 20px; }
    .topbar__badge {
      position: absolute;
      top: 6px;
      right: 6px;
      min-width: 16px;
      height: 16px;
      padding: 0 4px;
      border-radius: 8px;
      background: #e11d48;
      color: #fff;
      font-size: 10px;
      font-weight: 700;
      line-height: 16px;
      text-align: center;
    }
    .topbar__profile {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 4px 10px 4px 4px;
      border-radius: 999px;
    }
    .topbar__profile:hover { background: #e8eef2; }
    .topbar__avatar {
      width: 34px;
      height: 34px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--primary), var(--primary-deeper));
      color: #fff;
      font-size: 13px;
      font-weight: 700;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .topbar__profile-meta strong { display: block; font-size: var(--fs-ui); color: var(--heading); line-height: 1.2; font-weight: 600; }
    .topbar__profile-meta span { font-size: 11px; color: var(--muted); }

    .main {
      min-width: 0;
      min-height: 0;
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: 24px;
      padding: 24px var(--content-pad-x) 0;
      overflow-x: hidden;
      overflow-y: auto;
      scroll-behavior: smooth;
      scrollbar-width: thin;
      scrollbar-color: #c5cdd4 transparent;
      text-align: left;
    }
    .main::-webkit-scrollbar { width: 8px; }
    .main::-webkit-scrollbar-track { background: transparent; }
    .main::-webkit-scrollbar-thumb {
      background: #c5cdd4;
      border-radius: 99px;
      border: 2px solid transparent;
      background-clip: content-box;
    }
    .main::-webkit-scrollbar-thumb:hover { background: #a8b3bc; background-clip: content-box; }

    .panel {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 24px;
      box-shadow: var(--shadow);
      text-align: left;
    }
    .panel__head {
      margin-bottom: var(--heading-title-gap);
      text-align: left;
      max-width: 720px;
    }
    .panel__head h2 {
      font-size: var(--fs-h2);
      font-weight: 600;
      letter-spacing: -0.02em;
      line-height: var(--heading-title-line-height);
      color: var(--heading);
      margin: 0 0 8px;
    }
    .panel__head p {
      font-size: var(--fs-ui);
      line-height: 1.55;
      color: var(--muted);
      margin: 0;
      max-width: 640px;
    }

    /* Quick actions */
    .quick-actions {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
      gap: 10px;
    }
    .quick-action {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 10px;
      padding: 14px;
      border-radius: var(--radius-sm);
      border: 1px solid var(--border);
      background: var(--bg);
      text-align: left;
    }
    .quick-action:hover {
      border-color: var(--primary);
      background: var(--primary-light);
      transform: translateY(-2px);
    }
    .quick-action__icon {
      width: 40px;
      height: 40px;
      border-radius: 12px;
      background: var(--white);
      border: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      transition: transform 0.2s ease;
    }
    .quick-action__icon img {
      width: 28px;
      height: 28px;
      object-fit: contain;
    }
    .quick-action:hover .quick-action__icon { transform: scale(1.12); }
    .quick-action span { font-size: var(--fs-ui); font-weight: 600; color: var(--heading); }

    /* Module grid */
    .module-grid {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      gap: 12px;
    }
    .module-card {
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 16px;
      background: linear-gradient(180deg, #fff 0%, #f8fcfb 100%);
      cursor: pointer;
      text-align: left;
      transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
    }
    .module-card:hover {
      transform: translateY(-3px);
      box-shadow: var(--shadow-hover);
      border-color: rgba(37, 183, 167, 0.45);
    }
    .module-card__icon {
      width: 48px;
      height: 48px;
      border-radius: 14px;
      background: transparent;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 10px;
      overflow: hidden;
      transition: transform 0.25s ease;
    }
    .module-card__icon img {
      width: 100%;
      height: 100%;
      object-fit: contain;
    }
    .module-card:hover .module-card__icon { transform: scale(1.1) rotate(-3deg); }
    .module-card h3 {
      font-size: var(--fs-h3);
      font-weight: 600;
      letter-spacing: -0.02em;
      line-height: var(--heading-title-line-height);
      color: var(--heading);
      margin-bottom: 6px;
    }
    .module-card p {
      font-size: var(--fs-small);
      color: var(--muted);
      line-height: 1.5;
    }
    .no-results {
      display: none;
      text-align: center;
      padding: 28px;
      border: 1px dashed var(--border);
      border-radius: var(--radius);
      color: var(--muted);
      margin-bottom: 12px;
    }
    .no-results.is-visible { display: block; }

    /* Recent activity + deadlines */
    .split-row {
      display: grid;
      grid-template-columns: 1.2fr 0.8fr;
      gap: 16px;
    }
    .list-item {
      display: flex;
      gap: 12px;
      align-items: flex-start;
      padding: 12px;
      border-radius: var(--radius-sm);
      background: var(--bg);
      margin-bottom: 10px;
      width: 100%;
      text-align: left;
      border: none;
      color: inherit;
      cursor: pointer;
      transition: background 0.15s ease, box-shadow 0.15s ease;
    }
    .list-item:hover {
      background: #e8f4f2;
      box-shadow: inset 0 0 0 1px rgba(37, 183, 167, 0.25);
    }
    .list-item:last-child { margin-bottom: 0; }
    .list-item strong { display: block; font-size: var(--fs-ui); color: var(--heading); margin-bottom: 2px; font-weight: 600; }
    .list-item span { font-size: var(--fs-small); color: var(--muted); line-height: 1.5; }
    .activity-dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      margin-top: 5px;
      flex-shrink: 0;
      background: var(--primary);
    }
    .deadline-day {
      width: 44px;
      height: 44px;
      border-radius: 12px;
      background: var(--primary-light);
      color: var(--primary-deeper);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      line-height: 1.1;
    }
    .deadline-day strong { font-size: 14px; color: var(--primary-deeper); }
    .deadline-day span { font-size: 10px; font-weight: 700; text-transform: uppercase; color: var(--primary-dark); }

    /* Module task view — CA Cloud Desk style */
    .module-view {
      display: flex;
      flex-direction: column;
      gap: 18px;
      animation: fadeIn 0.22s ease;
    }
    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(6px); }
      to { opacity: 1; transform: translateY(0); }
    }
    .module-view__head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      flex-wrap: wrap;
    }
    .module-view__head h1 {
      font-size: 1.25rem;
      font-weight: 600;
      letter-spacing: -0.01em;
      line-height: 1.35;
      color: var(--heading);
      margin: 0;
    }
    .module-view__back {
      padding: 10px 18px;
      border-radius: 999px;
      border: 1px solid var(--border);
      background: var(--white);
      font-size: var(--fs-ui);
      font-weight: 600;
      color: var(--text);
    }
    .module-view__back:hover {
      background: var(--primary-light);
      border-color: var(--primary);
      color: var(--primary-deeper);
    }
    .task-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
    }
    .task-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 22px 14px 18px;
      text-align: center;
      cursor: pointer;
      box-shadow: var(--shadow);
      min-height: 160px;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 12px;
      transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
    }
    .task-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-hover);
      border-color: rgba(37, 183, 167, 0.45);
    }
    .task-card__art {
      width: 72px;
      height: 72px;
      border-radius: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(160deg, var(--primary-light), #fff 70%);
      border: 1px solid var(--border);
      overflow: hidden;
      transition: transform 0.25s ease, box-shadow 0.25s ease;
    }
    .task-card__art img {
      width: 56px;
      height: 56px;
      object-fit: contain;
    }
    .task-card:hover .task-card__art {
      transform: translateY(-4px) scale(1.06);
      box-shadow: 0 10px 20px rgba(37, 183, 167, 0.2);
    }
    .task-card__label {
      font-size: var(--fs-small);
      font-weight: 600;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      color: var(--primary-deeper);
      line-height: 1.35;
    }
    .task-card.is-active {
      border-color: var(--primary);
      box-shadow: var(--shadow-hover);
      background: linear-gradient(180deg, #f3fbfa 0%, #fff 55%);
    }
    .task-empty {
      grid-column: 1 / -1;
      text-align: center;
      padding: 36px 16px;
      color: var(--muted);
      font-size: 14px;
      background: var(--white);
      border: 1px dashed var(--border);
      border-radius: 14px;
    }

    .topbar__actions { position: relative; }
    .dropdown {
      position: absolute;
      top: calc(100% + 8px);
      right: 0;
      width: min(320px, calc(100vw - 32px));
      background: #fff;
      border: 1px solid #e6eaee;
      border-radius: 12px;
      box-shadow: 0 12px 32px rgba(8, 53, 48, 0.12);
      padding: 8px;
      z-index: 300;
      display: none;
    }
    .dropdown.is-open { display: block; }
    .dropdown__title {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--muted);
      padding: 8px 10px 6px;
    }
    .dropdown__item {
      width: 100%;
      display: flex;
      align-items: flex-start;
      gap: 10px;
      text-align: left;
      padding: 10px;
      border-radius: 8px;
      color: var(--text);
      font-size: 13px;
    }
    .dropdown__item:hover { background: #f5f8fa; }
    .dropdown__item strong { display: block; color: var(--heading); font-weight: 600; margin-bottom: 2px; }
    .dropdown__item span { color: var(--muted); font-size: 12px; }
    .dropdown__dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--primary);
      margin-top: 5px;
      flex-shrink: 0;
    }
    .dropdown__footer {
      display: block;
      width: 100%;
      text-align: center;
      padding: 10px;
      margin-top: 4px;
      border-top: 1px solid #eef1f4;
      font-size: 13px;
      font-weight: 600;
      color: var(--primary-deeper);
      border-radius: 0 0 8px 8px;
    }
    .dropdown__footer:hover { background: var(--primary-light); }

    .toast-stack {
      position: fixed;
      right: 20px;
      bottom: 20px;
      z-index: 400;
      display: flex;
      flex-direction: column;
      gap: 8px;
      pointer-events: none;
    }
    .toast {
      min-width: 240px;
      max-width: 360px;
      background: #083530;
      color: #fff;
      padding: 12px 14px;
      border-radius: 10px;
      font-size: 13px;
      box-shadow: 0 10px 28px rgba(8, 53, 48, 0.25);
      animation: toastIn 0.2s ease;
      pointer-events: auto;
    }
    .toast strong { display: block; margin-bottom: 2px; font-weight: 600; }
    .toast span { opacity: 0.85; font-size: 12px; }
    @keyframes toastIn {
      from { opacity: 0; transform: translateY(8px); }
      to { opacity: 1; transform: translateY(0); }
    }

    .task-modal-scrim {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(8, 53, 48, 0.35);
      z-index: 350;
      align-items: center;
      justify-content: center;
      padding: 20px;
    }
    .task-modal-scrim.is-open { display: flex; }
    .task-modal {
      width: min(440px, 100%);
      background: #fff;
      border-radius: 16px;
      padding: 24px;
      box-shadow: 0 20px 48px rgba(8, 53, 48, 0.18);
      animation: fadeIn 0.2s ease;
    }
    .task-modal__icon {
      width: 56px;
      height: 56px;
      border-radius: 14px;
      background: linear-gradient(160deg, var(--primary-light), #fff 70%);
      border: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 14px;
    }
    .task-modal__icon img { width: 40px; height: 40px; object-fit: contain; }
    .task-modal h3 {
      font-size: var(--fs-h3);
      font-weight: 600;
      letter-spacing: -0.02em;
      color: var(--heading);
      margin-bottom: 6px;
    }
    .task-modal p { font-size: var(--fs-ui); line-height: 1.55; color: var(--muted); margin-bottom: 18px; }
    .task-modal__actions { display: flex; gap: 8px; flex-wrap: wrap; }
    .task-modal__btn {
      padding: 10px 16px;
      border-radius: 999px;
      font-size: var(--fs-ui);
      font-weight: 600;
    }
    .task-modal__btn--primary {
      background: var(--primary);
      color: #fff;
    }
    .task-modal__btn--primary:hover { background: var(--primary-dark); }
    .task-modal__btn--ghost {
      border: 1px solid var(--border);
      background: #fff;
      color: var(--text);
    }
    .task-modal__btn--ghost:hover { background: #f5f8fa; }

    .recent-strip {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }
    .recent-chip {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 12px;
      border-radius: 999px;
      background: #fff;
      border: 1px solid var(--border);
      font-size: var(--fs-ui);
      font-weight: 500;
      color: var(--heading);
    }
    .recent-chip:hover {
      border-color: var(--primary);
      background: var(--primary-light);
      color: var(--primary-deeper);
    }
    .recent-chip img { width: 18px; height: 18px; object-fit: contain; }

    /* My Tasks — CA Cloud Desk style */
    .my-tasks {
      background: #fff;
      border: 1px solid #e6eaee;
      border-radius: 12px;
      padding: 0;
      box-shadow: none;
      overflow: hidden;
    }
    .my-tasks__head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      flex-wrap: wrap;
      padding: 16px 18px 10px;
    }
    .my-tasks__head h2 {
      font-size: var(--fs-h2);
      font-weight: 600;
      letter-spacing: -0.02em;
      line-height: var(--heading-title-line-height);
      color: var(--heading);
      margin: 0;
    }
    .my-tasks__tools {
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .my-tasks__search {
      width: 180px;
      max-width: 40vw;
    }
    .my-tasks__search input {
      width: 100%;
      height: 36px;
      padding: 0 12px;
      border: 1px solid #dde3ea;
      border-radius: 6px;
      background: #fff;
      font-size: var(--fs-ui);
      color: #334155;
    }
    .my-tasks__search input::placeholder { color: #94a3b8; }
    .my-tasks__search input:focus {
      outline: none;
      border-color: var(--primary);
      box-shadow: 0 0 0 3px rgba(37, 183, 167, 0.15);
    }
    .my-tasks__add {
      width: 34px;
      height: 34px;
      border-radius: 50%;
      border: 1px solid #dde3ea;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      color: var(--primary-deeper);
      background: #fff;
      flex-shrink: 0;
    }
    .my-tasks__add:hover {
      background: var(--primary-light);
      border-color: var(--primary);
    }
    .my-tasks__tabs {
      display: flex;
      gap: 4px;
      padding: 0 12px;
      overflow-x: auto;
      scrollbar-width: none;
    }
    .my-tasks__tabs::-webkit-scrollbar { display: none; }
    .my-tasks__tab {
      flex-shrink: 0;
      padding: 10px 12px;
      font-size: var(--fs-ui);
      font-weight: 500;
      color: #64748b;
      border-bottom: 2px solid transparent;
      white-space: nowrap;
    }
    .my-tasks__tab:hover { color: var(--heading); }
    .my-tasks__tab.is-active {
      color: var(--primary-deeper);
      font-weight: 600;
      border-bottom-color: var(--primary);
    }
    .my-tasks__tab-count {
      display: inline-block;
      margin-left: 4px;
      font-size: 11px;
      color: #94a3b8;
    }
    .my-tasks__tab.is-active .my-tasks__tab-count { color: var(--primary); }
    .my-tasks__table-wrap {
      overflow-x: auto;
      scrollbar-width: thin;
      scrollbar-color: #c5cdd4 transparent;
    }
    .my-tasks__table {
      width: 100%;
      min-width: 640px;
      border-collapse: collapse;
    }
    .my-tasks__table th {
      text-align: left;
      font-size: var(--fs-small);
      font-weight: 600;
      color: #64748b;
      padding: 12px 16px;
      background: #f8fafb;
      border-bottom: 1px solid #eef1f4;
      white-space: nowrap;
    }
    .my-tasks__table td {
      padding: 12px 16px;
      font-size: var(--fs-ui);
      color: var(--text);
      border-bottom: 1px solid #f1f4f6;
      vertical-align: middle;
    }
    .my-tasks__table tbody tr {
      cursor: pointer;
      transition: background 0.12s ease;
    }
    .my-tasks__table tbody tr:hover { background: #f5fbfa; }
    .my-tasks__id {
      font-weight: 600;
      color: var(--primary-deeper);
      font-variant-numeric: tabular-nums;
    }
    .my-tasks__empty {
      text-align: center;
      padding: 48px 16px;
      color: #94a3b8;
    }
    .my-tasks__empty-icon {
      width: 48px;
      height: 48px;
      margin: 0 auto 10px;
      border: 2px dashed #d0d7dc;
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      color: #c5cdd4;
    }
    .my-tasks__foot {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 10px 16px;
      background: #f8fafb;
      border-top: 1px solid #eef1f4;
      font-size: 12px;
      color: #64748b;
    }
    .my-tasks__page-btn {
      width: 28px;
      height: 28px;
      border-radius: 6px;
      border: 1px solid #dde3ea;
      background: #fff;
      color: #475569;
      display: inline-flex;
      align-items: center;
      justify-content: center;
    }
    .my-tasks__page-btn:hover:not(:disabled) { background: #f1f5f9; }
    .my-tasks__page-btn:disabled { opacity: 0.4; cursor: not-allowed; }
    .my-tasks__page-info {
      min-width: 64px;
      text-align: center;
      padding: 4px 8px;
      border: 1px solid #dde3ea;
      border-radius: 6px;
      background: #fff;
    }

    .content-footer {
      margin-top: auto;
      flex-shrink: 0;
      padding-top: 24px;
    }
    .content-footer .td-footer {
      margin-top: 0;
    }

    /* Footer — same as contact_sales.html */
    .td-footer {
      background: transparent;
      border-top: none;
      margin-top: 8px;
    }
    .td-footer__top {
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 28px var(--content-pad-x);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 32px 48px;
      flex-wrap: wrap;
    }
    .td-footer__logo {
      display: inline-flex;
      align-items: center;
      background: transparent;
    }
    .td-footer__logo img {
      height: 40px;
      width: auto;
      object-fit: contain;
      background: transparent;
      display: block;
    }
    .td-footer__contact {
      flex: 1;
      min-width: 200px;
      text-align: center;
    }
    .td-footer__address {
      margin: 0;
      font-style: normal;
      font-size: 13px;
      line-height: 1.55;
      color: #6b7280;
    }
    .td-footer__social {
      display: flex;
      gap: 8px;
      flex-shrink: 0;
    }
    .td-footer__social a {
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      border: 1px solid #e5e7eb;
      border-radius: 50%;
      color: #6b7280;
      background: #fff;
      transition: border-color 0.15s, color 0.15s, background 0.15s;
    }
    .td-footer__social a:hover {
      border-color: var(--primary);
      color: var(--primary);
      background: var(--primary-light);
    }
    .td-footer__social svg { width: 17px; height: 17px; }
    .td-footer__bar { border-top: none; }
    .td-footer__bar-inner {
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 16px var(--content-pad-x);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      flex-wrap: wrap;
    }
    .td-footer__rating { font-size: 13px; color: #6b7280; margin: 0; }
    .td-footer__rating strong { color: #111827; }
    .td-footer__cookie {
      font-size: 13px;
      color: #6b7280;
      text-decoration: none;
    }
    .td-footer__cookie:hover { color: var(--primary); }
    .td-footer__copy { font-size: 13px; color: #6b7280; margin: 0; }

    @media (max-width: 1200px) {
      .module-grid { grid-template-columns: repeat(3, 1fr); }
    }
    @media (max-width: 1100px) {
      .task-grid { grid-template-columns: repeat(3, 1fr); }
      .split-row { grid-template-columns: 1fr; }
    }
    @media (max-width: 900px) {
      .sidebar-toggle { display: flex; }
      .topbar__inner { grid-template-columns: auto minmax(0, 1fr) auto; }
      .topbar__search { grid-column: 2; justify-self: stretch; max-width: none; }
      .topbar__actions { grid-column: 3; }
      .app-shell { grid-template-columns: 1fr; }
      .sidebar {
        position: fixed;
        left: 0;
        top: 0;
        bottom: 0;
        width: min(280px, 86vw);
        height: 100vh;
        max-height: 100vh;
        z-index: 250;
        border-radius: 0;
        transform: translateX(-105%);
        transition: transform 0.3s ease;
      }
      .sidebar.is-open { transform: translateX(0); }
      .sidebar-scrim {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(8, 53, 48, 0.35);
        z-index: 240;
      }
      .sidebar-scrim.is-open { display: block; }
      .topbar__profile-meta { display: none; }
      .my-tasks__search { width: 140px; }
    }
    @media (max-width: 640px) {
      .module-grid { grid-template-columns: 1fr 1fr; }
      .task-grid { grid-template-columns: 1fr 1fr; }
      .td-footer__top {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
      }
      .td-footer__contact { text-align: left; }
      .td-footer__bar-inner {
        flex-direction: column;
        align-items: flex-start;
      }
    }
