
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.checklist li::before {
  content: "✔";
  color: #2563eb; /* Tailwind blue-600 */
  font-weight: bold;
  margin-top: 2px;
}

/* ================= DARK MODE ================= */
html.dark body {
  background:#020617;
  color:#e5e7eb;
}

html.dark .bg-white,
html.dark .bg-white\/90 {
  background:#020617 !important;
}

html.dark .bg-slate-50 {
  background:#020617 !important;
}

html.dark .border-slate-200,
html.dark .border-slate-300,
html.dark .border-white\/60 {
  border-color:#1e293b !important;
}

html.dark .text-slate-900,
html.dark .text-slate-800,
html.dark .text-slate-700 {
  color:#e5e7eb !important;
}

html.dark .text-slate-600,
html.dark .text-slate-500 {
  color:#cbd5f5 !important;
}

html.dark .hero-grad {
  background:
    radial-gradient(80% 80% at 20% 0%, rgba(59,130,246,.18), transparent 50%),
    linear-gradient(180deg, #020617 0%, #020617 100%);
}

html.dark .glass {
  background: rgba(2,6,23,.75);
}

html.dark .bg-slate-900 {
  background:#1e293b !important;
}

html.dark footer {
  background:#020617 !important;
}

/* ================= FLOATING TOGGLE ================= */
#themeToggle {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 9999;
  width: 48px;
  height: 48px;
  border-radius: 9999px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 10px 25px rgba(0,0,0,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease;
}

#themeToggle:hover {
  transform: scale(1.08) rotate(12deg);
}

html.dark #themeToggle {
  background: #020617;
  border-color: #1e293b;
}
html.dark .list-disc a:hover {
  color: #60a5fa !important; /* Tailwind blue-400 (soft, readable on dark bg) */
}
html.dark .dark\:border-slate-600 {
  border-color: #475569;
}

html.dark .dark\:hover\:bg-slate-800:hover {
  background-color: #1e293b;
}
/* ================= BUTTON SYSTEM ================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .65rem 1.25rem;
  border-radius: .5rem;
  font-weight: 500;
  border: 1px solid #cbd5e1;
  background: #ffffff;
  color: #0f172a;
  transition: background .2s ease, color .2s ease, border .2s ease, transform .15s ease;
}

.btn:hover {
  background: #f8fafc;
  color: #fff;
}

/* Primary */
/**8
.btn-primary {
  background: #0f172a;
  color: #ffffff;
  border-color: #0f172a;
}
*/
.btn-primary:hover {
  background: #1e293b;
}

/* ================= DARK MODE ================= */
html.dark .btn {
  background: #020617;
  color: #e5e7eb;
  border-color: #475569;
}

html.dark .btn:hover {
  background: #1e293b;
}

html.dark .btn-primary {
  background: #1e293b;
  border-color: #1e293b;
}

html.dark .btn-primary:hover {
  background: #334155;
}

