.main {
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: var(--space-5);
      min-height: 0;
    }
    .todo-list { flex: 1; min-height: 0; overflow-y: auto; }

    /* ── 페이지 헤딩 — 네비바가 컨텍스트를 주므로 간결하게 ── */
    .todo-head {
      display: flex; align-items: baseline; justify-content: space-between;
      gap: var(--space-4); padding: 0 var(--space-3);
      flex-wrap: wrap;
    }
    .todo-head h1 {
      font: var(--weight-bold) 32px / 1.15 var(--font-family-base);
      letter-spacing: -0.03em;
    }
    .todo-head .sub {
      font: var(--weight-medium) 18px / 1.4 var(--font-family-base);
      color: var(--color-text-secondary);
    }

    /* ── 진행 상황 바 ────────────────────────────── */
    .progress {
      display: flex;
      flex-direction: column;
      gap: 10px;
      padding: var(--space-5) var(--space-6);
    }
    .progress-label {
      display: flex;
      justify-content: space-between;
      align-items: baseline;
    }
    .progress-label .big {
      font: var(--weight-bold) 26px / 1 var(--font-family-base);
      letter-spacing: -0.5px;
    }
    .progress-label .big em {
      font-style: normal;
      color: var(--brand-orange-600);
    }
    .progress-label .small {
      font: var(--weight-medium) 18px / 1.2 var(--font-family-base);
      color: var(--color-text-secondary);
    }
    .progress-bar {
      position: relative;
      height: 12px;
      border-radius: 6px;
      background: rgba(0, 0, 0, 0.06);
      overflow: hidden;
    }
    .progress-fill {
      position: absolute;
      inset: 0 auto 0 0;
      width: var(--bar-w, 0%);
      background: var(--brand-orange-600);
      border-radius: 6px;
      transition: width .4s var(--easing-standard);
    }

    /* ── 타임라인 체크리스트 ───────────────────── */
    .todo-list {
      padding: var(--space-3) var(--space-6) var(--space-5);
      position: relative;
    }
    .todo-list::before {
      content: '';
      position: absolute;
      left: 108px;
      top: 40px;
      bottom: 40px;
      width: 2px;
      background: rgba(0, 0, 0, 0.06);
      z-index: 0;
    }

    .todo-item {
      display: grid;
      grid-template-columns: 80px 36px 1fr auto;
      align-items: center;
      gap: var(--space-5);
      padding: var(--space-4) 0;
      position: relative;
      z-index: 1;
    }

    .todo-time {
      font: var(--weight-bold) 20px / 1.2 var(--font-family-base);
      color: var(--color-text-primary);
      text-align: right;
    }
    .todo-time .ampm {
      display: block;
      font: var(--weight-medium) 14px / 1 var(--font-family-base);
      color: var(--color-text-secondary);
      margin-bottom: 3px;
      letter-spacing: 0.08em;
    }

    .todo-icon {
      width: 44px; height: 44px;
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      background: var(--color-bg-surface);
      color: var(--color-text-secondary);
      flex-shrink: 0;
    }

    .todo-main {
      display: flex;
      flex-direction: column;
      gap: 4px;
      min-width: 0;
    }
    .todo-name {
      font: var(--weight-bold) 23px / 1.25 var(--font-family-base);
      letter-spacing: -0.3px;
    }
    .todo-sub {
      font: var(--weight-medium) 18px / 1.35 var(--font-family-base);
      color: var(--color-text-secondary);
      margin-top: 3px;
    }

    .todo-status {
      font: var(--weight-bold) 16px / 1 var(--font-family-base);
      padding: 10px 18px;
      border-radius: var(--radius-full);
      background: transparent;
      color: var(--color-text-secondary);
      letter-spacing: -0.2px;
      white-space: nowrap;
    }

    /* 상태별 스타일 */
    .todo-item.done .todo-time,
    .todo-item.done .todo-name { color: var(--palette-gray-400); text-decoration: line-through; text-decoration-color: rgba(0,0,0,.15); text-decoration-thickness: 1.5px; }
    .todo-item.done .todo-sub { color: var(--palette-gray-400); }
    .todo-item.done .todo-icon {
      background: var(--brand-green-100);
      color: var(--brand-green-600);
    }
    .todo-item.done .todo-status {
      background: var(--brand-green-100);
      color: var(--brand-green-700);
    }

    .todo-item.now {
      background: var(--brand-orange-100);
      border-radius: 16px;
      padding-left: var(--space-5);
      padding-right: var(--space-5);
      margin: 4px -12px;
    }
    .todo-item.now .todo-icon {
      background: var(--brand-orange-600);
      color: white;
      box-shadow: 0 6px 16px rgba(var(--color-accent-rgb), 0.35);
      animation: now-pulse 2s var(--easing-standard) infinite;
    }
    @keyframes now-pulse {
      0%, 100% { box-shadow: 0 6px 16px rgba(var(--color-accent-rgb), 0.35); }
      50%      { box-shadow: 0 6px 22px rgba(var(--color-accent-rgb), 0.55); }
    }
    .todo-item.now .todo-name { color: var(--brand-orange-700); font-size: 26px; }
    .todo-item.now .todo-status {
      background: var(--brand-orange-600);
      color: white;
      padding: 12px 22px;
      font-size: 17px;
    }

    .todo-item.upcoming .todo-icon {
      background: var(--color-bg-surface);
      color: var(--color-text-secondary);
    }

    /* ── 주요 액션 — "지금" 항목을 위한 버튼 ── */
    .now-action {
      margin-top: var(--space-4);
      display: flex;
      justify-content: center;
    }
    .now-action .btn { min-width: 320px; }

    @media (max-width: 820px) {
      .todo-head h1 { font-size: 32px; }
      .todo-head .sub { font-size: 18px; }
      .todo-list::before { left: 78px; }
      .todo-item { grid-template-columns: 64px 36px 1fr auto; gap: var(--space-3); }
      .todo-time { font-size: 17px; }
      .todo-name { font-size: 20px; }
      .todo-item.now .todo-name { font-size: 22px; }
      .todo-sub { font-size: 16px; }
      .todo-status { font-size: 14px; padding: 8px 14px; }
      .now-action .btn { min-width: 0; width: 100%; }
    }
