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

html{
  scroll-behavior:smooth;
}

body{
  font-family:Arial, sans-serif;
  background:
    radial-gradient(circle at top left,
    rgba(124,58,237,0.20),
    transparent 30%),

    radial-gradient(circle at right,
    rgba(79,70,229,0.20),
    transparent 35%),

    linear-gradient(
      135deg,
      #050816,
      #0a1025,
      #111936
    );

  color:#fff;
  overflow-x:hidden;
}

a{
  text-decoration:none;
}

main{
  width:100%;
}

/* Generic centered container used site-wide */
.container{
  max-width:1200px;
  margin:0 auto;
  padding:0 2rem;
  box-sizing:border-box;
}

/* HERO */

.hero{
  position:relative;
  overflow:hidden;
  padding:6rem 2rem;
}

.hero-overlay{
  position:absolute;
  inset:0;

  background:
    radial-gradient(
      circle at center,
      rgba(124,58,237,0.12),
      transparent 50%
    );

  pointer-events:none;
}

.hero-content{
  max-width:1200px;
  margin:auto;

  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:4rem;

  position:relative;
  z-index:2;
}

.hero-text{
  flex:1;
  min-width:320px;
}

.hero-badge{
  display:inline-block;

  background:rgba(255,255,255,0.06);

  border:1px solid rgba(255,255,255,0.08);

  padding:0.5rem 1rem;

  border-radius:999px;

  margin-bottom:1.5rem;

  color:#c4b5fd;

  font-size:0.95rem;
}

.hero-text h1{
  font-size:4.4rem;
  line-height:1.05;
  font-weight:800;

  margin-bottom:1.5rem;
}

.hero-text h1 span{
  background:linear-gradient(
    90deg,
    #38bdf8,
    #8b5cf6
  );

  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.hero-text p{
  font-size:1.25rem;
  line-height:1.8;
  color:#cbd5e1;

  max-width:700px;

  margin-bottom:2rem;
}

.hero-buttons{
  display:flex;
  gap:1rem;
  flex-wrap:wrap;

  margin-bottom:2rem;
}

.btn-primary{
  background:linear-gradient(
    90deg,
    #0ea5e9,
    #8b5cf6
  );

  color:#fff;

  padding:1rem 2rem;

  border-radius:14px;

  font-weight:700;

  transition:0.3s;
}

.btn-primary:hover{
  transform:translateY(-3px);

  box-shadow:
    0 20px 40px rgba(14,165,233,0.30);
}

.btn-secondary{
  border:1px solid rgba(255,255,255,0.15);

  padding:1rem 2rem;

  border-radius:14px;

  color:#fff;

  transition:0.3s;
}

.btn-secondary:hover{
  background:rgba(255,255,255,0.05);
}

.hero-trust{
  display:flex;
  flex-wrap:wrap;
  gap:1.5rem;

  color:#94a3b8;
  font-size:0.95rem;
}

/* HERO IMAGE */

.hero-image{
  flex:1;

  position:relative;

  display:flex;
  justify-content:center;
  align-items:center;
}

.dashboard-glow{
  position:absolute;

  width:500px;
  height:500px;

  background:
    radial-gradient(
      circle,
      rgba(139,92,246,0.30),
      transparent 70%
    );

  filter:blur(60px);

  z-index:1;
}

.hero-image img{
  position:relative;
  z-index:2;

  width:100%;
  max-width:620px;

  border-radius:24px;

  box-shadow:
    0 30px 80px rgba(0,0,0,0.65);

  transition:0.4s ease;
}

.hero-image img:hover{
  transform:
    translateY(-6px)
    scale(1.02);
}

/* FEATURES */

.features-section{
  padding:4rem 2rem 6rem;
}

.section-heading{
  text-align:center;
  margin-bottom:3rem;
}

.section-heading h2{
  font-size:2.6rem;
  margin-bottom:1rem;
}

.section-heading p{
  color:#94a3b8;
  font-size:1.1rem;
}

.features-grid{
  max-width:1200px;
  margin:auto;

  display:grid;

  grid-template-columns:
    repeat(auto-fit,minmax(280px,1fr));

  gap:2rem;
}

.feature-card{
  background:
    rgba(255,255,255,0.04);

  border:
    1px solid rgba(255,255,255,0.06);

  padding:2rem;

  border-radius:24px;

  backdrop-filter:blur(12px);

  transition:0.3s;
}

.feature-card:hover{
  transform:translateY(-5px);

  border-color:
    rgba(139,92,246,0.35);

  box-shadow:
    0 20px 40px rgba(0,0,0,0.35);
}

.feature-card h3{
  margin-bottom:1rem;
  font-size:1.4rem;

  color:#c4b5fd;
}

.feature-card p{
  color:#cbd5e1;
  line-height:1.7;
}

/* MOBILE */

@media(max-width:900px){

  .hero-content{
    flex-direction:column;
    text-align:center;
  }

  .hero-text h1{
    font-size:3rem;
  }

  .hero-buttons{
    justify-content:center;
  }

  .hero-trust{
    justify-content:center;
  }

}