/* quond.am — Tailus-inspired marketing + TailAdmin-inspired app shell */

@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap");

:root {
  --primary: #4f46e5;
  --primary-dark: #4338ca;
  --primary-light: #818cf8;
  --secondary: #f97316;
  --surface: #ffffff;
  --surface-muted: #f8fafc;
  --surface-sidebar: #1e293b;
  --surface-sidebar-hover: #334155;
  --border: #e2e8f0;
  --text: #0f172a;
  --text-muted: #64748b;
  --text-sidebar: #cbd5e1;
  --text-sidebar-active: #ffffff;
  --radius: 0.75rem;
  --shadow: 0 1px 3px 0 rgb(15 23 42 / 0.08), 0 1px 2px -1px rgb(15 23 42 / 0.08);
  --shadow-lg: 0 10px 40px -10px rgb(15 23 42 / 0.15);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
  line-height: 1.5;
  color: var(--text);
  background: var(--surface-muted);
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
table { border-collapse: collapse; width: 100%; }
img { max-width: 100%; }

/* Utilities */
.min-h-screen { min-height: 100vh; }
.flex { display: flex; }
.flex-1 { flex: 1 1 0%; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.grid { display: grid; }
.hidden { display: none; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.space-y-1 > * + * { margin-top: 0.25rem; }
.space-y-3 > * + * { margin-top: 0.75rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.w-full { width: 100%; }
.w-64 { width: 16rem; }
.w-72 { width: 18rem; }
.w-32 { width: 8rem; }
.max-w-md { max-width: 28rem; }
.max-w-xl { max-width: 36rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-6xl { max-width: 72rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.p-3 { padding: 0.75rem; }
.p-4 { padding: 1rem; }
.p-5 { padding: 1.25rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.px-3 { padding-left: 0.75rem; padding-right: 0.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; }
.py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-2\.5 { padding-top: 0.625rem; padding-bottom: 0.625rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.pt-24 { padding-top: 6rem; }
.pb-16 { padding-bottom: 4rem; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.ml-2 { margin-left: 0.5rem; }
.ml-4 { margin-left: 1rem; }
.mr-2 { margin-right: 0.5rem; }
.text-xs { font-size: 0.75rem; line-height: 1rem; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-base { font-size: 1rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-3xl { font-size: 1.875rem; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.text-5xl { font-size: 3rem; line-height: 1.1; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-extrabold { font-weight: 800; }
.font-mono { font-family: ui-monospace, monospace; }
.text-center { text-align: center; }
.text-left { text-align: left; }
.leading-tight { line-height: 1.25; }
.leading-relaxed { line-height: 1.625; }
.tracking-tight { letter-spacing: -0.025em; }
.text-white { color: #fff; }
.text-gray-400 { color: #9ca3af; }
.text-gray-500 { color: #6b7280; }
.text-gray-600 { color: #4b5563; }
.text-gray-700 { color: #374151; }
.text-gray-800 { color: #1f2937; }
.text-gray-900 { color: #111827; }
.text-slate-500 { color: #64748b; }
.text-slate-600 { color: #475569; }
.text-slate-700 { color: #334155; }
.text-slate-900 { color: #0f172a; }
.text-indigo-500 { color: #6366f1; }
.text-indigo-600 { color: #4f46e5; }
.text-red-600 { color: #dc2626; }
.text-amber-600 { color: #d97706; }
.text-green-800 { color: #166534; }
.text-blue-800 { color: #1e40af; }
.text-red-800 { color: #991b1b; }
.text-purple-800 { color: #6b21a8; }
.text-yellow-800 { color: #854d0e; }
.bg-white { background-color: #fff; }
.bg-gray-50 { background-color: #f9fafb; }
.bg-gray-100 { background-color: #f3f4f6; }
.bg-gray-200 { background-color: #e5e7eb; }
.bg-indigo-600 { background-color: #4f46e5; }
.bg-green-100 { background-color: #dcfce7; }
.bg-blue-100 { background-color: #dbeafe; }
.bg-red-100 { background-color: #fee2e2; }
.bg-purple-100 { background-color: #f3e8ff; }
.bg-yellow-100 { background-color: #fef9c3; }
.rounded { border-radius: 0.25rem; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-full { border-radius: 9999px; }
.border { border: 1px solid var(--border); }
.border-b { border-bottom: 1px solid var(--border); }
.border-t { border-top: 1px solid var(--border); }
.border-indigo-600 { border-color: #4f46e5; }
.shadow { box-shadow: var(--shadow); }
.shadow-sm { box-shadow: 0 1px 2px 0 rgb(15 23 42 / 0.05); }
.shadow-lg { box-shadow: var(--shadow-lg); }
.overflow-hidden { overflow: hidden; }
.whitespace-pre-wrap { white-space: pre-wrap; }
.break-all { word-break: break-all; }
.inline-block { display: inline-block; }
.block { display: block; }
.h-2 { height: 0.5rem; }
.h-10 { height: 2.5rem; }
.h-11 { height: 2.75rem; }
.underline { text-decoration: underline; }
.hover\:underline:hover { text-decoration: underline; }
.hover\:bg-indigo-700:hover { background-color: #4338ca; }
.hover\:bg-gray-50:hover { background-color: #f9fafb; }
.relative { position: relative; }
.absolute { position: absolute; }
.inset-0 { inset: 0; }
.-z-10 { z-index: -10; }
.sticky { position: sticky; }
.top-0 { top: 0; }
.z-50 { z-index: 50; }
.shrink-0 { flex-shrink: 0; }

@media (min-width: 640px) {
  .sm\:flex-row { flex-direction: row; }
  .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sm\:text-5xl { font-size: 3rem; line-height: 1.1; }
  .sm\:text-xl { font-size: 1.25rem; }
}
@media (min-width: 768px) {
  .md\:block { display: block; }
  .md\:flex { display: flex; }
  .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .md\:px-8 { padding-left: 2rem; padding-right: 2rem; }
}
@media (min-width: 1024px) {
  .lg\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .lg\:text-6xl { font-size: 3.75rem; line-height: 1; }
  .lg\:px-8 { padding-left: 2rem; padding-right: 2rem; }
}

/* --- Marketing (Tailus-inspired) --- */
.landing-page { background: #fff; color: var(--text); }
.landing-header {
  position: sticky; top: 0; z-index: 50;
  border-bottom: 1px solid rgb(15 23 42 / 0.06);
  background: rgb(255 255 255 / 0.8);
  backdrop-filter: blur(12px);
}
.landing-nav { max-width: 72rem; margin: 0 auto; padding: 1rem 1.5rem; display: flex; align-items: center; justify-content: space-between; }
.landing-logo { font-size: 1.25rem; font-weight: 700; color: var(--primary); letter-spacing: -0.03em; }
.landing-hero-wrap {
  position: relative; overflow: hidden;
  padding: 5rem 1.5rem 4rem;
}
.landing-hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgb(99 102 241 / 0.18), transparent),
    radial-gradient(ellipse 50% 40% at 90% 20%, rgb(249 115 22 / 0.1), transparent),
    linear-gradient(180deg, #f8fafc 0%, #fff 60%);
}
.landing-hero-inner { position: relative; z-index: 1; max-width: 48rem; margin: 0 auto; text-align: center; }
.landing-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.35rem 0.85rem; margin-bottom: 1.5rem;
  font-size: 0.8125rem; font-weight: 500; color: var(--primary);
  background: rgb(99 102 241 / 0.1); border: 1px solid rgb(99 102 241 / 0.2);
  border-radius: 9999px;
}
.landing-title {
  font-size: clamp(2.25rem, 5vw, 3.75rem); font-weight: 800; line-height: 1.08;
  letter-spacing: -0.03em; color: var(--text); margin: 0 0 1.25rem;
}
.landing-title-accent {
  background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 50%, #f97316 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.landing-subtitle { font-size: 1.125rem; color: var(--text-muted); max-width: 36rem; margin: 0 auto 2rem; line-height: 1.65; }
.landing-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; }
.landing-features { padding: 4rem 1.5rem; background: var(--surface-muted); }
.landing-features-grid { max-width: 72rem; margin: 0 auto; display: grid; gap: 1.5rem; }
.landing-feature-card {
  padding: 1.75rem; background: #fff; border: 1px solid var(--border);
  border-radius: 1rem; box-shadow: var(--shadow);
  transition: box-shadow 0.2s, transform 0.2s;
}
.landing-feature-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.landing-feature-icon {
  width: 2.75rem; height: 2.75rem; display: flex; align-items: center; justify-content: center;
  border-radius: 0.75rem; background: rgb(99 102 241 / 0.1); color: var(--primary);
  font-size: 1.25rem; margin-bottom: 1rem;
}
.landing-cta {
  padding: 4rem 1.5rem; text-align: center;
  background: linear-gradient(135deg, #312e81 0%, #4f46e5 50%, #6366f1 100%);
  color: #fff;
}
.landing-footer {
  padding: 2rem 1.5rem; text-align: center; font-size: 0.875rem; color: var(--text-muted);
  border-top: 1px solid var(--border);
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.625rem 1.25rem; font-size: 0.875rem; font-weight: 600;
  border-radius: 0.5rem; border: 1px solid transparent; cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s, box-shadow 0.15s;
}
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-dark); }
.btn-secondary { background: #fff; color: var(--text); border-color: var(--border); }
.btn-secondary:hover { background: var(--surface-muted); }
.btn-ghost { background: transparent; color: var(--text-muted); }
.btn-ghost:hover { color: var(--text); background: rgb(15 23 42 / 0.04); }
.btn-white { background: #fff; color: var(--primary); }
.btn-white:hover { background: #f1f5f9; }
.btn-lg { padding: 0.75rem 1.5rem; font-size: 1rem; }
.btn-block { width: 100%; }

/* Forms */
.form-label { display: block; font-size: 0.875rem; font-weight: 500; color: var(--text); margin-bottom: 0.375rem; }
.form-input {
  display: block; width: 100%; height: 2.75rem; padding: 0 0.875rem;
  font-size: 0.875rem; color: var(--text); background: #fff;
  border: 1px solid var(--border); border-radius: 0.5rem;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.form-input:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgb(99 102 241 / 0.15); }
.form-textarea { min-height: 8rem; padding: 0.75rem 0.875rem; height: auto; resize: vertical; }
.form-error { font-size: 0.875rem; color: #dc2626; margin-bottom: 1rem; }

/* Auth (TailAdmin-inspired) */
.auth-page {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  padding: 1.5rem;
  background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
}
.auth-card {
  width: 100%; max-width: 26rem; padding: 2rem;
  background: #fff; border: 1px solid var(--border); border-radius: 1rem;
  box-shadow: var(--shadow-lg);
}
.auth-brand { text-align: center; margin-bottom: 1.75rem; }
.auth-brand-logo { font-size: 1.5rem; font-weight: 800; color: var(--primary); letter-spacing: -0.03em; }
.auth-brand-tag { font-size: 0.8125rem; color: var(--text-muted); margin-top: 0.25rem; }
.auth-title { font-size: 1.25rem; font-weight: 600; color: var(--text); margin-bottom: 0.25rem; }
.auth-subtitle { font-size: 0.875rem; color: var(--text-muted); margin-bottom: 1.5rem; }

/* App shell (TailAdmin-inspired) */
.app-layout { display: flex; min-height: 100vh; background: #f1f5f9; }
.app-sidebar {
  width: 18rem; flex-shrink: 0; display: none;
  flex-direction: column; background: var(--surface-sidebar);
  border-right: 1px solid rgb(255 255 255 / 0.06);
}
.app-sidebar-brand {
  padding: 1.25rem 1.5rem; border-bottom: 1px solid rgb(255 255 255 / 0.08);
}
.app-sidebar-logo { font-size: 1.125rem; font-weight: 700; color: #fff; letter-spacing: -0.02em; }
.app-sidebar-tag { font-size: 0.6875rem; color: #94a3b8; margin-top: 0.25rem; line-height: 1.4; }
.app-sidebar-nav { flex: 1; padding: 1rem 0.75rem; overflow-y: auto; }
.app-nav-section { font-size: 0.6875rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: #64748b; padding: 0.5rem 0.75rem; margin-top: 0.5rem; }
.app-nav-link {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.625rem 0.75rem; margin-bottom: 0.125rem;
  font-size: 0.875rem; font-weight: 500; color: var(--text-sidebar);
  border-radius: 0.5rem; transition: background 0.15s, color 0.15s;
}
.app-nav-link:hover { background: var(--surface-sidebar-hover); color: #fff; }
.app-nav-link.active {
  background: rgb(79 70 229 / 0.9); color: var(--text-sidebar-active);
  box-shadow: 0 1px 2px rgb(0 0 0 / 0.2);
}
.app-nav-icon { width: 1.25rem; text-align: center; font-size: 1rem; opacity: 0.9; }
.app-main { flex: 1; display: flex; flex-direction: column; min-width: 0; }
.app-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 1.5rem; background: #fff;
  border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 40;
}
.app-header-title { font-size: 1.25rem; font-weight: 600; color: var(--text); margin: 0; }
.app-header-user { display: flex; align-items: center; gap: 0.75rem; }
.app-user-pill {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.375rem 0.75rem; background: #f8fafc; border: 1px solid var(--border);
  border-radius: 9999px; font-size: 0.8125rem; font-weight: 500; color: var(--text);
}
.app-user-avatar {
  width: 1.75rem; height: 1.75rem; border-radius: 9999px;
  background: linear-gradient(135deg, #4f46e5, #7c3aed);
  color: #fff; font-size: 0.75rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.app-content { flex: 1; padding: 1.5rem; }
.app-logout { font-size: 0.8125rem; font-weight: 500; color: var(--primary); }
.app-logout:hover { text-decoration: underline; }

/* Dashboard cards */
.stat-card {
  padding: 1.25rem 1.5rem; background: #fff;
  border: 1px solid var(--border); border-radius: 0.75rem; box-shadow: var(--shadow-sm);
}
.stat-card-label { font-size: 0.8125rem; font-weight: 500; color: var(--text-muted); margin: 0 0 0.5rem; }
.stat-card-value { font-size: 1.75rem; font-weight: 700; color: var(--text); margin: 0; letter-spacing: -0.02em; }
.stat-card-sub { font-size: 0.75rem; color: var(--text-muted); margin: 0.25rem 0 0; }

.panel {
  background: #fff; border: 1px solid var(--border); border-radius: 0.75rem;
  box-shadow: var(--shadow-sm); overflow: hidden;
}
.panel-header {
  padding: 1rem 1.25rem; border-bottom: 1px solid var(--border);
  font-size: 0.9375rem; font-weight: 600; color: var(--text);
}
.panel-body { padding: 1.25rem; }

.data-table thead th {
  padding: 0.75rem 1rem; text-align: left; font-size: 0.75rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.04em; color: var(--text-muted);
  background: #f8fafc; border-bottom: 1px solid var(--border);
}
.data-table tbody td { padding: 0.875rem 1rem; font-size: 0.875rem; border-bottom: 1px solid #f1f5f9; }
.data-table tbody tr:hover { background: #f8fafc; }
.data-table tbody tr:last-child td { border-bottom: none; }

.badge {
  display: inline-flex; padding: 0.2rem 0.65rem; font-size: 0.75rem; font-weight: 500;
  border-radius: 9999px;
}
.badge-green { background: #dcfce7; color: #166534; }
.badge-blue { background: #dbeafe; color: #1e40af; }
.badge-gray { background: #f1f5f9; color: #475569; }
.badge-red { background: #fee2e2; color: #991b1b; }
.badge-purple { background: #f3e8ff; color: #6b21a8; }
.badge-yellow { background: #fef9c3; color: #854d0e; }
.badge-teal { background: #ccfbf1; color: #115e59; }

.filter-pill {
  display: inline-block; padding: 0.375rem 0.875rem; font-size: 0.8125rem; font-weight: 500;
  border-radius: 9999px; border: 1px solid var(--border); background: #fff; color: var(--text-muted);
}
.filter-pill.active { background: var(--primary); border-color: var(--primary); color: #fff; }
.filter-pill:hover:not(.active) { background: #f8fafc; }

/* Location pill input (Tailwind-style tokens) */
.location-pills-input {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  min-height: 2.75rem;
  width: 100%;
  padding: 0.5rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  background: #fff;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.location-pills-input:focus-within {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgb(79 70 229 / 0.12);
}
.location-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.25rem 0.625rem;
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.25rem;
  border-radius: 9999px;
  background: #eef2ff;
  color: #3730a3;
  border: 1px solid #c7d2fe;
}
.location-pill-readonly {
  background: #f8fafc;
  color: #475569;
  border-color: #e2e8f0;
}
.location-pill-remove {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.125rem;
  height: 1.125rem;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 9999px;
  background: transparent;
  color: #6366f1;
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
}
.location-pill-remove:hover {
  background: #c7d2fe;
  color: #312e81;
}
.location-pills-field {
  flex: 1 1 10rem;
  min-width: 10rem;
  border: none;
  outline: none;
  font-size: 0.875rem;
  padding: 0.25rem 0;
  background: transparent;
  color: var(--text);
}
.location-pills-field::placeholder {
  color: #94a3b8;
}

.progress-track { width: 100%; height: 0.5rem; background: #e2e8f0; border-radius: 9999px; overflow: hidden; }
.progress-bar { height: 100%; background: var(--primary); border-radius: 9999px; transition: width 0.3s; }

.alert-warning {
  padding: 0.75rem 1rem; margin-bottom: 1rem; font-size: 0.875rem;
  color: #92400e; background: #fffbeb; border: 1px solid #fde68a; border-radius: 0.5rem;
}

@media (min-width: 768px) {
  .app-sidebar { display: flex; }
  .landing-features-grid { grid-template-columns: repeat(3, 1fr); }
}

[x-cloak] { display: none !important; }

.toast-stack {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  top: auto;
  z-index: 1000;
  display: flex;
  flex-direction: column-reverse;
  gap: 0.5rem;
  max-width: min(22rem, calc(100vw - 2rem));
  pointer-events: none;
}

.toast {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 4px solid var(--primary);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 0.75rem 1rem;
  opacity: 0;
  transform: translateY(0.5rem);
  transition: opacity 0.2s ease, transform 0.2s ease;
  pointer-events: auto;
}

.toast-visible {
  opacity: 1;
  transform: translateY(0);
}

.toast strong {
  display: block;
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
}

.toast span {
  display: block;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.toast-done { border-left-color: #16a34a; }
.toast-failed { border-left-color: #dc2626; }
.toast-progress { border-left-color: var(--primary); }

.toast-progress-track {
  width: 100%;
  height: 0.375rem;
  background: #e2e8f0;
  border-radius: 9999px;
  overflow: hidden;
  margin: 0.375rem 0 0.5rem;
}

.toast-progress-bar {
  height: 100%;
  background: var(--primary);
  border-radius: 9999px;
  transition: width 0.3s ease;
  width: 0%;
}

.toast-stage {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--primary);
  margin-bottom: 0.25rem;
}

.toast-message {
  display: block;
  font-size: 0.8125rem;
  color: var(--text-muted);
}
