* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

body {
  background: #0b0e14;
  color: #ffffff;
}

/* NAVBAR */

.navbar {
  position: sticky;
  top: 0;
  backdrop-filter: blur(14px);
  background: rgba(15, 18, 30, 0.75);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  z-index: 1000;
}

.nav-container {
  max-width: 1200px;
  margin: auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.logo span {
  color: #4f8cff;
}

.nav-links a {
  margin: 0 16px;
  text-decoration: none;
  color: #cfd3ff;
  font-size: 15px;
  transition: 0.3s;
}

.nav-links a:hover {
  color: #ffffff;
}

.nav-actions a {
  margin-left: 18px;
  text-decoration: none;
  font-size: 14px;
}

.login {
  color: #cfd3ff;
}

.btn {
  padding: 10px 18px;
  background: #4f8cff;
  border-radius: 8px;
  color: white;
  font-weight: 600;
  transition: 0.3s;
}

.btn:hover {
  background: #6ea1ff;
}

/* FOOTER */

.footer {
  background: #080a10;
  padding: 60px 24px 20px;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.5fr 3fr;
  gap: 60px;
}

.footer-brand h2 {
  font-size: 26px;
  margin-bottom: 10px;
}

.footer-brand p {
  color: #aab0ff;
  max-width: 300px;
  line-height: 1.6;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.footer-links h4 {
  margin-bottom: 14px;
  font-size: 15px;
}

.footer-links a {
  display: block;
  margin-bottom: 10px;
  color: #b5baff;
  font-size: 14px;
  text-decoration: none;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-bottom {
  margin-top: 50px;
  text-align: center;
  font-size: 13px;
  color: #7f85ff;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 20px;
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

  .footer-container {
    grid-template-columns: 1fr;
  }

  .footer-links {
    grid-template-columns: repeat(2, 1fr);
  }
}
