-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
263 lines (230 loc) · 6.56 KB
/
index.html
File metadata and controls
263 lines (230 loc) · 6.56 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
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CELLAXON — Company Info</title>
<meta name="description" content="CELLAXON company information and official link to Ranvier Studio.">
<link rel="icon" type="image/x-icon" href="/favicon.ico">
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-0J2NHF6L23"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-0J2NHF6L23');
</script>
<style>
:root {
color-scheme: light;
--ink: #0f172a;
--muted: #556070;
--accent: #0f766e;
--accent-soft: #cfe9e6;
--panel: rgba(255, 255, 255, 0.88);
--border: rgba(15, 23, 42, 0.14);
--shadow: 0 20px 60px rgba(15, 23, 42, 0.12);
--bg-1: #f5f1ea;
--bg-2: #e7eef4;
}
* {
box-sizing: border-box;
}
body {
margin: 0;
min-height: 100vh;
font-family: "Iowan Old Style", "Palatino", "Palatino Linotype", "Georgia", serif;
color: var(--ink);
background: radial-gradient(1200px 800px at 10% 10%, #fff7e8 0%, transparent 60%),
radial-gradient(1000px 700px at 85% 20%, #e2f4ff 0%, transparent 55%),
linear-gradient(130deg, var(--bg-1), var(--bg-2));
display: flex;
align-items: center;
justify-content: center;
padding: clamp(24px, 4vw, 64px);
}
main {
width: min(920px, 100%);
position: relative;
}
.card {
background: var(--panel);
border: 1px solid var(--border);
border-radius: 28px;
padding: clamp(28px, 5vw, 56px);
box-shadow: var(--shadow);
backdrop-filter: blur(10px);
animation: float-in 0.8s ease-out both;
}
.eyebrow {
font-family: "Avenir Next", "Avenir", "Gill Sans", sans-serif;
font-size: 0.9rem;
text-transform: uppercase;
letter-spacing: 0.28em;
color: var(--accent);
}
h1 {
font-size: clamp(2.2rem, 4vw, 3.4rem);
margin: 12px 0 10px;
font-weight: 600;
}
.subtitle {
font-family: "Avenir Next", "Avenir", "Gill Sans", sans-serif;
font-size: 1.05rem;
color: var(--muted);
margin: 0 0 28px;
max-width: 46ch;
}
.link-block {
display: flex;
align-items: center;
gap: 12px;
padding: 16px 18px;
border-radius: 18px;
border: 1px solid var(--border);
background: #ffffff;
margin-bottom: 28px;
animation: reveal 0.8s ease-out both;
animation-delay: 0.1s;
}
.link-block span {
font-family: "Avenir Next", "Avenir", "Gill Sans", sans-serif;
font-weight: 600;
color: var(--ink);
}
.link-block a {
margin-left: auto;
text-decoration: none;
color: var(--accent);
font-family: "Avenir Next", "Avenir", "Gill Sans", sans-serif;
font-weight: 600;
padding: 8px 16px;
border-radius: 999px;
background: var(--accent-soft);
transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.link-block a:hover {
transform: translateY(-2px);
box-shadow: 0 10px 20px rgba(15, 118, 110, 0.2);
}
.info-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 20px;
}
.info-item {
padding: 14px 16px;
border-radius: 16px;
border: 1px solid var(--border);
background: #ffffff;
animation: reveal 0.8s ease-out both;
}
.info-item:nth-child(2) {
animation-delay: 0.12s;
}
.info-item:nth-child(3) {
animation-delay: 0.2s;
}
.info-item:nth-child(4) {
animation-delay: 0.28s;
}
.info-item h2 {
font-size: 0.95rem;
margin: 0 0 6px;
font-family: "Avenir Next", "Avenir", "Gill Sans", sans-serif;
color: var(--muted);
text-transform: uppercase;
letter-spacing: 0.16em;
}
.info-item p {
margin: 0;
font-size: 1rem;
line-height: 1.5;
}
.info-item a {
color: var(--accent);
text-decoration: none;
}
.note {
font-family: "Avenir Next", "Avenir", "Gill Sans", sans-serif;
font-size: 0.9rem;
color: var(--muted);
margin-top: 22px;
}
@keyframes float-in {
from {
opacity: 0;
transform: translateY(20px) scale(0.98);
}
to {
opacity: 1;
transform: translateY(0) scale(1);
}
}
@keyframes reveal {
from {
opacity: 0;
transform: translateY(12px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
@media (max-width: 600px) {
.link-block {
flex-direction: column;
align-items: flex-start;
}
.link-block a {
margin-left: 0;
}
}
</style>
</head>
<body>
<main>
<section class="card">
<div class="eyebrow">Company</div>
<h1>CELLAXON Inc.</h1>
<p class="subtitle">Official information and the primary studio link.</p>
<div class="link-block">
<span>Ranvier Studio</span>
<a href="https://ranvier.studio/" target="_blank" rel="noopener">Visit ranvier.studio</a>
</div>
<div class="link-block">
<span>Shortcuts</span>
<a href="https://cellaxon.com/shortcuts" target="_blank" rel="noopener">Open shortcuts</a>
</div>
<div class="link-block">
<span>Blog</span>
<a href="https://blog.cellaxon.com" target="_blank" rel="noopener">Read blog</a>
</div>
<div class="info-grid">
<div class="info-item">
<h2>Address</h2>
<p>202-2409, 143, Dongtangambaesan-ro,<br>Hwaseong-si, Gyeonggi-do,<br>Republic of Korea</p>
</div>
<div class="info-item">
<h2>Phone</h2>
<p><a href="tel:+823180433215">+82-31-8043-3215</a></p>
</div>
<div class="info-item">
<h2>Fax</h2>
<p>+82-31-8043-3216</p>
</div>
<div class="info-item">
<h2>Email</h2>
<p><a href="mailto:contact@cellaxon.com">contact@cellaxon.com</a></p>
</div>
<div class="info-item">
<h2>LinkedIn</h2>
<p><a href="https://www.linkedin.com/company/cellaxon" target="_blank"
rel="noopener">linkedin.com/company/cellaxon</a></p>
</div>
</div>
<p class="note">For partnerships and inquiries, please reach out using the contact details above.</p>
</section>
</main>
</body>
</html>