Spaces:
Running
Running
File size: 9,100 Bytes
5ed3bc5 8f3f71c | 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 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 | :root {
--bg-color: #0f1115;
--card-bg: rgba(255, 255, 255, 0.05);
--primary-color: #00ff88;
--primary-dim: rgba(0, 255, 136, 0.1);
--secondary-color: #60a5fa;
--text-main: #ffffff;
--text-muted: #9ca3af;
--gradient-main: linear-gradient(135deg, #00ff88 0%, #60a5fa 100%);
--font-heading: 'Outfit', sans-serif;
--font-body: 'Noto Sans KR', sans-serif;
--glass-border: 1px solid rgba(255, 255, 255, 0.1);
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background-color: var(--bg-color);
color: var(--text-main);
font-family: var(--font-body);
line-height: 1.6;
overflow-x: hidden;
}
/* Background Glob Effect */
.background-glob {
position: fixed;
top: -20%;
right: -10%;
width: 600px;
height: 600px;
background: radial-gradient(circle, rgba(0, 255, 136, 0.15) 0%, transparent 70%);
filter: blur(80px);
z-index: -1;
animation: blob-bounce 10s infinite alternate;
}
@keyframes blob-bounce {
0% { transform: translate(0, 0); }
100% { transform: translate(-50px, 50px); }
}
/* Navbar */
.navbar {
display: flex;
justify-content: space-between;
align-items: center;
padding: 1.5rem 5%;
position: fixed;
width: 100%;
top: 0;
backdrop-filter: blur(10px);
border-bottom: var(--glass-border);
z-index: 1000;
}
.logo {
font-family: var(--font-heading);
font-weight: 700;
font-size: 1.5rem;
background: var(--gradient-main);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
letter-spacing: 1px;
}
.nav-links a {
color: var(--text-muted);
text-decoration: none;
margin-left: 2rem;
font-weight: 500;
transition: color 0.3s;
}
.nav-links a:hover {
color: var(--primary-color);
}
/* Hero Section */
.hero {
min-height: 100vh;
display: flex;
align-items: center;
justify-content: space-between;
padding: 0 10%;
padding-top: 80px; /* Navbar height */
gap: 2rem;
}
.hero-content {
flex: 1;
max-width: 600px;
}
.badge {
background: var(--primary-dim);
color: var(--primary-color);
padding: 0.5rem 1rem;
border-radius: 50px;
font-size: 0.9rem;
font-weight: 600;
display: inline-block;
margin-bottom: 1.5rem;
}
h1 {
font-family: var(--font-heading);
font-size: 3.5rem;
line-height: 1.1;
margin-bottom: 1.5rem;
}
.gradient-text {
background: var(--gradient-main);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.hero p {
color: var(--text-muted);
font-size: 1.2rem;
margin-bottom: 2.5rem;
}
.cta-group {
display: flex;
gap: 1rem;
}
.btn {
padding: 1rem 2rem;
border-radius: 8px;
font-weight: 600;
text-decoration: none;
transition: transform 0.2s, box-shadow 0.2s;
display: inline-flex;
align-items: center;
justify-content: center;
}
.btn.primary {
background: var(--gradient-main);
color: #000;
border: none;
}
.btn.primary:hover {
transform: translateY(-2px);
box-shadow: 0 10px 20px rgba(0, 255, 136, 0.2);
}
.btn.secondary {
background: rgba(255, 255, 255, 0.1);
color: white;
border: var(--glass-border);
}
.btn.secondary:hover {
background: rgba(255, 255, 255, 0.2);
}
.hero-image {
flex: 1;
display: flex;
justify-content: center;
}
.hero-image img {
max-width: 100%;
border-radius: 12px;
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
border: var(--glass-border);
}
/* Sections */
.section {
padding: 6rem 10%;
opacity: 0;
transform: translateY(20px);
transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.section.visible {
opacity: 1;
transform: translateY(0);
}
.section-header {
text-align: center;
margin-bottom: 3rem;
}
.section-header h2 {
font-family: var(--font-heading);
font-size: 2.5rem;
margin-bottom: 0.5rem;
}
.section-header p {
color: var(--text-muted);
}
/* Glass Card */
.glass-card {
background: var(--card-bg);
backdrop-filter: blur(12px);
-webkit-backdrop-filter: blur(12px);
border: var(--glass-border);
border-radius: 16px;
padding: 2rem;
overflow: hidden;
}
/* Video */
.video-container video {
width: 100%;
border-radius: 8px;
display: block;
}
/* PPT Placeholder */
.ppt-container {
min-height: 400px;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
}
.icon-box {
font-size: 3rem;
margin-bottom: 1rem;
}
.placeholder-ppt h3 {
margin-bottom: 1rem;
}
.placeholder-ppt p {
color: var(--text-muted);
margin-bottom: 2rem;
}
/* Workflow */
.workflow-container {
display: flex;
flex-direction: column;
gap: 2rem;
}
.workflow-info {
text-align: center;
}
.workflow-viz {
background: rgba(0,0,0,0.3);
border-radius: 8px;
padding: 2rem;
text-align: center;
}
.code-block {
text-align: left;
background: #000;
padding: 1rem;
border-radius: 8px;
overflow-x: auto;
font-family: 'Fira Code', monospace;
font-size: 0.9rem;
margin-bottom: 2rem;
border: 1px solid #333;
}
/* Footer */
footer {
padding: 2rem 10%;
text-align: center;
border-top: var(--glass-border);
margin-top: 4rem;
color: var(--text-muted);
display: flex;
justify-content: space-between;
align-items: center;
}
footer a {
color: var(--text-main);
text-decoration: none;
}
@media (max-width: 768px) {
.navbar {
padding: 1rem 5%;
}
.hero {
flex-direction: column;
text-align: center;
padding-top: 120px;
}
.cta-group {
justify-content: center;
}
.hero-content {
margin-bottom: 3rem;
}
footer {
flex-direction: column;
gap: 1rem;
}
}
/* Workflow & Team Enhancements */
.full-width-img {
width: 100%;
border-radius: 8px;
margin-bottom: 2rem;
border: 1px solid rgba(255, 255, 255, 0.1);
}
.workflow-details {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 2rem;
text-align: left;
}
.logic-step {
background: rgba(255, 255, 255, 0.03);
padding: 1.5rem;
border-radius: 12px;
border: 1px solid rgba(255, 255, 255, 0.05);
transition: transform 0.3s;
}
.logic-step:hover {
transform: translateY(-5px);
background: rgba(255, 255, 255, 0.05);
border-color: var(--primary-color);
}
.logic-step h3 {
color: var(--primary-color);
margin-bottom: 0.5rem;
font-size: 1.2rem;
}
.logic-step ul {
list-style-position: inside;
margin-top: 0.5rem;
font-size: 0.9rem;
color: var(--text-muted);
}
/* Team Section */
.team-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 1.5rem;
margin-top: 2rem;
}
.team-member {
background: rgba(0, 0, 0, 0.2);
padding: 1.5rem;
border-radius: 12px;
text-align: center;
border: 1px solid rgba(255, 255, 255, 0.05);
transition: all 0.3s ease;
}
.team-member:hover {
background: rgba(255, 255, 255, 0.05);
transform: translateY(-5px);
}
.team-member h4 {
font-size: 1.2rem;
margin-bottom: 0.2rem;
color: var(--text-main);
}
.team-member .role {
display: block;
font-size: 0.8rem;
color: var(--primary-color);
margin-bottom: 1rem;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 1px;
}
.team-member p {
font-size: 0.9rem;
color: var(--text-muted);
line-height: 1.5;
}
@media (max-width: 768px) {
.workflow-details {
grid-template-columns: 1fr;
}
}
/* PDF Viewer */
.ppt-wrapper {
position: relative;
width: 100%;
height: 100%;
min-height: 600px;
background: #252528;
border-radius: 12px;
display: flex;
flex-direction: column;
overflow: hidden;
}
.pdf-canvas-container {
flex: 1;
display: flex;
align-items: center;
justify-content: center;
background: #1a1a1d;
overflow: auto;
position: relative;
}
#pdf-render {
max-width: 100%;
max-height: 100%;
box-shadow: 0 4px 6px rgba(0,0,0,0.3);
}
.slide-controls {
display: flex;
justify-content: center;
align-items: center;
gap: 1.5rem;
padding: 1rem;
background: rgba(0, 0, 0, 0.4);
backdrop-filter: blur(10px);
border-top: 1px solid rgba(255, 255, 255, 0.1);
color: white;
}
.slide-controls button {
background: rgba(255, 255, 255, 0.1);
border: 1px solid rgba(255, 255, 255, 0.2);
color: white;
padding: 0.5rem 1rem;
border-radius: 6px;
cursor: pointer;
font-weight: 600;
transition: all 0.2s ease;
}
.slide-controls button:hover:not(:disabled) {
background: var(--primary-color);
color: black;
border-color: var(--primary-color);
}
.slide-controls button:disabled {
opacity: 0.5;
cursor: not-allowed;
}
#page-count-container {
font-variant-numeric: tabular-nums;
font-size: 0.9rem;
color: var(--text-muted);
}
|