* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Inter, sans-serif;
}

body {
  background: #020617;
  color: #e5e7eb;
}

/* CONTAINER */
.container {
  max-width: 1200px;
  margin: auto;
  padding: 60px 20px;
}

/* NAVBAR */
.navbar {
  border-bottom: 1px solid #0f172a;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

nav a {
  margin: 0 10px;
  color: #94a3b8;
  text-decoration: none;
}

.logo {
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* HERO */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.hero h1 {
  font-size: 42px;
  margin-bottom: 15px;
}

.gradient-text {
  background: linear-gradient(90deg, #7c3aed, #06b6d4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  color: #94a3b8;
  margin-bottom: 25px;
}

/* BUTTONS */
.btn {
  padding: 12px 18px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
}

.primary {
  background: linear-gradient(90deg, #7c3aed, #06b6d4);
  color: white;
}

.outline {
  border: 1px solid #334155;
  color: #e5e7eb;
}

/* CARDS */
.product-grid, .doc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.card, .doc-card {
  padding: 20px;
  border-radius: 10px;
  background: #0f172a;
  border: 1px solid #1e293b;
}

/* NEON ACCENTS */
.neon-purple {
  box-shadow: 0 0 20px rgba(124, 58, 237, 0.3);
}

.neon-cyan {
  box-shadow: 0 0 20px rgba(6, 182, 212, 0.3);
}

.neon-yellow {
  box-shadow: 0 0 20px rgba(250, 204, 21, 0.3);
}

.neon-pink {
  box-shadow: 0 0 20px rgba(244, 63, 94, 0.3);
}

/* FUTURE */
.future-box {
  text-align: center;
  border: 1px solid #1e293b;
  border-radius: 10px;
}

/* FOOTER */
.footer {
  text-align: center;
  border-top: 1px solid #1e293b;
  padding: 20px;
  color: #64748b;
}