/* LARGE-FILE-JUSTIFICATION: Single CSS file required for @layer fusion-guides cascade isolation — splitting would require multiple @layer declarations or import ordering concerns */
@layer fusion-guides {
  :root {
    /* Overlay */
    --fg-overlay-color: rgba(15, 23, 42, 0.55);
    --fg-overlay-blur: 0px;

    /* Popover */
    --fg-popover-bg: #ffffff;
    --fg-popover-color: #1a1a1a;
    --fg-popover-radius: 12px;
    --fg-popover-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
    --fg-popover-max-width: 380px;
    --fg-popover-min-width: 260px;
    --fg-popover-gap: 12px;

    /* Modal */
    --fg-modal-radius: 16px;
    --fg-modal-shadow: 0 8px 40px rgba(0, 0, 0, 0.2);
    --fg-modal-width-sm: 360px;
    --fg-modal-width-md: 480px;
    --fg-modal-width-lg: 640px;

    /* Spotlight */
    --fg-spotlight-padding: 8px;

    /* Animation */
    --fg-anim-entry: 200ms;
    --fg-anim-exit: 150ms;
    --fg-anim-morph: 300ms;

    /* Typography */
    --fg-font-family: system-ui, -apple-system, sans-serif;
    --fg-font-size: 14px;
    --fg-font-size-sm: 12px;
    --fg-font-size-lg: 16px;
    --fg-title-font-size: 16px;
    --fg-title-font-weight: 600;

    /* Colors */
    --fg-primary: #3b82f6;
    --fg-primary-hover: #2563eb;
    --fg-text: #1e293b;
    --fg-text-muted: #64748b;
    --fg-border: #e2e8f0;
    --fg-close-hover-bg: rgba(0, 0, 0, 0.06);

    /* Progress */
    --fg-progress-bg: #e5e7eb;
    --fg-progress-fill: var(--fg-primary);
    --fg-progress-height: 4px;
    --fg-progress-dot-size: 8px;
  }

  /* ---- Container ---- */
  #fusion-guides-root {
    position: fixed;
    inset: 0;
    z-index: 999999;
    pointer-events: none;
    font-family: var(--fg-font-family);
    font-size: var(--fg-font-size);
    color: var(--fg-text);
    line-height: 1.5;
  }

  /* ---- SVG Overlay ---- */
  .fg-overlay {
    position: fixed;
    inset: 0;
    pointer-events: auto;
    transition: opacity var(--fg-anim-entry) ease;
  }

  .fg-overlay svg {
    width: 100%;
    height: 100%;
  }

  .fg-overlay--entering {
    opacity: 0;
  }

  .fg-overlay--visible {
    opacity: 1;
  }

  .fg-overlay--exiting {
    opacity: 0;
    transition-duration: var(--fg-anim-exit);
  }

  .fg-overlay--interactive {
    pointer-events: none;
  }

  .fg-overlay--interactive path {
    pointer-events: fill;
  }

  /* ---- Popover ---- */
  .fg-popover {
    position: absolute;
    pointer-events: auto;
    background: var(--fg-popover-bg);
    color: var(--fg-popover-color);
    border-radius: var(--fg-popover-radius);
    box-shadow: var(--fg-popover-shadow);
    max-width: var(--fg-popover-max-width);
    min-width: var(--fg-popover-min-width);
    padding: 16px;
    z-index: 1;
    transition:
      opacity var(--fg-anim-entry) ease,
      transform var(--fg-anim-entry) ease;
  }

  .fg-popover--entering {
    opacity: 0;
    transform: translateY(4px);
  }

  .fg-popover--visible {
    opacity: 1;
    transform: translateY(0);
  }

  .fg-popover--exiting {
    opacity: 0;
    transform: translateY(4px);
    transition-duration: var(--fg-anim-exit);
  }

  .fg-popover__title {
    font-size: var(--fg-title-font-size);
    font-weight: var(--fg-title-font-weight);
    margin: 0 0 8px;
    padding-right: 24px;
    color: var(--fg-text);
  }

  .fg-popover__content {
    font-size: var(--fg-font-size);
    color: var(--fg-text);
    margin: 0 0 16px;
  }

  .fg-popover__content:last-child {
    margin-bottom: 0;
  }

  /* ---- Modal ---- */
  .fg-modal {
    position: fixed;
    pointer-events: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--fg-popover-bg);
    border-radius: var(--fg-modal-radius);
    box-shadow: var(--fg-modal-shadow);
    padding: 24px;
    z-index: 1;
    width: var(--fg-modal-width-md);
    max-width: calc(100vw - 32px);
    max-height: calc(100vh - 32px);
    overflow-y: auto;
    transition:
      opacity var(--fg-anim-entry) ease,
      transform var(--fg-anim-entry) ease;
  }

  .fg-modal--entering {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.95);
  }

  .fg-modal--visible {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }

  .fg-modal--exiting {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.95);
    transition-duration: var(--fg-anim-exit);
  }

  .fg-modal--sm {
    width: var(--fg-modal-width-sm);
  }

  .fg-modal--lg {
    width: var(--fg-modal-width-lg);
  }

  /* ---- Tail (speech-bubble pointer) ---- */
  .fg-tail {
    position: fixed;
    pointer-events: none;
    z-index: 2;
    overflow: visible;
  }

  .fg-tail__fill {
    fill: var(--fg-popover-bg);
  }

  .fg-tail--entering {
    opacity: 0;
  }

  .fg-tail--visible {
    opacity: 1;
    transition: opacity var(--fg-anim-entry) ease;
  }

  .fg-tail--exiting {
    opacity: 0;
    transition: opacity var(--fg-anim-exit) ease;
  }

  /* ---- Close Button ---- */
  .fg-close {
    position: absolute;
    top: 8px;
    right: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    padding: 0;
    border: none;
    border-radius: 6px;
    background: transparent;
    color: var(--fg-text-muted);
    cursor: pointer;
    transition: background 150ms ease;
  }

  .fg-close:hover {
    background: var(--fg-close-hover-bg);
  }

  .fg-close:focus-visible {
    outline: 2px solid var(--fg-primary);
    outline-offset: 2px;
  }

  /* ---- Nav Footer ---- */
  .fg-nav-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-top: 16px;
  }

  .fg-nav-footer__progress {
    flex: 1;
    min-width: 0;
  }

  .fg-nav-footer__actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
  }

  .fg-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 16px;
    border: none;
    border-radius: 6px;
    font-family: inherit;
    font-size: var(--fg-font-size);
    font-weight: 500;
    line-height: 1.5;
    cursor: pointer;
    transition:
      background 150ms ease,
      color 150ms ease;
  }

  .fg-btn:focus-visible {
    outline: 2px solid var(--fg-primary);
    outline-offset: 2px;
  }

  .fg-btn--primary {
    background: var(--fg-primary);
    color: #ffffff;
  }

  .fg-btn--primary:hover {
    background: var(--fg-primary-hover);
  }

  .fg-btn--secondary {
    background: transparent;
    color: var(--fg-text-muted);
  }

  .fg-btn--secondary:hover {
    background: var(--fg-close-hover-bg);
    color: var(--fg-text);
  }

  /* ---- Progress: Dots ---- */
  .fg-progress-dots {
    display: flex;
    align-items: center;
    gap: 6px;
  }

  .fg-progress-dots__dot {
    width: var(--fg-progress-dot-size);
    height: var(--fg-progress-dot-size);
    border-radius: 50%;
    background: var(--fg-progress-bg);
    transition: background 200ms ease;
  }

  .fg-progress-dots__dot--active {
    background: var(--fg-progress-fill);
  }

  .fg-progress-dots__dot--completed {
    background: var(--fg-progress-fill);
    opacity: 0.5;
  }

  /* ---- Progress: Bar ---- */
  .fg-progress-bar {
    width: 100%;
    height: var(--fg-progress-height);
    background: var(--fg-progress-bg);
    border-radius: calc(var(--fg-progress-height) / 2);
    overflow: hidden;
  }

  .fg-progress-bar__fill {
    height: 100%;
    background: var(--fg-progress-fill);
    border-radius: inherit;
    transition: width var(--fg-anim-morph) ease;
  }

  /* ---- Progress: Fraction ---- */
  .fg-progress-fraction {
    font-size: var(--fg-font-size-sm);
    color: var(--fg-text-muted);
    white-space: nowrap;
  }

  /* ---- Video embed ---- */
  .fg-video {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    border-radius: 8px;
    overflow: hidden;
    background: #000;
  }

  .fg-video iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
  }

  /* ---- Video Fallback ---- */
  .fg-video-fallback {
    background: #fffbeb;
    border: 1px solid #fde68a;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 16px;
    font-size: var(--fg-font-size);
    color: var(--fg-text);
  }

  .fg-video-fallback p {
    margin: 0 0 8px;
  }

  .fg-video-fallback__link {
    color: var(--fg-primary);
    text-decoration: underline;
    font-weight: 500;
  }

  .fg-video-fallback__link:hover {
    color: var(--fg-primary-hover);
  }

  /* ---- Action Step ---- */
  .fg-action-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    margin: 8px 0;
    border: 1px solid var(--fg-border);
    border-radius: 8px;
    font-size: 13px;
    color: var(--fg-text-muted);
    line-height: 1.4;
  }

  .fg-action-badge--completed {
    border-color: #22c55e;
    color: #16a34a;
  }

  .fg-action-badge--verifying {
    border-color: var(--fg-primary);
    color: var(--fg-primary);
  }

  .fg-action-badge--retry {
    border-color: #f59e0b;
    color: #d97706;
  }

  .fg-action-badge--exhausted {
    border-color: #f59e0b;
    background: #fffbeb;
    color: #92400e;
  }

  .fg-action-exhausted-actions {
    display: flex;
    gap: 8px;
    margin: 8px 0;
  }

  .fg-btn--sm {
    padding: 4px 10px;
    font-size: 12px;
  }

  .fg-btn--disabled {
    opacity: 0.45;
    pointer-events: none;
    cursor: default;
  }

  .fg-skip-link {
    font-size: 13px;
    color: var(--fg-text-muted);
  }

  .fg-skip-link:hover {
    text-decoration: underline;
  }

  .fg-action-nudge {
    font-size: 12px;
    color: var(--fg-text-muted);
    font-style: italic;
    margin: 4px 0 8px;
  }

  /* ─── Discovery: shared ─── */

  :root {
    --fg-discovery-backdrop: rgba(15, 23, 42, 0.6);
    --fg-chooser-bg: #ffffff;
    --fg-chooser-width: 720px;
    --fg-chooser-radius: 16px;
    --fg-card-bg: #f8fafc;
    --fg-card-hover-bg: #f1f5f9;
    --fg-card-border: #e2e8f0;
    --fg-card-radius: 12px;
    --fg-badge-bg: #dbeafe;
    --fg-badge-color: #1d4ed8;
    --fg-complete-color: #16a34a;
    --fg-announcement-width: 420px;
    --fg-catalog-width: 640px;
    --fg-chip-bg: #f1f5f9;
    --fg-chip-active-bg: var(--fg-primary, #3b82f6);
    --fg-chip-active-color: #ffffff;
    --fg-search-bg: #f8fafc;
    --fg-search-border: #e2e8f0;
  }

  .fg-discovery-backdrop {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: var(--fg-discovery-backdrop);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fg-fade-in 0.2s ease;
  }

  @keyframes fg-fade-in {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }

  @keyframes fg-scale-in {
    from {
      opacity: 0;
      transform: scale(0.95);
    }
    to {
      opacity: 1;
      transform: scale(1);
    }
  }

  /* ─── Path Chooser ─── */

  .fg-path-chooser {
    background: var(--fg-chooser-bg);
    border-radius: var(--fg-chooser-radius);
    width: var(--fg-chooser-width);
    max-width: 90vw;
    max-height: 85vh;
    overflow: hidden;
    animation: fg-scale-in 0.2s ease;
    font-family: var(--fg-font-family, system-ui, sans-serif);
    color: var(--fg-text, #1e293b);
  }

  .fg-path-chooser-scroll {
    overflow-y: auto;
    max-height: inherit;
    padding: 32px;
  }

  .fg-path-chooser-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 4px;
  }

  .fg-path-chooser-title {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
  }

  .fg-path-chooser-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--fg-text-muted, #64748b);
    padding: 4px 8px;
    border-radius: 6px;
  }
  .fg-path-chooser-close:hover {
    background: var(--fg-card-bg);
  }

  .fg-path-chooser-subtitle {
    font-size: 14px;
    color: var(--fg-text-muted, #64748b);
    margin: 0 0 24px;
  }

  .fg-path-chooser-desc {
    font-size: 13px;
    color: var(--fg-text-muted, #64748b);
    line-height: 1.5;
    margin: -16px 0 24px;
  }

  .fg-path-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 24px;
  }

  @media (max-width: 600px) {
    .fg-path-cards {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  @media (max-width: 400px) {
    .fg-path-cards {
      grid-template-columns: 1fr;
    }
  }

  .fg-path-card {
    background: var(--fg-card-bg);
    border: 1px solid var(--fg-card-border);
    border-radius: var(--fg-card-radius);
    padding: 16px;
    cursor: pointer;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 6px;
    transition:
      background 0.15s,
      border-color 0.15s;
    position: relative;
    font-family: inherit;
    color: inherit;
  }
  .fg-path-card:hover {
    background: var(--fg-card-hover-bg);
    border-color: var(--fg-primary, #3b82f6);
  }

  .fg-path-card--complete {
    opacity: 0.6;
  }
  .fg-path-card--complete .fg-path-card-progress {
    color: var(--fg-complete-color);
  }

  .fg-path-card--next {
    border-color: var(--fg-primary, #3b82f6);
  }

  .fg-path-card-icon {
    font-size: 24px;
  }
  .fg-path-card-desc {
    font-size: 12px;
    color: var(--fg-text-muted, #64748b);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .fg-path-card-name {
    font-size: 14px;
    font-weight: 600;
  }
  .fg-path-card-progress {
    font-size: 12px;
    color: var(--fg-text-muted, #64748b);
  }

  .fg-path-card-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    background: var(--fg-badge-bg);
    color: var(--fg-badge-color);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.05em;
    padding: 2px 6px;
    border-radius: 4px;
    text-transform: uppercase;
  }

  .fg-path-chooser-footer {
    text-align: center;
  }

  .fg-path-chooser-browse {
    background: none;
    border: none;
    color: var(--fg-primary, #3b82f6);
    font-size: 14px;
    cursor: pointer;
    padding: 8px 16px;
    border-radius: 6px;
    font-family: inherit;
  }
  .fg-path-chooser-browse:hover {
    text-decoration: underline;
  }

  /* ─── Announcement Card ─── */

  .fg-announcement-card {
    background: var(--fg-chooser-bg);
    border-radius: var(--fg-chooser-radius);
    width: var(--fg-announcement-width);
    max-width: 90vw;
    padding: 24px;
    position: relative;
    animation: fg-scale-in 0.2s ease;
    font-family: var(--fg-font-family, system-ui, sans-serif);
    color: var(--fg-text, #1e293b);
  }

  .fg-announcement-close {
    position: absolute;
    top: 12px;
    right: 12px;
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: var(--fg-text-muted, #64748b);
    padding: 4px 8px;
    border-radius: 6px;
  }
  .fg-announcement-close:hover {
    background: var(--fg-card-bg);
  }

  .fg-announcement-title {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 8px;
  }
  .fg-announcement-desc {
    font-size: 14px;
    color: var(--fg-text-muted, #64748b);
    margin: 0 0 8px;
    line-height: 1.5;
  }
  .fg-announcement-meta {
    font-size: 12px;
    color: var(--fg-text-muted, #94a3b8);
    margin: 0 0 16px;
  }

  .fg-announcement-actions {
    display: flex;
    gap: 8px;
  }

  .fg-announcement-btn-primary {
    flex: 1;
    padding: 10px 16px;
    background: var(--fg-primary, #3b82f6);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
  }
  .fg-announcement-btn-primary:hover {
    opacity: 0.9;
  }

  .fg-announcement-btn-secondary {
    flex: 1;
    padding: 10px 16px;
    background: var(--fg-card-bg);
    color: var(--fg-text, #1e293b);
    border: 1px solid var(--fg-card-border);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    font-family: inherit;
  }
  .fg-announcement-btn-secondary:hover {
    background: var(--fg-card-hover-bg);
  }

  /* ─── Guide Catalog ─── */

  .fg-guide-catalog {
    background: var(--fg-chooser-bg);
    border-radius: var(--fg-chooser-radius);
    width: var(--fg-catalog-width);
    max-width: 90vw;
    max-height: 85vh;
    overflow: hidden;
    animation: fg-scale-in 0.2s ease;
    font-family: var(--fg-font-family, system-ui, sans-serif);
    color: var(--fg-text, #1e293b);
  }

  .fg-guide-catalog-scroll {
    overflow-y: auto;
    max-height: inherit;
    padding: 24px;
  }

  .fg-guide-catalog-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
  }

  .fg-guide-catalog-back {
    background: none;
    border: none;
    color: var(--fg-text-muted, #64748b);
    font-size: 13px;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 6px;
    font-family: inherit;
  }
  .fg-guide-catalog-back:hover {
    color: var(--fg-text, #1e293b);
  }

  .fg-guide-catalog-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--fg-text-muted, #64748b);
    padding: 4px 8px;
    border-radius: 6px;
  }
  .fg-guide-catalog-close:hover {
    background: var(--fg-card-bg);
  }

  .fg-catalog-search {
    margin-bottom: 12px;
  }

  .fg-catalog-search-input {
    width: 100%;
    box-sizing: border-box;
    padding: 8px 12px;
    background: var(--fg-search-bg);
    border: 1px solid var(--fg-search-border);
    border-radius: 8px;
    font-size: 14px;
    color: var(--fg-text, #1e293b);
    outline: none;
    font-family: inherit;
  }
  .fg-catalog-search-input:focus {
    border-color: var(--fg-primary, #3b82f6);
  }

  .fg-category-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 16px;
  }

  .fg-category-chip {
    padding: 4px 12px;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 500;
    border: none;
    cursor: pointer;
    background: var(--fg-chip-bg);
    color: var(--fg-text-muted, #64748b);
    font-family: inherit;
    transition:
      background 0.15s,
      color 0.15s;
  }
  .fg-category-chip:hover {
    background: var(--fg-card-hover-bg);
  }
  .fg-category-chip--active {
    background: var(--fg-chip-active-bg);
    color: var(--fg-chip-active-color);
  }

  .fg-guide-catalog-list {
    margin-top: 8px;
  }

  .fg-guide-catalog-section-title {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--fg-text-muted, #64748b);
    margin: 16px 0 8px;
  }

  .fg-guide-card {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    padding: 12px;
    border-radius: 8px;
    transition: background 0.15s;
    position: relative;
  }
  .fg-guide-card:hover {
    background: var(--fg-card-bg);
  }

  .fg-guide-card-name {
    font-size: 14px;
    font-weight: 600;
    flex: 1;
    min-width: 0;
  }
  .fg-guide-card-desc {
    width: 100%;
    font-size: 13px;
    color: var(--fg-text-muted, #64748b);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .fg-guide-card-meta {
    width: 100%;
    font-size: 11px;
    color: var(--fg-text-muted, #94a3b8);
  }

  .fg-guide-card-btn {
    padding: 6px 14px;
    background: var(--fg-primary, #3b82f6);
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
  }
  .fg-guide-card-btn:hover {
    opacity: 0.9;
  }

  .fg-guide-card--done .fg-guide-card-btn {
    background: var(--fg-card-bg);
    color: var(--fg-text, #1e293b);
    border: 1px solid var(--fg-card-border);
  }

  .fg-guide-card-done-badge {
    font-size: 11px;
    font-weight: 600;
    color: var(--fg-complete-color);
  }

  /* ── Path Progress Modal ── */

  .fg-path-progress {
    background: var(--fg-popover-bg, #fff);
    color: var(--fg-text, #1e293b);
    border-radius: 12px;
    max-width: 480px;
    width: 90vw;
    max-height: 80vh;
    overflow: hidden;
    font-family: var(--fg-font-family, system-ui, sans-serif);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  }

  .fg-path-progress-scroll {
    overflow-y: auto;
    max-height: inherit;
    padding: 24px;
  }

  .fg-path-progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
  }

  .fg-path-progress-back {
    background: none;
    border: none;
    color: var(--fg-accent, #3b82f6);
    cursor: pointer;
    font-size: 14px;
    padding: 4px 0;
  }

  .fg-path-progress-close {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: var(--fg-muted, #94a3b8);
    line-height: 1;
    padding: 4px 8px;
  }

  .fg-path-progress-info {
    margin-bottom: 20px;
  }

  .fg-path-progress-icon {
    font-size: 28px;
    display: block;
    margin-bottom: 8px;
  }

  .fg-path-progress-name {
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 4px;
  }

  .fg-path-progress-desc {
    font-size: 14px;
    color: var(--fg-muted, #64748b);
    margin: 0;
  }

  .fg-path-progress-list {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-bottom: 16px;
  }

  .fg-path-progress-guide {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border: none;
    border-radius: 8px;
    background: transparent;
    cursor: pointer;
    text-align: left;
    font-size: 14px;
    color: var(--fg-text, #1e293b);
    width: 100%;
  }

  .fg-path-progress-guide:hover {
    background: var(--fg-card-hover, #f1f5f9);
  }

  .fg-path-progress-guide-icon {
    flex-shrink: 0;
    width: 20px;
    text-align: center;
  }

  .fg-path-progress-guide--done .fg-path-progress-guide-icon {
    color: var(--fg-complete-color, #22c55e);
  }

  .fg-path-progress-guide--next .fg-path-progress-guide-icon {
    color: var(--fg-accent, #3b82f6);
  }

  .fg-path-progress-guide-details {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .fg-path-progress-cta {
    margin-bottom: 16px;
  }

  .fg-path-progress-cta-btn {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 8px;
    background: var(--fg-accent, #3b82f6);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
  }

  .fg-path-progress-cta-btn:hover {
    opacity: 0.9;
  }

  .fg-path-progress-complete {
    text-align: center;
    padding: 16px 0;
  }

  .fg-path-progress-complete-msg {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 12px;
  }

  .fg-path-progress-complete-actions {
    display: flex;
    gap: 8px;
    justify-content: center;
  }

  .fg-path-progress-replay-btn,
  .fg-path-progress-reset-btn {
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
  }

  .fg-path-progress-replay-btn {
    background: var(--fg-accent, #3b82f6);
    color: #fff;
    border: none;
  }

  .fg-path-progress-reset-btn {
    background: transparent;
    color: var(--fg-accent, #3b82f6);
    border: 1px solid var(--fg-accent, #3b82f6);
  }

  .fg-path-progress-footer {
    font-size: 13px;
    color: var(--fg-muted, #64748b);
    text-align: center;
  }
}
