/* Tasklane board layout. Classes translate the prototype's inline styles into a
   reusable stylesheet; board.js only toggles classes / fills containers. */

.app {
  display: flex;
  height: 100vh;
  width: 100vw;
  overflow: hidden;
}

/* ---------- Sidebar ---------- */
.sidebar {
  width: 250px;
  flex-shrink: 0;
  background: var(--sidebar);
  border-right: 1px solid #18181b;
  display: flex;
  flex-direction: column;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 18px 14px;
  border-bottom: 1px solid var(--border-soft);
}
.brand-mark {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.06) inset;
}
.brand-mark-dot {
  width: 8px;
  height: 8px;
  background: var(--bg);
  border-radius: 2px;
}
.brand-name {
  font-weight: 600;
  font-size: 14.5px;
  letter-spacing: -0.02em;
}

.nav {
  flex: 1;
  overflow-y: auto;
  padding: 12px 10px;
}
.nav-section {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--dim-4);
  padding: 16px 8px 4px;
}
.nav-section:first-child {
  padding-top: 6px;
}

/* A real <a> so views can be opened in a new tab and focused by keyboard. */
.nav-row {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 7px 8px;
  margin: 1px 0;
  border-radius: 7px;
  cursor: pointer;
  font-size: 13.5px;
  color: var(--muted);
  text-decoration: none;
}
.nav-row:focus-visible {
  outline: 2px solid var(--text-strong);
  outline-offset: -2px;
}
.nav-row:hover {
  background: #111114;
}
.nav-row.active {
  background: var(--hover-2);
  color: var(--text-strong);
  font-weight: 500;
}
.nav-glyph {
  width: 16px;
  text-align: center;
  font-size: 12px;
  color: var(--dim-2);
  font-family: var(--mono);
}
/* The Completed row draws the tick rather than typing it — stroke and colour
   come from the shared .check rule and the row's own colour. */
.nav-glyph .check {
  width: 12px;
  height: 12px;
  vertical-align: -1px;
}
.nav-row.active .nav-glyph {
  color: var(--text-strong);
}
.nav-label {
  flex: 1;
}
.nav-label.mono {
  font-family: var(--mono);
  font-size: 12.5px;
}
.nav-dot {
  width: 8px;
  height: 8px;
}
.nav-count {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--dim-4);
}
.nav-row.active .nav-count {
  color: var(--muted);
}

.user-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-top: 1px solid var(--border-soft);
  font-size: 11.5px;
}
.user-name {
  color: var(--muted-2);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.logout-btn {
  margin-left: auto;
  flex-shrink: 0;
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  font-size: 11px;
  color: var(--dim-3);
  cursor: pointer;
}
.logout-btn:hover {
  color: var(--text-title);
}

/* One way in to the keyboard map, rather than a legend restating it. */
.sidebar-foot {
  padding: 10px;
  border-top: 1px solid var(--border-soft);
}
.help-btn {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 8px;
  border: none;
  border-radius: 7px;
  background: none;
  font: inherit;
  font-size: 12px;
  color: var(--muted-2);
  cursor: pointer;
}
.help-btn kbd {
  margin-left: auto;
}
.help-btn:hover {
  background: #111114;
  color: var(--text);
}
.help-btn:focus-visible {
  outline: 2px solid var(--text-strong);
  outline-offset: -2px;
}

/* ---------- Main ---------- */
.main {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  background: var(--bg);
}

.board-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 22px 14px;
  border-bottom: 1px solid var(--border-soft);
  flex-shrink: 0;
}
.board-title-wrap {
  display: flex;
  align-items: baseline;
  gap: 10px;
  min-width: 0;
}
.board-title {
  margin: 0;
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.02em;
  white-space: nowrap;
}
.board-count {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--dim-2);
}
.header-actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 10px;
}
.search-box {
  display: flex;
  align-items: center;
  gap: 7px;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 7px;
  padding: 0 9px;
  height: 31px;
}
.search-icon {
  color: var(--dim-3);
  font-size: 13px;
}
.search-input {
  background: transparent;
  border: none;
  outline: none;
  color: var(--text);
  font-size: 13px;
  width: 140px;
}
.select-btn {
  height: 31px;
  padding: 0 12px;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 7px;
  color: #b4b4bb;
  font-size: 12.5px;
  cursor: pointer;
  font-family: inherit;
}
.select-btn.active {
  background: var(--text-strong);
  border-color: var(--text-strong);
  color: var(--bg);
  font-weight: 500;
}

/* ---------- Quick add ---------- */
.quickadd-wrap {
  padding: 12px 22px 10px;
  border-bottom: 1px solid var(--border-hair);
  flex-shrink: 0;
}
.quickadd {
  display: flex;
  align-items: center;
  gap: 11px;
  background: var(--panel);
  border: 1px solid var(--chip-border);
  border-radius: 9px;
  padding: 0 14px;
  height: 44px;
}
.quickadd-plus {
  color: var(--text-strong);
  font-size: 17px;
  line-height: 1;
}
.quickadd-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: var(--text);
  font-size: 14.5px;
}
.quickadd-enter {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--dim-4);
  border: 1px solid #26262b;
  border-radius: 4px;
  padding: 2px 6px;
}
.parse-preview {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 9px 4px 2px;
  flex-wrap: wrap;
}
.parse-preview-label {
  font-family: var(--mono);
  font-size: 10.5px;
  color: var(--dim-3);
  letter-spacing: 0.05em;
}
.chip {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted-2);
  background: var(--panel-2);
  border: 1px solid var(--chip-border);
  border-radius: 5px;
  padding: 2px 7px;
}
.chip.chip-due {
  color: var(--text);
}
.chip.chip-p1 {
  color: var(--pri-low);
}
.chip.chip-p2 {
  color: var(--pri-med);
}
.chip.chip-p3 {
  color: var(--pri-high);
}

/* ---------- Task list ---------- */
.board-scroll {
  flex: 1;
  overflow-y: auto;
  position: relative;
}
.task-list {
  padding: 6px 0 90px;
}

.group-head {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 15px 22px 7px;
}
.group-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.group-count {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--dim-4);
}
.group-rule {
  flex: 1;
  height: 1px;
  background: #151517;
}

.task {
  border-top: 1px solid var(--border-hair);
}
.task-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 22px;
  cursor: default;
}
.task-row:hover {
  background: var(--hover);
}
.task.selected .task-row {
  background: rgba(255, 255, 255, 0.05);
}
.task.selected .task-row:hover {
  background: rgba(255, 255, 255, 0.07);
}

/* The tick and the chevron are stroked paths (checkIcon/chevronIcon in
   board.js), so their weight and proportions are ours rather than the font's.
   non-scaling-stroke pins the stroke to 1.35 *screen* pixels whatever the icon's
   box: without it the width scales with the box, and the 8px subtask tick came
   out at 1.07px against the chevron's 1.5px — the same icon set at two weights,
   a few pixels apart. Round caps keep the ends clean at fractional DPRs. */
.check,
.chev {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.35;
  vector-effect: non-scaling-stroke;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

/* Shape carries the meaning. A square is a checkbox — "is this row picked for
   the next command?" — and every circle on the board is a completion control.
   While multi-selecting the two sit in the same row, and as empty outlines they
   were previously the same object drawn twice. */
.sel-box {
  width: 14px;
  height: 14px;
  border-radius: 3px;
  border: 1.5px solid #3a3a40;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
}
.task.selected .sel-box {
  border-color: var(--text-strong);
  background: var(--text-strong);
}
.sel-box .check {
  width: 9px;
  height: 9px;
  color: var(--bg);
}

/* 18px, matching the tallest real content (title, chips, badge). At 20px this
   chevron — invisible on tasks with no subtasks — was what set the row height. */
.disc {
  width: 14px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dim);
  flex-shrink: 0;
}
/* A little larger than the 9px glyph it replaces. One path, turned a quarter
   turn to point down when open; stroke comes from the shared .check/.chev rule. */
.chev {
  width: 12px;
  height: 12px;
}
.task.expanded .chev {
  transform: rotate(90deg);
}
.disc.has-sub {
  cursor: pointer;
}
.task.expanded .disc {
  color: var(--text-title);
}
/* Tasks with no subtasks: the chevron is revealed on row hover (or while
   expanded) so the board stays clean but the add-subtask affordance is reachable. */
.disc-empty {
  opacity: 0;
  transition: opacity 0.12s;
}
.task-row:hover .disc-empty,
.task.expanded .disc-empty {
  opacity: 1;
}

.pri-hit {
  display: flex;
  align-items: center;
  padding: 3px;
  margin: 0 -3px;
  cursor: pointer;
  flex-shrink: 0;
}
.pri-dot {
  width: 8px;
  height: 8px;
}
.pri-dot.p0 {
  opacity: 0.5;
}

/* Sized against the text it sits beside, not by eye: the 14px title has a 10px
   cap height, so 17px made the control 1.7x the letters and nearly the full line
   box. 15px keeps it clearly a control without out-weighing the task's name. */
.circle {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: 1.5px solid #3d3d43;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
}
.task.done .circle {
  border-color: var(--done);
  background: var(--done);
}
.circle .check {
  width: 10px;
  height: 10px;
  color: var(--bg);
}

.task-main {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.task-title {
  font-size: 14px;
  color: var(--text-title);
  cursor: text;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}
.task.done .task-title {
  color: #57575e;
  text-decoration: line-through;
}
.task-edit {
  flex: 1;
  background: var(--edit-bg);
  border: 1px solid var(--edit-border);
  border-radius: 5px;
  color: #fff;
  font-size: 14px;
  padding: 3px 7px;
  outline: none;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted-2);
  background: var(--panel-2);
  border: 1px solid var(--chip-border);
  border-radius: 4px;
  padding: 1px 4px 1px 6px;
  white-space: nowrap;
  flex-shrink: 0;
}
.tag-x {
  cursor: pointer;
  color: var(--dim-3);
  font-size: 13px;
  line-height: 1;
}
.tag-x:hover {
  color: var(--danger);
}
.tag-input {
  width: 72px;
  background: var(--panel-2);
  border: 1px solid var(--edit-border);
  border-radius: 4px;
  color: var(--text);
  font-family: var(--mono);
  font-size: 11px;
  padding: 1px 6px;
  outline: none;
  flex-shrink: 0;
}
.add-chip {
  cursor: pointer;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--dim-3);
  border: 1px dashed #2a2a2e;
  border-radius: 4px;
  padding: 1px 6px;
  white-space: nowrap;
  flex-shrink: 0;
}
.add-chip:hover {
  color: var(--muted-2);
  border-color: #3a3a40;
}

.sub-badge {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted-2);
  background: var(--border-hair);
  border: 1px solid var(--chip-border);
  border-radius: 4px;
  padding: 1px 7px;
  cursor: pointer;
  flex-shrink: 0;
  white-space: nowrap;
}
/* Filled when every subtask is done — the same outline-to-filled move the
   circles make. It used to say so in green; grey text alone said nothing,
   because the badge's normal colour is already that grey. */
.sub-badge.complete {
  background: var(--done);
  border-color: var(--done);
  color: var(--bg);
}

.due {
  font-family: var(--mono);
  font-size: 12px;
  flex-shrink: 0;
  white-space: nowrap;
  min-width: 52px;
  text-align: right;
  cursor: pointer;
  color: var(--dim);
}
.due-add {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--dim-3);
  border: 1px dashed #2a2a2e;
  border-radius: 4px;
  padding: 1px 6px;
  cursor: pointer;
  flex-shrink: 0;
  white-space: nowrap;
}
.due-add:hover {
  color: var(--muted-2);
  border-color: #3a3a40;
}

.del {
  cursor: pointer;
  color: var(--dim-2);
  font-size: 16px;
  line-height: 1;
  opacity: 0.35;
  transition: opacity 0.12s;
  flex-shrink: 0;
  margin-left: 2px;
}
.del:hover {
  color: var(--danger);
  opacity: 1;
}

/* ---------- Subtasks ---------- */
.subtasks {
  padding: 2px 22px 8px 96px;
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.subtask {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
}
.sub-box {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  border: 1.5px solid #3a3a40;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
}
.subtask.done .sub-box {
  border-color: var(--done);
  background: var(--done);
}
.sub-box .check {
  width: 8px;
  height: 8px;
  color: var(--bg);
}
.sub-title {
  font-size: 13px;
  color: #a8a8ae;
  cursor: text;
}
.subtask.done .sub-title {
  color: #57575e;
  text-decoration: line-through;
}
.sub-del {
  margin-left: auto;
  cursor: pointer;
  color: var(--dim-2);
  font-size: 14px;
  line-height: 1;
  opacity: 0;
  transition: opacity 0.12s;
  flex-shrink: 0;
}
.subtask:hover .sub-del {
  opacity: 0.5;
}
.sub-del:hover {
  color: var(--danger);
  opacity: 1;
}
.sub-add {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 5px 0;
  color: var(--dim-2);
  font-size: 12.5px;
  cursor: pointer;
}
.sub-add:hover {
  color: var(--muted-2);
}
.sub-add .plus {
  font-size: 14px;
  line-height: 1;
}
.sub-add-box {
  width: 15px;
  height: 15px;
  border-radius: 4px;
  border: 1.5px dashed #3a3a40;
  flex-shrink: 0;
}
.sub-input {
  flex: 1;
  max-width: 320px;
  background: var(--edit-bg);
  border: 1px solid var(--edit-border);
  border-radius: 5px;
  color: var(--text);
  font-size: 12.5px;
  padding: 2px 7px;
  outline: none;
}

/* ---------- Empty state ---------- */
.empty {
  text-align: center;
  padding: 80px 20px;
  color: var(--faint);
}
.empty-mark {
  font-size: 32px;
  margin-bottom: 10px;
  opacity: 0.5;
}
.empty-text {
  font-size: 14px;
}

/* ---------- Batch bar ---------- */
.batch-bar {
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--hover-2);
  border: 1px solid #2a2a2f;
  border-radius: 11px;
  padding: 7px 8px 7px 15px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.55);
}
.batch-bar[hidden] {
  display: none;
}
.batch-count {
  font-size: 13px;
  color: #c4c4cb;
  white-space: nowrap;
}
.batch-count b {
  color: #fff;
  font-weight: 600;
}
.batch-sep {
  width: 1px;
  height: 18px;
  background: #2c2c32;
  margin: 0 5px;
}
.batch-btn {
  height: 29px;
  padding: 0 12px;
  border: none;
  border-radius: 7px;
  font-size: 12.5px;
  cursor: pointer;
  font-family: inherit;
}
.batch-btn.primary {
  background: var(--text-strong);
  color: var(--bg);
  font-weight: 500;
}
/* Red text: the one destructive action in the bar is marked as such. The lighter
   cut, because the base red on this surface only reaches 3.6:1. */
.batch-btn.secondary {
  background: var(--sel);
  color: var(--danger-text);
}
.batch-btn.ghost {
  background: transparent;
  color: #7a7a80;
  padding: 0 10px;
}

/* ---------- Popover menus ---------- */
.menu-scrim {
  position: fixed;
  inset: 0;
  z-index: 40;
}
.menu {
  position: fixed;
  z-index: 41;
  background: var(--hover-2);
  border: 1px solid #2a2a2f;
  border-radius: 9px;
  padding: 4px;
  min-width: 180px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.55);
  /* A menu taller than the viewport scrolls itself: the board never scrolls
     (.app is overflow:hidden), so anything hanging off the edge is unreachable. */
  max-height: calc(100vh - 16px);
  overflow-y: auto;
}
.menu.pri-menu {
  min-width: 150px;
}
.menu-head {
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.08em;
  color: var(--dim-3);
  padding: 4px 10px 6px;
}
.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 13px;
  color: #d4d4db;
  cursor: pointer;
}
.menu-item:hover {
  background: var(--sel);
}
.menu-item .hint {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--dim-2);
}
.menu-item.pri {
  justify-content: flex-start;
  gap: 10px;
}
.menu-item.pri.active {
  background: var(--sel);
  color: #fff;
}
.menu-item.pri .pri-dot {
  width: 8px;
  height: 8px;
}
.menu-item.pri .check {
  margin-left: auto;
  width: 13px;
  height: 13px;
  color: var(--text-strong);
}
.menu-date {
  gap: 10px;
  cursor: pointer;
  white-space: nowrap;
}
.menu-date-input {
  background: var(--edit-bg);
  border: 1px solid var(--edit-border);
  border-radius: 5px;
  color: var(--text);
  font-family: var(--mono);
  font-size: 11.5px;
  padding: 2px 6px;
  cursor: pointer;
}
/* Keeps its focus ring, unlike the other inputs: it is reachable by keyboard
   inside a popover, where losing track of focus is worst. */
.menu-date-input:focus-visible {
  outline: 2px solid var(--text-strong);
  outline-offset: 1px;
}
.menu-sep {
  height: 1px;
  background: #242428;
  margin: 4px 6px;
}
.menu-item.danger {
  color: var(--muted-2);
}

/* ---------- Failure surfaces ---------- */
/* A write the server refused has to be visible. Errors used to go only to the
   console, so a refused create looked to the user like nothing happened. */
.toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  max-width: min(560px, calc(100vw - 40px));
  padding: 10px 14px;
  border: 1px solid var(--danger);
  border-radius: 8px;
  background: var(--panel-2);
  color: var(--text);
  font-size: 13px;
  line-height: 1.4;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
  z-index: 60;
}
.toast[hidden] {
  display: none;
}
.empty.error .empty-mark {
  color: var(--danger);
  opacity: 1;
}
.retry-btn {
  margin-top: 12px;
  padding: 6px 14px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--panel-2);
  color: var(--text);
  font: inherit;
  font-size: 13px;
  cursor: pointer;
}
.retry-btn:hover {
  border-color: var(--text-strong);
}

/* ---------- Keyboard shortcuts ---------- */
.shortcuts-modal {
  position: fixed;
  z-index: 41;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(380px, calc(100vw - 32px));
  max-height: calc(100vh - 32px);
  overflow-y: auto;
  background: var(--hover-2);
  border: 1px solid #2a2a2f;
  border-radius: 11px;
  padding: 6px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.55);
}
.shortcuts-head {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 8px 10px 10px;
}
.shortcuts-title {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-strong);
}
.shortcuts-close {
  margin-left: auto;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  border: none;
  border-radius: 6px;
  background: none;
  color: var(--muted-2);
  font: inherit;
  font-size: 17px;
  line-height: 1;
  cursor: pointer;
}
.shortcuts-close:hover {
  background: var(--sel);
  color: var(--text);
}
.shortcuts-close:focus-visible {
  outline: 2px solid var(--text-strong);
  outline-offset: -2px;
}
.shortcuts-group {
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.08em;
  color: var(--dim-4);
  padding: 10px 10px 4px;
}
.shortcut-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 5px 10px;
  border-radius: 6px;
  font-size: 13px;
  color: #d4d4db;
}
.shortcut-keys {
  margin-left: auto;
  display: flex;
  gap: 4px;
  flex-shrink: 0;
}

/* ---------- Sign-in ---------- */
/* Shown by the auth guard when a browser has no session. Deliberately a door
   that waits: the provider keeps its own session, so auto-starting the flow
   would sign a just-signed-out user straight back in. */
.signin {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.signin-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  max-width: 320px;
}
.signin-card .brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  margin-bottom: 4px;
}
.signin-card .brand-mark-dot {
  width: 12px;
  height: 12px;
  border-radius: 3px;
}
.signin-title {
  margin: 0;
  font-size: 21px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text-strong);
}
.signin-sub {
  margin: 0 0 8px;
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--muted);
}
.signin-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 38px;
  padding: 0 20px;
  border-radius: 8px;
  background: var(--text-strong);
  color: var(--bg);
  font-size: 13.5px;
  font-weight: 500;
  text-decoration: none;
}
.signin-btn:hover {
  background: #fff;
}
.signin-btn:focus-visible {
  outline: 2px solid var(--text-strong);
  outline-offset: 2px;
}
