Diff of /web/hiring/hiring.css [000000] .. [8c4ad8]

Switch to unified view

a b/web/hiring/hiring.css
1
/* General Styles */
2
body {
3
    font-family: 'IBM Plex Mono', monospace;
4
    background-color: #0a0c1b;
5
    color: #ffffff;
6
    line-height: 1.6;
7
    margin: 0;
8
    padding: 0;
9
}
10
11
/* Container */
12
.container {
13
    max-width: 1200px;
14
    margin: 6rem auto 2rem;
15
    padding: 2rem;
16
}
17
18
/* Hero Section */
19
.hero {
20
    text-align: center;
21
    margin-bottom: 4rem;
22
}
23
24
.hero h1 {
25
    font-size: 3.5rem;
26
    margin-bottom: 1.5rem;
27
    background: linear-gradient(45deg, var(--gradient-start), var(--gradient-end));
28
    -webkit-background-clip: text;
29
    -webkit-text-fill-color: transparent;
30
}
31
32
.hero p {
33
    font-size: 1.2rem;
34
    color: rgba(255, 255, 255, 0.9);
35
    max-width: 800px;
36
    margin: 0 auto;
37
    line-height: 1.8;
38
}
39
40
/* Positions Section */
41
.positions-section {
42
    margin: 4rem 0;
43
    padding: 2rem;
44
    background: rgba(0, 0, 0, 0.2);
45
    border-radius: 12px;
46
    border: 1px solid rgba(255, 255, 255, 0.1);
47
}
48
49
.positions-section h2 {
50
    font-size: 2.5rem;
51
    margin-bottom: 2rem;
52
    text-align: center;
53
    color: var(--gradient-end);
54
}
55
56
.positions-grid {
57
    display: grid;
58
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
59
    gap: 2rem;
60
    margin-top: 3rem;
61
}
62
63
.position-card {
64
    background: rgba(255, 255, 255, 0.05);
65
    border-radius: 12px;
66
    padding: 2rem;
67
    text-align: center;
68
    border: 1px solid rgba(255, 255, 255, 0.1);
69
    transition: all 0.3s ease;
70
}
71
72
.position-card:hover {
73
    transform: translateY(-5px);
74
    border-color: var(--gradient-end);
75
    box-shadow: 0 4px 20px rgba(0, 122, 255, 0.2);
76
}
77
78
.position-card h3 {
79
    font-size: 1.5rem;
80
    margin-bottom: 1rem;
81
    color: var(--gradient-end);
82
}
83
84
.position-card p {
85
    color: rgba(255, 255, 255, 0.9);
86
    font-size: 1rem;
87
    line-height: 1.6;
88
    margin-bottom: 1.5rem;
89
}
90
91
.primary-btn {
92
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
93
    color: white;
94
    border: none;
95
    padding: 0.8rem 1.6rem;
96
    border-radius: 8px;
97
    font-size: 0.95rem;
98
    font-weight: 500;
99
    cursor: pointer;
100
    transition: all 0.3s ease;
101
    text-transform: uppercase;
102
    letter-spacing: 1px;
103
    min-width: 160px;
104
    text-decoration: none;
105
    text-align: center;
106
    display: inline-flex;
107
    align-items: center;
108
    justify-content: center;
109
    gap: 0.5rem;
110
}
111
112
.primary-btn:hover {
113
    transform: translateY(-2px);
114
    box-shadow: 0 8px 30px rgba(0, 122, 255, 0.4);
115
    filter: brightness(1.1);
116
}
117
118
/* Benefits Section */
119
.benefits-section {
120
    margin: 4rem 0;
121
    padding: 2rem;
122
    background: rgba(0, 0, 0, 0.2);
123
    border-radius: 12px;
124
    border: 1px solid rgba(255, 255, 255, 0.1);
125
}
126
127
.benefits-section h2 {
128
    font-size: 2.5rem;
129
    margin-bottom: 2rem;
130
    text-align: center;
131
    color: var(--gradient-end);
132
}
133
134
.benefits-grid {
135
    display: grid;
136
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
137
    gap: 2rem;
138
    margin-top: 3rem;
139
}
140
141
.benefit-card {
142
    background: rgba(255, 255, 255, 0.05);
143
    border-radius: 12px;
144
    padding: 2rem;
145
    text-align: center;
146
    border: 1px solid rgba(255, 255, 255, 0.1);
147
    transition: all 0.3s ease;
148
}
149
150
.benefit-card:hover {
151
    transform: translateY(-5px);
152
    border-color: var(--gradient-end);
153
    box-shadow: 0 4px 20px rgba(0, 122, 255, 0.2);
154
}
155
156
.benefit-icon {
157
    font-size: 2.5rem;
158
    margin-bottom: 1rem;
159
    color: var(--gradient-end);
160
}
161
162
.benefit-card h3 {
163
    font-size: 1.5rem;
164
    margin-bottom: 1rem;
165
    color: var(--gradient-end);
166
}
167
168
.benefit-card p {
169
    color: rgba(255, 255, 255, 0.9);
170
    font-size: 1rem;
171
    line-height: 1.6;
172
}
173
174
/* Responsive Design */
175
@media screen and (max-width: 768px) {
176
    .container {
177
        margin: 4rem 1rem 2rem;
178
        padding: 1rem;
179
    }
180
181
    .hero h1 {
182
        font-size: 2.5rem;
183
    }
184
185
    .hero p {
186
        font-size: 1.1rem;
187
    }
188
189
    .positions-section,
190
    .benefits-section {
191
        padding: 1.5rem;
192
    }
193
194
    .positions-grid,
195
    .benefits-grid {
196
        grid-template-columns: 1fr;
197
    }
198
}