* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #050712;
  color: white;
  font-family: Arial, sans-serif;
  overflow-x: hidden;
}

.bg-grid {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, transparent, black 20%, black 80%, transparent);
  z-index: -3;
}

.glow {
  position: fixed;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.36;
  z-index: -2;
}

.glow-one {
  background: #6d5dfc;
  top: -120px;
  left: -180px;
}

.glow-two {
  background: #a855f7;
  right: -130px;
  top: 120px;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 20px 8%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(5, 7, 18, 0.86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.logo {
  font-size: 26px;
  font-weight: 800;
}

.logo span {
  color: #9b5cff;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a,
.footer-links a {
  color: #d1d5db;
  text-decoration: none;
  font-size: 15px;
  transition: 0.3s ease;
}

.nav-links a:hover,
.footer-links a:hover {
  color: #a78bfa;
}

button {
  border: none;
  padding: 14px 26px;
  border-radius: 42px;
  background: linear-gradient(135deg, #6d5dfc, #a855f7);
  color: white;
  font-weight: 800;
  cursor: pointer;
  transition: 0.3s ease;
}

button:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 45px rgba(168, 85, 247, 0.28);
}

.outline {
  background: transparent;
  border: 1px solid rgba(168, 85, 247, 0.75);
}

.menu-btn {
  display: none;
}

.hero {
  min-height: 92vh;
  padding: 95px 8%;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  align-items: center;
  gap: 70px;
  background:
    radial-gradient(circle at 75% 38%, rgba(168, 85, 247, 0.28), transparent 32%),
    radial-gradient(circle at 42% 85%, rgba(30, 64, 175, 0.18), transparent 35%);
}

.hero-content {
  max-width: 720px;
}

.tag,
.section-tag {
  color: #a78bfa;
  font-weight: 800;
  margin-bottom: 18px;
}

.hero h1 {
  font-size: 66px;
  line-height: 1.08;
  margin-bottom: 26px;
}

.hero h1 span {
  background: linear-gradient(135deg, #7c3aed, #c084fc);
  -webkit-background-clip: text;
  color: transparent;
}

.hero-desc {
  color: #d1d5db;
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 34px;
  max-width: 680px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.trust-points {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
  margin-top: 34px;
  color: #cbd5e1;
}

.trust-points div {
  display: flex;
  align-items: center;
  gap: 8px;
}

.trusted {
  margin-top: 56px;
}

.trusted p {
  color: #9ca3af;
  margin-bottom: 18px;
}

.trusted-logos {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  color: #cbd5e1;
  opacity: 0.85;
}

.dashboard {
  padding: 28px;
  border-radius: 34px;
  background: rgba(12, 14, 35, 0.72);
  border: 1px solid rgba(255,255,255,0.13);
  box-shadow: 0 35px 110px rgba(124, 58, 237, 0.24);
  backdrop-filter: blur(22px);
  animation: floatDash 4.5s ease-in-out infinite;
}

@keyframes floatDash {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-14px);
  }
}

.dashboard-dots {
  display: flex;
  gap: 9px;
  margin-bottom: 26px;
}

.dashboard-dots span {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: linear-gradient(135deg, #a855f7, #6366f1);
}

.dashboard-layout {
  display: grid;
  grid-template-columns: 0.78fr 1.7fr;
  gap: 24px;
}

.sidebar {
  padding: 20px;
  border-radius: 24px;
  background: rgba(3, 7, 18, 0.48);
  border: 1px solid rgba(255,255,255,0.08);
}

.side-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}

.mini-logo {
  width: 38px;
  height: 38px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #6d5dfc, #a855f7);
}

.side-link {
  padding: 14px;
  color: #cbd5e1;
  border-radius: 14px;
  margin-bottom: 8px;
}

.side-link.active {
  background: rgba(168, 85, 247, 0.22);
  color: white;
}

.plan-box {
  margin-top: 80px;
  padding: 16px;
  border-radius: 16px;
  background: rgba(168, 85, 247, 0.16);
}

.plan-box p {
  color: #9ca3af;
  font-size: 13px;
  margin-top: 4px;
}

.task-card,
.metrics div,
.activity-card,
.ai-message {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 22px;
  padding: 22px;
}

.task-card p {
  color: #9ca3af;
  margin-bottom: 8px;
}

.progress-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 22px;
}

.progress {
  flex: 1;
  height: 11px;
  border-radius: 40px;
  background: rgba(255,255,255,0.14);
  overflow: hidden;
}

.progress div {
  width: 72%;
  height: 100%;
  background: linear-gradient(90deg, #6366f1, #a855f7);
}

.metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 16px 0;
}

.metrics h3 {
  color: #c084fc;
  font-size: 32px;
}

.metrics p {
  color: #cbd5e1;
}

.activity-card h4 {
  margin-bottom: 18px;
}

.activity {
  display: grid;
  grid-template-columns: 34px 1fr auto;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.activity span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(168,85,247,0.22);
}

.activity p {
  color: #d1d5db;
  font-size: 14px;
}

.activity small {
  color: #9ca3af;
}

.ai-message {
  margin-top: 16px;
  background: linear-gradient(135deg, rgba(168,85,247,0.25), rgba(99,102,241,0.12));
}

.section {
  padding: 95px 8%;
  text-align: center;
}

.section h2,
.cta h2 {
  font-size: 44px;
  margin-bottom: 18px;
}

.feature-grid,
.steps,
.pricing-grid {
  display: grid;
  gap: 26px;
  margin-top: 50px;
}

.feature-grid {
  grid-template-columns: repeat(4, 1fr);
}

.steps,
.pricing-grid {
  grid-template-columns: repeat(3, 1fr);
}

.feature-card,
.step-card,
.price-card,
.faq-item {
  background: rgba(15, 23, 42, 0.72);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 28px;
  transition: 0.3s ease;
}

.feature-card,
.step-card,
.price-card {
  padding: 34px;
}

.feature-card:hover,
.step-card:hover,
.price-card:hover {
  transform: translateY(-8px);
  border-color: rgba(168,85,247,0.72);
  box-shadow: 0 25px 55px rgba(168,85,247,0.13);
}

.icon {
  font-size: 36px;
  margin-bottom: 18px;
}

.feature-card h3,
.step-card h3,
.price-card h3 {
  margin-bottom: 14px;
}

.feature-card p,
.step-card p,
.price-card p,
.price-card li,
.faq-answer,
.cta p,
.footer p {
  color: #cbd5e1;
  line-height: 1.7;
}

.step-card span {
  display: block;
  color: #a78bfa;
  font-size: 34px;
  font-weight: 900;
  margin-bottom: 18px;
}

.price-card {
  text-align: left;
}

.price-card h4 {
  font-size: 44px;
  margin-bottom: 18px;
}

.price-card h4 span {
  font-size: 16px;
  color: #9ca3af;
}

.price-card ul {
  list-style: none;
  margin: 24px 0;
}

.price-card li {
  margin-bottom: 12px;
}

.price-card li::before {
  content: "✓ ";
  color: #a78bfa;
}

.popular {
  border-color: #a855f7;
  transform: scale(1.03);
}

.badge {
  display: inline-block;
  margin-bottom: 16px;
  padding: 8px 14px;
  border-radius: 30px;
  background: linear-gradient(135deg, #6d5dfc, #a855f7);
}

.testimonial {
  margin: 80px 8%;
  padding: 80px 30px;
  text-align: center;
  border-radius: 34px;
  background: linear-gradient(135deg, rgba(99,102,241,0.30), rgba(168,85,247,0.30));
  border: 1px solid rgba(255,255,255,0.12);
}

.testimonial h2 {
  font-size: 36px;
  max-width: 900px;
  margin: 0 auto 18px;
}

.testimonial p {
  color: #cbd5e1;
}

.faq {
  max-width: 850px;
  margin: 45px auto 0;
  text-align: left;
}

.faq-item {
  margin-bottom: 16px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: transparent;
  box-shadow: none;
  padding: 22px;
}

.faq-question:hover {
  transform: none;
  box-shadow: none;
  color: #a78bfa;
}

.faq-answer {
  display: none;
  padding: 0 22px 22px;
}

.faq-item.active .faq-answer {
  display: block;
}

.cta {
  margin: 80px 8%;
  padding: 85px 30px;
  text-align: center;
  border-radius: 36px;
  background:
    radial-gradient(circle at top, rgba(168,85,247,0.28), transparent 55%),
    rgba(15,23,42,0.75);
  border: 1px solid rgba(255,255,255,0.12);
}

.cta p {
  margin-bottom: 28px;
}

.footer {
  padding: 45px 8%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(5,7,18,0.92);
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer h3 {
  margin-bottom: 8px;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.reveal {
  opacity: 0;
  transform: translateY(35px);
  transition: 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1200px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content {
    margin: 0 auto;
  }

  .hero-buttons,
  .trust-points,
  .trusted-logos {
    justify-content: center;
  }

  .dashboard {
    max-width: 850px;
    margin: 0 auto;
  }

  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .navbar {
    flex-wrap: wrap;
  }

  .menu-btn {
    display: block;
  }

  .nav-btn {
    display: none;
  }

  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    text-align: center;
    margin-top: 18px;
    padding: 20px;
    border-radius: 20px;
    background: rgba(15,23,42,0.96);
  }

  .nav-links.active {
    display: flex;
  }

  .hero {
    padding: 70px 6%;
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero-desc {
    font-size: 16px;
  }

  .dashboard-layout {
    grid-template-columns: 1fr;
  }

  .sidebar {
    display: none;
  }

  .metrics {
    grid-template-columns: 1fr;
  }

  .activity {
    grid-template-columns: 34px 1fr;
  }

  .activity small {
    display: none;
  }

  .section {
    padding: 75px 6%;
  }

  .section h2,
  .cta h2 {
    font-size: 34px;
  }

  .feature-grid,
  .steps,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .popular {
    transform: none;
  }

  .footer {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }
}