/* WareFlow: eigenstaendiges CSS, kein Build-Schritt, kein Framework noetig.
   Basis-Tokens/Komponenten bewusst analog zum Lagersystem-Produkt gehalten
   (Wiedererkennungswert), erweitert um Marketing-/Shop-spezifische Klassen. */

:root {
  --background: #f8fafc;
  --card: #ffffff;
  --foreground: #0f172a;
  --muted-foreground: #64748b;
  --border: #e2e8f0;
  --primary: #4f46e5;
  --primary-foreground: #ffffff;
  --ring: #94a3b8;
  --radius: 12px;
  --accent-soft: #eef2ff;

  --slate-bg: #f1f5f9; --slate-fg: #334155; --slate-bd: #cbd5e1;
  --amber-bg: #fef3c7; --amber-fg: #92400e; --amber-bd: #fcd34d;
  --blue-bg: #dbeafe; --blue-fg: #1e40af; --blue-bd: #93c5fd;
  --indigo-bg: #e0e7ff; --indigo-fg: #3730a3; --indigo-bd: #a5b4fc;
  --emerald-bg: #d1fae5; --emerald-fg: #065f46; --emerald-bd: #6ee7b7;
  --gray-bg: #e5e7eb; --gray-fg: #374151; --gray-bd: #9ca3af;
  --red-bg: #fee2e2; --red-fg: #b91c1c; --red-bd: #fca5a5;
  --sky-bg: #e0f2fe; --sky-fg: #075985; --sky-bd: #7dd3fc;

  --red-50: #fef2f2; --red-700: #b91c1c;
  --amber-50: #fffbeb; --amber-700: #b45309;
  --emerald-50: #ecfdf5; --emerald-700: #047857;
}

[data-theme="dark"] {
  --background: #0a0a0c; --card: #17171b; --foreground: #f1f5f9;
  --muted-foreground: #94a3b8; --border: #2b2b30; --primary: #818cf8;
  --primary-foreground: #0a0a0c; --ring: #52525b; --accent-soft: #1e1b4b;
  --slate-bg: #27272a; --slate-fg: #cbd5e1; --slate-bd: #52525b;
  --amber-bg: #451a03; --amber-fg: #fcd34d; --amber-bd: #92400e;
  --blue-bg: #172554; --blue-fg: #93c5fd; --blue-bd: #1e40af;
  --indigo-bg: #1e1b4b; --indigo-fg: #a5b4fc; --indigo-bd: #3730a3;
  --emerald-bg: #052e1f; --emerald-fg: #6ee7b7; --emerald-bd: #065f46;
  --gray-bg: #27272a; --gray-fg: #d4d4d8; --gray-bd: #52525b;
  --red-bg: #450a0a; --red-fg: #fca5a5; --red-bd: #b91c1c;
  --sky-bg: #082f49; --sky-fg: #7dd3fc; --sky-bd: #075985;
  --red-50: #2a0e0e; --red-700: #fca5a5;
  --amber-50: #2a1c05; --amber-700: #fcd34d;
  --emerald-50: #04241a; --emerald-700: #6ee7b7;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --background: #0a0a0c; --card: #17171b; --foreground: #f1f5f9;
    --muted-foreground: #94a3b8; --border: #2b2b30; --primary: #818cf8;
    --primary-foreground: #0a0a0c; --ring: #52525b; --accent-soft: #1e1b4b;
    --slate-bg: #27272a; --slate-fg: #cbd5e1; --slate-bd: #52525b;
    --amber-bg: #451a03; --amber-fg: #fcd34d; --amber-bd: #92400e;
    --blue-bg: #172554; --blue-fg: #93c5fd; --blue-bd: #1e40af;
    --indigo-bg: #1e1b4b; --indigo-fg: #a5b4fc; --indigo-bd: #3730a3;
    --emerald-bg: #052e1f; --emerald-fg: #6ee7b7; --emerald-bd: #065f46;
    --gray-bg: #27272a; --gray-fg: #d4d4d8; --gray-bd: #52525b;
    --red-bg: #450a0a; --red-fg: #fca5a5; --red-bd: #b91c1c;
    --sky-bg: #082f49; --sky-fg: #7dd3fc; --sky-bd: #075985;
    --red-50: #2a0e0e; --red-700: #fca5a5;
    --amber-50: #2a1c05; --amber-700: #fcd34d;
    --emerald-50: #04241a; --emerald-700: #6ee7b7;
  }
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: var(--background);
  color: var(--foreground);
  font-size: 15px;
  line-height: 1.55;
}
a { color: inherit; text-decoration: none; }
h1 { font-size: 30px; font-weight: 800; margin: 0; letter-spacing: -0.02em; }
h2 { font-size: 22px; font-weight: 700; margin: 0 0 8px; letter-spacing: -0.01em; }
h3 { font-size: 16px; font-weight: 600; margin: 0 0 4px; }
p { margin: 0; }
.text-muted { color: var(--muted-foreground); }
.text-sm { font-size: 13px; }
.text-xs { font-size: 12px; }

/* ---- Navigation / Footer (Marketing + Konto) ---------------------------- */
.wf-nav { position: sticky; top: 0; z-index: 40; background: color-mix(in srgb, var(--card) 92%, transparent); backdrop-filter: blur(8px); border-bottom: 1px solid var(--border); }
.wf-nav-inner, .wf-footer-inner, .wf-container { max-width: 1080px; margin: 0 auto; padding: 0 24px; }
.wf-nav-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.wf-brand { font-size: 18px; font-weight: 800; letter-spacing: -0.01em; }
.wf-nav-links { display: flex; align-items: center; gap: 20px; font-size: 14px; font-weight: 500; }
.wf-nav-links a:not(.btn):hover { color: var(--primary); }
.wf-footer { border-top: 1px solid var(--border); margin-top: 80px; padding: 28px 0; }
.wf-footer-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 13px; color: var(--muted-foreground); }
.wf-footer-links { display: flex; gap: 16px; }
.wf-footer-links a:hover { color: var(--primary); }
.wf-account-main { padding: 32px 0 64px; }

/* ---- Hero / Marketing-Sektionen ------------------------------------------ */
.hero-band { position: relative; overflow: hidden; padding-bottom: 20px; }
.hero-band::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(50% 60% at 50% 0%, color-mix(in srgb, var(--primary) 20%, transparent), transparent 70%),
    radial-gradient(40% 50% at 85% 10%, color-mix(in srgb, var(--primary) 12%, transparent), transparent 70%);
}
.hero { position: relative; z-index: 1; padding: 90px 24px 0; text-align: center; max-width: 780px; margin: 0 auto; }
.hero .eyebrow { display: inline-block; background: var(--accent-soft); color: var(--primary); font-size: 13px; font-weight: 600; padding: 6px 14px; border-radius: 999px; margin-bottom: 20px; }
.hero h1 { font-size: 50px; margin-bottom: 18px; }
.hero p.lead { font-size: 18px; color: var(--muted-foreground); margin-bottom: 32px; }
.hero-cta { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 56px; }
@media (max-width: 640px) { .hero h1 { font-size: 32px; } .hero { padding: 60px 20px 0; } }

/* ---- Kennzahlen-Leiste (Fakten statt erfundener Kundenzahlen) ---- */
.stat-strip { max-width: 900px; margin: 0 auto; padding: 32px 24px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.stat-strip .num { font-size: 28px; font-weight: 800; color: var(--primary); }
.stat-strip .lbl { font-size: 13px; color: var(--muted-foreground); margin-top: 4px; }
@media (max-width: 700px) { .stat-strip { grid-template-columns: repeat(2, 1fr); } }

/* ---- Abschluss-CTA-Banner ---- */
.cta-banner { max-width: 1080px; margin: 24px auto 0; padding: 56px 32px; text-align: center; border-radius: 24px; background: linear-gradient(135deg, var(--primary), color-mix(in srgb, var(--primary) 60%, #7c3aed)); }
.cta-banner h2 { color: var(--primary-foreground); margin-bottom: 10px; }
.cta-banner p { color: color-mix(in srgb, var(--primary-foreground) 85%, transparent); margin-bottom: 24px; }
.cta-banner .btn { background: var(--primary-foreground); color: var(--primary); }
.cta-banner .btn-outline { background: transparent; border-color: color-mix(in srgb, var(--primary-foreground) 50%, transparent); color: var(--primary-foreground); }

/* ---- Vorher/Nachher-Vergleich ---- */
.compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; max-width: 820px; margin: 0 auto; }
@media (max-width: 700px) { .compare-grid { grid-template-columns: 1fr; } }
.compare-card { border-radius: var(--radius); padding: 24px; border: 1px solid var(--border); }
.compare-card.bad { background: color-mix(in srgb, var(--red-bg) 60%, transparent); }
.compare-card.good { background: color-mix(in srgb, var(--emerald-bg) 60%, transparent); border-color: var(--emerald-bd); }
.compare-card h3 { margin-bottom: 12px; }
.compare-card ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; font-size: 14px; }
.compare-card.bad li::before { content: "✕ "; color: var(--red-fg); font-weight: 700; }
.compare-card.good li::before { content: "✓ "; color: var(--emerald-fg); font-weight: 700; }

.section { max-width: 1080px; margin: 0 auto; padding: 60px 24px; }
.section-head { text-align: center; max-width: 600px; margin: 0 auto 40px; }
.section-head p { color: var(--muted-foreground); margin-top: 8px; }

.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 860px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .feature-grid { grid-template-columns: 1fr; } }
.feature-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px; }
.feature-card .icon { font-size: 26px; margin-bottom: 10px; display: block; }
.feature-card p { color: var(--muted-foreground); font-size: 14px; margin-top: 6px; }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; counter-reset: step; }
@media (max-width: 700px) { .steps { grid-template-columns: 1fr; } }
.step { position: relative; padding-top: 8px; }
.step .num { display: flex; align-items: center; justify-content: center; width: 34px; height: 34px; border-radius: 999px; background: var(--primary); color: var(--primary-foreground); font-weight: 700; margin-bottom: 12px; }

.pricing-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; max-width: 760px; margin: 0 auto; }
@media (max-width: 700px) { .pricing-grid { grid-template-columns: 1fr; } }
.price-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; }
.price-card.highlight { border-color: var(--primary); box-shadow: 0 0 0 1px var(--primary); }
.price-card .price { font-size: 38px; font-weight: 800; margin: 10px 0; }
.price-card .price small { font-size: 14px; font-weight: 500; color: var(--muted-foreground); }
.price-card ul { list-style: none; margin: 18px 0; padding: 0; display: flex; flex-direction: column; gap: 10px; font-size: 14px; }
.price-card li::before { content: "✓ "; color: var(--emerald-fg); font-weight: 700; }

.trust-strip { display: flex; justify-content: center; gap: 32px; flex-wrap: wrap; padding: 24px; color: var(--muted-foreground); font-size: 13px; }

/* ---- Produktvorschau: originalgetreu nachgebaute UI-Ausschnitte des echten
   Lagersystems (kein Screenshot, sondern mit denselben Farb-/Badge-Tokens
   nachgebaut), fuer die Produktseite ("So sieht's aus"). ---------------- */
.ui-mock { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; height: 100%; }
.ui-mock-label { font-size: 12px; font-weight: 600; color: var(--muted-foreground); text-transform: uppercase; letter-spacing: .03em; margin-bottom: 14px; }
.ui-mock-kpis { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin-bottom: 14px; }
.ui-mock-kpi { background: var(--slate-bg); border-radius: 8px; padding: 8px 10px; }
.ui-mock-kpi .val { font-size: 18px; font-weight: 700; line-height: 1.2; }
.ui-mock-kpi .lbl { font-size: 10px; color: var(--muted-foreground); }
.ui-mock-alert { background: var(--red-bg); color: var(--red-fg); border: 1px solid var(--red-bd); border-radius: 8px; padding: 8px 12px; font-size: 12px; margin-bottom: 14px; font-weight: 600; }
.ui-mock-row { display: flex; align-items: center; justify-content: space-between; gap: 8px; padding: 8px 0; border-bottom: 1px solid var(--border); font-size: 12px; }
.ui-mock-row:last-child { border-bottom: none; }
.ui-mock-row .badges { display: flex; gap: 6px; flex-shrink: 0; }
.ui-mock-toggle-row { display: flex; align-items: center; justify-content: space-between; padding: 9px 0; border-bottom: 1px solid var(--border); font-size: 12px; }
.ui-mock-toggle-row:last-child { border-bottom: none; }
.ui-mock-toggle { width: 32px; height: 18px; border-radius: 999px; background: var(--emerald-fg); position: relative; flex-shrink: 0; }
.ui-mock-toggle::after { content: ""; position: absolute; right: 2px; top: 2px; width: 14px; height: 14px; background: #fff; border-radius: 50%; }
.ui-mock-toggle.off { background: var(--border); }
.ui-mock-toggle.off::after { right: auto; left: 2px; }
.ui-mock-select { font-size: 11px; padding: 3px 8px; border: 1px solid var(--border); border-radius: 6px; color: var(--muted-foreground); background: var(--background); }

/* ---- Echte Screenshots des Lagersystems auf der Produktseite ---- */
.shot-hero { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; box-shadow: 0 8px 24px rgba(0,0,0,.12); margin-bottom: 12px; }
.shot-hero img { width: 100%; display: block; }
.shot-caption { text-align: center; font-size: 13px; color: var(--muted-foreground); margin-bottom: 32px; }
.shot-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-bottom: 12px; }
@media (max-width: 700px) { .shot-grid { grid-template-columns: 1fr; } }
.shot-card { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; background: var(--card); }
.shot-card img { width: 100%; display: block; }
.shot-card .cap { padding: 10px 14px; font-size: 13px; color: var(--muted-foreground); border-top: 1px solid var(--border); }

/* ---- Produktkarten zentriert statt starrem Grid (wirkt bei 1-2 Karten
   sonst schief/zu weit aussen) ---- */
.product-cards { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; }
.product-cards .feature-card { width: 320px; flex-shrink: 0; }

/* ---- Hero-Showcase mit Glow-Hintergrund (modernere Praesentation) ---- */
.hero-shot-wrap { position: relative; max-width: 880px; margin: 0 auto 72px; padding: 40px 20px 0; }
.hero-shot-wrap::before {
  content: ""; position: absolute; inset: -60px -20px auto -20px; height: 420px;
  background: radial-gradient(60% 100% at 50% 0%, color-mix(in srgb, var(--primary) 22%, transparent), transparent 70%);
  pointer-events: none; z-index: 0;
}
.hero-shot-wrap .browser-frame { position: relative; z-index: 1; }

/* ---- Browser-Chrome-Rahmen um Screenshots (modernere Praesentation) ---- */
.browser-frame { border: 1px solid var(--border); border-radius: 14px; overflow: hidden; background: var(--card); box-shadow: 0 24px 60px -12px rgba(0,0,0,.35); }
.browser-frame-bar { display: flex; align-items: center; gap: 6px; padding: 10px 14px; background: var(--slate-bg); border-bottom: 1px solid var(--border); }
.browser-frame-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.browser-frame-dot.red { background: #ff5f57; }
.browser-frame-dot.amber { background: #febc2e; }
.browser-frame-dot.green { background: #28c840; }
.browser-frame-url { flex: 1; margin-left: 10px; background: var(--background); border: 1px solid var(--border); border-radius: 6px; padding: 4px 12px; font-size: 11px; color: var(--muted-foreground); text-align: center; }
.browser-frame img { display: block; width: 100%; }

/* ---- Alternierende Feature-Showcase-Reihen (Bild + Text) ---- */
.showcase { display: flex; flex-direction: column; gap: 72px; margin: 8px 0 64px; }
.showcase-row { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: center; }
.showcase-row.reverse .showcase-media { order: -1; }
@media (max-width: 860px) {
  .showcase-row { grid-template-columns: 1fr; }
  .showcase-row.reverse .showcase-media { order: initial; }
}
.showcase-text .eyebrow { display: inline-block; font-size: 12px; font-weight: 700; color: var(--primary); text-transform: uppercase; letter-spacing: .04em; margin-bottom: 10px; }
.showcase-text h3 { font-size: 24px; margin-bottom: 12px; }
.showcase-text p { color: var(--muted-foreground); font-size: 15px; }
.showcase-media img { width: 100%; display: block; border-radius: 10px; }
.showcase-media { border: 1px solid var(--border); border-radius: 14px; overflow: hidden; background: var(--card); box-shadow: 0 16px 40px -10px rgba(0,0,0,.25); }

/* ---- Layout (App-Shell fuer Admin) ---------------------------------------- */
.app-shell { display: flex; min-height: 100vh; }
.sidebar { width: 250px; flex-shrink: 0; background: var(--card); border-right: 1px solid var(--border); display: flex; flex-direction: column; position: sticky; top: 0; height: 100vh; }
.sidebar-brand { padding: 16px; font-size: 18px; font-weight: 700; border-bottom: 1px solid var(--border); }
.sidebar-nav { flex: 1; overflow-y: auto; padding: 12px; display: flex; flex-direction: column; gap: 4px; }
.sidebar-link { display: flex; align-items: center; gap: 10px; padding: 10px 12px; border-radius: 8px; font-size: 14px; font-weight: 500; color: var(--foreground); }
.sidebar-link:hover { background: var(--slate-bg); }
.sidebar-link.active { background: var(--primary); color: var(--primary-foreground); }
.sidebar-user { display: flex; align-items: center; gap: 10px; padding: 14px; border-top: 1px solid var(--border); }
.avatar { width: 32px; height: 32px; border-radius: 999px; background: var(--slate-bg); color: var(--slate-fg); display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 600; flex-shrink: 0; }
.sidebar-footer { padding: 8px 16px; border-top: 1px solid var(--border); font-size: 12px; color: var(--muted-foreground); text-align: center; }
.main-col { flex: 1; display: flex; flex-direction: column; min-width: 0; }
.topbar { display: flex; align-items: center; justify-content: space-between; padding: 12px 24px; border-bottom: 1px solid var(--border); background: var(--card); }
.main-content { flex: 1; padding: 24px; }
@media (max-width: 860px) { .sidebar { display: none; } .main-content { padding: 16px; } .topbar { padding: 10px 14px; } }

/* Cards */
.card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: 0 1px 2px rgba(0,0,0,.04); }
.card-header { padding: 16px 16px 0; }
.card-title { font-size: 15px; font-weight: 600; display: flex; align-items: center; gap: 8px; }
.card-body { padding: 16px; }
.grid { display: grid; gap: 16px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 860px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
.stack { display: flex; flex-direction: column; gap: 10px; }
.row { display: flex; align-items: center; gap: 10px; }
.row-between { display: flex; align-items: center; justify-content: space-between; gap: 10px; flex-wrap: wrap; }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 6px; border-radius: 8px; border: 1px solid transparent; font-size: 14px; font-weight: 600; padding: 10px 18px; cursor: pointer; background: var(--primary); color: var(--primary-foreground); min-height: 40px; }
.btn:hover { opacity: .88; }
.btn:disabled { opacity: .5; cursor: not-allowed; }
.btn-outline { background: transparent; border-color: var(--border); color: var(--foreground); }
.btn-ghost { background: transparent; color: var(--foreground); }
.btn-destructive { background: var(--red-bg); color: var(--red-fg); border-color: var(--red-bd); }
.btn-sm { padding: 6px 12px; min-height: 32px; font-size: 13px; }
.btn-lg { padding: 14px 22px; min-height: 50px; font-size: 16px; }
.btn-block { width: 100%; }
.icon-btn { padding: 6px; min-height: auto; }
.btn-armed { animation: btn-armed-pulse 1s ease-in-out infinite; }
@keyframes btn-armed-pulse { 0%, 100% { opacity: 1; } 50% { opacity: .6; } }

/* Forms */
label, .label { display: block; font-size: 13px; font-weight: 500; margin-bottom: 4px; }
input, select, textarea { width: 100%; border: 1px solid var(--border); border-radius: 8px; padding: 9px 11px; font-size: 14px; background: var(--card); color: var(--foreground); font-family: inherit; }
input:focus, select:focus, textarea:focus { outline: 2px solid var(--ring); outline-offset: 1px; }
.field { margin-bottom: 12px; }
textarea { resize: vertical; min-height: 70px; }
.checkbox-row { display: flex; align-items: flex-start; gap: 8px; font-size: 13px; }
.checkbox-row input { width: auto; margin-top: 3px; }

/* Badges */
.badge { display: inline-flex; align-items: center; padding: 2px 9px; border-radius: 999px; font-size: 12px; font-weight: 500; border: 1px solid; }
.badge-slate { background: var(--slate-bg); color: var(--slate-fg); border-color: var(--slate-bd); }
.badge-amber { background: var(--amber-bg); color: var(--amber-fg); border-color: var(--amber-bd); }
.badge-blue { background: var(--blue-bg); color: var(--blue-fg); border-color: var(--blue-bd); }
.badge-emerald { background: var(--emerald-bg); color: var(--emerald-fg); border-color: var(--emerald-bd); }
.badge-gray { background: var(--gray-bg); color: var(--gray-fg); border-color: var(--gray-bd); }
.badge-red { background: var(--red-bg); color: var(--red-fg); border-color: var(--red-bd); }

/* Alerts */
.alert { border-radius: 8px; padding: 10px 12px; font-size: 13px; border: 1px solid; }
.alert-red { background: var(--red-50); color: var(--red-700); border-color: var(--red-bd); }
.nav-dot { display: inline-block; width: 8px; height: 8px; border-radius: 50%; background: var(--red-700); margin-left: 6px; vertical-align: middle; }
.maintenance-banner { display: inline-flex; align-items: center; gap: 14px; text-align: left; background: var(--card); color: var(--foreground); border: 1px solid var(--border); border-radius: 14px; padding: 12px 22px 12px 12px; font-weight: 600; font-size: 16px; line-height: 1.4; margin: 20px auto 28px; max-width: 640px; box-shadow: 0 16px 40px -12px rgba(0,0,0,.5); }
.maintenance-banner .sign { flex-shrink: 0; display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: 50%; background: #dc2626; color: #fff; font-size: 18px; box-shadow: 0 0 0 4px rgba(220,38,38,.18); }
.alert-amber { background: var(--amber-50); color: var(--amber-700); border-color: var(--amber-bd); }
.alert-emerald { background: var(--emerald-50); color: var(--emerald-700); border-color: var(--emerald-bd); }

/* Table */
table { width: 100%; border-collapse: collapse; font-size: 13px; }
th { text-align: left; padding: 10px 16px; color: var(--muted-foreground); font-weight: 600; border-bottom: 1px solid var(--border); white-space: nowrap; }
td { padding: 10px 16px; border-bottom: 1px solid var(--border); vertical-align: middle; }
tr:last-child td { border-bottom: none; }
.table-wrap { overflow-x: auto; }
.table-empty { text-align: center; padding: 40px; color: var(--muted-foreground); }

/* Utility */
.login-wrap { min-height: calc(100vh - 64px); display: flex; align-items: center; justify-content: center; padding: 16px; }
.login-card { width: 100%; max-width: 400px; }
.stat-value { font-size: 28px; font-weight: 700; }
.center-empty { display: flex; flex-direction: column; align-items: center; gap: 8px; padding: 40px; color: var(--muted-foreground); text-align: center; }
.prose { max-width: 720px; margin: 0 auto; }
.prose h2 { margin-top: 32px; }
.prose p, .prose li { color: var(--muted-foreground); }
