-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlanding.css
More file actions
133 lines (118 loc) · 3 KB
/
Copy pathlanding.css
File metadata and controls
133 lines (118 loc) · 3 KB
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
:root {
--bg-start: #f9fcff;
--bg-end: #e9f4ff;
--primary: #2e8ed9;
--primary-dark: #1f75bd;
--title: #0f2c4a;
--text: #3a5a78;
}
* {
box-sizing: border-box;
}
body {
margin: 0;
min-height: 100vh;
font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif;
background: linear-gradient(150deg, var(--bg-start), var(--bg-end));
color: var(--text);
overflow: hidden;
}
.hero {
position: relative;
isolation: isolate;
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
padding: clamp(24px, 6vw, 72px);
}
.hero::before,
.hero::after {
content: "";
position: absolute;
inset: 0;
pointer-events: none;
}
.hero::before {
opacity: 0.75;
background-image:
linear-gradient(to right, rgba(53, 162, 243, 0.22) 2px, transparent 2px),
linear-gradient(to bottom, rgba(53, 162, 243, 0.22) 2px, transparent 2px),
linear-gradient(to right, rgba(37, 129, 214, 0.18) 1px, transparent 1px),
linear-gradient(to bottom, rgba(37, 129, 214, 0.18) 1px, transparent 1px);
background-size: 48px 48px, 48px 48px, 12px 12px, 12px 12px;
background-position: 0 0, 0 0, 2px 2px, 2px 2px;
}
.hero::after {
background:
radial-gradient(closest-side at 18% 24%, rgba(109, 191, 255, 0.28), transparent 70%),
radial-gradient(closest-side at 84% 76%, rgba(64, 161, 243, 0.22), transparent 72%),
radial-gradient(circle at 28% 68%, rgba(54, 152, 235, 0.18) 0 3px, transparent 3px),
radial-gradient(circle at 74% 30%, rgba(54, 152, 235, 0.16) 0 2px, transparent 2px);
background-size: auto, auto, 22px 22px, 18px 18px;
}
.content {
position: relative;
z-index: 1;
width: min(980px, 100%);
padding: clamp(14px, 2vw, 22px);
text-align: center;
}
.tag {
margin: 0 0 14px;
color: var(--primary-dark);
font-weight: 600;
letter-spacing: 0.06em;
text-transform: uppercase;
font-size: 0.82rem;
}
h1 {
margin: 0;
font-size: clamp(3rem, 10vw, 6rem);
line-height: 1.02;
color: var(--title);
letter-spacing: 0.02em;
text-shadow: 0 10px 28px rgba(38, 124, 194, 0.14);
}
.subtitle {
margin: 16px auto 36px;
max-width: 760px;
font-size: clamp(1.02rem, 2.6vw, 1.34rem);
line-height: 1.45;
color: var(--text);
}
.overview {
margin: 0 auto 30px;
max-width: 860px;
font-size: clamp(0.94rem, 1.8vw, 1.06rem);
line-height: 1.6;
color: #2f5374;
}
.download-group {
display: flex;
gap: 16px;
flex-wrap: wrap;
justify-content: center;
}
.download-btn {
display: inline-flex;
align-items: center;
justify-content: center;
text-decoration: none;
font-weight: 600;
font-size: 1rem;
color: #fff;
background: linear-gradient(135deg, var(--primary), var(--primary-dark));
border-radius: 12px;
padding: 13px 30px;
box-shadow: 0 10px 24px rgba(46, 142, 217, 0.3);
transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}
.download-btn:hover {
transform: translateY(-2px);
box-shadow: 0 14px 30px rgba(46, 142, 217, 0.38);
filter: brightness(1.03);
}
.download-btn:active {
transform: translateY(0);
}