:root {
  --bg-color: #0a0a0a;
  --text-color: #ffffff;
  --accent-color: #28d38b;
  --font-primary: 'Inter', sans-serif;
}

* {


html, body {
  width: 100%;
  height: 100%;
  background-color: var(--bg-color);
  color: var(--text-color);
  font-family: var(--font-primary);
  overflow: hidden;
}

canvas#background-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

#cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  pointer-events: none;
  z-index: 10000;
}


header {
  width: 100%;
  max-width: 1100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  margin: 2rem auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}
header nav a {
  margin-left: 2rem;
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}
header nav a:hover {
  color: #fff;
}
.logo {
  font-size: 1.5rem;
  font-weight: 700;
}

.custom-cursor {
  background: black;
  mix-blend-mode: difference;
}

.hero {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  padding: 4rem 2rem;
  position: relative;
  z-index: 2;
}
.hero h1 {
  font-size: 2.8rem;
  line-height: 1.3;
  font-weight: 700;
}
.hero p {
  font-size: 1.1rem;
  margin: 1.2rem 0 2rem;
  color: #bbb;
}
.hero .btn {
  background: var(--accent-color);
  color: #000;
  border: none;
  padding: 1.2rem 2.5rem;
  font-weight: 700;
  font-size: 1.25rem;
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.3s;
}

.hero .btn:hover {
  background: #1ebd77;
}

.partners {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin: 3rem auto;
  max-width: 900px;
  z-index: 2;
  position: relative;
}
.partners img {
  max-height: 125px;
}

.services {
  display: flex;
  justify-content: center;
  gap: 5rem;
  flex-wrap: wrap;
  max-width: 900px;
  margin: 2rem auto;
  color: #bbb;
  font-size: 0.9rem;
  position: relative;
  z-index: 2;
}
.services ul {
  list-style: none;
}
.services li {
  margin-bottom: 0.75rem;
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }
  .services {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }
  header {
    flex-direction: column;
    gap: 1rem;
  }
}
