granclaw 0.0.1-beta.98 → 0.0.1-beta.99

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -579,19 +579,31 @@ async function runAgent(agent, message, onChunk, options) {
579
579
  pi.registerTool({
580
580
  name: 'list_tasks',
581
581
  label: 'List Tasks',
582
- description: 'List tasks from the kanban board. Optionally filter by status.',
582
+ description: 'List tasks from the kanban board. Optionally filter by status, search text, or tags.',
583
583
  promptSnippet: 'List tasks',
584
- promptGuidelines: ['Use to see what is in backlog, in_progress, to_review, or done.'],
584
+ promptGuidelines: [
585
+ 'Use to see tasks across columns. Filter by column status, search title/description, or filter by tags.',
586
+ 'Default columns are to_do, in_progress, done — but custom columns may exist.',
587
+ ],
585
588
  parameters: {
586
589
  type: 'object',
587
590
  properties: {
588
- status: { type: 'string', enum: ['backlog', 'in_progress', 'scheduled', 'to_review', 'done', 'cancelled'], description: 'Filter by status (omit for all tasks)' },
591
+ status: { type: 'string', description: 'Filter by column status (e.g. to_do, in_progress, done)' },
592
+ search: { type: 'string', description: 'Search text — matches title or description' },
593
+ tags: { type: 'array', items: { type: 'string' }, description: 'Filter by tags — tasks must have ALL listed tags' },
589
594
  },
590
595
  },
591
596
  async execute(_id, params) {
592
597
  try {
593
- const url = params.status ? `${taskBase()}?status=${params.status}` : taskBase();
594
- const data = await fetchJson(url);
598
+ const qp = new URLSearchParams();
599
+ if (params.status)
600
+ qp.set('status', params.status);
601
+ if (params.search)
602
+ qp.set('search', params.search);
603
+ if (params.tags?.length)
604
+ qp.set('tags', params.tags.join(','));
605
+ const qs = qp.toString() ? `?${qp.toString()}` : '';
606
+ const data = await fetchJson(`${taskBase()}${qs}`);
595
607
  return { content: [{ type: 'text', text: JSON.stringify(data, null, 2) }] };
596
608
  }
597
609
  catch (e) {
@@ -629,14 +641,15 @@ async function runAgent(agent, message, onChunk, options) {
629
641
  promptSnippet: 'Create a task',
630
642
  promptGuidelines: [
631
643
  'Use when breaking down work into subtasks or tracking a new action item.',
632
- 'Status defaults to backlog. Use markdown in description.',
644
+ 'Status defaults to to_do. Use markdown in description. Tags help organize tasks.',
633
645
  ],
634
646
  parameters: {
635
647
  type: 'object',
636
648
  properties: {
637
649
  title: { type: 'string', description: 'Short task title (under 80 chars)' },
638
650
  description: { type: 'string', description: 'Full description in markdown (optional)' },
639
- status: { type: 'string', enum: ['backlog', 'in_progress', 'scheduled', 'to_review', 'done'], description: 'Initial status (default: backlog)' },
651
+ status: { type: 'string', description: 'Column status (default: to_do)' },
652
+ tags: { type: 'array', items: { type: 'string' }, description: 'Tags for categorization (optional)' },
640
653
  },
641
654
  required: ['title'],
642
655
  },
@@ -657,11 +670,11 @@ async function runAgent(agent, message, onChunk, options) {
657
670
  pi.registerTool({
658
671
  name: 'update_task',
659
672
  label: 'Update Task',
660
- description: 'Update a task\'s title, description, or status.',
673
+ description: 'Update a task\'s title, description, status, or tags.',
661
674
  promptSnippet: 'Update a task',
662
675
  promptGuidelines: [
663
676
  'Only send fields you want to change.',
664
- 'Move to in_progress when starting, to_review when done and awaiting human review.',
677
+ 'Move to in_progress when starting, done when complete.',
665
678
  ],
666
679
  parameters: {
667
680
  type: 'object',
@@ -669,7 +682,8 @@ async function runAgent(agent, message, onChunk, options) {
669
682
  taskId: { type: 'string', description: 'Task ID, e.g. TSK-001' },
670
683
  title: { type: 'string', description: 'New title (optional)' },
671
684
  description: { type: 'string', description: 'New description in markdown (optional)' },
672
- status: { type: 'string', enum: ['backlog', 'in_progress', 'scheduled', 'to_review', 'done'], description: 'New status (optional)' },
685
+ status: { type: 'string', description: 'New column status (optional)' },
686
+ tags: { type: 'array', items: { type: 'string' }, description: 'Replace tags (optional)' },
673
687
  },
674
688
  required: ['taskId'],
675
689
  },
@@ -722,6 +722,51 @@ function createServer() {
722
722
  content,
723
723
  });
724
724
  });
725
+ app.get('/agents/:id/task-columns', (req, res) => {
726
+ const managed = (0, agent_manager_js_1.getManagedAgent)(req.params.id);
727
+ if (!managed) {
728
+ res.status(404).json({ error: 'Agent not found' });
729
+ return;
730
+ }
731
+ res.json((0, tasks_db_js_1.listColumns)(req.params.id));
732
+ });
733
+ app.post('/agents/:id/task-columns', (req, res) => {
734
+ const managed = (0, agent_manager_js_1.getManagedAgent)(req.params.id);
735
+ if (!managed) {
736
+ res.status(404).json({ error: 'Agent not found' });
737
+ return;
738
+ }
739
+ const { label } = req.body;
740
+ if (!label) {
741
+ res.status(400).json({ error: 'label required' });
742
+ return;
743
+ }
744
+ try {
745
+ const column = (0, tasks_db_js_1.createColumn)(req.params.id, { label });
746
+ res.status(201).json(column);
747
+ }
748
+ catch (e) {
749
+ res.status(409).json({ error: e.message });
750
+ }
751
+ });
752
+ app.delete('/agents/:id/task-columns/:columnId', (req, res) => {
753
+ const managed = (0, agent_manager_js_1.getManagedAgent)(req.params.id);
754
+ if (!managed) {
755
+ res.status(404).json({ error: 'Agent not found' });
756
+ return;
757
+ }
758
+ try {
759
+ const deleted = (0, tasks_db_js_1.deleteColumn)(req.params.id, req.params.columnId);
760
+ if (!deleted) {
761
+ res.status(404).json({ error: 'Column not found' });
762
+ return;
763
+ }
764
+ res.json({ ok: true });
765
+ }
766
+ catch (e) {
767
+ res.status(400).json({ error: e.message });
768
+ }
769
+ });
725
770
  app.get('/agents/:id/tasks', (req, res) => {
726
771
  const managed = (0, agent_manager_js_1.getManagedAgent)(req.params.id);
727
772
  if (!managed) {
@@ -729,7 +774,10 @@ function createServer() {
729
774
  return;
730
775
  }
731
776
  const status = req.query.status;
732
- res.json((0, tasks_db_js_1.listTasks)(req.params.id, status));
777
+ const search = req.query.search;
778
+ const tagsParam = req.query.tags;
779
+ const tags = tagsParam ? tagsParam.split(',') : undefined;
780
+ res.json((0, tasks_db_js_1.listTasks)(req.params.id, { status, search, tags }));
733
781
  });
734
782
  app.post('/agents/:id/tasks', (req, res) => {
735
783
  const managed = (0, agent_manager_js_1.getManagedAgent)(req.params.id);
@@ -737,14 +785,23 @@ function createServer() {
737
785
  res.status(404).json({ error: 'Agent not found' });
738
786
  return;
739
787
  }
740
- const { title, description, status } = req.body;
788
+ const { title, description, status, tags } = req.body;
741
789
  if (!title) {
742
790
  res.status(400).json({ error: 'title required' });
743
791
  return;
744
792
  }
745
- const task = (0, tasks_db_js_1.createTask)(req.params.id, { title, description, status: status });
793
+ const task = (0, tasks_db_js_1.createTask)(req.params.id, { title, description, status, tags });
746
794
  res.status(201).json(task);
747
795
  });
796
+ app.delete('/agents/:id/tasks', (req, res) => {
797
+ const managed = (0, agent_manager_js_1.getManagedAgent)(req.params.id);
798
+ if (!managed) {
799
+ res.status(404).json({ error: 'Agent not found' });
800
+ return;
801
+ }
802
+ const count = (0, tasks_db_js_1.clearTasks)(req.params.id);
803
+ res.json({ ok: true, deleted: count });
804
+ });
748
805
  app.get('/agents/:id/tasks/:taskId', (req, res) => {
749
806
  const managed = (0, agent_manager_js_1.getManagedAgent)(req.params.id);
750
807
  if (!managed) {
@@ -765,8 +822,8 @@ function createServer() {
765
822
  res.status(404).json({ error: 'Agent not found' });
766
823
  return;
767
824
  }
768
- const { title, description, status } = req.body;
769
- const task = (0, tasks_db_js_1.updateTask)(req.params.id, req.params.taskId, { title, description, status: status });
825
+ const { title, description, status, tags } = req.body;
826
+ const task = (0, tasks_db_js_1.updateTask)(req.params.id, req.params.taskId, { title, description, status, tags });
770
827
  if (!task) {
771
828
  res.status(404).json({ error: 'Task not found' });
772
829
  return;
@@ -8,6 +8,10 @@ exports.getTask = getTask;
8
8
  exports.createTask = createTask;
9
9
  exports.updateTask = updateTask;
10
10
  exports.deleteTask = deleteTask;
11
+ exports.clearTasks = clearTasks;
12
+ exports.listColumns = listColumns;
13
+ exports.createColumn = createColumn;
14
+ exports.deleteColumn = deleteColumn;
11
15
  exports.listComments = listComments;
12
16
  exports.createComment = createComment;
13
17
  exports.closeTasksDb = closeTasksDb;
@@ -22,11 +26,13 @@ function getDb(agentId) {
22
26
  return (0, workspace_pool_js_1.getWorkspaceDb)(path_1.default.resolve(config_js_1.REPO_ROOT, agent.workspaceDir));
23
27
  }
24
28
  function rowToTask(r) {
29
+ const tagsStr = r.tags || '';
25
30
  return {
26
31
  id: r.id,
27
32
  title: r.title,
28
33
  description: r.description,
29
34
  status: r.status,
35
+ tags: tagsStr ? tagsStr.split(',') : [],
30
36
  source: r.source,
31
37
  updatedBy: r.updated_by ?? null,
32
38
  createdAt: r.created_at,
@@ -42,16 +48,42 @@ function rowToComment(r) {
42
48
  createdAt: r.created_at,
43
49
  };
44
50
  }
51
+ function rowToColumn(r) {
52
+ return {
53
+ id: r.id,
54
+ label: r.label,
55
+ position: r.position,
56
+ createdAt: r.created_at,
57
+ };
58
+ }
59
+ function slugify(label) {
60
+ return label.toLowerCase().replace(/[^a-z0-9]+/g, '_').replace(/^_|_$/g, '') || 'column';
61
+ }
45
62
  function nextTaskId(db) {
46
63
  const row = db.prepare(`SELECT COALESCE(MAX(CAST(SUBSTR(id, 5) AS INTEGER)), 0) + 1 AS next FROM tasks`).get();
47
64
  return `TSK-${String(row.next).padStart(3, '0')}`;
48
65
  }
49
- function listTasks(agentId, status) {
66
+ function listTasks(agentId, opts) {
50
67
  const db = getDb(agentId);
51
- if (status) {
52
- return db.prepare(`SELECT * FROM tasks WHERE status = ? ORDER BY created_at`).all(status).map(rowToTask);
68
+ const conditions = [];
69
+ const params = [];
70
+ if (opts?.status) {
71
+ conditions.push('status = ?');
72
+ params.push(opts.status);
73
+ }
74
+ if (opts?.search) {
75
+ conditions.push('(title LIKE ? OR description LIKE ?)');
76
+ const term = `%${opts.search}%`;
77
+ params.push(term, term);
78
+ }
79
+ if (opts?.tags?.length) {
80
+ for (const tag of opts.tags) {
81
+ conditions.push("(',' || tags || ',' LIKE ?)");
82
+ params.push(`%,${tag},%`);
83
+ }
53
84
  }
54
- return db.prepare(`SELECT * FROM tasks ORDER BY created_at`).all().map(rowToTask);
85
+ const where = conditions.length ? ` WHERE ${conditions.join(' AND ')}` : '';
86
+ return db.prepare(`SELECT * FROM tasks${where} ORDER BY created_at`).all(...params).map(rowToTask);
55
87
  }
56
88
  function getTask(agentId, taskId) {
57
89
  const db = getDb(agentId);
@@ -62,10 +94,11 @@ function createTask(agentId, data) {
62
94
  const db = getDb(agentId);
63
95
  const id = nextTaskId(db);
64
96
  const now = Math.floor(Date.now() / 1000);
97
+ const tagsStr = (data.tags ?? []).join(',');
65
98
  db.prepare(`
66
- INSERT INTO tasks (id, title, description, status, source, created_at, updated_at)
67
- VALUES (?, ?, ?, ?, 'human', ?, ?)
68
- `).run(id, data.title, data.description ?? '', data.status ?? 'backlog', now, now);
99
+ INSERT INTO tasks (id, title, description, status, tags, source, created_at, updated_at)
100
+ VALUES (?, ?, ?, ?, ?, 'human', ?, ?)
101
+ `).run(id, data.title, data.description ?? '', data.status ?? 'to_do', tagsStr, now, now);
69
102
  return getTask(agentId, id);
70
103
  }
71
104
  function updateTask(agentId, taskId, data) {
@@ -74,10 +107,11 @@ function updateTask(agentId, taskId, data) {
74
107
  if (!existing)
75
108
  return null;
76
109
  const now = Math.floor(Date.now() / 1000);
110
+ const tagsStr = data.tags !== undefined ? data.tags.join(',') : existing.tags.join(',');
77
111
  db.prepare(`
78
- UPDATE tasks SET title = ?, description = ?, status = ?, updated_by = 'human', updated_at = ?
112
+ UPDATE tasks SET title = ?, description = ?, status = ?, tags = ?, updated_by = 'human', updated_at = ?
79
113
  WHERE id = ?
80
- `).run(data.title ?? existing.title, data.description ?? existing.description, data.status ?? existing.status, now, taskId);
114
+ `).run(data.title ?? existing.title, data.description ?? existing.description, data.status ?? existing.status, tagsStr, now, taskId);
81
115
  return getTask(agentId, taskId);
82
116
  }
83
117
  function deleteTask(agentId, taskId) {
@@ -85,6 +119,38 @@ function deleteTask(agentId, taskId) {
85
119
  const result = db.prepare(`DELETE FROM tasks WHERE id = ?`).run(taskId);
86
120
  return result.changes > 0;
87
121
  }
122
+ function clearTasks(agentId) {
123
+ const db = getDb(agentId);
124
+ const result = db.prepare('DELETE FROM tasks').run();
125
+ return result.changes;
126
+ }
127
+ function listColumns(agentId) {
128
+ const db = getDb(agentId);
129
+ return db.prepare('SELECT * FROM task_columns ORDER BY position').all().map(rowToColumn);
130
+ }
131
+ function createColumn(agentId, data) {
132
+ const db = getDb(agentId);
133
+ const id = slugify(data.label);
134
+ const existing = db.prepare('SELECT id FROM task_columns WHERE id = ?').get(id);
135
+ if (existing)
136
+ throw new Error(`Column "${id}" already exists`);
137
+ const maxPos = db.prepare('SELECT COALESCE(MAX(position), -1) + 1 AS next FROM task_columns').get().next;
138
+ const now = Math.floor(Date.now() / 1000);
139
+ db.prepare('INSERT INTO task_columns (id, label, position, created_at) VALUES (?, ?, ?, ?)').run(id, data.label, maxPos, now);
140
+ return { id, label: data.label, position: maxPos, createdAt: now };
141
+ }
142
+ function deleteColumn(agentId, columnId) {
143
+ const db = getDb(agentId);
144
+ const count = db.prepare('SELECT COUNT(*) as n FROM task_columns').get().n;
145
+ if (count <= 1)
146
+ throw new Error('Cannot delete the last column');
147
+ const firstCol = db.prepare('SELECT id FROM task_columns WHERE id != ? ORDER BY position LIMIT 1').get(columnId);
148
+ if (firstCol) {
149
+ db.prepare('UPDATE tasks SET status = ? WHERE status = ?').run(firstCol.id, columnId);
150
+ }
151
+ const result = db.prepare('DELETE FROM task_columns WHERE id = ?').run(columnId);
152
+ return result.changes > 0;
153
+ }
88
154
  function listComments(agentId, taskId) {
89
155
  const db = getDb(agentId);
90
156
  return db.prepare(`SELECT * FROM comments WHERE task_id = ? ORDER BY created_at ASC`).all(taskId).map(rowToComment);
@@ -49,8 +49,8 @@ function getWorkspaceDb(workspaceDir) {
49
49
  id TEXT PRIMARY KEY,
50
50
  title TEXT NOT NULL,
51
51
  description TEXT NOT NULL DEFAULT '',
52
- status TEXT NOT NULL DEFAULT 'backlog'
53
- CHECK(status IN ('backlog','in_progress','scheduled','to_review','done','cancelled')),
52
+ status TEXT NOT NULL DEFAULT 'to_do',
53
+ tags TEXT NOT NULL DEFAULT '',
54
54
  source TEXT NOT NULL DEFAULT 'agent'
55
55
  CHECK(source IN ('agent','human')),
56
56
  updated_by TEXT DEFAULT NULL
@@ -65,6 +65,12 @@ function getWorkspaceDb(workspaceDir) {
65
65
  source TEXT NOT NULL CHECK(source IN ('agent','human')),
66
66
  created_at INTEGER NOT NULL
67
67
  );
68
+ CREATE TABLE IF NOT EXISTS task_columns (
69
+ id TEXT PRIMARY KEY,
70
+ label TEXT NOT NULL,
71
+ position INTEGER NOT NULL,
72
+ created_at INTEGER NOT NULL
73
+ );
68
74
  CREATE INDEX IF NOT EXISTS idx_tasks_status ON tasks(status);
69
75
  CREATE INDEX IF NOT EXISTS idx_comments_task ON comments(task_id, created_at);
70
76
  `);
@@ -122,15 +128,17 @@ function getWorkspaceDb(workspaceDir) {
122
128
  db.exec(`ALTER TABLE run_steps ADD COLUMN events TEXT`);
123
129
  console.log('[workspace-pool] migrated run_steps table (added events column)');
124
130
  }
125
- const tasksSchema = db.prepare(`SELECT sql FROM sqlite_master WHERE type='table' AND name='tasks'`).get();
126
- if (tasksSchema?.sql && !tasksSchema.sql.includes('cancelled')) {
131
+ const taskCols = db.pragma('table_info(tasks)').map(c => c.name);
132
+ if (taskCols.length > 0 && !taskCols.includes('tags')) {
127
133
  db.exec(`
128
- CREATE TABLE tasks_new (
134
+ DROP TABLE IF EXISTS comments;
135
+ DROP TABLE IF EXISTS tasks;
136
+ CREATE TABLE tasks (
129
137
  id TEXT PRIMARY KEY,
130
138
  title TEXT NOT NULL,
131
139
  description TEXT NOT NULL DEFAULT '',
132
- status TEXT NOT NULL DEFAULT 'backlog'
133
- CHECK(status IN ('backlog','in_progress','scheduled','to_review','done','cancelled')),
140
+ status TEXT NOT NULL DEFAULT 'to_do',
141
+ tags TEXT NOT NULL DEFAULT '',
134
142
  source TEXT NOT NULL DEFAULT 'agent'
135
143
  CHECK(source IN ('agent','human')),
136
144
  updated_by TEXT DEFAULT NULL
@@ -138,12 +146,24 @@ function getWorkspaceDb(workspaceDir) {
138
146
  created_at INTEGER NOT NULL,
139
147
  updated_at INTEGER NOT NULL
140
148
  );
141
- INSERT INTO tasks_new SELECT * FROM tasks;
142
- DROP TABLE tasks;
143
- ALTER TABLE tasks_new RENAME TO tasks;
144
- CREATE INDEX IF NOT EXISTS idx_tasks_status ON tasks(status);
149
+ CREATE TABLE comments (
150
+ id TEXT PRIMARY KEY,
151
+ task_id TEXT NOT NULL REFERENCES tasks(id) ON DELETE CASCADE,
152
+ body TEXT NOT NULL,
153
+ source TEXT NOT NULL CHECK(source IN ('agent','human')),
154
+ created_at INTEGER NOT NULL
155
+ );
156
+ CREATE INDEX idx_tasks_status ON tasks(status);
157
+ CREATE INDEX idx_comments_task ON comments(task_id, created_at);
145
158
  `);
146
- console.log('[workspace-pool] migrated tasks table (added cancelled status)');
159
+ console.log('[workspace-pool] recreated tasks table (v2: tags + custom columns)');
160
+ }
161
+ const colCount = db.prepare('SELECT COUNT(*) as n FROM task_columns').get().n;
162
+ if (colCount === 0) {
163
+ const seedNow = Math.floor(Date.now() / 1000);
164
+ db.prepare('INSERT INTO task_columns (id, label, position, created_at) VALUES (?, ?, ?, ?)').run('to_do', 'To Do', 0, seedNow);
165
+ db.prepare('INSERT INTO task_columns (id, label, position, created_at) VALUES (?, ?, ?, ?)').run('in_progress', 'In Progress', 1, seedNow);
166
+ db.prepare('INSERT INTO task_columns (id, label, position, created_at) VALUES (?, ?, ?, ?)').run('done', 'Done', 2, seedNow);
147
167
  }
148
168
  const stepsSchema = db.prepare(`SELECT sql FROM sqlite_master WHERE type='table' AND name='steps'`).get();
149
169
  if (stepsSchema?.sql && !stepsSchema.sql.includes('agent')) {
@@ -0,0 +1 @@
1
+ *,:before,:after{--tw-border-spacing-x: 0;--tw-border-spacing-y: 0;--tw-translate-x: 0;--tw-translate-y: 0;--tw-rotate: 0;--tw-skew-x: 0;--tw-skew-y: 0;--tw-scale-x: 1;--tw-scale-y: 1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness: proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width: 0px;--tw-ring-offset-color: #fff;--tw-ring-color: rgb(59 130 246 / .5);--tw-ring-offset-shadow: 0 0 #0000;--tw-ring-shadow: 0 0 #0000;--tw-shadow: 0 0 #0000;--tw-shadow-colored: 0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: ;--tw-contain-size: ;--tw-contain-layout: ;--tw-contain-paint: ;--tw-contain-style: }::backdrop{--tw-border-spacing-x: 0;--tw-border-spacing-y: 0;--tw-translate-x: 0;--tw-translate-y: 0;--tw-rotate: 0;--tw-skew-x: 0;--tw-skew-y: 0;--tw-scale-x: 1;--tw-scale-y: 1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness: proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width: 0px;--tw-ring-offset-color: #fff;--tw-ring-color: rgb(59 130 246 / .5);--tw-ring-offset-shadow: 0 0 #0000;--tw-ring-shadow: 0 0 #0000;--tw-shadow: 0 0 #0000;--tw-shadow-colored: 0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: ;--tw-contain-size: ;--tw-contain-layout: ;--tw-contain-paint: ;--tw-contain-style: }*,:before,:after{box-sizing:border-box;border-width:0;border-style:solid;border-color:#e5e7eb}:before,:after{--tw-content: ""}html,:host{line-height:1.5;-webkit-text-size-adjust:100%;-moz-tab-size:4;-o-tab-size:4;tab-size:4;font-family:Inter,system-ui,sans-serif;font-feature-settings:normal;font-variation-settings:normal;-webkit-tap-highlight-color:transparent}body{margin:0;line-height:inherit}hr{height:0;color:inherit;border-top-width:1px}abbr:where([title]){-webkit-text-decoration:underline dotted;text-decoration:underline dotted}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}a{color:inherit;text-decoration:inherit}b,strong{font-weight:bolder}code,kbd,samp,pre{font-family:JetBrains Mono,monospace;font-feature-settings:normal;font-variation-settings:normal;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}table{text-indent:0;border-color:inherit;border-collapse:collapse}button,input,optgroup,select,textarea{font-family:inherit;font-feature-settings:inherit;font-variation-settings:inherit;font-size:100%;font-weight:inherit;line-height:inherit;letter-spacing:inherit;color:inherit;margin:0;padding:0}button,select{text-transform:none}button,input:where([type=button]),input:where([type=reset]),input:where([type=submit]){-webkit-appearance:button;background-color:transparent;background-image:none}:-moz-focusring{outline:auto}:-moz-ui-invalid{box-shadow:none}progress{vertical-align:baseline}::-webkit-inner-spin-button,::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}summary{display:list-item}blockquote,dl,dd,h1,h2,h3,h4,h5,h6,hr,figure,p,pre{margin:0}fieldset{margin:0;padding:0}legend{padding:0}ol,ul,menu{list-style:none;margin:0;padding:0}dialog{padding:0}textarea{resize:vertical}input::-moz-placeholder,textarea::-moz-placeholder{opacity:1;color:#9ca3af}input::placeholder,textarea::placeholder{opacity:1;color:#9ca3af}button,[role=button]{cursor:pointer}:disabled{cursor:default}img,svg,video,canvas,audio,iframe,embed,object{display:block;vertical-align:middle}img,video{max-width:100%;height:auto}[hidden]:where(:not([hidden=until-found])){display:none}:root{--background: 254 249 239;--on-background: 29 28 22;--on-surface: 29 28 22;--on-surface-variant: 58 55 47;--surface-bright: 254 249 239;--surface-dim: 222 218 208;--surface-container-lowest: 251 246 235;--surface-container-low: 248 243 233;--surface-container: 242 237 227;--surface-container-high: 237 227 207;--surface-container-highest: 231 226 216;--primary: 93 57 224;--on-primary: 255 255 255;--primary-fixed: 230 222 255;--primary-fixed-dim: 202 190 255;--surface-tint: 96 60 227;--secondary: 177 46 9;--secondary-container: 253 100 61;--tertiary-fixed: 243 228 143;--outline: 121 117 135;--outline-variant: 201 196 216;--error: 186 26 26;--success: 16 122 75;--warning: 202 138 4;--info: 37 99 235}.dark{--background: 29 28 22;--on-background: 245 240 224;--on-surface: 245 240 224;--on-surface-variant: 185 179 195;--surface-bright: 58 54 39;--surface-dim: 20 19 16;--surface-container-lowest: 20 19 16;--surface-container-low: 36 34 26;--surface-container: 46 45 34;--surface-container-high: 58 55 43;--surface-container-highest: 70 67 52;--primary: 202 190 255;--on-primary: 34 16 112;--primary-fixed: 230 222 255;--primary-fixed-dim: 93 57 224;--surface-tint: 202 190 255;--secondary: 255 180 167;--secondary-container: 142 26 0;--tertiary-fixed: 92 81 42;--outline: 141 134 148;--outline-variant: 71 70 79;--error: 255 180 171;--success: 94 218 160;--warning: 250 204 21;--info: 96 165 250}*{box-sizing:border-box}html{scroll-behavior:smooth;scroll-padding-top:72px}body{--tw-bg-opacity: 1;background-color:rgb(var(--background) / var(--tw-bg-opacity, 1));font-family:Inter,system-ui,sans-serif;--tw-text-opacity: 1;color:rgb(var(--on-surface) / var(--tw-text-opacity, 1));background-image:linear-gradient(rgb(var(--on-surface) / .03) 1px,transparent 1px),radial-gradient(circle,rgb(var(--on-surface) / .02) 1px,transparent 1px);background-size:100% 28px,16px 16px;background-attachment:fixed;min-height:100vh}h1,h2,h3{font-family:"Noto Serif",Georgia,serif;--tw-text-opacity: 1;color:rgb(var(--on-surface) / var(--tw-text-opacity, 1))}::-webkit-scrollbar{width:6px;height:6px}::-webkit-scrollbar-track{background:transparent}::-webkit-scrollbar-thumb{background:rgb(var(--outline-variant));border-radius:999px}::-webkit-scrollbar-thumb:hover{background:rgb(var(--outline))}::-moz-selection{background:rgb(var(--primary-fixed));color:rgb(var(--on-primary))}::selection{background:rgb(var(--primary-fixed));color:rgb(var(--on-primary))}.container{width:100%}@media (min-width: 640px){.container{max-width:640px}}@media (min-width: 768px){.container{max-width:768px}}@media (min-width: 1024px){.container{max-width:1024px}}@media (min-width: 1280px){.container{max-width:1280px}}@media (min-width: 1536px){.container{max-width:1536px}}.prose{color:var(--tw-prose-body);max-width:65ch}.prose :where(p):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.25em;margin-bottom:1.25em}.prose :where([class~=lead]):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-lead);font-size:1.25em;line-height:1.6;margin-top:1.2em;margin-bottom:1.2em}.prose :where(a):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-links);text-decoration:underline;font-weight:500}.prose :where(strong):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-bold);font-weight:600}.prose :where(a strong):not(:where([class~=not-prose],[class~=not-prose] *)){color:inherit}.prose :where(blockquote strong):not(:where([class~=not-prose],[class~=not-prose] *)){color:inherit}.prose :where(thead th strong):not(:where([class~=not-prose],[class~=not-prose] *)){color:inherit}.prose :where(ol):not(:where([class~=not-prose],[class~=not-prose] *)){list-style-type:decimal;margin-top:1.25em;margin-bottom:1.25em;padding-inline-start:1.625em}.prose :where(ol[type=A]):not(:where([class~=not-prose],[class~=not-prose] *)){list-style-type:upper-alpha}.prose :where(ol[type=a]):not(:where([class~=not-prose],[class~=not-prose] *)){list-style-type:lower-alpha}.prose :where(ol[type=A s]):not(:where([class~=not-prose],[class~=not-prose] *)){list-style-type:upper-alpha}.prose :where(ol[type=a s]):not(:where([class~=not-prose],[class~=not-prose] *)){list-style-type:lower-alpha}.prose :where(ol[type=I]):not(:where([class~=not-prose],[class~=not-prose] *)){list-style-type:upper-roman}.prose :where(ol[type=i]):not(:where([class~=not-prose],[class~=not-prose] *)){list-style-type:lower-roman}.prose :where(ol[type=I s]):not(:where([class~=not-prose],[class~=not-prose] *)){list-style-type:upper-roman}.prose :where(ol[type=i s]):not(:where([class~=not-prose],[class~=not-prose] *)){list-style-type:lower-roman}.prose :where(ol[type="1"]):not(:where([class~=not-prose],[class~=not-prose] *)){list-style-type:decimal}.prose :where(ul):not(:where([class~=not-prose],[class~=not-prose] *)){list-style-type:disc;margin-top:1.25em;margin-bottom:1.25em;padding-inline-start:1.625em}.prose :where(ol>li):not(:where([class~=not-prose],[class~=not-prose] *))::marker{font-weight:400;color:var(--tw-prose-counters)}.prose :where(ul>li):not(:where([class~=not-prose],[class~=not-prose] *))::marker{color:var(--tw-prose-bullets)}.prose :where(dt):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-headings);font-weight:600;margin-top:1.25em}.prose :where(hr):not(:where([class~=not-prose],[class~=not-prose] *)){border-color:var(--tw-prose-hr);border-top-width:1px;margin-top:3em;margin-bottom:3em}.prose :where(blockquote):not(:where([class~=not-prose],[class~=not-prose] *)){font-weight:500;font-style:italic;color:var(--tw-prose-quotes);border-inline-start-width:.25rem;border-inline-start-color:var(--tw-prose-quote-borders);quotes:"“""”""‘""’";margin-top:1.6em;margin-bottom:1.6em;padding-inline-start:1em}.prose :where(blockquote p:first-of-type):not(:where([class~=not-prose],[class~=not-prose] *)):before{content:open-quote}.prose :where(blockquote p:last-of-type):not(:where([class~=not-prose],[class~=not-prose] *)):after{content:close-quote}.prose :where(h1):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-headings);font-weight:800;font-size:2.25em;margin-top:0;margin-bottom:.8888889em;line-height:1.1111111}.prose :where(h1 strong):not(:where([class~=not-prose],[class~=not-prose] *)){font-weight:900;color:inherit}.prose :where(h2):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-headings);font-weight:700;font-size:1.5em;margin-top:2em;margin-bottom:1em;line-height:1.3333333}.prose :where(h2 strong):not(:where([class~=not-prose],[class~=not-prose] *)){font-weight:800;color:inherit}.prose :where(h3):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-headings);font-weight:600;font-size:1.25em;margin-top:1.6em;margin-bottom:.6em;line-height:1.6}.prose :where(h3 strong):not(:where([class~=not-prose],[class~=not-prose] *)){font-weight:700;color:inherit}.prose :where(h4):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-headings);font-weight:600;margin-top:1.5em;margin-bottom:.5em;line-height:1.5}.prose :where(h4 strong):not(:where([class~=not-prose],[class~=not-prose] *)){font-weight:700;color:inherit}.prose :where(img):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:2em;margin-bottom:2em}.prose :where(picture):not(:where([class~=not-prose],[class~=not-prose] *)){display:block;margin-top:2em;margin-bottom:2em}.prose :where(video):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:2em;margin-bottom:2em}.prose :where(kbd):not(:where([class~=not-prose],[class~=not-prose] *)){font-weight:500;font-family:inherit;color:var(--tw-prose-kbd);box-shadow:0 0 0 1px var(--tw-prose-kbd-shadows),0 3px 0 var(--tw-prose-kbd-shadows);font-size:.875em;border-radius:.3125rem;padding-top:.1875em;padding-inline-end:.375em;padding-bottom:.1875em;padding-inline-start:.375em}.prose :where(code):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-code);font-weight:600;font-size:.875em}.prose :where(code):not(:where([class~=not-prose],[class~=not-prose] *)):before{content:"`"}.prose :where(code):not(:where([class~=not-prose],[class~=not-prose] *)):after{content:"`"}.prose :where(a code):not(:where([class~=not-prose],[class~=not-prose] *)){color:inherit}.prose :where(h1 code):not(:where([class~=not-prose],[class~=not-prose] *)){color:inherit}.prose :where(h2 code):not(:where([class~=not-prose],[class~=not-prose] *)){color:inherit;font-size:.875em}.prose :where(h3 code):not(:where([class~=not-prose],[class~=not-prose] *)){color:inherit;font-size:.9em}.prose :where(h4 code):not(:where([class~=not-prose],[class~=not-prose] *)){color:inherit}.prose :where(blockquote code):not(:where([class~=not-prose],[class~=not-prose] *)){color:inherit}.prose :where(thead th code):not(:where([class~=not-prose],[class~=not-prose] *)){color:inherit}.prose :where(pre):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-pre-code);background-color:var(--tw-prose-pre-bg);overflow-x:auto;font-weight:400;font-size:.875em;line-height:1.7142857;margin-top:1.7142857em;margin-bottom:1.7142857em;border-radius:.375rem;padding-top:.8571429em;padding-inline-end:1.1428571em;padding-bottom:.8571429em;padding-inline-start:1.1428571em}.prose :where(pre code):not(:where([class~=not-prose],[class~=not-prose] *)){background-color:transparent;border-width:0;border-radius:0;padding:0;font-weight:inherit;color:inherit;font-size:inherit;font-family:inherit;line-height:inherit}.prose :where(pre code):not(:where([class~=not-prose],[class~=not-prose] *)):before{content:none}.prose :where(pre code):not(:where([class~=not-prose],[class~=not-prose] *)):after{content:none}.prose :where(table):not(:where([class~=not-prose],[class~=not-prose] *)){width:100%;table-layout:auto;margin-top:2em;margin-bottom:2em;font-size:.875em;line-height:1.7142857}.prose :where(thead):not(:where([class~=not-prose],[class~=not-prose] *)){border-bottom-width:1px;border-bottom-color:var(--tw-prose-th-borders)}.prose :where(thead th):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-headings);font-weight:600;vertical-align:bottom;padding-inline-end:.5714286em;padding-bottom:.5714286em;padding-inline-start:.5714286em}.prose :where(tbody tr):not(:where([class~=not-prose],[class~=not-prose] *)){border-bottom-width:1px;border-bottom-color:var(--tw-prose-td-borders)}.prose :where(tbody tr:last-child):not(:where([class~=not-prose],[class~=not-prose] *)){border-bottom-width:0}.prose :where(tbody td):not(:where([class~=not-prose],[class~=not-prose] *)){vertical-align:baseline}.prose :where(tfoot):not(:where([class~=not-prose],[class~=not-prose] *)){border-top-width:1px;border-top-color:var(--tw-prose-th-borders)}.prose :where(tfoot td):not(:where([class~=not-prose],[class~=not-prose] *)){vertical-align:top}.prose :where(th,td):not(:where([class~=not-prose],[class~=not-prose] *)){text-align:start}.prose :where(figure>*):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:0;margin-bottom:0}.prose :where(figcaption):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-captions);font-size:.875em;line-height:1.4285714;margin-top:.8571429em}.prose{--tw-prose-body: #374151;--tw-prose-headings: #111827;--tw-prose-lead: #4b5563;--tw-prose-links: #111827;--tw-prose-bold: #111827;--tw-prose-counters: #6b7280;--tw-prose-bullets: #d1d5db;--tw-prose-hr: #e5e7eb;--tw-prose-quotes: #111827;--tw-prose-quote-borders: #e5e7eb;--tw-prose-captions: #6b7280;--tw-prose-kbd: #111827;--tw-prose-kbd-shadows: rgb(17 24 39 / 10%);--tw-prose-code: #111827;--tw-prose-pre-code: #e5e7eb;--tw-prose-pre-bg: #1f2937;--tw-prose-th-borders: #d1d5db;--tw-prose-td-borders: #e5e7eb;--tw-prose-invert-body: #d1d5db;--tw-prose-invert-headings: #fff;--tw-prose-invert-lead: #9ca3af;--tw-prose-invert-links: #fff;--tw-prose-invert-bold: #fff;--tw-prose-invert-counters: #9ca3af;--tw-prose-invert-bullets: #4b5563;--tw-prose-invert-hr: #374151;--tw-prose-invert-quotes: #f3f4f6;--tw-prose-invert-quote-borders: #374151;--tw-prose-invert-captions: #9ca3af;--tw-prose-invert-kbd: #fff;--tw-prose-invert-kbd-shadows: rgb(255 255 255 / 10%);--tw-prose-invert-code: #fff;--tw-prose-invert-pre-code: #d1d5db;--tw-prose-invert-pre-bg: rgb(0 0 0 / 50%);--tw-prose-invert-th-borders: #4b5563;--tw-prose-invert-td-borders: #374151;font-size:1rem;line-height:1.75}.prose :where(picture>img):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:0;margin-bottom:0}.prose :where(li):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:.5em;margin-bottom:.5em}.prose :where(ol>li):not(:where([class~=not-prose],[class~=not-prose] *)){padding-inline-start:.375em}.prose :where(ul>li):not(:where([class~=not-prose],[class~=not-prose] *)){padding-inline-start:.375em}.prose :where(.prose>ul>li p):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:.75em;margin-bottom:.75em}.prose :where(.prose>ul>li>p:first-child):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.25em}.prose :where(.prose>ul>li>p:last-child):not(:where([class~=not-prose],[class~=not-prose] *)){margin-bottom:1.25em}.prose :where(.prose>ol>li>p:first-child):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.25em}.prose :where(.prose>ol>li>p:last-child):not(:where([class~=not-prose],[class~=not-prose] *)){margin-bottom:1.25em}.prose :where(ul ul,ul ol,ol ul,ol ol):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:.75em;margin-bottom:.75em}.prose :where(dl):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.25em;margin-bottom:1.25em}.prose :where(dd):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:.5em;padding-inline-start:1.625em}.prose :where(hr+*):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:0}.prose :where(h2+*):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:0}.prose :where(h3+*):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:0}.prose :where(h4+*):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:0}.prose :where(thead th:first-child):not(:where([class~=not-prose],[class~=not-prose] *)){padding-inline-start:0}.prose :where(thead th:last-child):not(:where([class~=not-prose],[class~=not-prose] *)){padding-inline-end:0}.prose :where(tbody td,tfoot td):not(:where([class~=not-prose],[class~=not-prose] *)){padding-top:.5714286em;padding-inline-end:.5714286em;padding-bottom:.5714286em;padding-inline-start:.5714286em}.prose :where(tbody td:first-child,tfoot td:first-child):not(:where([class~=not-prose],[class~=not-prose] *)){padding-inline-start:0}.prose :where(tbody td:last-child,tfoot td:last-child):not(:where([class~=not-prose],[class~=not-prose] *)){padding-inline-end:0}.prose :where(figure):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:2em;margin-bottom:2em}.prose :where(.prose>:first-child):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:0}.prose :where(.prose>:last-child):not(:where([class~=not-prose],[class~=not-prose] *)){margin-bottom:0}.prose-sm{font-size:.875rem;line-height:1.7142857}.prose-sm :where(p):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.1428571em;margin-bottom:1.1428571em}.prose-sm :where([class~=lead]):not(:where([class~=not-prose],[class~=not-prose] *)){font-size:1.2857143em;line-height:1.5555556;margin-top:.8888889em;margin-bottom:.8888889em}.prose-sm :where(blockquote):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.3333333em;margin-bottom:1.3333333em;padding-inline-start:1.1111111em}.prose-sm :where(h1):not(:where([class~=not-prose],[class~=not-prose] *)){font-size:2.1428571em;margin-top:0;margin-bottom:.8em;line-height:1.2}.prose-sm :where(h2):not(:where([class~=not-prose],[class~=not-prose] *)){font-size:1.4285714em;margin-top:1.6em;margin-bottom:.8em;line-height:1.4}.prose-sm :where(h3):not(:where([class~=not-prose],[class~=not-prose] *)){font-size:1.2857143em;margin-top:1.5555556em;margin-bottom:.4444444em;line-height:1.5555556}.prose-sm :where(h4):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.4285714em;margin-bottom:.5714286em;line-height:1.4285714}.prose-sm :where(img):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.7142857em;margin-bottom:1.7142857em}.prose-sm :where(picture):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.7142857em;margin-bottom:1.7142857em}.prose-sm :where(picture>img):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:0;margin-bottom:0}.prose-sm :where(video):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.7142857em;margin-bottom:1.7142857em}.prose-sm :where(kbd):not(:where([class~=not-prose],[class~=not-prose] *)){font-size:.8571429em;border-radius:.3125rem;padding-top:.1428571em;padding-inline-end:.3571429em;padding-bottom:.1428571em;padding-inline-start:.3571429em}.prose-sm :where(code):not(:where([class~=not-prose],[class~=not-prose] *)){font-size:.8571429em}.prose-sm :where(h2 code):not(:where([class~=not-prose],[class~=not-prose] *)){font-size:.9em}.prose-sm :where(h3 code):not(:where([class~=not-prose],[class~=not-prose] *)){font-size:.8888889em}.prose-sm :where(pre):not(:where([class~=not-prose],[class~=not-prose] *)){font-size:.8571429em;line-height:1.6666667;margin-top:1.6666667em;margin-bottom:1.6666667em;border-radius:.25rem;padding-top:.6666667em;padding-inline-end:1em;padding-bottom:.6666667em;padding-inline-start:1em}.prose-sm :where(ol):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.1428571em;margin-bottom:1.1428571em;padding-inline-start:1.5714286em}.prose-sm :where(ul):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.1428571em;margin-bottom:1.1428571em;padding-inline-start:1.5714286em}.prose-sm :where(li):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:.2857143em;margin-bottom:.2857143em}.prose-sm :where(ol>li):not(:where([class~=not-prose],[class~=not-prose] *)){padding-inline-start:.4285714em}.prose-sm :where(ul>li):not(:where([class~=not-prose],[class~=not-prose] *)){padding-inline-start:.4285714em}.prose-sm :where(.prose-sm>ul>li p):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:.5714286em;margin-bottom:.5714286em}.prose-sm :where(.prose-sm>ul>li>p:first-child):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.1428571em}.prose-sm :where(.prose-sm>ul>li>p:last-child):not(:where([class~=not-prose],[class~=not-prose] *)){margin-bottom:1.1428571em}.prose-sm :where(.prose-sm>ol>li>p:first-child):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.1428571em}.prose-sm :where(.prose-sm>ol>li>p:last-child):not(:where([class~=not-prose],[class~=not-prose] *)){margin-bottom:1.1428571em}.prose-sm :where(ul ul,ul ol,ol ul,ol ol):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:.5714286em;margin-bottom:.5714286em}.prose-sm :where(dl):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.1428571em;margin-bottom:1.1428571em}.prose-sm :where(dt):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.1428571em}.prose-sm :where(dd):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:.2857143em;padding-inline-start:1.5714286em}.prose-sm :where(hr):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:2.8571429em;margin-bottom:2.8571429em}.prose-sm :where(hr+*):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:0}.prose-sm :where(h2+*):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:0}.prose-sm :where(h3+*):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:0}.prose-sm :where(h4+*):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:0}.prose-sm :where(table):not(:where([class~=not-prose],[class~=not-prose] *)){font-size:.8571429em;line-height:1.5}.prose-sm :where(thead th):not(:where([class~=not-prose],[class~=not-prose] *)){padding-inline-end:1em;padding-bottom:.6666667em;padding-inline-start:1em}.prose-sm :where(thead th:first-child):not(:where([class~=not-prose],[class~=not-prose] *)){padding-inline-start:0}.prose-sm :where(thead th:last-child):not(:where([class~=not-prose],[class~=not-prose] *)){padding-inline-end:0}.prose-sm :where(tbody td,tfoot td):not(:where([class~=not-prose],[class~=not-prose] *)){padding-top:.6666667em;padding-inline-end:1em;padding-bottom:.6666667em;padding-inline-start:1em}.prose-sm :where(tbody td:first-child,tfoot td:first-child):not(:where([class~=not-prose],[class~=not-prose] *)){padding-inline-start:0}.prose-sm :where(tbody td:last-child,tfoot td:last-child):not(:where([class~=not-prose],[class~=not-prose] *)){padding-inline-end:0}.prose-sm :where(figure):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.7142857em;margin-bottom:1.7142857em}.prose-sm :where(figure>*):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:0;margin-bottom:0}.prose-sm :where(figcaption):not(:where([class~=not-prose],[class~=not-prose] *)){font-size:.8571429em;line-height:1.3333333;margin-top:.6666667em}.prose-sm :where(.prose-sm>:first-child):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:0}.prose-sm :where(.prose-sm>:last-child):not(:where([class~=not-prose],[class~=not-prose] *)){margin-bottom:0}.dark .noise-overlay{opacity:.1;mix-blend-mode:screen}.highlight-marker{background:linear-gradient(104deg,rgb(var(--tertiary-fixed) / 0) .9%,rgb(var(--tertiary-fixed) / 1) 2.4%,rgb(var(--tertiary-fixed) / .5) 5.8%,rgb(var(--tertiary-fixed) / .1) 93%,rgb(var(--tertiary-fixed) / .7) 96%,rgb(var(--tertiary-fixed) / 0) 98%),linear-gradient(183deg,rgb(var(--tertiary-fixed) / 0),rgb(var(--tertiary-fixed) / .3) 7.9%,rgb(var(--tertiary-fixed) / 0) 15%);padding:.1em .3em}.shadow-callout{box-shadow:0 10px 40px #1d1c160f}.dark .shadow-callout{box-shadow:0 10px 40px #0006}input,textarea,select{font-size:max(16px,1em)}.pointer-events-none{pointer-events:none}.pointer-events-auto{pointer-events:auto}.visible{visibility:visible}.static{position:static}.fixed{position:fixed}.absolute{position:absolute}.relative{position:relative}.sticky{position:sticky}.inset-0{top:0;right:0;bottom:0;left:0}.inset-y-0{top:0;bottom:0}.bottom-0{bottom:0}.bottom-\[42px\]{bottom:42px}.left-0{left:0}.left-2\.5{left:.625rem}.left-3{left:.75rem}.right-0{right:0}.right-2{right:.5rem}.right-3{right:.75rem}.top-0{top:0}.top-1\/2{top:50%}.top-11{top:2.75rem}.top-3{top:.75rem}.z-20{z-index:20}.z-30{z-index:30}.z-40{z-index:40}.z-50{z-index:50}.m-auto{margin:auto}.-mx-2{margin-left:-.5rem;margin-right:-.5rem}.mx-2{margin-left:.5rem;margin-right:.5rem}.mx-auto{margin-left:auto;margin-right:auto}.my-1{margin-top:.25rem;margin-bottom:.25rem}.my-8{margin-top:2rem;margin-bottom:2rem}.mb-0\.5{margin-bottom:.125rem}.mb-1{margin-bottom:.25rem}.mb-1\.5{margin-bottom:.375rem}.mb-2{margin-bottom:.5rem}.mb-3{margin-bottom:.75rem}.mb-4{margin-bottom:1rem}.mb-5{margin-bottom:1.25rem}.mb-6{margin-bottom:1.5rem}.mb-8{margin-bottom:2rem}.ml-1{margin-left:.25rem}.ml-2{margin-left:.5rem}.ml-3{margin-left:.75rem}.ml-7{margin-left:1.75rem}.ml-\[79px\]{margin-left:79px}.ml-auto{margin-left:auto}.mr-1{margin-right:.25rem}.mt-0\.5{margin-top:.125rem}.mt-1{margin-top:.25rem}.mt-1\.5{margin-top:.375rem}.mt-2{margin-top:.5rem}.mt-3{margin-top:.75rem}.mt-8{margin-top:2rem}.mt-\[3px\]{margin-top:3px}.mt-\[6px\]{margin-top:6px}.mt-auto{margin-top:auto}.line-clamp-2{overflow:hidden;display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:2}.block{display:block}.inline-block{display:inline-block}.inline{display:inline}.flex{display:flex}.inline-flex{display:inline-flex}.table{display:table}.grid{display:grid}.hidden{display:none}.h-1{height:.25rem}.h-1\.5{height:.375rem}.h-11{height:2.75rem}.h-12{height:3rem}.h-2{height:.5rem}.h-2\.5{height:.625rem}.h-3{height:.75rem}.h-3\.5{height:.875rem}.h-4{height:1rem}.h-44{height:11rem}.h-5{height:1.25rem}.h-6{height:1.5rem}.h-7{height:1.75rem}.h-\[5px\]{height:5px}.h-full{height:100%}.h-px{height:1px}.h-screen{height:100vh}.max-h-48{max-height:12rem}.max-h-52{max-height:13rem}.max-h-80{max-height:20rem}.max-h-full{max-height:100%}.min-h-0{min-height:0px}.min-h-\[200px\]{min-height:200px}.min-h-\[360px\]{min-height:360px}.min-h-\[48px\]{min-height:48px}.w-1{width:.25rem}.w-1\.5{width:.375rem}.w-10{width:2.5rem}.w-12{width:3rem}.w-2{width:.5rem}.w-2\.5{width:.625rem}.w-24{width:6rem}.w-3{width:.75rem}.w-3\.5{width:.875rem}.w-4{width:1rem}.w-40{width:10rem}.w-44{width:11rem}.w-48{width:12rem}.w-5{width:1.25rem}.w-56{width:14rem}.w-6{width:1.5rem}.w-7{width:1.75rem}.w-72{width:18rem}.w-8{width:2rem}.w-96{width:24rem}.w-\[52px\]{width:52px}.w-\[5px\]{width:5px}.w-\[70px\]{width:70px}.w-\[min\(840px\,92vw\)\]{width:min(840px,92vw)}.w-full{width:100%}.min-w-0{min-width:0px}.max-w-2xl{max-width:42rem}.max-w-3xl{max-width:48rem}.max-w-4xl{max-width:56rem}.max-w-\[160px\]{max-width:160px}.max-w-\[260px\]{max-width:260px}.max-w-\[60\%\]{max-width:60%}.max-w-\[min\(36rem\,100\%\)\]{max-width:min(36rem,100%)}.max-w-full{max-width:100%}.max-w-lg{max-width:32rem}.max-w-md{max-width:28rem}.max-w-none{max-width:none}.max-w-sm{max-width:24rem}.max-w-xl{max-width:36rem}.max-w-xs{max-width:20rem}.flex-1{flex:1 1 0%}.flex-shrink-0,.shrink-0{flex-shrink:0}.-translate-x-1\/2{--tw-translate-x: -50%;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.-translate-x-full{--tw-translate-x: -100%;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.-translate-y-1\/2{--tw-translate-y: -50%;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.translate-x-0{--tw-translate-x: 0px;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.transform{transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}@keyframes pulse{50%{opacity:.5}}.animate-pulse{animation:pulse 2s cubic-bezier(.4,0,.6,1) infinite}@keyframes spin{to{transform:rotate(360deg)}}.animate-spin{animation:spin 1s linear infinite}.cursor-default{cursor:default}.cursor-pointer{cursor:pointer}.select-none{-webkit-user-select:none;-moz-user-select:none;user-select:none}.resize-none{resize:none}.resize-y{resize:vertical}.appearance-none{-webkit-appearance:none;-moz-appearance:none;appearance:none}.grid-cols-1{grid-template-columns:repeat(1,minmax(0,1fr))}.grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}.grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr))}.grid-cols-4{grid-template-columns:repeat(4,minmax(0,1fr))}.flex-col{flex-direction:column}.flex-wrap{flex-wrap:wrap}.items-start{align-items:flex-start}.items-end{align-items:flex-end}.items-center{align-items:center}.justify-end{justify-content:flex-end}.justify-center{justify-content:center}.justify-between{justify-content:space-between}.gap-0{gap:0px}.gap-0\.5{gap:.125rem}.gap-1{gap:.25rem}.gap-1\.5{gap:.375rem}.gap-2{gap:.5rem}.gap-2\.5{gap:.625rem}.gap-3{gap:.75rem}.gap-4{gap:1rem}.gap-5{gap:1.25rem}.gap-\[3px\]{gap:3px}.gap-x-3{-moz-column-gap:.75rem;column-gap:.75rem}.gap-y-1{row-gap:.25rem}.space-y-1>:not([hidden])~:not([hidden]){--tw-space-y-reverse: 0;margin-top:calc(.25rem * calc(1 - var(--tw-space-y-reverse)));margin-bottom:calc(.25rem * var(--tw-space-y-reverse))}.space-y-1\.5>:not([hidden])~:not([hidden]){--tw-space-y-reverse: 0;margin-top:calc(.375rem * calc(1 - var(--tw-space-y-reverse)));margin-bottom:calc(.375rem * var(--tw-space-y-reverse))}.space-y-2>:not([hidden])~:not([hidden]){--tw-space-y-reverse: 0;margin-top:calc(.5rem * calc(1 - var(--tw-space-y-reverse)));margin-bottom:calc(.5rem * var(--tw-space-y-reverse))}.space-y-2\.5>:not([hidden])~:not([hidden]){--tw-space-y-reverse: 0;margin-top:calc(.625rem * calc(1 - var(--tw-space-y-reverse)));margin-bottom:calc(.625rem * var(--tw-space-y-reverse))}.space-y-3>:not([hidden])~:not([hidden]){--tw-space-y-reverse: 0;margin-top:calc(.75rem * calc(1 - var(--tw-space-y-reverse)));margin-bottom:calc(.75rem * var(--tw-space-y-reverse))}.space-y-4>:not([hidden])~:not([hidden]){--tw-space-y-reverse: 0;margin-top:calc(1rem * calc(1 - var(--tw-space-y-reverse)));margin-bottom:calc(1rem * var(--tw-space-y-reverse))}.divide-y>:not([hidden])~:not([hidden]){--tw-divide-y-reverse: 0;border-top-width:calc(1px * calc(1 - var(--tw-divide-y-reverse)));border-bottom-width:calc(1px * var(--tw-divide-y-reverse))}.divide-outline\/10>:not([hidden])~:not([hidden]){border-color:rgb(var(--outline) / .1)}.self-start{align-self:flex-start}.self-end{align-self:flex-end}.overflow-auto{overflow:auto}.overflow-hidden{overflow:hidden}.overflow-x-auto{overflow-x:auto}.overflow-y-auto{overflow-y:auto}.truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.whitespace-pre-wrap{white-space:pre-wrap}.break-words{overflow-wrap:break-word}.break-all{word-break:break-all}.rounded{border-radius:.125rem}.rounded-full{border-radius:.75rem}.rounded-lg{border-radius:.25rem}.rounded-md{border-radius:.375rem}.rounded-sm{border-radius:.125rem}.rounded-xl{border-radius:.5rem}.border{border-width:1px}.border-0{border-width:0px}.border-2{border-width:2px}.border-b{border-bottom-width:1px}.border-l{border-left-width:1px}.border-l-2{border-left-width:2px}.border-r{border-right-width:1px}.border-t{border-top-width:1px}.border-amber-400\/20{border-color:#fbbf2433}.border-amber-800\/50{border-color:#92400e80}.border-error\/20{border-color:rgb(var(--error) / .2)}.border-info\/20{border-color:rgb(var(--info) / .2)}.border-outline-variant{--tw-border-opacity: 1;border-color:rgb(var(--outline-variant) / var(--tw-border-opacity, 1))}.border-outline-variant\/20{border-color:rgb(var(--outline-variant) / .2)}.border-outline-variant\/30{border-color:rgb(var(--outline-variant) / .3)}.border-outline-variant\/40{border-color:rgb(var(--outline-variant) / .4)}.border-outline\/20{border-color:rgb(var(--outline) / .2)}.border-primary\/20{border-color:rgb(var(--primary) / .2)}.border-primary\/40{border-color:rgb(var(--primary) / .4)}.border-red-800\/50{border-color:#991b1b80}.border-secondary\/30{border-color:rgb(var(--secondary) / .3)}.border-success\/20{border-color:rgb(var(--success) / .2)}.border-warning\/20{border-color:rgb(var(--warning) / .2)}.border-warning\/30{border-color:rgb(var(--warning) / .3)}.border-white\/\[0\.03\]{border-color:#ffffff08}.border-l-primary{--tw-border-opacity: 1;border-left-color:rgb(var(--primary) / var(--tw-border-opacity, 1))}.border-t-primary{--tw-border-opacity: 1;border-top-color:rgb(var(--primary) / var(--tw-border-opacity, 1))}.bg-amber-400\/10{background-color:#fbbf241a}.bg-amber-500\/20{background-color:#f59e0b33}.bg-amber-950\/40{background-color:#451a0366}.bg-background{--tw-bg-opacity: 1;background-color:rgb(var(--background) / var(--tw-bg-opacity, 1))}.bg-black\/50{background-color:#00000080}.bg-black\/60{background-color:#0009}.bg-blue-400{--tw-bg-opacity: 1;background-color:rgb(96 165 250 / var(--tw-bg-opacity, 1))}.bg-blue-400\/60{background-color:#60a5fa99}.bg-blue-500{--tw-bg-opacity: 1;background-color:rgb(59 130 246 / var(--tw-bg-opacity, 1))}.bg-blue-500\/10{background-color:#3b82f61a}.bg-blue-500\/5{background-color:#3b82f60d}.bg-current{background-color:currentColor}.bg-emerald-400{--tw-bg-opacity: 1;background-color:rgb(52 211 153 / var(--tw-bg-opacity, 1))}.bg-emerald-500{--tw-bg-opacity: 1;background-color:rgb(16 185 129 / var(--tw-bg-opacity, 1))}.bg-emerald-500\/10{background-color:#10b9811a}.bg-error{--tw-bg-opacity: 1;background-color:rgb(var(--error) / var(--tw-bg-opacity, 1))}.bg-error\/10{background-color:rgb(var(--error) / .1)}.bg-gray-500{--tw-bg-opacity: 1;background-color:rgb(107 114 128 / var(--tw-bg-opacity, 1))}.bg-gray-600{--tw-bg-opacity: 1;background-color:rgb(75 85 99 / var(--tw-bg-opacity, 1))}.bg-green-500{--tw-bg-opacity: 1;background-color:rgb(34 197 94 / var(--tw-bg-opacity, 1))}.bg-info{--tw-bg-opacity: 1;background-color:rgb(var(--info) / var(--tw-bg-opacity, 1))}.bg-info\/10{background-color:rgb(var(--info) / .1)}.bg-on-surface-variant\/30{background-color:rgb(var(--on-surface-variant) / .3)}.bg-outline{--tw-bg-opacity: 1;background-color:rgb(var(--outline) / var(--tw-bg-opacity, 1))}.bg-outline\/50{background-color:rgb(var(--outline) / .5)}.bg-outline\/60{background-color:rgb(var(--outline) / .6)}.bg-primary{--tw-bg-opacity: 1;background-color:rgb(var(--primary) / var(--tw-bg-opacity, 1))}.bg-primary-fixed{--tw-bg-opacity: 1;background-color:rgb(var(--primary-fixed) / var(--tw-bg-opacity, 1))}.bg-primary\/10{background-color:rgb(var(--primary) / .1)}.bg-primary\/15{background-color:rgb(var(--primary) / .15)}.bg-primary\/20{background-color:rgb(var(--primary) / .2)}.bg-primary\/25{background-color:rgb(var(--primary) / .25)}.bg-primary\/30{background-color:rgb(var(--primary) / .3)}.bg-primary\/40{background-color:rgb(var(--primary) / .4)}.bg-primary\/50{background-color:rgb(var(--primary) / .5)}.bg-red-400{--tw-bg-opacity: 1;background-color:rgb(248 113 113 / var(--tw-bg-opacity, 1))}.bg-red-500{--tw-bg-opacity: 1;background-color:rgb(239 68 68 / var(--tw-bg-opacity, 1))}.bg-red-500\/10{background-color:#ef44441a}.bg-red-500\/20{background-color:#ef444433}.bg-red-950\/15{background-color:#450a0a26}.bg-red-950\/30{background-color:#450a0a4d}.bg-red-950\/40{background-color:#450a0a66}.bg-secondary{--tw-bg-opacity: 1;background-color:rgb(var(--secondary) / var(--tw-bg-opacity, 1))}.bg-secondary-container{--tw-bg-opacity: 1;background-color:rgb(var(--secondary-container) / var(--tw-bg-opacity, 1))}.bg-secondary-container\/20{background-color:rgb(var(--secondary-container) / .2)}.bg-secondary\/15{background-color:rgb(var(--secondary) / .15)}.bg-secondary\/60{background-color:rgb(var(--secondary) / .6)}.bg-secondary\/70{background-color:rgb(var(--secondary) / .7)}.bg-success{--tw-bg-opacity: 1;background-color:rgb(var(--success) / var(--tw-bg-opacity, 1))}.bg-success\/10{background-color:rgb(var(--success) / .1)}.bg-success\/15{background-color:rgb(var(--success) / .15)}.bg-surface-container{--tw-bg-opacity: 1;background-color:rgb(var(--surface-container) / var(--tw-bg-opacity, 1))}.bg-surface-container-high{--tw-bg-opacity: 1;background-color:rgb(var(--surface-container-high) / var(--tw-bg-opacity, 1))}.bg-surface-container-highest{--tw-bg-opacity: 1;background-color:rgb(var(--surface-container-highest) / var(--tw-bg-opacity, 1))}.bg-surface-container-low{--tw-bg-opacity: 1;background-color:rgb(var(--surface-container-low) / var(--tw-bg-opacity, 1))}.bg-surface-container-lowest{--tw-bg-opacity: 1;background-color:rgb(var(--surface-container-lowest) / var(--tw-bg-opacity, 1))}.bg-surface-container-lowest\/50{background-color:rgb(var(--surface-container-lowest) / .5)}.bg-surface-container-lowest\/90{background-color:rgb(var(--surface-container-lowest) / .9)}.bg-surface-container\/30{background-color:rgb(var(--surface-container) / .3)}.bg-surface-container\/40{background-color:rgb(var(--surface-container) / .4)}.bg-tertiary-fixed{--tw-bg-opacity: 1;background-color:rgb(var(--tertiary-fixed) / var(--tw-bg-opacity, 1))}.bg-transparent{background-color:transparent}.bg-warning{--tw-bg-opacity: 1;background-color:rgb(var(--warning) / var(--tw-bg-opacity, 1))}.bg-warning\/10{background-color:rgb(var(--warning) / .1)}.bg-yellow-400\/30{background-color:#facc154d}.bg-yellow-500\/50{background-color:#eab30880}.object-contain{-o-object-fit:contain;object-fit:contain}.p-2{padding:.5rem}.p-2\.5{padding:.625rem}.p-3{padding:.75rem}.p-4{padding:1rem}.p-5{padding:1.25rem}.p-6{padding:1.5rem}.p-8{padding:2rem}.p-\[2px\]{padding:2px}.px-0{padding-left:0;padding-right:0}.px-0\.5{padding-left:.125rem;padding-right:.125rem}.px-1\.5{padding-left:.375rem;padding-right:.375rem}.px-2{padding-left:.5rem;padding-right:.5rem}.px-2\.5{padding-left:.625rem;padding-right:.625rem}.px-3{padding-left:.75rem;padding-right:.75rem}.px-4{padding-left:1rem;padding-right:1rem}.px-5{padding-left:1.25rem;padding-right:1.25rem}.px-6{padding-left:1.5rem;padding-right:1.5rem}.px-8{padding-left:2rem;padding-right:2rem}.px-\[12px\]{padding-left:12px;padding-right:12px}.py-0\.5{padding-top:.125rem;padding-bottom:.125rem}.py-1{padding-top:.25rem;padding-bottom:.25rem}.py-1\.5{padding-top:.375rem;padding-bottom:.375rem}.py-16{padding-top:4rem;padding-bottom:4rem}.py-2{padding-top:.5rem;padding-bottom:.5rem}.py-2\.5{padding-top:.625rem;padding-bottom:.625rem}.py-3{padding-top:.75rem;padding-bottom:.75rem}.py-4{padding-top:1rem;padding-bottom:1rem}.py-5{padding-top:1.25rem;padding-bottom:1.25rem}.py-6{padding-top:1.5rem;padding-bottom:1.5rem}.py-8{padding-top:2rem;padding-bottom:2rem}.py-\[1px\]{padding-top:1px;padding-bottom:1px}.py-\[2px\]{padding-top:2px;padding-bottom:2px}.py-\[4px\]{padding-top:4px;padding-bottom:4px}.py-\[5px\]{padding-top:5px;padding-bottom:5px}.py-\[6px\]{padding-top:6px;padding-bottom:6px}.py-\[7px\]{padding-top:7px;padding-bottom:7px}.pb-1{padding-bottom:.25rem}.pb-3{padding-bottom:.75rem}.pb-4{padding-bottom:1rem}.pl-8{padding-left:2rem}.pr-1{padding-right:.25rem}.pr-7{padding-right:1.75rem}.pt-0\.5{padding-top:.125rem}.pt-1{padding-top:.25rem}.pt-16{padding-top:4rem}.pt-2{padding-top:.5rem}.pt-20{padding-top:5rem}.pt-3{padding-top:.75rem}.pt-4{padding-top:1rem}.pt-8{padding-top:2rem}.text-left{text-align:left}.text-center{text-align:center}.text-right{text-align:right}.font-headline{font-family:"Noto Serif",Georgia,serif}.font-label{font-family:Space Grotesk,sans-serif}.font-mono{font-family:JetBrains Mono,monospace}.text-2xl{font-size:1.5rem;line-height:2rem}.text-3xl{font-size:1.875rem;line-height:2.25rem}.text-4xl{font-size:2.25rem;line-height:2.5rem}.text-\[10px\]{font-size:10px}.text-\[11px\]{font-size:11px}.text-\[12px\]{font-size:12px}.text-\[13px\]{font-size:13px}.text-\[15px\]{font-size:15px}.text-\[16px\]{font-size:16px}.text-\[17px\]{font-size:17px}.text-\[18px\]{font-size:18px}.text-\[20px\]{font-size:20px}.text-\[22px\]{font-size:22px}.text-\[32px\]{font-size:32px}.text-\[7px\]{font-size:7px}.text-\[8px\]{font-size:8px}.text-\[9px\]{font-size:9px}.text-lg{font-size:1.125rem;line-height:1.75rem}.text-sm{font-size:.875rem;line-height:1.25rem}.text-xl{font-size:1.25rem;line-height:1.75rem}.text-xs{font-size:.75rem;line-height:1rem}.font-bold{font-weight:700}.font-medium{font-weight:500}.font-semibold{font-weight:600}.uppercase{text-transform:uppercase}.lowercase{text-transform:lowercase}.italic{font-style:italic}.tabular-nums{--tw-numeric-spacing: tabular-nums;font-variant-numeric:var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction)}.leading-none{line-height:1}.leading-relaxed{line-height:1.625}.leading-snug{line-height:1.375}.leading-tight{line-height:1.25}.tracking-\[-0\.01em\]{letter-spacing:-.01em}.tracking-\[0\.08em\]{letter-spacing:.08em}.tracking-\[0\.14em\]{letter-spacing:.14em}.tracking-\[0\.15em\]{letter-spacing:.15em}.tracking-\[0\.18em\]{letter-spacing:.18em}.tracking-\[0\.1em\]{letter-spacing:.1em}.tracking-tight{letter-spacing:-.025em}.tracking-wide{letter-spacing:.025em}.tracking-wider{letter-spacing:.05em}.tracking-widest{letter-spacing:.1em}.text-amber-500\/30{color:#f59e0b4d}.text-amber-500\/60{color:#f59e0b99}.text-error{--tw-text-opacity: 1;color:rgb(var(--error) / var(--tw-text-opacity, 1))}.text-error\/30{color:rgb(var(--error) / .3)}.text-error\/40{color:rgb(var(--error) / .4)}.text-error\/50{color:rgb(var(--error) / .5)}.text-error\/60{color:rgb(var(--error) / .6)}.text-error\/70{color:rgb(var(--error) / .7)}.text-error\/80{color:rgb(var(--error) / .8)}.text-gray-500{--tw-text-opacity: 1;color:rgb(107 114 128 / var(--tw-text-opacity, 1))}.text-info{--tw-text-opacity: 1;color:rgb(var(--info) / var(--tw-text-opacity, 1))}.text-info\/60{color:rgb(var(--info) / .6)}.text-on-primary{--tw-text-opacity: 1;color:rgb(var(--on-primary) / var(--tw-text-opacity, 1))}.text-on-surface{--tw-text-opacity: 1;color:rgb(var(--on-surface) / var(--tw-text-opacity, 1))}.text-on-surface-variant{--tw-text-opacity: 1;color:rgb(var(--on-surface-variant) / var(--tw-text-opacity, 1))}.text-on-surface-variant\/20{color:rgb(var(--on-surface-variant) / .2)}.text-on-surface-variant\/25{color:rgb(var(--on-surface-variant) / .25)}.text-on-surface-variant\/30{color:rgb(var(--on-surface-variant) / .3)}.text-on-surface-variant\/35{color:rgb(var(--on-surface-variant) / .35)}.text-on-surface-variant\/40{color:rgb(var(--on-surface-variant) / .4)}.text-on-surface-variant\/50{color:rgb(var(--on-surface-variant) / .5)}.text-on-surface-variant\/60{color:rgb(var(--on-surface-variant) / .6)}.text-on-surface-variant\/70{color:rgb(var(--on-surface-variant) / .7)}.text-on-surface\/60{color:rgb(var(--on-surface) / .6)}.text-on-surface\/70{color:rgb(var(--on-surface) / .7)}.text-on-surface\/80{color:rgb(var(--on-surface) / .8)}.text-on-surface\/85{color:rgb(var(--on-surface) / .85)}.text-on-surface\/90{color:rgb(var(--on-surface) / .9)}.text-primary{--tw-text-opacity: 1;color:rgb(var(--primary) / var(--tw-text-opacity, 1))}.text-primary\/40{color:rgb(var(--primary) / .4)}.text-primary\/50{color:rgb(var(--primary) / .5)}.text-primary\/60{color:rgb(var(--primary) / .6)}.text-primary\/70{color:rgb(var(--primary) / .7)}.text-red-400{--tw-text-opacity: 1;color:rgb(248 113 113 / var(--tw-text-opacity, 1))}.text-secondary{--tw-text-opacity: 1;color:rgb(var(--secondary) / var(--tw-text-opacity, 1))}.text-secondary\/70{color:rgb(var(--secondary) / .7)}.text-secondary\/80{color:rgb(var(--secondary) / .8)}.text-success{--tw-text-opacity: 1;color:rgb(var(--success) / var(--tw-text-opacity, 1))}.text-transparent{color:transparent}.text-warning{--tw-text-opacity: 1;color:rgb(var(--warning) / var(--tw-text-opacity, 1))}.text-warning\/30{color:rgb(var(--warning) / .3)}.text-warning\/50{color:rgb(var(--warning) / .5)}.text-warning\/60{color:rgb(var(--warning) / .6)}.text-warning\/80{color:rgb(var(--warning) / .8)}.text-yellow-200{--tw-text-opacity: 1;color:rgb(254 240 138 / var(--tw-text-opacity, 1))}.placeholder-on-surface-variant::-moz-placeholder{--tw-placeholder-opacity: 1;color:rgb(var(--on-surface-variant) / var(--tw-placeholder-opacity, 1))}.placeholder-on-surface-variant::placeholder{--tw-placeholder-opacity: 1;color:rgb(var(--on-surface-variant) / var(--tw-placeholder-opacity, 1))}.opacity-0{opacity:0}.opacity-10{opacity:.1}.opacity-30{opacity:.3}.opacity-40{opacity:.4}.opacity-50{opacity:.5}.opacity-60{opacity:.6}.opacity-90{opacity:.9}.shadow{--tw-shadow: 0 1px 3px 0 rgb(0 0 0 / .1), 0 1px 2px -1px rgb(0 0 0 / .1);--tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000),var(--tw-ring-shadow, 0 0 #0000),var(--tw-shadow)}.shadow-2xl{--tw-shadow: 0 25px 50px -12px rgb(0 0 0 / .25);--tw-shadow-colored: 0 25px 50px -12px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000),var(--tw-ring-shadow, 0 0 #0000),var(--tw-shadow)}.shadow-callout{--tw-shadow: 0 10px 40px rgba(29, 28, 22, .06);--tw-shadow-colored: 0 10px 40px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000),var(--tw-ring-shadow, 0 0 #0000),var(--tw-shadow)}.shadow-sm{--tw-shadow: 0 1px 2px 0 rgb(0 0 0 / .05);--tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000),var(--tw-ring-shadow, 0 0 #0000),var(--tw-shadow)}.outline-none{outline:2px solid transparent;outline-offset:2px}.ring{--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow, 0 0 #0000)}.ring-1{--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow, 0 0 #0000)}.ring-2{--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow, 0 0 #0000)}.ring-primary\/30{--tw-ring-color: rgb(var(--primary) / .3)}.ring-primary\/60{--tw-ring-color: rgb(var(--primary) / .6)}.blur{--tw-blur: blur(8px);filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)}.filter{filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)}.backdrop-blur-sm{--tw-backdrop-blur: blur(4px);-webkit-backdrop-filter:var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);backdrop-filter:var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia)}.transition{transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.transition-\[grid-template-rows\]{transition-property:grid-template-rows;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.transition-all{transition-property:all;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.transition-colors{transition-property:color,background-color,border-color,text-decoration-color,fill,stroke;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.transition-opacity{transition-property:opacity;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.transition-shadow{transition-property:box-shadow;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.transition-transform{transition-property:transform;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.duration-150{transition-duration:.15s}.duration-200{transition-duration:.2s}.duration-300{transition-duration:.3s}.duration-500{transition-duration:.5s}.ease-in-out{transition-timing-function:cubic-bezier(.4,0,.2,1)}@keyframes heartbeat-dot{0%,60%,to{transform:translateY(0);opacity:.4}30%{transform:translateY(-4px);opacity:1}}.hover\:shadow-callout:hover{box-shadow:0 10px 40px #1d1c160f}.dark .hover\:shadow-callout:hover{box-shadow:0 10px 40px #0006}.dark\:prose-invert:is(.dark *){--tw-prose-body: var(--tw-prose-invert-body);--tw-prose-headings: var(--tw-prose-invert-headings);--tw-prose-lead: var(--tw-prose-invert-lead);--tw-prose-links: var(--tw-prose-invert-links);--tw-prose-bold: var(--tw-prose-invert-bold);--tw-prose-counters: var(--tw-prose-invert-counters);--tw-prose-bullets: var(--tw-prose-invert-bullets);--tw-prose-hr: var(--tw-prose-invert-hr);--tw-prose-quotes: var(--tw-prose-invert-quotes);--tw-prose-quote-borders: var(--tw-prose-invert-quote-borders);--tw-prose-captions: var(--tw-prose-invert-captions);--tw-prose-kbd: var(--tw-prose-invert-kbd);--tw-prose-kbd-shadows: var(--tw-prose-invert-kbd-shadows);--tw-prose-code: var(--tw-prose-invert-code);--tw-prose-pre-code: var(--tw-prose-invert-pre-code);--tw-prose-pre-bg: var(--tw-prose-invert-pre-bg);--tw-prose-th-borders: var(--tw-prose-invert-th-borders);--tw-prose-td-borders: var(--tw-prose-invert-td-borders)}.placeholder\:italic::-moz-placeholder{font-style:italic}.placeholder\:italic::placeholder{font-style:italic}.placeholder\:text-on-surface-variant::-moz-placeholder{--tw-text-opacity: 1;color:rgb(var(--on-surface-variant) / var(--tw-text-opacity, 1))}.placeholder\:text-on-surface-variant::placeholder{--tw-text-opacity: 1;color:rgb(var(--on-surface-variant) / var(--tw-text-opacity, 1))}.placeholder\:text-on-surface-variant\/25::-moz-placeholder{color:rgb(var(--on-surface-variant) / .25)}.placeholder\:text-on-surface-variant\/25::placeholder{color:rgb(var(--on-surface-variant) / .25)}.placeholder\:text-on-surface-variant\/40::-moz-placeholder{color:rgb(var(--on-surface-variant) / .4)}.placeholder\:text-on-surface-variant\/40::placeholder{color:rgb(var(--on-surface-variant) / .4)}.placeholder\:text-on-surface-variant\/50::-moz-placeholder{color:rgb(var(--on-surface-variant) / .5)}.placeholder\:text-on-surface-variant\/50::placeholder{color:rgb(var(--on-surface-variant) / .5)}.placeholder\:text-on-surface-variant\/60::-moz-placeholder{color:rgb(var(--on-surface-variant) / .6)}.placeholder\:text-on-surface-variant\/60::placeholder{color:rgb(var(--on-surface-variant) / .6)}.last\:border-0:last-child{border-width:0px}.hover\:border-outline:hover{--tw-border-opacity: 1;border-color:rgb(var(--outline) / var(--tw-border-opacity, 1))}.hover\:border-primary\/40:hover{border-color:rgb(var(--primary) / .4)}.hover\:bg-error\/10:hover{background-color:rgb(var(--error) / .1)}.hover\:bg-primary\/10:hover{background-color:rgb(var(--primary) / .1)}.hover\:bg-primary\/20:hover{background-color:rgb(var(--primary) / .2)}.hover\:bg-primary\/25:hover{background-color:rgb(var(--primary) / .25)}.hover\:bg-primary\/30:hover{background-color:rgb(var(--primary) / .3)}.hover\:bg-primary\/80:hover{background-color:rgb(var(--primary) / .8)}.hover\:bg-primary\/90:hover{background-color:rgb(var(--primary) / .9)}.hover\:bg-red-500\/30:hover{background-color:#ef44444d}.hover\:bg-red-950\/20:hover{background-color:#450a0a33}.hover\:bg-red-950\/30:hover{background-color:#450a0a4d}.hover\:bg-red-950\/50:hover{background-color:#450a0a80}.hover\:bg-surface-container:hover{--tw-bg-opacity: 1;background-color:rgb(var(--surface-container) / var(--tw-bg-opacity, 1))}.hover\:bg-surface-container-highest:hover{--tw-bg-opacity: 1;background-color:rgb(var(--surface-container-highest) / var(--tw-bg-opacity, 1))}.hover\:bg-surface-container-lowest:hover{--tw-bg-opacity: 1;background-color:rgb(var(--surface-container-lowest) / var(--tw-bg-opacity, 1))}.hover\:bg-surface-container-lowest\/50:hover{background-color:rgb(var(--surface-container-lowest) / .5)}.hover\:bg-surface-container\/40:hover{background-color:rgb(var(--surface-container) / .4)}.hover\:bg-surface-container\/50:hover{background-color:rgb(var(--surface-container) / .5)}.hover\:bg-surface-tint:hover{--tw-bg-opacity: 1;background-color:rgb(var(--surface-tint) / var(--tw-bg-opacity, 1))}.hover\:bg-white\/\[0\.02\]:hover{background-color:#ffffff05}.hover\:\!text-error:hover{--tw-text-opacity: 1 !important;color:rgb(var(--error) / var(--tw-text-opacity, 1))!important}.hover\:text-error:hover{--tw-text-opacity: 1;color:rgb(var(--error) / var(--tw-text-opacity, 1))}.hover\:text-error\/60:hover{color:rgb(var(--error) / .6)}.hover\:text-error\/70:hover{color:rgb(var(--error) / .7)}.hover\:text-on-surface:hover{--tw-text-opacity: 1;color:rgb(var(--on-surface) / var(--tw-text-opacity, 1))}.hover\:text-on-surface-variant:hover{--tw-text-opacity: 1;color:rgb(var(--on-surface-variant) / var(--tw-text-opacity, 1))}.hover\:text-on-surface-variant\/60:hover{color:rgb(var(--on-surface-variant) / .6)}.hover\:text-on-surface-variant\/70:hover{color:rgb(var(--on-surface-variant) / .7)}.hover\:text-primary:hover{--tw-text-opacity: 1;color:rgb(var(--primary) / var(--tw-text-opacity, 1))}.hover\:text-primary\/70:hover{color:rgb(var(--primary) / .7)}.hover\:text-primary\/80:hover{color:rgb(var(--primary) / .8)}.hover\:text-primary\/90:hover{color:rgb(var(--primary) / .9)}.hover\:text-surface-tint:hover{--tw-text-opacity: 1;color:rgb(var(--surface-tint) / var(--tw-text-opacity, 1))}.hover\:opacity-80:hover{opacity:.8}.hover\:opacity-90:hover{opacity:.9}.hover\:shadow-callout:hover{--tw-shadow: 0 10px 40px rgba(29, 28, 22, .06);--tw-shadow-colored: 0 10px 40px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000),var(--tw-ring-shadow, 0 0 #0000),var(--tw-shadow)}.hover\:shadow-md:hover{--tw-shadow: 0 4px 6px -1px rgb(0 0 0 / .1), 0 2px 4px -2px rgb(0 0 0 / .1);--tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000),var(--tw-ring-shadow, 0 0 #0000),var(--tw-shadow)}.hover\:brightness-110:hover{--tw-brightness: brightness(1.1);filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)}.focus\:border-primary:focus{--tw-border-opacity: 1;border-color:rgb(var(--primary) / var(--tw-border-opacity, 1))}.focus\:outline-none:focus{outline:2px solid transparent;outline-offset:2px}.focus\:ring-1:focus{--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow, 0 0 #0000)}.focus\:ring-2:focus{--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow, 0 0 #0000)}.focus\:ring-primary\/20:focus{--tw-ring-color: rgb(var(--primary) / .2)}.focus\:ring-primary\/25:focus{--tw-ring-color: rgb(var(--primary) / .25)}.focus\:ring-primary\/30:focus{--tw-ring-color: rgb(var(--primary) / .3)}.focus\:ring-primary\/40:focus{--tw-ring-color: rgb(var(--primary) / .4)}.active\:scale-\[0\.98\]:active{--tw-scale-x: .98;--tw-scale-y: .98;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.disabled\:pointer-events-none:disabled{pointer-events:none}.disabled\:cursor-default:disabled{cursor:default}.disabled\:cursor-not-allowed:disabled{cursor:not-allowed}.disabled\:opacity-20:disabled{opacity:.2}.disabled\:opacity-30:disabled{opacity:.3}.disabled\:opacity-40:disabled{opacity:.4}.disabled\:opacity-50:disabled{opacity:.5}.group:hover .group-hover\:text-on-surface-variant\/70{color:rgb(var(--on-surface-variant) / .7)}.group:hover .group-hover\:text-on-surface\/90{color:rgb(var(--on-surface) / .9)}.group:hover .group-hover\:opacity-100{opacity:1}.group:hover .group-hover\:opacity-80{opacity:.8}.prose-headings\:mb-1 :is(:where(h1,h2,h3,h4,h5,h6,th):not(:where([class~=not-prose],[class~=not-prose] *))){margin-bottom:.25rem}.prose-headings\:mt-3 :is(:where(h1,h2,h3,h4,h5,h6,th):not(:where([class~=not-prose],[class~=not-prose] *))){margin-top:.75rem}.prose-p\:my-1 :is(:where(p):not(:where([class~=not-prose],[class~=not-prose] *))){margin-top:.25rem;margin-bottom:.25rem}.prose-a\:text-secondary :is(:where(a):not(:where([class~=not-prose],[class~=not-prose] *))){--tw-text-opacity: 1;color:rgb(var(--secondary) / var(--tw-text-opacity, 1))}.prose-strong\:text-on-surface :is(:where(strong):not(:where([class~=not-prose],[class~=not-prose] *))){--tw-text-opacity: 1;color:rgb(var(--on-surface) / var(--tw-text-opacity, 1))}.prose-code\:rounded :is(:where(code):not(:where([class~=not-prose],[class~=not-prose] *))){border-radius:.125rem}.prose-code\:bg-surface-dim :is(:where(code):not(:where([class~=not-prose],[class~=not-prose] *))){--tw-bg-opacity: 1;background-color:rgb(var(--surface-dim) / var(--tw-bg-opacity, 1))}.prose-code\:px-1 :is(:where(code):not(:where([class~=not-prose],[class~=not-prose] *))){padding-left:.25rem;padding-right:.25rem}.prose-code\:text-xs :is(:where(code):not(:where([class~=not-prose],[class~=not-prose] *))){font-size:.75rem;line-height:1rem}.prose-pre\:bg-surface-dim :is(:where(pre):not(:where([class~=not-prose],[class~=not-prose] *))){--tw-bg-opacity: 1;background-color:rgb(var(--surface-dim) / var(--tw-bg-opacity, 1))}.prose-pre\:text-xs :is(:where(pre):not(:where([class~=not-prose],[class~=not-prose] *))){font-size:.75rem;line-height:1rem}.prose-ol\:my-1 :is(:where(ol):not(:where([class~=not-prose],[class~=not-prose] *))){margin-top:.25rem;margin-bottom:.25rem}.prose-ul\:my-1 :is(:where(ul):not(:where([class~=not-prose],[class~=not-prose] *))){margin-top:.25rem;margin-bottom:.25rem}.prose-li\:my-0 :is(:where(li):not(:where([class~=not-prose],[class~=not-prose] *))){margin-top:0;margin-bottom:0}.prose-table\:w-full :is(:where(table):not(:where([class~=not-prose],[class~=not-prose] *))){width:100%}.prose-table\:border-collapse :is(:where(table):not(:where([class~=not-prose],[class~=not-prose] *))){border-collapse:collapse}.prose-table\:text-xs :is(:where(table):not(:where([class~=not-prose],[class~=not-prose] *))){font-size:.75rem;line-height:1rem}.prose-th\:border :is(:where(th):not(:where([class~=not-prose],[class~=not-prose] *))){border-width:1px}.prose-th\:border-outline-variant\/40 :is(:where(th):not(:where([class~=not-prose],[class~=not-prose] *))){border-color:rgb(var(--outline-variant) / .4)}.prose-th\:bg-surface-dim :is(:where(th):not(:where([class~=not-prose],[class~=not-prose] *))){--tw-bg-opacity: 1;background-color:rgb(var(--surface-dim) / var(--tw-bg-opacity, 1))}.prose-th\:px-2 :is(:where(th):not(:where([class~=not-prose],[class~=not-prose] *))){padding-left:.5rem;padding-right:.5rem}.prose-th\:py-1 :is(:where(th):not(:where([class~=not-prose],[class~=not-prose] *))){padding-top:.25rem;padding-bottom:.25rem}.prose-th\:text-left :is(:where(th):not(:where([class~=not-prose],[class~=not-prose] *))){text-align:left}.prose-th\:font-medium :is(:where(th):not(:where([class~=not-prose],[class~=not-prose] *))){font-weight:500}.prose-td\:border :is(:where(td):not(:where([class~=not-prose],[class~=not-prose] *))){border-width:1px}.prose-td\:border-outline-variant\/40 :is(:where(td):not(:where([class~=not-prose],[class~=not-prose] *))){border-color:rgb(var(--outline-variant) / .4)}.prose-td\:px-2 :is(:where(td):not(:where([class~=not-prose],[class~=not-prose] *))){padding-left:.5rem;padding-right:.5rem}.prose-td\:py-1 :is(:where(td):not(:where([class~=not-prose],[class~=not-prose] *))){padding-top:.25rem;padding-bottom:.25rem}@media (min-width: 640px){.sm\:mb-8{margin-bottom:2rem}.sm\:inline{display:inline}.sm\:w-auto{width:auto}.sm\:grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}.sm\:grid-cols-4{grid-template-columns:repeat(4,minmax(0,1fr))}.sm\:grid-cols-\[1fr\,180px\]{grid-template-columns:1fr 180px}.sm\:flex-row{flex-direction:row}.sm\:items-start{align-items:flex-start}.sm\:items-center{align-items:center}.sm\:justify-between{justify-content:space-between}.sm\:p-3{padding:.75rem}.sm\:p-4{padding:1rem}.sm\:p-5{padding:1.25rem}.sm\:p-6{padding:1.5rem}.sm\:px-3{padding-left:.75rem;padding-right:.75rem}.sm\:px-5{padding-left:1.25rem;padding-right:1.25rem}.sm\:py-8{padding-top:2rem;padding-bottom:2rem}.sm\:text-4xl{font-size:2.25rem;line-height:2.5rem}.sm\:opacity-0{opacity:0}.group:hover .sm\:group-hover\:opacity-100{opacity:1}}@media (min-width: 768px){.md\:static{position:static}.md\:inline{display:inline}.md\:flex{display:flex}.md\:hidden{display:none}.md\:translate-x-0{--tw-translate-x: 0px;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.md\:gap-5{gap:1.25rem}.md\:bg-transparent{background-color:transparent}}