/* ============================================================
   Sllina — Shared Apple design system for standalone pages
   Linked by: info.html, legal-papers.html, dmca.html, eula.html,
   privacy-policy.html. Follows the app theme via the .dark class
   (set by a small inline script) and prefers-color-scheme.
   ============================================================ */

:root {
  --orange: #ff6b2b;
  --orange-dark: #f4571e;
  --orange-rgb: 255, 107, 43;
  --apple-green: #34c759;
  --apple-red: #ff3b30;
  --apple-blue: #007aff;
  --bg: #f5f5f7;
  --surface: #ffffff;
  --surface-2: #fafafa;
  --line: #e8e8ed;
  --ink: #1d1d1f;
  --muted: #86868b;
  --topbar: rgba(255, 255, 255, 0.72);
  --topbar-line: rgba(0, 0, 0, 0.08);
  --ring: rgba(255, 107, 43, 0.28);
  --shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  --shadow-soft: 0 2px 12px rgba(0, 0, 0, 0.05);
  --radius: 24px;
  --radius-lg: 32px;
  --spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --font: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'SF Arabic', 'Segoe UI', 'Cairo', 'Inter', Tahoma, Arial, sans-serif;
}

html.dark {
  --bg: #0e0d0c;
  --surface: #1a1715;
  --surface-2: #221e1b;
  --line: rgba(255, 255, 255, 0.10);
  --ink: #fff7f0;
  --muted: #a8a29e;
  --topbar: rgba(18, 17, 16, 0.72);
  --topbar-line: rgba(255, 255, 255, 0.08);
  --shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
  --shadow-soft: 0 2px 12px rgba(0, 0, 0, 0.25);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html,
body {
  min-height: 100%;
}

body {
  font-family: var(--font);
  background:
    radial-gradient(ellipse 100% 48% at 50% -14%, rgba(var(--orange-rgb), 0.09) 0%, transparent 62%),
    var(--bg);
  color: var(--ink);
  line-height: 1.7;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}

a {
  color: var(--orange);
  font-weight: 700;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

img {
  -webkit-user-drag: none;
}

[hidden] {
  display: none !important;
}

/* ---------- top bar (glass) ---------- */
.top-bar,
.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  background: var(--topbar);
  -webkit-backdrop-filter: saturate(180%) blur(22px);
  backdrop-filter: saturate(180%) blur(22px);
  border-bottom: 1px solid var(--topbar-line);
}

.topbar-inner {
  max-width: 820px;
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.top-bar {
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: space-between;
  max-width: 820px;
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--ink);
}

.brand img {
  width: 30px;
  height: 30px;
  border-radius: 8px;
}

.brand small,
.brand span {
  color: var(--muted);
  font-weight: 600;
  font-size: 0.85rem;
}

.top-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ---------- buttons ---------- */
.lang-btn,
.account-btn,
.ghost-btn {
  border: 1.5px solid rgba(var(--orange-rgb), 0.45);
  background: var(--surface);
  color: var(--orange);
  font-weight: 700;
  font-size: 0.8rem;
  font-family: inherit;
  padding: 9px 16px;
  min-height: 40px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.15s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.lang-btn:hover,
.account-btn:hover,
.ghost-btn:hover {
  background: rgba(var(--orange-rgb), 0.12);
  color: var(--orange);
  text-decoration: none;
}

.lang-btn:active,
.account-btn:active,
.ghost-btn:active {
  transform: scale(0.97);
}

.btn-primary {
  border: none;
  background: linear-gradient(180deg, var(--orange), var(--orange-dark));
  color: #fff;
  font-family: inherit;
  font-weight: 800;
  font-size: 1rem;
  padding: 13px 22px;
  min-height: 48px;
  border-radius: 16px;
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(var(--orange-rgb), 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.18);
  transition: transform 0.15s, box-shadow 0.2s, filter 0.2s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-primary:hover {
  filter: brightness(1.05);
}

.btn-primary:active {
  transform: scale(0.97);
  box-shadow: 0 4px 12px rgba(var(--orange-rgb), 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.btn-danger {
  width: 100%;
  border: none;
  background: linear-gradient(180deg, #ff6a5c, var(--apple-red));
  color: #fff;
  font-family: inherit;
  font-weight: 800;
  font-size: 1rem;
  padding: 13px 20px;
  min-height: 48px;
  border-radius: 14px;
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(255, 59, 48, 0.3);
}

.btn-cancel {
  width: 100%;
  background: none;
  border: none;
  color: var(--muted);
  font-family: inherit;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 10px 20px;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.settings-fab {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 50%;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  cursor: pointer;
  color: var(--ink);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s var(--spring);
}

.settings-fab:hover {
  transform: rotate(90deg);
}

/* ---------- settings popover (info.html) ---------- */
.settings-overlay {
  position: fixed;
  inset: 0;
  z-index: 98;
  background: rgba(0, 0, 0, 0.25);
  display: none;
}

.settings-overlay.show {
  display: block;
}

.settings-panel {
  position: fixed;
  top: 58px;
  inset-inline-end: 12px;
  z-index: 99;
  background: var(--surface);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  backdrop-filter: blur(24px) saturate(1.4);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 8px;
  min-width: 200px;
  box-shadow: var(--shadow);
  display: none;
  flex-direction: column;
  gap: 2px;
  transform-origin: top right;
  animation: settingsIn 0.22s var(--spring) both;
}

.settings-panel.show {
  display: flex;
}

@keyframes settingsIn {
  0% {
    opacity: 0;
    transform: scale(0.85) translateY(-8px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.settings-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  background: none;
  color: var(--ink);
  font-family: inherit;
  text-decoration: none;
  transition: background 0.15s;
  text-align: start;
}

.settings-item:hover {
  background: rgba(var(--orange-rgb), 0.10);
  color: var(--ink);
  text-decoration: none;
}

.settings-item .s-icon {
  font-size: 1.1rem;
  width: 24px;
  text-align: center;
}

.settings-divider {
  height: 1px;
  background: var(--line);
  margin: 6px 4px;
}

/* ---------- sub nav (info.html) ---------- */
.nav {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  gap: 4px;
  padding: 0 16px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.nav a {
  position: relative;
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 14px 14px 12px;
  white-space: nowrap;
}

.nav a::after {
  content: '';
  position: absolute;
  inset-inline: 14px;
  bottom: 0;
  height: 2px;
  border-radius: 2px;
  background: transparent;
}

.nav a.active {
  color: var(--orange);
}

.nav a.active::after {
  background: var(--orange);
}

.nav a:hover {
  color: var(--orange);
  text-decoration: none;
}

.nav a.danger {
  color: var(--apple-red);
}

/* ---------- page layout ---------- */
.wrap {
  flex: 1;
  width: 100%;
  max-width: 820px;
  margin: 0 auto;
  padding: 28px 20px 60px;
}

.page-hero {
  padding: 8px 0 14px;
}

.eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.4px;
  color: var(--orange);
  text-transform: uppercase;
  margin-bottom: 6px;
}

h1 {
  font-size: 2rem;
  font-weight: 800;
  margin: 0 0 6px;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.lead {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.updated {
  display: inline-block;
  margin-top: 12px;
  background: rgba(var(--orange-rgb), 0.10);
  color: var(--orange);
  font-weight: 800;
  font-size: 0.75rem;
  padding: 6px 14px;
  border-radius: 999px;
}

/* ---------- legal tab nav ---------- */
nav.legal-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin: 18px 0 24px;
  border-bottom: 1px solid var(--line);
}

nav.legal-nav a {
  position: relative;
  flex: 1 1 auto;
  text-align: center;
  background: transparent;
  border: none;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  padding: 12px 10px;
  transition: color 0.2s;
}

nav.legal-nav a::after {
  content: '';
  position: absolute;
  inset-inline: 10px;
  bottom: 0;
  height: 2px;
  border-radius: 2px;
  background: transparent;
}

nav.legal-nav a:hover {
  color: var(--ink);
  text-decoration: none;
}

nav.legal-nav a.active {
  color: var(--orange);
}

nav.legal-nav a.active::after {
  background: var(--orange);
}

/* ---------- document cards / sections ---------- */
section.legal,
.card,
section {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

section.legal {
  padding: 26px;
  margin-bottom: 18px;
}

section.legal h2,
section h2 {
  font-size: 1.3rem;
  font-weight: 800;
  margin: 0 0 12px;
  display: flex;
  gap: 8px;
  align-items: center;
}

section.legal h3,
section h3 {
  font-size: 1.02rem;
  font-weight: 800;
  margin: 18px 0 6px;
  display: flex;
  gap: 8px;
  align-items: center;
  color: var(--ink);
}

section.legal h3:first-of-type {
  margin-top: 8px;
}

section.legal h4,
section h4 {
  font-weight: 800;
  margin: 12px 0 4px;
  font-size: 0.98rem;
}

section.legal h3 .num,
h3 .num {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 8px;
  background: linear-gradient(180deg, var(--orange), var(--orange-dark));
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 0.8rem;
  box-shadow: 0 4px 10px rgba(var(--orange-rgb), 0.3);
}

section.legal p,
section p {
  font-size: 0.95rem;
  color: var(--ink);
  margin-bottom: 10px;
}

section.legal p.dim,
p.dim {
  color: var(--muted);
  font-size: 0.9rem;
}

section.legal ul,
section ul {
  padding-inline-start: 22px;
  margin: 6px 0;
  font-size: 0.95rem;
  color: var(--ink);
}

section.legal ul li,
section ul li {
  margin: 4px 0;
}

section.legal a,
section a {
  color: var(--orange);
  font-weight: 700;
  text-decoration: none;
}

section.legal a:hover,
section a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

section.legal code,
code {
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 2px 7px;
  font-size: 0.85rem;
  font-family: ui-monospace, 'SF Mono', 'Cascadia Code', Consolas, monospace;
  color: var(--orange-dark);
}

html.dark section.legal code,
html.dark code {
  color: #ff9a5a;
}

section.legal strong,
section strong,
p strong {
  color: var(--ink);
  font-weight: 800;
}

.notice {
  background: rgba(var(--orange-rgb), 0.06);
  border: 1px dashed rgba(var(--orange-rgb), 0.4);
  border-radius: 14px;
  padding: 16px 18px;
  margin: 10px 0;
  font-size: 0.95rem;
  color: var(--ink);
}

.notice div {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 4px 14px;
  font-size: 0.9rem;
  margin-top: 8px;
}

.notice div b {
  color: var(--ink);
}

/* ---------- tables ---------- */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 10px 0;
  font-size: 0.92rem;
}

th,
td {
  text-align: start;
  padding: 10px 12px;
  border-bottom: 1px solid var(--line);
}

th {
  font-weight: 800;
  color: var(--muted);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

tr:last-child td {
  border-bottom: none;
}

/* ---------- info card (info.html) ---------- */
.card {
  width: 100%;
  max-width: 480px;
  margin-inline: auto;
  overflow: hidden;
}

.card-head {
  padding: 26px 24px 18px;
  text-align: center;
}

.avatar {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  margin: 14px auto 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.3rem;
  background: var(--surface-2);
  border: 2px solid var(--line);
  object-fit: cover;
}

.profile-name {
  font-size: 1.2rem;
  font-weight: 800;
  margin: 0 0 2px;
}

.profile-email {
  color: var(--muted);
  font-size: 0.85rem;
  word-break: break-all;
}

.refresh-link {
  display: inline-block;
  margin-top: 10px;
  color: var(--apple-blue);
  background: none;
  border: none;
  font-family: inherit;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.list {
  border-top: 1px solid var(--line);
}

.row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding: 14px 22px;
  border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
}

.row:last-child {
  border-bottom: none;
}

.row .k {
  color: var(--muted);
  flex-shrink: 0;
}

.row .v {
  font-weight: 700;
  text-align: end;
  word-break: break-all;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  border: 1px solid transparent;
}

.badge.ok {
  color: #1a7f37;
  background: #e6f6ec;
  border-color: #c6e8d2;
}

.badge.warn {
  color: #b45309;
  background: #fef3e2;
  border-color: #f7d9ab;
}

html.dark .badge.ok {
  color: #5dd184;
  background: rgba(52, 199, 89, 0.12);
  border-color: rgba(52, 199, 89, 0.3);
}

html.dark .badge.warn {
  color: #f7c56b;
  background: rgba(255, 159, 10, 0.12);
  border-color: rgba(255, 159, 10, 0.3);
}

.resend-link {
  background: none;
  border: none;
  color: var(--apple-blue);
  font-weight: 700;
  font-size: 0.88rem;
  font-family: inherit;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
  padding: 0;
}

.row .link {
  background: none;
  border: none;
  color: var(--apple-red);
  font-weight: 700;
  font-size: 0.95rem;
  font-family: inherit;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ---------- modal (info.html) ---------- */
.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.45);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}

.modal-card {
  position: relative;
  width: 100%;
  max-width: 400px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 26px 24px;
  box-shadow: var(--shadow);
  animation: modalIn 0.3s var(--spring) both;
}

@keyframes modalIn {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.modal-card h2 {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.modal-card p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 12px;
}

.modal-close {
  position: absolute;
  top: 12px;
  inset-inline-end: 14px;
  background: none;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  color: var(--muted);
}

.modal-status {
  margin: 0 0 10px;
  font-size: 0.85rem;
  color: var(--apple-red);
  min-height: 1.2em;
}

/* ---------- forms ---------- */
label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 12px;
}

input {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1.5px solid var(--line);
  background: var(--surface-2);
  color: var(--ink);
  font-size: 1rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

input:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px var(--ring);
}

/* ---------- footer ---------- */
.footer,
footer {
  text-align: center;
  color: var(--muted);
  font-size: 0.78rem;
  padding: 0 16px 28px;
  font-weight: 600;
}

.footer a,
footer a {
  color: var(--apple-blue);
  text-decoration: none;
}

/* ---------- accessibility / polish ---------- */
:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 2px;
}

::selection {
  background: rgba(var(--orange-rgb), 0.42);
  color: #fff;
}

* {
  scrollbar-color: rgba(var(--orange-rgb), 0.5) transparent;
}

::-webkit-scrollbar-thumb {
  background: rgba(var(--orange-rgb), 0.5);
}

@media (max-width: 600px) {
  h1 {
    font-size: 1.5rem;
  }
  section.legal {
    padding: 20px 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ---------- full settings panel (home-style, info.html) ---------- */
.settings-panel {
  width: 330px;
  max-width: calc(100vw - 28px);
  max-height: calc(100dvh - 80px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  will-change: transform;
  gap: 10px;
  padding: 12px;
}
.settings-grab {
  display: flex;
  justify-content: center;
  padding: 2px 0 8px;
  cursor: grab;
  touch-action: none;
  flex-shrink: 0;
  -webkit-user-select: none;
  user-select: none;
}
.settings-grab:active { cursor: grabbing; }
.settings-handle {
  width: 44px;
  height: 5px;
  border-radius: 999px;
  background: rgba(120, 120, 128, 0.4);
}
.settings-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-shrink: 0;
  padding: 4px 4px 12px;
  border-bottom: 1px solid var(--line);
}
.settings-title {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.settings-close {
  width: 34px;
  height: 34px;
  border: none;
  border-radius: 50%;
  background: rgba(120, 120, 128, 0.16);
  color: var(--ink);
  font-size: 1rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: background 0.2s;
}
.settings-close:hover { background: rgba(120, 120, 128, 0.28); }
.settings-close:active { transform: scale(0.9); }
.settings-group {
  border-radius: 16px;
  overflow: hidden;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
}
html:not(.dark) .settings-group { background: rgba(0, 0, 0, 0.04); }
.settings-group .settings-item + .settings-item { border-top: 1px solid var(--line); }
.settings-item {
  width: 100%;
  padding: 13px 16px;
  min-height: 52px;
  font-size: 0.95rem;
  font-weight: 500;
}
.settings-item:hover { background: rgba(255, 255, 255, 0.04); }
html:not(.dark) .settings-item:hover { background: rgba(0, 0, 0, 0.03); }
.settings-item .s-icon {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 8px;
  color: #ff9a5a;
  background: rgba(255, 165, 105, 0.16);
}
.settings-item .s-icon svg { width: 16px; height: 16px; }
.settings-item .s-label { flex: 1; }
.settings-item .s-chev { color: var(--muted); opacity: 0.7; display: flex; flex-shrink: 0; }
.settings-item .s-chev svg { width: 14px; height: 14px; }
.settings-item .switch {
  width: 46px;
  height: 28px;
  border-radius: 999px;
  background: rgba(120, 120, 128, 0.32);
  position: relative;
  flex-shrink: 0;
  transition: background 0.25s ease;
  display: inline-block;
}
.settings-item .switch i {
  position: absolute;
  top: 2px;
  inset-inline-start: 2px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  transition: inset-inline-start 0.25s var(--spring);
}
.settings-item .switch.on { background: var(--apple-green); }
.settings-item .switch.on i { inset-inline-start: calc(100% - 26px); }
.settings-appearance {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
}
.settings-appearance:last-of-type { border-bottom: 0; }
.settings-appearance .s-label { flex: none; font-size: 0.9rem; }
.acc-swatches { display: flex; gap: 10px; }
.acc-swatch {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
  padding: 0;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.18);
  transition: transform 0.15s;
}
.acc-swatch.on { border-color: var(--ink); transform: scale(1.14); }
.acc-pills { display: flex; gap: 8px; }
.acc-pills button {
  min-width: 44px;
  height: 34px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: rgba(120, 120, 128, 0.12);
  color: var(--ink);
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  font-family: inherit;
}
.acc-pills button.on { background: var(--orange); border-color: var(--orange); color: #fff; }
