/* style.css – Dark mode, modern, fancy UI */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #0b0d11;
  color: #e8edf5;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.6;
  padding: 0 1rem;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ---------- HEADER ---------- */
.header {
  padding: 1.2rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-icon {
  font-size: 2.2rem;
  background: linear-gradient(135deg, #6c5ce7, #00b4d8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.brand-name {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  background: linear-gradient(to right, #f0f4ff, #a0c4ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.brand-tagline {
  font-size: 0.8rem;
  color: #8892b0;
  letter-spacing: 0.3px;
}

.nav-links {
  display: flex;
  gap: 2rem;
  font-weight: 500;
}

.nav-links a {
  color: #ccd6f6;
  text-decoration: none;
  font-size: 0.95rem;
  transition: 0.2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #6c5ce7;
  transition: 0.25s;
}

.nav-links a:hover {
  color: #ffffff;
}

.nav-links a:hover::after {
  width: 100%;
}

/* ---------- HERO ---------- */
.hero {
  padding: 4rem 0 3rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-text .badge {
  display: inline-block;
  background: rgba(108, 92, 231, 0.2);
  color: #b8b0ff;
  padding: 0.3rem 1rem;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
  border: 1px solid rgba(108, 92, 231, 0.3);
}

.hero-text h2 {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.highlight {
  background: linear-gradient(135deg, #f9d423, #f25f5c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-text p {
  color: #a8b2d1;
  font-size: 1.15rem;
  max-width: 90%;
  margin-bottom: 2rem;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.hero-stats span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.03);
  padding: 0.4rem 1rem;
  border-radius: 40px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.9rem;
}

.hero-stats i {
  color: #6c5ce7;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.orb {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #6c5ce7, #0b0d11 80%);
  box-shadow: 0 0 80px rgba(108, 92, 231, 0.25);
  position: relative;
  animation: pulse 6s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.08);
    opacity: 1;
  }
}

.hero-icons {
  position: absolute;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.8rem;
  font-size: 2.6rem;
  color: #e8edf5;
}

.hero-icons i {
  filter: drop-shadow(0 0 12px rgba(108, 92, 231, 0.5));
  transition: 0.25s;
}

.hero-icons i:hover {
  transform: scale(1.2);
  color: #f9d423;
}

/* ---------- SECTIONS ---------- */
.section {
  padding: 4rem 0;
}

.alt-bg {
  background: rgba(255, 255, 255, 0.02);
  border-radius: 40px;
  margin: 1.5rem 0;
}

.section-header {
  margin-bottom: 2.5rem;
}

.section-header h2 {
  font-size: 2rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.section-header h2 i {
  color: #6c5ce7;
}

.section-header p {
  color: #8892b0;
  margin-top: 0.3rem;
}

/* ---------- CARDS ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.8rem;
}

.card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 24px;
  padding: 1.8rem 1.5rem;
  transition: 0.25s ease;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.card:hover {
  transform: translateY(-6px);
  border-color: rgba(108, 92, 231, 0.4);
  box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.6);
  background: rgba(255, 255, 255, 0.06);
}

.card-icon {
  font-size: 2rem;
  color: #6c5ce7;
  margin-bottom: 0.2rem;
}

.card h3 {
  font-weight: 600;
  font-size: 1.25rem;
  letter-spacing: -0.3px;
}

.card p {
  color: #a8b2d1;
  font-size: 0.95rem;
  flex: 1;
}

.tag {
  display: inline-block;
  background: rgba(108, 92, 231, 0.15);
  color: #b8b0ff;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.2rem 0.8rem;
  border-radius: 30px;
  margin-right: 0.4rem;
  border: 1px solid rgba(108, 92, 231, 0.15);
}

.card-badge {
  text-transform: uppercase;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: #6c5ce7;
  background: rgba(108, 92, 231, 0.12);
  padding: 0.2rem 0.8rem;
  border-radius: 30px;
  align-self: flex-start;
}

.meta {
  font-size: 0.8rem;
  color: #6b7a9a;
  margin-top: 0.4rem;
}

/* ---------- APP CARDS (with button) ---------- */
.app-card .btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.8rem;
  padding: 0.4rem 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 40px;
  color: #ccd6f6;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  transition: 0.2s;
  align-self: flex-start;
}

.app-card .btn-outline:hover {
  background: #6c5ce7;
  border-color: #6c5ce7;
  color: #fff;
}

/* ---------- FOOTER ---------- */
.footer {
  padding: 2.5rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  margin-top: 2rem;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.footer-social {
  display: flex;
  gap: 1.8rem;
  font-size: 1.4rem;
}

.footer-social a {
  color: #8892b0;
  transition: 0.2s;
}

.footer-social a:hover {
  color: #ffffff;
  transform: translateY(-2px);
}

.footer-copy {
  font-size: 0.85rem;
  color: #495670;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 850px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-text p {
    max-width: 100%;
  }

  .hero-stats {
    justify-content: center;
  }

  .orb {
    width: 180px;
    height: 180px;
  }

  .hero-icons {
    font-size: 2rem;
    gap: 1.2rem;
  }

  .header-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links {
    gap: 1.5rem;
    flex-wrap: wrap;
  }

  .brand-name {
    font-size: 1.4rem;
  }
}

@media (max-width: 500px) {
  .card-grid {
    grid-template-columns: 1fr;
  }
}