:root {
  --bg: #030014;
  --accent: #7b5cff;
  --accent2: #4f46e5;
  --text: #e5e7eb;
  --muted: #9ca3af;
  --card-bg: rgba(255, 255, 255, 0.05);
}

/* RESET */
body {
  margin: 0;
  font-family: system-ui, sans-serif;
  background: #030014;
  color: var(--text);
}

/* NAVBAR */
.navbar {
  width: 100%;
  padding: 16px 30px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  background: rgba(10, 10, 25, 0.7);
  backdrop-filter: blur(12px);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-logo {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent);
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 24px;
}

.nav-links a {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  transition: 0.2s;
}

.nav-links a:hover {
  color: var(--accent);
}

/* HERO */
.hero {
  padding: 160px 20px 120px;
  text-align: center;
  background: radial-gradient(circle at top, #6a0dad 0%, #2b0040 70%);
}


.title {
  font-size: 4rem;
  letter-spacing: 0.1em;
  font-weight: 800;
  background: linear-gradient(90deg, #8b5cf6, #4f46e5, #06b6d4);
  -webkit-background-clip: text;
  color: transparent;
}

.subtitle {
  margin-top: 12px;
  color: var(--muted);
}

.btn {
  display: inline-block;
  margin-top: 24px;
  padding: 12px 28px;
  border-radius: 999px;
  background: var(--accent);
  color: white;
  text-decoration: none;
  font-weight: 600;
  transition: 0.2s;
}

.btn:hover {
  background: var(--accent2);
  transform: translateY(-3px);
}

/* SECTIONS */
.section {
  padding: 80px 20px;
  max-width: 1000px;
  margin: auto;
}

.section h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}

/* CARDS */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.card {
  background: var(--card-bg);
  padding: 20px;
  border-radius: 16px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: 0.2s;
}

.card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
}

/* IMAGES */
.image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}

.image-grid img {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

/* FOOTER */
.footer {
  text-align: center;
  padding: 30px;
  color: var(--muted);
}

