@font-face {
  font-family: 'Zilla Slab';
  font-weight: 600;
  font-style: normal;
  src: url('/static/fonts/zilla-slab-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Zilla Slab';
  font-weight: 700;
  font-style: normal;
  src: url('/static/fonts/zilla-slab-700.woff2') format('woff2');
}

:root {
  --ink: #1c1917;
  --ink-soft: #6b6258;
  --paper: #fefdfb;
  --paper-raised: #ffffff;
  --line: #e7e0d4;
  --brand: #a6791f;
  --brand-soft: #f6ecd3;
  --sage: #157f4a;
  --sage-bg: #dcf5e6;
  --rust: #c23b2b;
  --rust-bg: #fbe4df;
  --neutral: #78716c;
  --neutral-bg: #efe9e0;
  --info: #1d6fa5;
  --info-bg: #dcecf5;
  --warning: #c1560a;
  --warning-bg: #fae3d2;
  --shadow: rgba(28, 25, 23, 0.08);
}

@media (prefers-color-scheme: dark) {
  :root {
    --ink: #f5f0e6; --ink-soft: #b8ad9c; --paper: #17140f; --paper-raised: #211c15;
    --line: #3a3226; --brand: #d9ae42; --brand-soft: #4a3a15;
    --sage: #4fd88a; --sage-bg: #163826; --rust: #ef7a68; --rust-bg: #3d1f18;
    --neutral: #a89c8a; --neutral-bg: #322b21;
    --info: #6db8e8; --info-bg: #1c3548;
    --warning: #e08a3c; --warning-bg: #4a2c10;
    --shadow: rgba(0, 0, 0, 0.45);
  }
}
:root[data-theme="dark"] {
  --ink: #f5f0e6; --ink-soft: #b8ad9c; --paper: #17140f; --paper-raised: #211c15;
  --line: #3a3226; --brand: #d9ae42; --brand-soft: #4a3a15;
  --sage: #4fd88a; --sage-bg: #163826; --rust: #ef7a68; --rust-bg: #3d1f18;
  --neutral: #a89c8a; --neutral-bg: #322b21;
  --info: #6db8e8; --info-bg: #1c3548;
  --warning: #e08a3c; --warning-bg: #4a2c10;
  --shadow: rgba(0, 0, 0, 0.45);
}
:root[data-theme="light"] {
  --ink: #1c1917; --ink-soft: #6b6258; --paper: #fefdfb; --paper-raised: #ffffff;
  --line: #e7e0d4; --brand: #a6791f; --brand-soft: #f6ecd3;
  --sage: #157f4a; --sage-bg: #dcf5e6; --rust: #c23b2b; --rust-bg: #fbe4df;
  --neutral: #78716c; --neutral-bg: #efe9e0;
  --info: #1d6fa5; --info-bg: #dcecf5;
  --warning: #c1560a; --warning-bg: #fae3d2;
  --shadow: rgba(28, 25, 23, 0.08);
}

* { box-sizing: border-box; }
html { color-scheme: light dark; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: ui-sans-serif, -apple-system, "Segoe UI", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }
code { font-family: ui-monospace, "SF Mono", "Cascadia Code", monospace; background: var(--brand-soft); padding: 1px 5px; border-radius: 4px; font-size: 0.9em; }

/* ---------- Top bar ---------- */

.topbar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 14px 24px;
  border-bottom: 1px solid var(--line);
  background: var(--paper-raised);
  position: sticky;
  top: 0;
  /* Above .nav-scrim (25) so the account-menu it contains stays clickable
     while the scrim is open — z-index only competes within this element's
     own stacking context otherwise, no matter what z-index the menu itself has. */
  z-index: 26;
}

.topbar-spacer { min-width: 1px; }

.topbar-right { display: flex; align-items: center; justify-self: end; gap: 8px; position: relative; }

.wordmark {
  justify-self: center;
  font-family: 'Zilla Slab', ui-serif, Georgia, serif;
  font-weight: 700;
  font-size: 27px;
}
.wordmark em { font-style: normal; color: var(--brand); }

.icon-btn {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink-soft);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.icon-btn:hover { border-color: var(--brand); color: var(--brand); }

.hamburger {
  flex-direction: column;
  gap: 4px;
}
.hamburger span {
  display: block;
  width: 16px;
  height: 2px;
  margin: 0 auto;
  background: currentColor;
  border-radius: 2px;
}

.icon-moon { display: none; }
:root[data-theme="dark"] .icon-sun { display: none; }
:root[data-theme="dark"] .icon-moon { display: block; }
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .icon-sun { display: none; }
  :root:not([data-theme="light"]) .icon-moon { display: block; }
}

/* ---------- Tab bar ---------- */

.tabbar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--paper-raised);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 69px;
  z-index: 19;
  overflow-x: auto;
}
.tabbar.tabbar-2 { grid-template-columns: repeat(2, 1fr); }
.tab {
  padding: 13px 16px 11px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink-soft);
  text-decoration: none;
  text-align: center;
  border-bottom: 2.5px solid transparent;
  white-space: nowrap;
}
.tab:hover { color: var(--ink); }
.tab.active { color: var(--brand); border-bottom-color: var(--brand); }

/* ---------- Account menu ---------- */

.account-wrap { position: relative; }
.account-menu {
  position: absolute;
  top: 44px;
  right: 0;
  min-width: 190px;
  background: var(--paper-raised);
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 8px 24px var(--shadow);
  padding: 6px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
  transition: opacity 0.15s ease, transform 0.15s ease;
  z-index: 30;
}
.account-menu.open { opacity: 1; transform: translateY(0); pointer-events: auto; }
.account-whoami {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 8px 10px 10px;
  margin-bottom: 4px;
  border-bottom: 1px solid var(--line);
  font-size: 13.5px;
}
.account-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 10px;
  border-radius: 7px;
  text-decoration: none;
  color: var(--ink);
  font-size: 13.5px;
  font-weight: 500;
}
.account-item:hover { background: var(--brand-soft); color: var(--brand); }

/* ---------- Drawer nav ---------- */

.nav-scrim {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.25);
  opacity: 0; pointer-events: none;
  transition: opacity 0.15s ease;
  z-index: 25;
}
.nav-scrim.open { opacity: 1; pointer-events: auto; }

.drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: 250px;
  background: var(--paper-raised);
  border-left: 1px solid var(--line);
  box-shadow: -4px 0 16px var(--shadow);
  padding: 70px 14px 14px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  transform: translateX(100%);
  transition: transform 0.2s ease;
  z-index: 30;
}
.drawer.open { transform: translateX(0); }

.drawer-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 8px;
  text-decoration: none;
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
}
.drawer-link:hover { background: var(--brand-soft); }
.drawer-link.active { background: var(--brand); color: #ffffff; }
.drawer-link.secondary { color: var(--ink-soft); font-size: 13px; }
.drawer-icon { font-size: 15px; }
.drawer-divider { height: 1px; background: var(--line); margin: 8px 4px; }

/* ---------- Page layout ---------- */

.wrap { max-width: 1120px; margin: 0 auto; padding: 32px 24px 80px; }

.page-head { margin-bottom: 22px; text-align: center; }
.page-head h1 {
  font-family: 'Zilla Slab', ui-serif, Georgia, serif;
  font-weight: 700;
  font-size: 28px;
  margin: 0 0 4px;
  text-wrap: balance;
}
.tagline { color: var(--ink-soft); font-size: 13.5px; margin: 0; }

.notice {
  background: var(--brand-soft);
  border: 1px solid var(--brand);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 13px;
  margin-bottom: 20px;
}

.empty-state {
  border: 1px dashed var(--line);
  border-radius: 10px;
  padding: 32px;
  text-align: center;
  color: var(--ink-soft);
  font-size: 14px;
}
.empty-state p { margin: 4px 0; }

/* ---------- Stat tiles ---------- */

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 24px;
  box-shadow: 0 1px 2px var(--shadow);
}
.stat { background: var(--paper-raised); padding: 16px 18px; }
.stat .label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--ink-soft); margin-bottom: 6px; }
.stat .value { font-family: 'Zilla Slab', ui-serif, Georgia, serif; font-weight: 600; font-size: 25px; font-variant-numeric: tabular-nums; }
.stat .value small { font-family: ui-sans-serif, sans-serif; font-size: 12px; font-weight: 500; color: var(--ink-soft); margin-left: 2px; }
.stat.accent .value { color: var(--brand); }

/* ---------- Search ---------- */

.search-row { display: flex; align-items: center; justify-content: center; gap: 12px; margin-bottom: 18px; }
.search-row input[type="search"] {
  flex: 0 1 420px;
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper-raised);
  color: var(--ink);
  font-size: 13.5px;
}
.search-row input[type="search"]:focus { outline: 2px solid var(--brand); outline-offset: 1px; }
.clear-search { font-size: 12.5px; color: var(--ink-soft); text-decoration: underline; }

/* ---------- Table ---------- */

.table-scroll {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 1px 2px var(--shadow);
}
table { border-collapse: collapse; width: 100%; min-width: 920px; background: var(--paper-raised); }
thead th {
  text-align: left; font-size: 10.5px; text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--ink-soft); font-weight: 600; padding: 12px 14px; border-bottom: 1px solid var(--line);
  white-space: nowrap;
}
tbody td { padding: 13px 14px; border-bottom: 1px solid var(--line); font-size: 13.5px; vertical-align: top; }
tbody tr:last-child td { border-bottom: none; }
tbody tr:hover { background: color-mix(in srgb, var(--brand) 5%, transparent); }

.fav-form { display: inline-block; float: right; margin-left: 8px; }
.fav-star {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 17px;
  line-height: 1;
  padding: 0;
  color: var(--line);
  opacity: 0.7;
}
.fav-star:hover { color: var(--warning); opacity: 1; }
.fav-star.active { color: var(--warning); opacity: 1; }

.biz-name { font-weight: 600; display: block; }
.biz-addr { color: var(--ink-soft); font-size: 12px; margin-top: 2px; display: block; }
.contact-name { font-weight: 600; display: block; }
.contact-title { color: var(--ink-soft); font-size: 12px; }
.empty-cell { color: var(--ink-soft); font-size: 12.5px; }
.mono { font-family: ui-monospace, "SF Mono", "Cascadia Code", monospace; font-variant-numeric: tabular-nums; font-size: 12.5px; }

.contact-links { display: flex; flex-direction: column; gap: 5px; align-items: flex-start; }
.link-pill {
  font-size: 12px;
  font-family: ui-monospace, "SF Mono", "Cascadia Code", monospace;
  text-decoration: none;
  padding: 3px 8px;
  border-radius: 6px;
  background: var(--sage-bg);
  color: var(--sage);
  white-space: nowrap;
}
.link-pill:hover { filter: brightness(0.95); }
.link-pill.muted-pill { background: var(--neutral-bg); color: var(--ink-soft); }
.link-pill .muted { opacity: 0.7; font-family: ui-sans-serif, sans-serif; }

.score { display: flex; align-items: center; gap: 8px; }
.score-bar { width: 46px; height: 5px; border-radius: 3px; background: var(--line); overflow: hidden; flex-shrink: 0; }
.score-bar span { display: block; height: 100%; background: var(--brand); }
.score-num { font-family: ui-monospace, monospace; font-variant-numeric: tabular-nums; font-size: 12.5px; font-weight: 600; min-width: 20px; }

/* ---------- Row actions / forms ---------- */

.row-actions { white-space: nowrap; }

.btn-mark, .btn-undo, .note-form button {
  font-size: 12px;
  font-weight: 600;
  padding: 6px 10px;
  border-radius: 7px;
  border: 1px solid var(--line);
  background: var(--paper-raised);
  color: var(--ink);
  cursor: pointer;
}
.btn-mark { border-color: var(--sage); color: var(--sage); }
.btn-mark:hover { background: var(--sage-bg); }
.btn-undo { border-color: var(--rust); color: var(--rust); margin-top: 6px; }
.btn-undo:hover { background: var(--rust-bg); }

.note-toggle { margin-top: 6px; font-size: 12px; }
.note-toggle summary {
  cursor: pointer;
  color: var(--ink-soft);
  list-style: none;
}
.note-toggle summary::-webkit-details-marker { display: none; }
.note-toggle summary:hover { color: var(--brand); }
.note-form { display: flex; flex-direction: column; gap: 6px; margin-top: 6px; min-width: 200px; }
.note-form textarea {
  font-family: inherit;
  font-size: 12.5px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper);
  color: var(--ink);
  resize: vertical;
  min-height: 50px;
}
.note-form button { align-self: flex-start; }
.note-preview { font-size: 12px; color: var(--ink-soft); margin: 6px 0 0; max-width: 220px; }

/* ---------- Disposition control (Leads page) ---------- */

.disp-toggle { display: inline-block; font-size: 12px; }
.disp-toggle summary { list-style: none; cursor: pointer; }
.disp-toggle summary::-webkit-details-marker { display: none; }
.disp-menu {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 6px;
  min-width: 140px;
}
.disp-btn {
  width: 100%;
  text-align: left;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 9px;
  border-radius: 6px;
  border: 1px solid transparent;
  cursor: pointer;
}
.disp-btn.disp-positive { background: var(--sage-bg); color: var(--sage); }
.disp-btn.disp-neutral { background: var(--neutral-bg); color: var(--neutral); }
.disp-btn.disp-negative { background: var(--rust-bg); color: var(--rust); }
.disp-btn.disp-info { background: var(--info-bg); color: var(--info); }
.disp-btn.disp-warning { background: var(--warning-bg); color: var(--warning); }
.disp-btn.disp-success { background: var(--sage); color: var(--paper-raised); }
.disp-btn:hover { filter: brightness(0.95); }

/* ---------- Disposition pills (Contacted page) ---------- */

.pill {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 9px;
  border-radius: 100px;
  white-space: nowrap;
}
.pill-positive { background: var(--sage-bg); color: var(--sage); }
.pill-neutral { background: var(--neutral-bg); color: var(--neutral); }
.pill-negative { background: var(--rust-bg); color: var(--rust); }
.pill-info { background: var(--info-bg); color: var(--info); }
.pill-warning { background: var(--warning-bg); color: var(--warning); }
.pill-success { background: var(--sage); color: var(--paper-raised); }

.disp-summary { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }

/* ---------- Search row select (Contacted filter) ---------- */

.search-row select {
  padding: 9px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper-raised);
  color: var(--ink);
  font-size: 13px;
}

/* ---------- Pagination ---------- */

.pagination-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin: 18px 0;
  text-align: center;
}
.page-info { font-size: 12.5px; color: var(--ink-soft); }
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px;
}
.page-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 30px;
  height: 30px;
  padding: 0 8px;
  border-radius: 7px;
  font-size: 12.5px;
  font-weight: 600;
  text-decoration: none;
  color: var(--ink-soft);
  border: 1px solid transparent;
}
a.page-btn:hover { border-color: var(--line); color: var(--ink); }
.page-btn.current {
  background: var(--brand);
  color: #ffffff;
}
.page-ellipsis {
  color: var(--ink-soft);
  font-size: 12.5px;
  padding: 0 2px;
}

/* ---------- Notices ---------- */

.notice-success { background: var(--sage-bg); border-color: var(--sage); color: var(--sage); }
.notice-error { background: var(--rust-bg); border-color: var(--rust); color: var(--rust); }
.notice a { color: inherit; text-decoration: underline; font-weight: 600; }

/* ---------- Discover page ---------- */

.discover-form {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 22px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--paper-raised);
}
.add-user-form {
  display: flex;
  align-items: flex-end;
  gap: 14px;
  flex-wrap: wrap;
}
.field { display: flex; flex-direction: column; gap: 5px; }
.field label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--ink-soft); }
.field select {
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
  font-size: 14px;
  min-width: 220px;
}
.field input {
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
  font-size: 14px;
  min-width: 200px;
}
.field-state input { min-width: 70px; text-align: center; }
.field input:focus { outline: 2px solid var(--brand); outline-offset: 1px; }

.btn-primary {
  padding: 10px 18px;
  border-radius: 8px;
  border: none;
  background: var(--brand);
  color: var(--paper-raised);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}
.btn-primary:hover { filter: brightness(1.06); }

/* ---------- Discover: already-searched state groups ---------- */

.state-list { display: flex; flex-direction: column; gap: 8px; margin-bottom: 28px; }

.state-group {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--paper-raised);
  overflow: hidden;
}
.state-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 16px;
  cursor: pointer;
  list-style: none;
}
.state-summary::-webkit-details-marker { display: none; }
.state-summary-left { display: flex; align-items: center; gap: 8px; }
.state-summary-left::before {
  content: "▸";
  color: var(--ink-soft);
  font-size: 12px;
  transition: transform 0.15s ease;
}
.state-group[open] .state-summary-left::before { transform: rotate(90deg); }
.state-name { font-weight: 600; font-size: 14.5px; }
.state-abbr { font-size: 11.5px; color: var(--ink-soft); }
.state-meta { font-size: 12.5px; color: var(--ink-soft); font-weight: 500; white-space: nowrap; }

.state-group .table-scroll { border: none; border-top: 1px solid var(--line); border-radius: 0; box-shadow: none; }
.state-table { min-width: 0; }

.state-chip-grid { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.state-chip {
  padding: 6px 12px;
  border-radius: 20px;
  background: var(--neutral-bg);
  color: var(--ink-soft);
  font-size: 12.5px;
  font-weight: 500;
  opacity: 0.65;
}

.job-panel {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--paper-raised);
  padding: 18px;
  margin-bottom: 22px;
}
.job-head { display: flex; align-items: center; gap: 14px; margin-bottom: 12px; }
.job-sub { margin: 2px 0 0; font-size: 12.5px; color: var(--ink-soft); }
.spinner {
  width: 22px; height: 22px;
  border: 3px solid var(--line);
  border-top-color: var(--brand);
  border-radius: 50%;
  flex-shrink: 0;
  animation: spin 0.8s linear infinite;
}
@media (prefers-reduced-motion: reduce) {
  .spinner { animation-duration: 2.4s; }
}
@keyframes spin { to { transform: rotate(360deg); } }

.job-log {
  max-height: 220px;
  overflow-y: auto;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  margin: 0;
  font-family: ui-monospace, "SF Mono", "Cascadia Code", monospace;
  font-size: 12px;
  line-height: 1.6;
  color: var(--ink-soft);
  white-space: pre-wrap;
}

/* ---------- Settings page ---------- */

.settings-card {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--paper-raised);
  padding: 20px;
  margin-bottom: 18px;
  box-shadow: 0 1px 2px var(--shadow);
}
.settings-card h2 {
  font-family: 'Zilla Slab', ui-serif, Georgia, serif;
  font-weight: 600;
  font-size: 16px;
  margin: 0 0 6px;
}
.settings-note { font-size: 12.5px; color: var(--ink-soft); margin: 0 0 14px; }
.settings-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-top: 1px solid var(--line);
  font-size: 13.5px;
}
.settings-row:first-of-type { border-top: none; }

@media (max-width: 640px) {
  .stats { grid-template-columns: repeat(2, 1fr); }
  .wrap { padding: 24px 16px 60px; }
  .discover-form { flex-direction: column; align-items: stretch; }
  .field input { min-width: 0; }
  .tabbar { top: 57px; }
}

/* ---------- Login page ---------- */

body.login-body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--paper);
}

.login-wrap { width: 100%; padding: 24px; }

.login-card {
  max-width: 360px;
  margin: 0 auto;
  padding: 36px 32px;
  background: var(--paper-raised);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 4px 24px var(--shadow);
  text-align: center;
}

.login-wordmark { font-size: 24px; margin-bottom: 4px; }
.login-card .tagline { margin-bottom: 24px; }

.login-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: left;
}

.login-submit { width: 100%; margin-top: 4px; }
.login-footnote { margin: 20px 0 0; text-align: center; }

.login-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 20px 0;
  color: var(--ink-soft);
  font-size: 13px;
}
.login-divider::before, .login-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}

.btn-google {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 11px 16px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--paper);
  color: var(--ink);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: background 0.15s, box-shadow 0.15s;
}
.btn-google:hover { background: var(--neutral-bg); box-shadow: 0 1px 4px var(--shadow); }
