:root {
  --bg: #0b0b0d;
  --card: #101113;
  --muted: #9aa1a9;
  --accent: #8b5cf6;
  --accent-light: #a78bfa;
  --radius: 12px;
  --transition: 0.25s ease;
}
::-webkit-scrollbar-track {
  background: #1a1a1a; /* dark background */
}

/* Scrollbar thumb (the draggable part) */
::-webkit-scrollbar-thumb {
  background: #7c4dff; /* main scrollbar color */
  border-radius: 8px;
}

/* On hover */
::-webkit-scrollbar-thumb:hover {
  background: #9a6bff; /* lighter purple on hover */
}

/* Firefox scrollbar support */
html {
  scrollbar-width: thin; /* "auto", "thin" or "none" */
  scrollbar-color: #7c4dff #1a1a1a; /* thumb color then track color */
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
/* Works for Firefox */
html,
body {
  height: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: #e9ecf2;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
}

.container {
  max-width: 1150px;
  margin: 0 auto;
  padding: 40px 20px;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--accent-light);
}

ul {
  list-style: none;
  padding-left: 0;
}
.hero {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.brand {
  justify-self: flex-start;
}
