/* ============ ADMIN — Apple-style ============ */

/* === PIN LOCK === */
.lock-screen {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  background: var(--bg);
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
}
.lock-screen.hidden {
  opacity: 0;
  transform: scale(1.04);
  pointer-events: none;
}
.lock-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 44px;
  animation: fade-in 0.45s var(--ease);
}
@keyframes fade-in {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.lock-header { text-align: center; }
.lock-avatar {
  width: 76px;
  height: 76px;
  margin: 0 auto 24px;
  background: linear-gradient(180deg, #0071e3 0%, #0056b3 100%);
  color: #ffffff;
  display: grid;
  place-items: center;
  font-size: 38px;
  font-weight: 600;
  border-radius: 24px;
  box-shadow: 0 12px 28px -8px rgba(0, 113, 227, 0.4),
              inset 0 1px 0 rgba(255, 255, 255, 0.25);
}
.lock-title {
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--ink);
  font-weight: 600;
}
.lock-hint {
  margin-top: 8px;
  font-size: 15px;
  color: var(--ink-3);
  letter-spacing: -0.005em;
  font-weight: 400;
}

.pin-dots {
  display: flex;
  gap: 22px;
  height: 14px;
}
.pin-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1.5px solid var(--ink-4);
  background: transparent;
  transition: all 0.18s var(--ease);
}
.pin-dot.filled {
  background: var(--ink);
  border-color: var(--ink);
  transform: scale(1.12);
}
.pin-dots.error .pin-dot {
  border-color: var(--red);
  background: transparent;
}
.pin-dots.error {
  animation: shake 0.5s ease-in-out;
}
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-10px); }
  75% { transform: translateX(10px); }
}

.pin-pad {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.pin-btn {
  width: 76px;
  height: 76px;
  background: var(--bg-card);
  border: none;
  border-radius: 50%;
  color: var(--ink);
  font-family: inherit;
  font-size: 28px;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.18s var(--ease);
  display: grid;
  place-items: center;
  line-height: 1;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05),
              0 1px 2px rgba(0, 0, 0, 0.04);
}
.pin-btn:hover {
  background: var(--bg-muted);
  transform: translateY(-1px);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08),
              0 4px 14px rgba(0, 0, 0, 0.08);
}
.pin-btn:active {
  background: var(--blue);
  color: #ffffff;
  transform: scale(0.94);
}
.pin-btn.fn {
  background: transparent;
  box-shadow: none;
  font-size: 18px;
  color: var(--ink-3);
}
.pin-btn.fn:hover {
  background: var(--bg-muted);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05);
  color: var(--ink);
}
.pin-btn.invisible { visibility: hidden; }

/* === ADMIN PANEL === */
.admin {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: auto 1fr;
  height: 100vh;
  background: var(--bg);
}

.admin-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 28px;
  border-bottom: 1px solid var(--line);
  background: rgba(251, 251, 253, 0.85);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
}
.admin-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.admin-brand-logo {
  width: 32px;
  height: 32px;
  background: linear-gradient(180deg, #0071e3 0%, #0056b3 100%);
  color: #ffffff;
  display: grid;
  place-items: center;
  font-weight: 600;
  font-size: 16px;
  border-radius: 9px;
  box-shadow: 0 4px 12px -4px rgba(0, 113, 227, 0.35),
              inset 0 1px 0 rgba(255, 255, 255, 0.2);
}
.admin-brand h1 {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--ink);
}
.admin-brand .sub {
  font-size: 12px;
  color: var(--ink-3);
  margin-top: 2px;
  font-weight: 400;
  letter-spacing: -0.005em;
}

.admin-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}
.admin-nav a, .admin-nav button {
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  background: var(--bg-card);
  border: none;
  padding: 9px 16px;
  border-radius: 980px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s var(--ease);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.06);
  letter-spacing: -0.005em;
}
.admin-nav a:hover, .admin-nav button:hover {
  background: var(--bg-muted);
  transform: translateY(-1px);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08),
              0 4px 12px rgba(0, 0, 0, 0.06);
}

.admin-body {
  display: grid;
  grid-template-columns: 400px 1fr;
  min-height: 0;
}

/* === DEAL LIST === */
.deals-list {
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  min-height: 0;
  background: var(--bg);
}
.list-header {
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: var(--bg);
}
.list-title {
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-3);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.search-input {
  width: 100%;
  background: var(--bg-card);
  border: none;
  color: var(--ink);
  font-family: inherit;
  font-size: 14px;
  font-weight: 400;
  padding: 11px 16px;
  outline: none;
  border-radius: 10px;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.18s var(--ease);
  letter-spacing: -0.005em;
}
.search-input::placeholder {
  color: var(--ink-3);
  font-weight: 400;
  letter-spacing: -0.005em;
}
.search-input:focus {
  box-shadow: 0 0 0 2px var(--blue);
}

.deals-scroll-list {
  flex: 1;
  overflow-y: auto;
  padding: 8px;
}
.deal-card {
  padding: 14px 16px;
  cursor: pointer;
  transition: background 0.15s var(--ease);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 2px;
  background: transparent;
}
.deal-card:hover { background: var(--bg-muted); }
.deal-card.active {
  background: var(--bg-card);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08),
              0 4px 14px rgba(0, 0, 0, 0.06);
}
.deal-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--ink-3);
  font-weight: 500;
  letter-spacing: -0.005em;
}
.deal-card-top .code {
  color: var(--blue);
  font-weight: 600;
}
.deal-card-title {
  font-size: 14px;
  color: var(--ink);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.deal-card-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 4px;
  font-size: 13px;
  font-variant-numeric: tabular-nums;
}
.deal-card .amount {
  color: var(--ink-2);
  font-weight: 500;
}
.deal-card .margin-chip {
  font-size: 11px;
  padding: 3px 10px;
  font-weight: 600;
  letter-spacing: -0.005em;
  border-radius: 980px;
}
.chip.up   { background: rgba(52, 199, 89, 0.12); color: var(--green-deep); }
.chip.mid  { background: rgba(255, 159, 10, 0.14); color: var(--orange); }
.chip.down { background: rgba(255, 59, 48, 0.1); color: var(--red-deep); }

/* === DETAIL === */
.detail {
  padding: 40px 48px;
  overflow-y: auto;
  min-height: 0;
  background: var(--bg);
}
.detail-empty {
  display: grid;
  place-items: center;
  height: 100%;
  color: var(--ink-3);
  font-size: 17px;
  font-weight: 400;
  letter-spacing: -0.01em;
}

.detail-header {
  margin-bottom: 32px;
}
.detail-ticker {
  font-size: 13px;
  color: var(--blue);
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: -0.005em;
}
.detail-title {
  font-size: 34px;
  font-weight: 600;
  line-height: 1.15;
  color: var(--ink);
  letter-spacing: -0.025em;
  margin-bottom: 8px;
  max-width: 880px;
}
.detail-meta {
  font-size: 15px;
  color: var(--ink-3);
  font-weight: 400;
  letter-spacing: -0.005em;
}

.detail-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 40px;
}
.stat {
  background: var(--bg-card);
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-radius: 16px;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.06);
}
.stat-label {
  font-size: 12px;
  color: var(--ink-3);
  font-weight: 500;
  letter-spacing: -0.005em;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.stat-value {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  color: var(--ink);
  line-height: 1;
}
.stat-value.down { color: var(--red-deep); }
.stat-value.up   { color: var(--green-deep); }
.stat-value.mid  { color: var(--orange); }
.stat-value.dim  { color: var(--ink-3); }
.stat-value.mute { color: var(--ink-4); }

.section-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-3);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--line);
}

/* === Expenses list === */
.expenses-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 36px;
}
.expense-item {
  display: grid;
  grid-template-columns: 160px 1fr auto auto;
  align-items: center;
  gap: 18px;
  padding: 14px 18px;
  background: var(--bg-card);
  border-radius: 12px;
  transition: all 0.15s var(--ease);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.06);
}
.expense-item.is-n8n {
  background: rgba(0, 113, 227, 0.04);
  box-shadow: 0 0 0 1px rgba(0, 113, 227, 0.15);
}
.expense-item:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1),
              0 6px 16px -4px rgba(0, 0, 0, 0.08);
}
.expense-amount {
  font-size: 16px;
  color: var(--red-deep);
  font-weight: 600;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.015em;
}
.expense-body {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.expense-desc {
  font-size: 14px;
  color: var(--ink);
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  letter-spacing: -0.005em;
}
.expense-meta {
  font-size: 12px;
  color: var(--ink-3);
  font-weight: 400;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  letter-spacing: -0.005em;
}
.expense-tail {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 5px;
}
.expense-date {
  font-size: 12px;
  color: var(--ink-3);
  font-weight: 400;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.005em;
}
.source-chip {
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 980px;
  letter-spacing: -0.005em;
}
.source-chip.n8n {
  background: rgba(0, 113, 227, 0.12);
  color: var(--blue);
}
.source-chip.manual {
  background: var(--bg-muted);
  color: var(--ink-2);
}
.expense-del {
  background: transparent;
  border: none;
  color: var(--ink-3);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.15s var(--ease);
  font-size: 14px;
  display: grid;
  place-items: center;
  font-family: inherit;
}
.expense-del:hover {
  background: rgba(255, 59, 48, 0.12);
  color: var(--red-deep);
}
.expense-del-locked {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  color: var(--ink-4);
  font-size: 13px;
}

.expenses-empty {
  padding: 36px;
  text-align: center;
  background: var(--bg-card);
  border-radius: 16px;
  color: var(--ink-3);
  font-size: 15px;
  font-weight: 400;
  margin-bottom: 36px;
  letter-spacing: -0.005em;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.06);
}

/* === Add expense form === */
.add-form {
  background: var(--bg-card);
  padding: 24px;
  border-radius: 20px;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.06),
              0 4px 16px -4px rgba(0, 0, 0, 0.04);
}
.add-form-title {
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-3);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.form-row {
  display: grid;
  grid-template-columns: 220px 1fr auto;
  gap: 10px;
}
.form-input {
  background: var(--bg);
  border: none;
  color: var(--ink);
  font-family: inherit;
  font-size: 14px;
  font-weight: 400;
  padding: 12px 16px;
  outline: none;
  border-radius: 10px;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.18s var(--ease);
  letter-spacing: -0.005em;
}
.form-input::placeholder { color: var(--ink-3); font-weight: 400; letter-spacing: -0.005em; }
.form-input.num { font-variant-numeric: tabular-nums; }
.form-input:focus { box-shadow: 0 0 0 2px var(--blue); }

.btn-primary {
  background: var(--blue);
  color: #ffffff;
  border: none;
  font-family: inherit;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: -0.005em;
  padding: 0 22px;
  border-radius: 980px;
  cursor: pointer;
  transition: all 0.18s var(--ease);
  box-shadow: 0 4px 14px -4px rgba(0, 113, 227, 0.4),
              inset 0 1px 0 rgba(255, 255, 255, 0.2);
  min-height: 44px;
}
.btn-primary:hover {
  background: #0077ed;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px -4px rgba(0, 113, 227, 0.5),
              inset 0 1px 0 rgba(255, 255, 255, 0.25);
}
.btn-primary:active {
  transform: translateY(0);
}

/* === Tabs === */
.tabs {
  display: flex;
  gap: 4px;
  background: var(--bg-muted);
  border-radius: 980px;
  padding: 4px;
}
.tab {
  background: transparent;
  border: none;
  padding: 7px 18px;
  border-radius: 980px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-2);
  cursor: pointer;
  transition: all 0.18s var(--ease);
  letter-spacing: -0.005em;
}
.tab:hover { color: var(--ink); }
.tab.active {
  background: var(--bg-card);
  color: var(--ink);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.06),
              0 1px 3px rgba(0, 0, 0, 0.06);
}

.tab-panel { display: grid; }

/* === MANAGERS === */
.managers-wrap {
  display: grid;
  grid-template-columns: 460px 1fr;
  gap: 20px;
  padding: 24px 28px;
  overflow-y: auto;
}

.managers-form-card,
.managers-list-card {
  background: var(--bg-card);
  border-radius: 20px;
  padding: 24px 26px;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.06),
              0 4px 14px -4px rgba(0, 0, 0, 0.04);
}

.mgr-card-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.015em;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.mgr-badge-unknown {
  margin-left: auto;
  font-size: 11px;
  font-weight: 500;
  color: var(--orange);
  background: rgba(255, 159, 10, 0.12);
  padding: 4px 10px;
  border-radius: 980px;
}
.mgr-card-hint {
  font-size: 13px;
  color: var(--ink-3);
  line-height: 1.45;
  margin-bottom: 20px;
}

.mgr-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.mgr-label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-2);
  letter-spacing: -0.005em;
}
.mgr-label input,
.mgr-label select {
  background: var(--bg);
  border: none;
  color: var(--ink);
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  padding: 11px 14px;
  outline: none;
  border-radius: 10px;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.18s var(--ease);
  letter-spacing: -0.005em;
  appearance: none;
  -webkit-appearance: none;
}
.mgr-label input:focus,
.mgr-label select:focus {
  box-shadow: 0 0 0 2px var(--blue);
}

/* Photo-drop */
.mgr-photo-drop {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 16px;
  background: var(--bg);
  border-radius: 14px;
  cursor: pointer;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08);
  transition: all 0.18s var(--ease);
  position: relative;
}
.mgr-photo-drop:hover {
  box-shadow: 0 0 0 1px var(--blue);
}
.mgr-photo-drop input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}
.mgr-photo-preview {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: var(--bg-muted);
  display: grid;
  place-items: center;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08);
  margin-bottom: 4px;
}
.mgr-photo-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mgr-photo-placeholder {
  font-size: 28px;
  color: var(--ink-3);
  font-weight: 300;
}
.mgr-photo-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
}
.mgr-photo-hint {
  font-size: 11px;
  color: var(--ink-3);
}

.mgr-form-actions {
  display: flex;
  gap: 10px;
  margin-top: 4px;
  justify-content: flex-end;
}
.btn-ghost {
  background: transparent;
  color: var(--ink-2);
  border: none;
  font-family: inherit;
  font-weight: 500;
  font-size: 13px;
  padding: 10px 18px;
  border-radius: 980px;
  cursor: pointer;
  transition: background 0.15s var(--ease);
  letter-spacing: -0.005em;
}
.btn-ghost:hover {
  background: var(--bg-muted);
  color: var(--ink);
}

/* Managers list */
.mgr-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mgr-item {
  display: grid;
  grid-template-columns: 52px 1fr auto auto;
  gap: 14px;
  align-items: center;
  padding: 12px 14px;
  background: var(--bg);
  border-radius: 14px;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.06);
  transition: all 0.15s var(--ease);
}
.mgr-item:hover {
  background: var(--bg-muted);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08);
}
.mgr-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(180deg, #f0f0f3 0%, #d8d8dc 100%);
  overflow: hidden;
  display: grid;
  place-items: center;
  color: var(--ink-2);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.01em;
  flex-shrink: 0;
}
.mgr-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mgr-info {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.mgr-info-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.mgr-info-meta {
  font-size: 12px;
  color: var(--ink-3);
  font-weight: 500;
  letter-spacing: -0.005em;
}
.mgr-role-chip {
  padding: 4px 12px;
  border-radius: 980px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: -0.005em;
  white-space: nowrap;
}
.mgr-role-chip.sales   { background: rgba(0, 113, 227, 0.12);  color: var(--blue); }
.mgr-role-chip.support { background: rgba(52, 199, 89, 0.14);  color: var(--green-deep); }
.mgr-action {
  display: flex;
  gap: 4px;
}
.mgr-btn {
  background: transparent;
  border: none;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  cursor: pointer;
  color: var(--ink-3);
  transition: all 0.15s var(--ease);
  font-family: inherit;
  font-size: 14px;
}
.mgr-btn:hover {
  background: var(--bg-muted);
  color: var(--ink);
}
.mgr-btn.del:hover {
  background: rgba(255, 59, 48, 0.12);
  color: var(--red-deep);
}

.mgr-empty {
  padding: 28px;
  text-align: center;
  background: var(--bg);
  border-radius: 14px;
  color: var(--ink-3);
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.06);
}

/* Unknown ID chips */
.mgr-unknown-section {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.mgr-unknown-title {
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-2);
  margin-bottom: 10px;
  letter-spacing: -0.005em;
}
.mgr-unknown-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.mgr-unknown-chip {
  padding: 5px 12px;
  background: rgba(255, 159, 10, 0.1);
  color: var(--orange);
  border-radius: 980px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s var(--ease);
  font-variant-numeric: tabular-nums;
}
.mgr-unknown-chip:hover {
  background: rgba(255, 159, 10, 0.18);
}

/* === Toast === */
.toast {
  position: fixed;
  top: 24px;
  right: 24px;
  padding: 14px 20px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--green-deep);
  font-size: 14px;
  font-weight: 500;
  z-index: 50;
  letter-spacing: -0.005em;
  box-shadow: 0 0 0 1px rgba(52, 199, 89, 0.3),
              0 16px 40px -12px rgba(0, 0, 0, 0.15);
  backdrop-filter: saturate(180%) blur(20px);
  animation: toast-in 0.3s var(--ease);
}
.toast.error {
  color: var(--red-deep);
  box-shadow: 0 0 0 1px rgba(255, 59, 48, 0.3),
              0 16px 40px -12px rgba(0, 0, 0, 0.15);
}
@keyframes toast-in {
  from { transform: translateX(20px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}
