* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Michroma', 'Segoe UI', system-ui, sans-serif;
  background: radial-gradient(circle at 30% 20%, #0b0710, #020105);
  color: #f0f0ff;
  line-height: 1.5;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

/* Particle canvas background */
#particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  pointer-events: none;
  z-index: 0;
}

/* Main content layer */
.site-wrapper {
  position: relative;
  z-index: 2;
}

/* Navigation */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1rem 2rem;
  background: rgba(5, 5, 15, 0.75);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(159, 127, 255, 0.2);
  z-index: 100;
}

.logo {
  font-size: 1.5rem;
  font-weight: 600;
  background: linear-gradient(135deg, #ffffff, #bfa6ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.3px;
}

.nav-links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.nav-links a {
  color: #e0d6ff;
  text-decoration: none;
  font-size: 0.9rem;
  transition: 0.2s;
  border-bottom: 2px solid transparent;
  padding-bottom: 4px;
}

.nav-links a:hover {
  color: #bc9eff;
  border-bottom-color: #9f7fff;
}

/* Hero section */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 8rem 2rem 5rem 2rem;
  max-width: 1300px;
  margin: 0 auto;
}

.hero-left {
  flex: 1;
  min-width: 260px;
}

.hero-left h1 {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  background: linear-gradient(145deg, #ffffff, #c2a6ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 2px 15px rgba(159, 127, 255, 0.4);
  letter-spacing: -0.5px;
}

.subtitle {
  font-size: 1.2rem;
  color: #b394ff;
  margin: 1rem 0 1.2rem 0;
  border-left: 3px solid #9f7fff;
  padding-left: 1rem;
}

.desc {
  opacity: 0.85;
  font-size: 1rem;
  margin-bottom: 2rem;
  line-height: 1.6;
  max-width: 540px;
}

.buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin-top: 0.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.8rem;
  border-radius: 60px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.25s ease;
  font-size: 0.9rem;
  letter-spacing: 0.3px;
  backdrop-filter: blur(4px);
}

.primary {
  background: linear-gradient(105deg, #9f7fff, #6b3eff);
  color: white;
  box-shadow: 0 8px 20px rgba(111, 62, 255, 0.3);
  border: 1px solid rgba(255,255,255,0.2);
}

.secondary {
  background: rgba(20, 15, 45, 0.7);
  border: 1px solid rgba(159, 127, 255, 0.6);
  color: #e5d9ff;
  backdrop-filter: blur(8px);
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(159, 127, 255, 0.4);
}

.primary:hover {
  background: linear-gradient(105deg, #b28eff, #7e53ff);
}

.hero-right {
  flex: 1;
  display: flex;
  justify-content: center;
  min-width: 240px;
}

.hero-right img {
  max-width: 100%;
  width: 460px;
  height: auto;
  filter: drop-shadow(0 10px 25px rgba(0,0,0,0.5));
  transition: transform 0.2s ease;
  /* animation removed as requested */
}

/* About card */
.about-card {
  background: rgba(15, 12, 30, 0.55);
  backdrop-filter: blur(14px);
  border-radius: 2rem;
  padding: 2.5rem;
  margin: 3rem auto;
  max-width: 1000px;
  width: 90%;
  border: 1px solid rgba(159, 127, 255, 0.2);
  transition: all 0.2s;
}

.about-card h2 {
  font-size: 2rem;
  margin-bottom: 1.2rem;
  background: linear-gradient(135deg, #eee, #cdb4ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.about-card p {
  font-size: 1rem;
  line-height: 1.65;
  color: #ddd9ff;
}

/* Features grid */
.features-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.8rem;
  margin: 4rem auto;
  padding: 0 1.5rem;
}

.feature-item {
  background: rgba(20, 15, 40, 0.65);
  backdrop-filter: blur(8px);
  padding: 1.8rem 1.6rem;
  border-radius: 1.8rem;
  text-align: center;
  min-width: 180px;
  flex: 1 1 180px;
  transition: all 0.25s;
  border: 1px solid rgba(159, 127, 255, 0.2);
  font-weight: 500;
}

.feature-item span {
  font-size: 2.2rem;
  display: block;
  margin-bottom: 0.7rem;
}

.feature-item h3 {
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.feature-item p {
  font-size: 0.85rem;
  opacity: 0.8;
}

.feature-item:hover {
  transform: translateY(-6px);
  border-color: #9f7fff;
  box-shadow: 0 15px 30px -10px rgba(159, 127, 255, 0.3);
  background: rgba(35, 25, 65, 0.7);
}

/* Social section */
.social-section {
  text-align: center;
  margin: 3rem auto 4rem;
  padding: 2rem 1rem;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.social-btn {
  display: inline-block;
  background: rgba(30, 25, 55, 0.8);
  backdrop-filter: blur(8px);
  padding: 0.7rem 1.6rem;
  border-radius: 40px;
  color: white;
  text-decoration: none;
  font-weight: 500;
  border: 1px solid rgba(159, 127, 255, 0.5);
  transition: all 0.2s;
}

.social-btn:hover {
  background: #9f7fff;
  color: #0b0710;
  border-color: transparent;
  transform: scale(1.02);
}

.ceo {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: #bfa9ff;
}

.ceo span {
  font-weight: bold;
  color: #ffffff;
}

.copyright {
  margin-top: 1.5rem;
  font-size: 0.7rem;
  opacity: 0.6;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .nav {
    padding: 0.8rem 1.2rem;
  }
  .hero {
    padding: 7rem 1.5rem 3rem 1.5rem;
    flex-direction: column;
    text-align: center;
  }
  .hero-left {
    text-align: center;
  }
  .subtitle {
    border-left: none;
    padding-left: 0;
  }
  .desc {
    margin-left: auto;
    margin-right: auto;
  }
  .buttons {
    justify-content: center;
  }
  .hero-right img {
    max-width: 280px;
  }
  .about-card {
    padding: 1.8rem;
    width: 95%;
  }
  .features-grid {
    gap: 1rem;
  }
  .feature-item {
    min-width: 150px;
    padding: 1.2rem;
  }
}
