    :root {
      --page-bg: #ffffff;
      --page-text: #2f3135;
      --description-text: #50545a;
      --divider-color: #ffffff;
      --card-border: #d9eef8;
      --badge-bg: #96d3ee;
      --meta-text: #a5acb6;
      --updated-field-color: #0fa2d7;
      --card-detail-text: #7a818c;
      --card-note-text: #9ba2ab;
      --card-icon-color: #c9cdd4;
      --list-icon-accent: #66bde8;
      --list-icon-ring: #cfeaf8;
      --suggested-card-bg: #e8f7ff;
      --suggested-card-title: #2d9dd4;
      --suggested-item-bg: rgba(255, 255, 255, 0.84);
      --suggested-item-text: #6f757d;
      --suggested-card-max-height: 350px;
      --suggested-card-chrome-height: 74px;
      --pane-gap: 52px;
      --right-pane-left-shift: 38px;
      --list-items-left-bleed: 8px;
      --left-pane-copy-right-shift: 10px;
      --list-items-extra-left-shift: 16px;
      --card-radius: 13px;
      --card-width: 502px;
      --shell-width: 1180px;
    }

    [hidden] {
      display: none !important;
    }

    body {
      font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
      margin: 0;
      min-height: 100vh;
      overflow: hidden;
      padding: 0 24px 250px;
      line-height: 1.35;
      background: var(--page-bg);
      color: var(--page-text);
    }

    .app-shell {
      position: relative;
      z-index: 1;
      width: min(var(--shell-width), calc(100vw - 48px));
      min-height: calc(100vh - 120px);
      margin: 56px auto 0;
    }

    button {
      font-size: 16px;
      padding: 12px 18px;
      cursor: pointer;
      margin-right: 8px;
    }

    #status {
      margin-top: 12px;
      font-weight: bold;
    }

    .app-layout {
      display: grid;
      grid-template-columns: minmax(0, 1fr) 1px minmax(432px, 504px);
      min-height: calc(100vh - 156px);
      align-items: stretch;
      column-gap: var(--pane-gap);
    }

    .empty-state {
      display: none;
      min-height: calc(100vh - 176px);
      align-items: center;
      justify-content: center;
      padding: 0 24px 120px;
      box-sizing: border-box;
      text-align: center;
    }

    .empty-state-copy {
      width: min(100%, 560px);
    }

    .empty-state-eyebrow {
      margin: 0 0 14px;
      font-size: clamp(17px, 2vw, 23px);
      line-height: 1.2;
      font-weight: 600;
      color: #1f7fcb;
    }

    .empty-state-title {
      margin: 0;
      font-size: clamp(44px, 5.6vw, 70px);
      line-height: 1.02;
      font-weight: 300;
      color: #1878cc;
    }

    body[data-list-empty="true"] .empty-state {
      display: flex;
    }

    body[data-list-empty="true"] .app-layout {
      display: none;
    }

    .left-pane {
      display: flex;
      align-items: flex-start;
      justify-content: center;
      padding: 30px 0 80px;
    }

    .left-pane-copy {
      display: grid;
      gap: 24px;
      width: min(100%, 420px);
      transform: translate(var(--left-pane-copy-right-shift), -8px);
    }

    body[data-left-pane-layout="title-only"] .left-pane,
    body[data-left-pane-layout="compact"] .left-pane {
      align-items: center;
      padding-top: 0;
      padding-bottom: 32px;
    }

    body[data-left-pane-layout="title-only"] .left-pane-copy,
    body[data-left-pane-layout="compact"] .left-pane-copy {
      transform: translate(var(--left-pane-copy-right-shift), 0);
    }

    .list-title-group {
      display: block;
    }

    .list-icon-shell {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      margin: 0 0 14px;
      border-radius: 999px;
      border: 3px solid var(--list-icon-ring);
      box-sizing: border-box;
      background: rgba(255, 255, 255, 0.9);
    }

    .list-icon-shell[data-icon-ready="false"] {
      display: none;
    }

    .list-icon {
      width: 30px;
      height: 30px;
      color: var(--list-icon-accent);
      background-color: currentColor;
      opacity: 1;
      transition: opacity 120ms ease;
      -webkit-mask-position: center;
      -webkit-mask-repeat: no-repeat;
      -webkit-mask-size: contain;
      mask-position: center;
      mask-repeat: no-repeat;
      mask-size: contain;
    }

    .list-icon-shell[data-icon-ready="false"] .list-icon {
      opacity: 0;
    }

    .list-title-copy {
      display: grid;
      gap: 8px;
      min-width: 0;
    }

    .list-title {
      margin: 0;
      font-size: clamp(34px, 4.2vw, 48px);
      line-height: 1.08;
      font-weight: 700;
      color: #37393d;
    }

    .list-description {
      margin: 0;
      max-width: 360px;
      font-size: clamp(20px, 2.2vw, 23px);
      line-height: 1.45;
      font-weight: 400;
      color: var(--description-text);
    }

    .list-description:empty,
    .list-title:empty {
      display: none;
    }

    .suggested-items-card {
      width: min(100%, 356px);
      display: flex;
      flex-direction: column;
      max-height: var(--suggested-card-max-height);
      padding: 16px 18px 18px;
      border-radius: 16px;
      background: var(--suggested-card-bg);
      box-sizing: border-box;
      overflow: hidden;
    }

    .suggested-items-card-title {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin: 0 0 14px;
      font-size: 14px;
      line-height: 1.35;
      font-weight: 700;
      color: var(--suggested-card-title);
    }

    .suggested-items-card-status {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 18px;
      height: 18px;
      flex: 0 0 18px;
      color: var(--suggested-card-title);
    }

    .suggested-items-card-status-spinner {
      display: none;
      width: 18px;
      height: 18px;
      border: 2px solid rgba(45, 157, 212, 0.22);
      border-top-color: currentColor;
      border-radius: 50%;
      box-sizing: border-box;
      animation: suggested-items-title-spin 0.6s linear infinite;
    }

    .suggested-items-card-status-icon {
      display: block;
      width: 18px;
      height: 18px;
      background-image: url("/static/icons/assistant-logo.svg");
      background-position: center;
      background-repeat: no-repeat;
      background-size: contain;
    }

    .suggested-items-card[data-project-planner-in-flight="true"] .suggested-items-card-status-spinner {
      display: block;
    }

    .suggested-items-card[data-project-planner-in-flight="true"] .suggested-items-card-status-icon {
      display: none;
    }

    @keyframes suggested-items-title-spin {
      to {
        transform: rotate(360deg);
      }
    }

    .suggested-items-list {
      display: flex;
      flex-direction: column;
      flex: 0 1 auto;
      gap: 12px;
      min-height: 0;
      max-height: calc(
        var(--suggested-card-max-height) - var(--suggested-card-chrome-height)
      );
      overflow-y: auto;
      overflow-x: hidden;
      padding-right: 4px;
      scrollbar-width: thin;
      scrollbar-color: rgba(150, 211, 238, 0.85) transparent;
    }

    .suggested-items-list::-webkit-scrollbar {
      width: 10px;
    }

    .suggested-items-list::-webkit-scrollbar-track {
      background: transparent;
    }

    .suggested-items-list::-webkit-scrollbar-thumb {
      border-radius: 999px;
      background: rgba(150, 211, 238, 0.85);
      border: 3px solid transparent;
      background-clip: padding-box;
    }

    .suggested-item-row {
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto;
      flex: 0 0 auto;
      align-items: center;
      gap: 12px;
      padding: 8px 8px 8px 14px;
      border-radius: 11px;
      background: var(--suggested-item-bg);
      box-shadow: inset 0 0 0 1px rgba(223, 239, 247, 0.72);
      transition:
        box-shadow 140ms ease,
        background-color 140ms ease;
    }

    .suggested-item-row[data-expandable="true"] {
      cursor: pointer;
    }

    .suggested-item-row[data-expandable="true"]:hover {
      box-shadow: inset 0 0 0 2px rgba(79, 170, 225, 0.95);
    }

    .suggested-item-row[data-expanded="true"] {
      align-items: flex-start;
      min-height: 44px;
      padding: 10px 8px 10px 14px;
      box-shadow: inset 0 0 0 1px rgba(143, 209, 239, 0.96);
      background: rgba(255, 255, 255, 0.94);
    }

    .suggested-item-row[data-expanded="true"][data-expandable="true"]:hover {
      box-shadow: inset 0 0 0 2px rgba(79, 170, 225, 0.95);
    }

    .suggested-item-row[data-expandable="true"]:focus-visible {
      outline: none;
      box-shadow:
        inset 0 0 0 2px rgba(79, 170, 225, 0.95),
        0 0 0 3px rgba(143, 209, 239, 0.24);
    }

    .suggested-item-copy {
      display: flex;
      flex: 1 1 auto;
      flex-direction: column;
      gap: 0;
      min-width: 0;
    }

    .suggested-item-row[data-expanded="true"] .suggested-item-copy {
      gap: 6px;
    }

    .suggested-item-label {
      min-width: 0;
      margin: 0;
      font-size: 13px;
      line-height: 1.35;
      font-weight: 500;
      color: var(--suggested-item-text);
      word-break: break-word;
    }

    .suggested-item-note-row {
      display: none;
      align-items: flex-start;
      gap: 6px;
      min-width: 0;
      margin-top: 2px;
    }

    .suggested-item-row[data-expanded="true"] .suggested-item-note-row {
      display: flex;
    }

    .suggested-item-note-icon {
      width: 12px;
      height: 12px;
      flex: 0 0 12px;
      margin-top: 2px;
      color: var(--card-note-text);
      background-color: currentColor;
      -webkit-mask-image: url("/static/icons/pencil.svg");
      -webkit-mask-position: center;
      -webkit-mask-repeat: no-repeat;
      -webkit-mask-size: contain;
      mask-image: url("/static/icons/pencil.svg");
      mask-position: center;
      mask-repeat: no-repeat;
      mask-size: contain;
    }

    .suggested-item-note {
      min-width: 0;
      margin: 0;
      font-size: 12px;
      line-height: 1.38;
      font-weight: 500;
      color: var(--card-note-text);
      white-space: pre-line;
      word-break: break-word;
    }

    .suggested-item-add-button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      flex: 0 0 auto;
      align-self: center;
      margin-right: 0;
      border: 0;
      background: transparent;
      box-shadow: none;
      padding: 4px;
      color: var(--updated-field-color);
      cursor: pointer;
    }

    .suggested-item-row[data-expanded="true"] .suggested-item-add-button {
      align-self: flex-start;
      margin-top: 1px;
    }

    .suggested-item-add-button:disabled {
      cursor: progress;
      opacity: 0.55;
    }

    .suggested-item-add-icon {
      width: 22px;
      height: 22px;
      background-color: currentColor;
      -webkit-mask-image: url("/static/icons/plus-circle.svg");
      -webkit-mask-position: center;
      -webkit-mask-repeat: no-repeat;
      -webkit-mask-size: contain;
      mask-image: url("/static/icons/plus-circle.svg");
      mask-position: center;
      mask-repeat: no-repeat;
      mask-size: contain;
    }

    .pane-divider {
      width: 1px;
      background: transparent;
      align-self: stretch;
      pointer-events: none;
    }

    .right-pane {
      display: flex;
      align-items: flex-start;
      justify-content: flex-start;
      padding: 36px 0 0;
      min-height: 0;
    }

    .list-items-scroller {
      width: calc(min(100%, var(--card-width)) + var(--list-items-left-bleed));
      max-height: calc(100vh - 232px);
      overflow-y: auto;
      margin-left: calc(
        (
          var(--right-pane-left-shift)
          + var(--list-items-left-bleed)
          + var(--list-items-extra-left-shift)
        ) * -1
      );
      padding: 8px 13px 8px var(--list-items-left-bleed);
      box-sizing: border-box;
      scrollbar-width: thin;
      scrollbar-color: #ffffff transparent;
    }

    .list-items-scroller::-webkit-scrollbar {
      width: 10px;
    }

    .list-items-scroller::-webkit-scrollbar-track {
      background: transparent;
    }

    .list-items-scroller::-webkit-scrollbar-thumb {
      border-radius: 999px;
      background: rgba(150, 211, 238, 0.85);
      border: 3px solid transparent;
      background-clip: padding-box;
    }

    .list-items {
      display: grid;
      gap: 14px;
    }

    .list-items.is-sorting {
      position: relative;
    }

    .list-item-card {
      --card-vibe-duration: 0s;
      --card-vibe-distance-x: 0px;
      --card-vibe-distance-y: 0px;
      --card-vibe-rotate: 0deg;
      position: relative;
      display: flex;
      align-items: flex-start;
      gap: 14px;
      min-height: 92px;
      border-radius: var(--card-radius);
      border: 2px solid var(--card-border);
      background: #ffffff;
      padding: 17px 58px 14px 18px;
      box-sizing: border-box;
      transform: translate3d(0, 0, 0);
      transform-origin: center center;
      animation: list-card-vibe var(--card-vibe-duration) ease-in-out infinite alternate;
      will-change: transform;
    }

    .list-items.is-sorting .list-item-card {
      animation: none;
      transition:
        top 180ms cubic-bezier(0.2, 0.85, 0.28, 1),
        box-shadow 180ms ease,
        border-color 180ms ease,
        transform 180ms ease;
    }

    .list-item-card.is-sortable {
      position: absolute;
      margin: 0;
      width: 100%;
    }

    .list-item-card.is-drop-preview {
      border-color: rgba(109, 184, 219, 0.72);
    }

    .list-item-card.is-dragging {
      cursor: grabbing;
      transition: none;
      transform: scale(1.02) rotate(-0.35deg);
      border-color: rgba(79, 167, 208, 0.95);
      box-shadow: 0 22px 48px rgba(51, 91, 120, 0.22);
    }

    .list-item-card.is-settling {
      box-shadow: 0 10px 24px rgba(51, 91, 120, 0.16);
    }

    .list-item-card:nth-child(3n + 1) {
      animation-delay: -0.18s;
    }

    .list-item-card:nth-child(3n + 2) {
      animation-delay: -0.42s;
    }

    .list-item-card:nth-child(3n + 3) {
      animation-delay: -0.73s;
    }

    .list-item-rank {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      flex: 0 0 22px;
      margin-top: 4px;
      width: 22px;
      height: 22px;
      border-radius: 999px;
      background: var(--badge-bg);
      color: #ffffff;
      font-size: 13px;
      font-weight: 700;
      line-height: 1;
    }

    .list-item-body {
      display: grid;
      flex: 1 1 auto;
      min-width: 0;
      gap: 6px;
    }

    .list-item-type-icon-shell {
      display: flex;
      flex: 0 0 22px;
      align-self: center;
      justify-content: center;
      margin-left: 3px;
      min-height: 22px;
      transform: translateX(10px);
    }

    .list-item-drag-handle {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      position: absolute;
      top: 50%;
      right: 14px;
      width: 20px;
      height: 40px;
      margin: 0;
      padding: 0;
      border: 0;
      border-radius: 10px;
      background: transparent;
      box-shadow: none;
      color: #cfc8c2;
      cursor: grab;
      touch-action: none;
      transform: translate3d(0, -50%, 0);
      transition:
        color 180ms ease,
        opacity 160ms ease,
        background-color 180ms ease,
        box-shadow 180ms ease,
        transform 180ms ease;
    }

    .list-item-drag-handle:hover:not(:disabled) {
      color: #bbb2ac;
    }

    .list-item-drag-handle:focus-visible {
      outline: 2px solid rgba(15, 162, 215, 0.3);
      outline-offset: 3px;
      color: #bbb2ac;
    }

    .list-item-drag-handle:disabled {
      cursor: default;
      opacity: 0;
      pointer-events: none;
    }

    .list-item-drag-handle-icon {
      width: 18px;
      height: 27px;
      background-color: currentColor;
      -webkit-mask-image: url("/static/icons/drag-and-drop.svg");
      -webkit-mask-position: center;
      -webkit-mask-repeat: no-repeat;
      -webkit-mask-size: contain;
      mask-image: url("/static/icons/drag-and-drop.svg");
      mask-position: center;
      mask-repeat: no-repeat;
      mask-size: contain;
    }

    @media (hover: hover) and (pointer: fine) {
      .list-item-drag-handle:not(:disabled) {
        opacity: 0;
        pointer-events: none;
        transform: translate3d(6px, -50%, 0);
      }

      .list-item-card:hover .list-item-drag-handle:not(:disabled),
      .list-item-card:focus-within .list-item-drag-handle:not(:disabled),
      .list-item-card.is-dragging .list-item-drag-handle:not(:disabled),
      .list-item-drag-handle:focus-visible:not(:disabled) {
        opacity: 1;
        pointer-events: auto;
        transform: translate3d(0, -50%, 0);
      }
    }

    .list-item-type-icon {
      width: 22px;
      height: 22px;
      flex: 0 0 22px;
      color: var(--card-icon-color);
      background-color: currentColor;
      -webkit-mask-position: center;
      -webkit-mask-repeat: no-repeat;
      -webkit-mask-size: contain;
      mask-position: center;
      mask-repeat: no-repeat;
      mask-size: contain;
    }

    .list-item-type-icon[data-icon="task"] {
      -webkit-mask-image: url("/static/icons/task.svg");
      mask-image: url("/static/icons/task.svg");
    }

    .list-item-type-icon[data-icon="audio"] {
      -webkit-mask-image: url("/static/icons/audio.svg");
      mask-image: url("/static/icons/audio.svg");
    }

    .list-item-type-icon[data-icon="calendar"] {
      -webkit-mask-image: url("/static/icons/calendar.svg");
      mask-image: url("/static/icons/calendar.svg");
    }

    .list-item-type-icon[data-icon="shopping"] {
      -webkit-mask-image: url("/static/icons/shopping.svg");
      mask-image: url("/static/icons/shopping.svg");
    }

    .list-item-type-icon[data-icon="recipe"] {
      -webkit-mask-image: url("/static/icons/recipe.svg");
      mask-image: url("/static/icons/recipe.svg");
    }

    .list-item-field {
      transition: color 180ms ease;
    }

    .list-item-field.is-updated {
      color: var(--updated-field-color);
    }

    .list-item-label {
      min-width: 0;
      margin: 0;
      font-size: 19px;
      line-height: 1.35;
      font-weight: 500;
      color: #31353a;
      word-break: break-word;
    }

    .list-card-time {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 4px;
      min-width: 0;
      font-size: 15px;
      line-height: 1.4;
      font-weight: 700;
      color: var(--card-detail-text);
    }

    .list-card-time-value {
      min-width: 0;
      word-break: break-word;
    }

    .list-card-time-group {
      display: inline-flex;
      align-items: center;
      gap: 4px;
      min-width: 0;
      flex-wrap: wrap;
    }

    .list-card-time-label,
    .list-card-time-separator {
      color: var(--card-detail-text);
    }

    .list-item-note-row {
      display: flex;
      align-items: flex-start;
      gap: 8px;
      min-width: 0;
      margin-top: 2px;
      padding-top: 10px;
      border-top: 1px solid rgba(217, 238, 248, 0.92);
    }

    .list-item-note-icon {
      width: 13px;
      height: 13px;
      flex: 0 0 13px;
      color: var(--card-note-text);
      background-color: currentColor;
      -webkit-mask-image: url("/static/icons/pencil.svg");
      -webkit-mask-position: center;
      -webkit-mask-repeat: no-repeat;
      -webkit-mask-size: contain;
      mask-image: url("/static/icons/pencil.svg");
      mask-position: center;
      mask-repeat: no-repeat;
      mask-size: contain;
    }

    .list-item-note-content {
      display: flex;
      flex: 1 1 auto;
      flex-direction: column;
      align-items: flex-start;
      gap: 3px;
      min-width: 0;
    }

    .list-item-note-row[data-can-expand="true"][data-expanded="false"] .list-item-note-content {
      display: flex;
      flex-direction: row;
      align-items: baseline;
      gap: 6px;
    }

    .list-item-note-text {
      min-width: 0;
      margin: 0;
      font-size: 13px;
      line-height: 1.38;
      font-weight: 600;
      color: var(--card-note-text);
      white-space: pre-line;
      word-break: break-word;
    }

    .list-item-note-row[data-can-expand="true"][data-expanded="false"] .list-item-note-text,
    .list-item-note-row[data-measure-clamp="true"] .list-item-note-text {
      display: block;
      flex: 0 1 auto;
      max-width: calc(100% - 48px);
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
    }

    .list-item-note-toggle {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      margin: 0;
      padding: 0;
      border: 0;
      background: transparent;
      box-shadow: none;
      color: var(--updated-field-color);
      font-family: inherit;
      font-size: 13px;
      line-height: 1.38;
      font-weight: 500;
      white-space: nowrap;
      cursor: pointer;
    }

    .list-item-note-row[data-can-expand="true"][data-expanded="false"] .list-item-note-toggle {
      flex: 0 0 auto;
      align-self: baseline;
      margin-left: 0;
    }

    .list-item-note-toggle:hover {
      text-decoration: underline;
      text-underline-offset: 2px;
    }

    .list-item-note-toggle:focus-visible {
      outline: 2px solid rgba(15, 162, 215, 0.28);
      outline-offset: 3px;
      border-radius: 999px;
    }

    @keyframes list-card-vibe {
      0% {
        transform: translate3d(
          calc(var(--card-vibe-distance-x) * -1),
          calc(var(--card-vibe-distance-y) * 0.5),
          0
        ) rotate(calc(var(--card-vibe-rotate) * -1));
      }

      35% {
        transform: translate3d(
          calc(var(--card-vibe-distance-x) * 0.55),
          calc(var(--card-vibe-distance-y) * -1),
          0
        ) rotate(calc(var(--card-vibe-rotate) * 0.4));
      }

      68% {
        transform: translate3d(
          calc(var(--card-vibe-distance-x) * -0.2),
          var(--card-vibe-distance-y),
          0
        ) rotate(calc(var(--card-vibe-rotate) * -0.35));
      }

      100% {
        transform: translate3d(
          var(--card-vibe-distance-x),
          calc(var(--card-vibe-distance-y) * -0.4),
          0
        ) rotate(var(--card-vibe-rotate));
      }
    }

    #finalUpdatedAt {
      position: fixed;
      top: 18px;
      left: 22px;
      z-index: 4;
      max-width: min(420px, calc(100vw - 44px));
      font-size: 13px;
      line-height: 1.35;
      color: var(--meta-text);
      letter-spacing: 0.01em;
      pointer-events: none;
    }

    #karaoke {
      color: #05A0D1;
      width: fit-content;
      max-width: 100%;
      white-space: nowrap;
      overflow-x: auto;
      overflow-y: hidden;
      min-height: 1.5em;
      text-align: right;
      font-size: 14px;
      line-height: 1.4;
      padding: 13px 16px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.72);
      box-shadow: 0 10px 26px rgba(18, 32, 51, 0.08);
      backdrop-filter: blur(8px);
      opacity: 0;
      visibility: hidden;
      transform: translateY(8px);
      transition:
        opacity 180ms ease,
        transform 180ms ease,
        visibility 0ms linear 180ms;
    }

    #karaoke.is-visible {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
      transition:
        opacity 180ms ease,
        transform 180ms ease,
        visibility 0ms linear 0ms;
    }

    #floatingControls {
      position: fixed;
      right: 24px;
      bottom: 24px;
      z-index: 3;
      display: grid;
      grid-template-columns: minmax(0, max-content) max-content;
      align-items: center;
      gap: 14px;
      max-width: calc(100vw - 48px);
      pointer-events: none;
    }

    #floatingControls > * {
      pointer-events: auto;
    }

    #pttBtn {
      flex: 0 0 auto;
      margin-right: 0;
      border: 0;
      border-radius: 999px;
      padding: 14px 22px;
      font-weight: 600;
      color: #ffffff;
      background: linear-gradient(135deg, #058fc7 0%, #056dc4 100%);
      box-shadow: 0 14px 30px rgba(5, 109, 196, 0.28);
    }

    #pttBtn:disabled {
      box-shadow: none;
      background: linear-gradient(135deg, #7fa5ba 0%, #7d95a5 100%);
      cursor: default;
    }

    @media (max-width: 900px) {
      body {
        overflow: auto;
        padding: 62px 18px 240px;
      }

      .app-shell {
        width: min(100%, 680px);
        min-height: auto;
        margin-top: 0;
      }

      .app-layout {
        grid-template-columns: minmax(0, 1fr);
        min-height: auto;
        row-gap: 28px;
      }

      .pane-divider {
        display: none;
      }

      .left-pane {
        justify-content: flex-start;
        padding: 44px 0 0;
      }

      .left-pane-copy {
        width: min(100%, 420px);
        transform: none;
      }

      body[data-left-pane-layout="title-only"] .left-pane,
      body[data-left-pane-layout="compact"] .left-pane {
        align-items: flex-start;
        padding: 44px 0 0;
      }

      body[data-left-pane-layout="title-only"] .left-pane-copy,
      body[data-left-pane-layout="compact"] .left-pane-copy {
        transform: none;
      }

      .right-pane {
        justify-content: stretch;
        padding-top: 0;
      }

      .list-items-scroller {
        width: 100%;
        max-height: none;
        overflow: visible;
        margin-left: 0;
        padding-right: 0;
        padding-left: 0;
      }

      .list-description {
        max-width: 100%;
      }

      .suggested-items-card {
        width: min(100%, 420px);
      }

      .empty-state {
        min-height: calc(100vh - 208px);
        padding: 20px 12px 120px;
      }

      .empty-state-copy {
        width: min(100%, 520px);
      }
    }

    @media (max-width: 720px) {
      body {
        padding-bottom: 240px;
      }

      #finalUpdatedAt {
        top: 12px;
        left: 16px;
        max-width: calc(100vw - 32px);
      }

      #floatingControls {
        right: 16px;
        bottom: 16px;
        gap: 10px;
        max-width: calc(100vw - 32px);
      }

      #karaoke {
        padding: 9px 12px;
      }

      #pttBtn {
        padding: 13px 18px;
      }

      .list-item-card {
        min-height: 82px;
        padding-right: 52px;
      }

      .list-icon-shell {
        width: 32px;
        height: 32px;
        margin-bottom: 12px;
      }

      .list-icon {
        width: 16.8px;
        height: 16.8px;
      }

      .suggested-items-card {
        width: 100%;
        padding: 14px 14px 16px;
      }

      .empty-state {
        padding: 28px 6px 132px;
      }

      .empty-state-eyebrow {
        margin-bottom: 12px;
      }

      .empty-state-title {
        font-size: clamp(36px, 11vw, 50px);
      }
    }

    #waveDock {
      position: fixed;
      left: 0;
      right: 0;
      bottom: 0;
      height: 220px;
      pointer-events: none;
      overflow: hidden;
      z-index: 0;
      opacity: 0;
      transform: translateY(100%);
      transition: transform 860ms cubic-bezier(0.22, 1, 0.36, 1), opacity 420ms ease;
    }

    #waveDock::before {
      content: "";
      position: absolute;
      inset: 32% 0 0;
      background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(220, 241, 250, 0.4) 52%, rgba(182, 221, 238, 0.78) 100%);
      opacity: 0.85;
    }

    #waveSvg {
      position: relative;
      z-index: 1;
      display: block;
      width: 100%;
      height: 100%;
    }

    .wave-layer {
      opacity: 0;
      transition: opacity 320ms ease;
      will-change: opacity;
    }

    .wave-layer-shell {
      transform: translateY(var(--wave-rest-y, 0px));
      transition: transform 960ms cubic-bezier(0.22, 1, 0.36, 1);
      will-change: transform;
    }

    .wave-layer-1 {
      --wave-rest-y: 18px;
      --wave-speaking-lift: 0px;
      fill: rgba(5, 160, 209, 0.3);
    }

    .wave-layer-2 {
      --wave-rest-y: 28px;
      --wave-speaking-lift: 0px;
      fill: rgba(32, 122, 180, 0.22);
    }

    .wave-layer-3 {
      --wave-rest-y: 38px;
      --wave-speaking-lift: -48px;
      fill: rgba(59, 123, 176, 0.16);
    }

    .wave-layer-4 {
      --wave-rest-y: 48px;
      --wave-speaking-lift: -50px;
      fill: rgba(101, 151, 191, 0.11);
    }

    .wave-transport {
      will-change: transform;
    }

    body[data-wave-state="armed"] #waveDock,
    body[data-wave-state="speaking"] #waveDock {
      opacity: 1;
      transform: translateY(0);
      transition-duration: 860ms, 420ms;
      transition-delay: 0ms, 0ms;
      transition-timing-function: cubic-bezier(0.22, 1, 0.36, 1), ease;
    }

    body[data-wave-state="idle"] #waveDock {
      opacity: 0;
      transform: translateY(100%);
      transition-duration: 1080ms, 520ms;
      transition-delay: 0ms, 320ms;
      transition-timing-function: cubic-bezier(0.32, 0.06, 0.2, 1), ease-out;
    }

    body[data-wave-state="armed"] .wave-layer-1 .wave-layer-shell,
    body[data-wave-state="armed"] .wave-layer-2 .wave-layer-shell,
    body[data-wave-state="speaking"] .wave-layer-1 .wave-layer-shell,
    body[data-wave-state="speaking"] .wave-layer-2 .wave-layer-shell {
      transform: translateY(0);
      transition-duration: 2000ms;
      transition-delay: 100ms;
      transition-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
    }

    body[data-wave-state="speaking"] .wave-layer-3 .wave-layer-shell {
      transform: translateY(var(--wave-speaking-lift));
      transition-duration: 2000ms;
      transition-delay: 100ms;
      transition-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
    }

    body[data-wave-state="speaking"] .wave-layer-4 .wave-layer-shell {
      transform: translateY(var(--wave-speaking-lift));
      transition-duration: 2000ms;
      transition-delay: 220ms;
      transition-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
    }

    body[data-wave-state="armed"] .wave-layer-3 .wave-layer-shell {
      transform: translateY(var(--wave-rest-y));
      transition-duration: 2000ms;
      transition-delay: 100ms;
      transition-timing-function: cubic-bezier(0.3, 0.08, 0.2, 1);
    }

    body[data-wave-state="armed"] .wave-layer-4 .wave-layer-shell {
      transform: translateY(var(--wave-rest-y));
      transition-duration: 2000ms;
      transition-delay: 220ms;
      transition-timing-function: cubic-bezier(0.3, 0.08, 0.2, 1);
    }

    body[data-wave-state="idle"] .wave-layer-shell {
      transform: translateY(var(--wave-rest-y));
      transition-duration: 2000ms;
      transition-delay: 100ms;
      transition-timing-function: cubic-bezier(0.3, 0.08, 0.2, 1);
    }

    body[data-wave-state="armed"] .wave-layer-1,
    body[data-wave-state="speaking"] .wave-layer-1 {
      opacity: 1;
    }

    body[data-wave-state="armed"] .list-item-card,
    body[data-wave-state="speaking"] .list-item-card {
      --card-vibe-duration: 1.95s;
      --card-vibe-distance-x: 1.35px;
      --card-vibe-distance-y: 0.9px;
      --card-vibe-rotate: 0.32deg;
    }

    body[data-wave-state="armed"] .wave-layer-2,
    body[data-wave-state="speaking"] .wave-layer-2 {
      opacity: 0.78;
      transition-delay: 90ms;
    }

    body[data-wave-state="idle"] .wave-layer-1 {
      transition-delay: 220ms;
    }

    body[data-wave-state="idle"] .wave-layer-2 {
      transition-delay: 280ms;
    }

    body[data-wave-state="idle"] .wave-layer-3 {
      transition-delay: 120ms;
    }

    body[data-wave-state="idle"] .wave-layer-4 {
      transition-delay: 80ms;
    }

    body[data-wave-state="armed"] .wave-layer-3,
    body[data-wave-state="armed"] .wave-layer-4 {
      opacity: 0;
    }

    body[data-wave-state="armed"] .wave-layer-3 {
      transition-duration: 700ms;
      transition-delay: 420ms;
    }

    body[data-wave-state="armed"] .wave-layer-4 {
      transition-duration: 700ms;
      transition-delay: 560ms;
    }

    body[data-wave-state="speaking"] .wave-layer-3 {
      opacity: 0.42;
      transition-duration: 760ms;
      transition-delay: 220ms;
    }

    body[data-wave-state="speaking"] .wave-layer-4 {
      opacity: 0.26;
      transition-duration: 820ms;
      transition-delay: 340ms;
    }

    @media (prefers-reduced-motion: reduce) {
      #waveDock,
      .wave-layer,
      .wave-layer-shell,
      .list-item-card {
        transition: none;
      }

      .list-item-card {
        animation: none;
      }
    }
