@import url('styles.css');

.tech-hero{
  text-align:center;
  max-width:1000px;
  margin:0 auto;
  padding:140px 24px 40px;
}

.tech-hero h1{
  font-size:64px;
  font-weight:800;
}

.tech-hero span{
  background:linear-gradient(135deg,#2563EB,#06B6D4,#7C3AED);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.tech-hero p{
  font-size:18px;
  color:#64748b;
  line-height:1.9;
}

.tech-grid{
  max-width:1300px;
  margin:0 auto 100px;
  padding:0 24px;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:28px;
}

.tech-card{
  background:rgba(255,255,255,.78);
  backdrop-filter:blur(28px);
  -webkit-backdrop-filter:blur(28px);

  border-radius:30px;
  padding:35px;

  border:1px solid rgba(255,255,255,.55);

  box-shadow:
    0 20px 60px rgba(37,99,235,.15),
    inset 0 1px 0 rgba(255,255,255,.85);

  transition:.4s ease;
  position:relative;
  overflow:hidden;
}

.tech-card::before{
  content:'';
  position:absolute;
  inset:-2px;

  background:
    radial-gradient(circle at top,
      rgba(37,99,235,.30),
      transparent 55%);

  filter:blur(25px);
  opacity:.8;
}

.tech-card::after{
  content:'';
  position:absolute;
  inset:0;

  background:linear-gradient(
    135deg,
    rgba(255,255,255,.28),
    transparent 45%
  );
}

.tech-card:hover{
  transform:translateY(-12px);

  box-shadow:
    0 0 40px rgba(37,99,235,.45),
    0 0 80px rgba(37,99,235,.25),
    0 25px 80px rgba(37,99,235,.25);
}

.featured{
  border:1px solid rgba(124,58,237,.35);

  box-shadow:
    0 0 50px rgba(124,58,237,.45),
    0 0 100px rgba(124,58,237,.25),
    0 25px 80px rgba(124,58,237,.20);
}

.tech-card i{
  font-size:56px;
  color:#2563EB;
  margin-bottom:20px;

  text-shadow:
    0 0 15px rgba(37,99,235,.45),
    0 0 35px rgba(37,99,235,.25);
}

.tech-card h3{
  font-size:28px;
  margin:0 0 12px;
}

.tech-card p{
  color:#64748B;
  line-height:1.8;
}

.tech-cta{
  text-align:center;
  padding:40px 20px 100px;
}

@media(max-width:1000px){
  .tech-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:640px){
  .tech-grid{
    grid-template-columns:1fr;
  }

  .tech-hero h1{
    font-size:42px;
  }
}
