File size: 1,712 Bytes
93cbe09
 
 
 
 
 
 
 
 
 
e59d132
93cbe09
 
 
e59d132
 
93cbe09
 
 
 
 
 
 
 
e59d132
 
93cbe09
 
 
e59d132
 
 
93cbe09
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
e59d132
 
93cbe09
 
 
e59d132
93cbe09
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --primary-blue: #2563eb;
  --secondary-blue: #1d4ed8;
  --accent-purple: #7c3aed;
  --light-gray: #f8fafc;
  --dark-gray: #0f172a;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--light-gray);
  color: var(--dark-gray);
}

.btn-primary {
  background: linear-gradient(90deg, var(--primary-blue), var(--secondary-blue));
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(37, 99, 235, 0.2);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(37, 99, 235, 0.3);
}

.card {
  transition: all 0.3s ease;
  border-radius: 1rem;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.gradient-bg {
  background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
}

.text-gradient {
  background: linear-gradient(90deg, #2563eb, #7c3aed);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-section {
  background: radial-gradient(circle at top right, rgba(37, 99, 235, 0.1) 0%, transparent 40%),
              radial-gradient(circle at bottom left, rgba(124, 58, 237, 0.1) 0%, transparent 40%);
}

.feature-icon {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .hero-section {
    padding: 2rem 1rem;
  }
  
  .feature-grid {
    grid-template-columns: 1fr;
  }
}