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

:root {
  --navy-950: #111827;
  --navy-900: #111827;
  --navy-800: #dc2626;
  --navy-700: #991b1b;
  --gold-500: #dc2626;
  --gold-100: #fee2e2;
  --green-600: #059669;
  --green-100: #d1fae5;
  --yellow-600: #ca8a04;
  --yellow-100: #fef9c3;
  --red-600: #dc2626;
  --red-100: #fee2e2;
  --blue-600: #2563eb;
  --blue-100: #dbeafe;
  --purple-600: #7c3aed;
  --purple-100: #ede9fe;
  --slate-950: #111827;
  --slate-800: #1f2937;
  --slate-700: #374151;
  --slate-600: #4b5563;
  --slate-500: #6b7280;
  --slate-400: #9ca3af;
  --slate-300: #d1d5db;
  --slate-200: #e5e7eb;
  --slate-100: #f3f4f6;
  --slate-50: #f9fafb;
  --white: #ffffff;
  --scrollbar-size: 10px;
  --scrollbar-track: transparent;
  --scrollbar-thumb: rgba(100, 116, 139, 0);
  --scrollbar-thumb-visible: rgba(100, 116, 139, 0.34);
  --scrollbar-thumb-active: rgba(220, 38, 38, 0.62);
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 12px 30px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 24px 60px rgba(15, 23, 42, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: #f9fafb;
  color: var(--slate-800);
  font-family: "Plus Jakarta Sans", Aptos, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

body.dark-mode {
  background: #07111f;
  color: #dbeafe;
  --navy-950: #061426;
  --navy-900: #081b33;
  --navy-800: #0b2e4a;
  --navy-700: #123d61;
  --gold-500: #c79a3b;
  --gold-100: #fff3d6;
  --white: #0f1b2d;
  --slate-950: #f8fafc;
  --slate-800: #e2e8f0;
  --slate-700: #cbd5e1;
  --slate-600: #94a3b8;
  --slate-500: #8fa3b8;
  --slate-400: #64748b;
  --slate-300: #334155;
  --slate-200: #22324a;
  --slate-100: #142238;
  --slate-50: #0b1728;
  --scrollbar-thumb-visible: rgba(143, 163, 184, 0.36);
  --scrollbar-thumb-active: rgba(199, 154, 59, 0.68);
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.28);
  --shadow-md: 0 14px 34px rgba(0, 0, 0, 0.34);
  --shadow-lg: 0 28px 70px rgba(0, 0, 0, 0.46);
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

a {
  color: inherit;
  text-decoration: none;
}

.ui-scroll {
  scrollbar-color: var(--scrollbar-thumb) var(--scrollbar-track);
  scrollbar-gutter: stable;
  scrollbar-width: thin;
}

.ui-scroll.is-scrolling,
.ui-scroll:hover,
.ui-scroll:focus-within {
  scrollbar-color: var(--scrollbar-thumb-visible) var(--scrollbar-track);
}

.ui-scroll::-webkit-scrollbar {
  width: var(--scrollbar-size);
  height: var(--scrollbar-size);
}

.ui-scroll::-webkit-scrollbar-track {
  background: var(--scrollbar-track);
}

.ui-scroll::-webkit-scrollbar-thumb {
  background-color: transparent;
  background-clip: padding-box;
  border: 3px solid transparent;
  border-radius: 999px;
  transition: background-color 160ms ease;
}

.ui-scroll.is-scrolling::-webkit-scrollbar-thumb,
.ui-scroll:hover::-webkit-scrollbar-thumb,
.ui-scroll:focus-within::-webkit-scrollbar-thumb {
  background-color: var(--scrollbar-thumb-visible);
}

.ui-scroll.is-scrolling::-webkit-scrollbar-thumb:hover,
.ui-scroll:focus-within::-webkit-scrollbar-thumb:hover {
  background-color: var(--scrollbar-thumb-active);
}
