Spaces:
Running
Running
Update index.html
Browse files- index.html +427 -90
index.html
CHANGED
|
@@ -22,8 +22,14 @@
|
|
| 22 |
--blue: #3b82f6;
|
| 23 |
--purple: #8b5cf6;
|
| 24 |
--red: #ef4444;
|
|
|
|
|
|
|
|
|
|
|
|
|
| 25 |
--border: rgba(255,255,255,0.06);
|
| 26 |
--border-hover: rgba(255,255,255,0.12);
|
|
|
|
|
|
|
| 27 |
--radius: 16px;
|
| 28 |
--radius-sm: 10px;
|
| 29 |
--mono: 'JetBrains Mono', monospace;
|
|
@@ -33,7 +39,11 @@
|
|
| 33 |
html { scroll-behavior: smooth; font-size: 16px; }
|
| 34 |
body {
|
| 35 |
font-family: 'Inter', system-ui, -apple-system, sans-serif;
|
| 36 |
-
background:
|
|
|
|
|
|
|
|
|
|
|
|
|
| 37 |
color: var(--text);
|
| 38 |
line-height: 1.7;
|
| 39 |
overflow-x: hidden;
|
|
@@ -90,6 +100,40 @@
|
|
| 90 |
background-size: 128px;
|
| 91 |
}
|
| 92 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 93 |
/* ─── Navigation ─── */
|
| 94 |
.nav {
|
| 95 |
position: fixed; top: 0; left: 0; right: 0; z-index: 100;
|
|
@@ -97,9 +141,10 @@
|
|
| 97 |
transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
|
| 98 |
}
|
| 99 |
.nav.scrolled {
|
| 100 |
-
background: rgba(10,
|
| 101 |
-
backdrop-filter: blur(
|
| 102 |
-
border-bottom: 1px solid
|
|
|
|
| 103 |
}
|
| 104 |
.nav-inner {
|
| 105 |
max-width: 1200px; margin: 0 auto;
|
|
@@ -149,19 +194,50 @@
|
|
| 149 |
min-height: 100vh;
|
| 150 |
display: flex; flex-direction: column; align-items: center; justify-content: center;
|
| 151 |
text-align: center;
|
| 152 |
-
padding:
|
| 153 |
position: relative; z-index: 1;
|
|
|
|
| 154 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 155 |
.hero-badge {
|
| 156 |
display: inline-flex; align-items: center; gap: 0.5rem;
|
| 157 |
-
padding: 0.
|
| 158 |
-
background: rgba(245,
|
| 159 |
-
border: 1px solid rgba(245, 158, 11, 0.
|
| 160 |
border-radius: 100px;
|
| 161 |
-
font-size: 0.75rem; font-weight:
|
| 162 |
-
color: var(--
|
| 163 |
margin-bottom: 2rem;
|
| 164 |
letter-spacing: 0.02em;
|
|
|
|
| 165 |
}
|
| 166 |
.hero-badge .dot {
|
| 167 |
width: 6px; height: 6px;
|
|
@@ -182,24 +258,67 @@
|
|
| 182 |
max-width: 800px;
|
| 183 |
}
|
| 184 |
.hero h1 .gradient {
|
| 185 |
-
background: linear-gradient(135deg, var(--
|
| 186 |
-webkit-background-clip: text; -webkit-text-fill-color: transparent;
|
| 187 |
background-clip: text;
|
|
|
|
| 188 |
}
|
| 189 |
.hero .subtitle {
|
| 190 |
font-size: 1.15rem;
|
| 191 |
-
color:
|
| 192 |
-
max-width:
|
| 193 |
line-height: 1.8;
|
| 194 |
margin-bottom: 2.5rem;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 195 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 196 |
.hero-stats {
|
| 197 |
display: flex; gap: 3rem; flex-wrap: wrap; justify-content: center;
|
| 198 |
margin-bottom: 3rem;
|
| 199 |
}
|
| 200 |
.hero-stat {
|
| 201 |
text-align: center;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 202 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 203 |
.hero-stat .num {
|
| 204 |
font-size: 2rem; font-weight: 800;
|
| 205 |
font-family: var(--mono);
|
|
@@ -238,6 +357,14 @@
|
|
| 238 |
.section + .section {
|
| 239 |
border-top: 1px solid var(--border);
|
| 240 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 241 |
|
| 242 |
.section-label {
|
| 243 |
display: inline-flex; align-items: center; gap: 0.5rem;
|
|
@@ -255,10 +382,11 @@
|
|
| 255 |
}
|
| 256 |
.section-title {
|
| 257 |
font-size: clamp(1.8rem, 3.5vw, 2.5rem);
|
| 258 |
-
font-weight:
|
| 259 |
-
letter-spacing: -0.
|
| 260 |
margin-bottom: 0.75rem;
|
| 261 |
line-height: 1.2;
|
|
|
|
| 262 |
}
|
| 263 |
.section-desc {
|
| 264 |
font-size: 1rem;
|
|
@@ -285,13 +413,24 @@
|
|
| 285 |
|
| 286 |
/* ─── Executive Summary ─── */
|
| 287 |
.summary-card {
|
| 288 |
-
background:
|
| 289 |
-
|
| 290 |
-
border
|
|
|
|
| 291 |
padding: 2rem 2.5rem;
|
| 292 |
margin-bottom: 4rem;
|
| 293 |
position: relative;
|
| 294 |
overflow: hidden;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 295 |
}
|
| 296 |
.summary-card::before {
|
| 297 |
content: '';
|
|
@@ -303,81 +442,147 @@
|
|
| 303 |
font-size: 0.92rem;
|
| 304 |
color: #c0b8a8;
|
| 305 |
line-height: 1.85;
|
|
|
|
|
|
|
| 306 |
}
|
| 307 |
.summary-card strong { color: var(--amber-light); }
|
| 308 |
|
| 309 |
-
/* ───
|
| 310 |
.intro-grid {
|
| 311 |
display: grid;
|
| 312 |
-
grid-template-columns: repeat(3, 1fr);
|
| 313 |
-
gap:
|
| 314 |
margin-bottom: 4rem;
|
|
|
|
| 315 |
}
|
| 316 |
-
@media (max-width:
|
| 317 |
.intro-grid { grid-template-columns: 1fr; }
|
| 318 |
}
|
| 319 |
.intro-card {
|
| 320 |
-
|
| 321 |
-
|
| 322 |
-
|
| 323 |
-
|
| 324 |
-
transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
|
| 325 |
position: relative;
|
| 326 |
overflow: hidden;
|
| 327 |
cursor: pointer;
|
| 328 |
text-decoration: none;
|
| 329 |
color: inherit;
|
| 330 |
-
display:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 331 |
}
|
| 332 |
.intro-card::after {
|
| 333 |
content: '';
|
| 334 |
-
position: absolute;
|
| 335 |
-
|
| 336 |
-
|
| 337 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 338 |
}
|
| 339 |
.intro-card:hover {
|
| 340 |
-
|
| 341 |
-
|
| 342 |
-
|
| 343 |
}
|
| 344 |
-
.intro-card:hover::
|
|
|
|
|
|
|
| 345 |
.intro-card .card-num {
|
|
|
|
|
|
|
|
|
|
| 346 |
font-family: var(--mono);
|
| 347 |
-
font-size: 0.
|
| 348 |
-
color: var(--
|
| 349 |
-
margin-bottom: 1.
|
| 350 |
-
letter-spacing: 0.
|
|
|
|
|
|
|
|
|
|
| 351 |
}
|
| 352 |
.intro-card h3 {
|
| 353 |
-
font-size: 1.
|
| 354 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
| 355 |
}
|
| 356 |
.intro-card .card-desc {
|
| 357 |
-
font-size: 0.
|
| 358 |
-
color:
|
| 359 |
-
line-height: 1.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 360 |
}
|
|
|
|
| 361 |
.intro-card .card-arrow {
|
| 362 |
-
margin-top:
|
| 363 |
-
|
| 364 |
-
font-
|
| 365 |
-
|
| 366 |
-
|
| 367 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 368 |
}
|
| 369 |
-
.intro-card:hover .card-arrow { gap:
|
| 370 |
|
| 371 |
-
.card-accent-blue {
|
| 372 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 373 |
.card-accent-green { --card-accent: var(--green); }
|
| 374 |
-
.card-accent-purple {
|
| 375 |
-
|
| 376 |
-
|
| 377 |
-
|
| 378 |
-
|
| 379 |
-
background: var(--card-accent, var(--amber));
|
| 380 |
-
margin-bottom: 1rem;
|
| 381 |
}
|
| 382 |
|
| 383 |
/* ─── Automatisierbarkeits-Grid ─── */
|
|
@@ -388,17 +593,28 @@
|
|
| 388 |
margin: 2rem 0;
|
| 389 |
}
|
| 390 |
.auto-item {
|
| 391 |
-
background:
|
| 392 |
-
border: 1px solid
|
| 393 |
-
border-radius:
|
| 394 |
padding: 1.25rem;
|
| 395 |
text-align: center;
|
| 396 |
transition: all 0.3s;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 397 |
}
|
| 398 |
.auto-item:hover {
|
| 399 |
-
border-color:
|
| 400 |
background: var(--bg-card-hover);
|
|
|
|
| 401 |
}
|
|
|
|
| 402 |
.auto-item .emoji { font-size: 1.6rem; margin-bottom: 0.5rem; }
|
| 403 |
.auto-item .name { font-size: 0.82rem; font-weight: 600; margin-bottom: 0.25rem; }
|
| 404 |
.auto-item .detail { font-size: 0.72rem; color: var(--text-muted); }
|
|
@@ -421,21 +637,23 @@
|
|
| 421 |
.tbl-wrap {
|
| 422 |
overflow-x: auto;
|
| 423 |
margin: 1.5rem 0;
|
| 424 |
-
border: 1px solid
|
| 425 |
-
border-radius:
|
|
|
|
|
|
|
| 426 |
}
|
| 427 |
table {
|
| 428 |
width: 100%; border-collapse: collapse;
|
| 429 |
font-size: 0.82rem;
|
| 430 |
}
|
| 431 |
table th {
|
| 432 |
-
text-align: left; padding: 0.
|
| 433 |
-
font-weight:
|
| 434 |
text-transform: uppercase;
|
| 435 |
-
letter-spacing: 0.
|
| 436 |
-
color:
|
| 437 |
-
background: rgba(255,255,255,0.
|
| 438 |
-
border-bottom: 1px solid
|
| 439 |
white-space: nowrap;
|
| 440 |
}
|
| 441 |
table td {
|
|
@@ -444,19 +662,27 @@
|
|
| 444 |
color: var(--text-muted);
|
| 445 |
}
|
| 446 |
table tr:last-child td { border-bottom: none; }
|
| 447 |
-
table tr:hover td { background: rgba(
|
| 448 |
table td strong { color: var(--text); }
|
| 449 |
|
| 450 |
.price { color: var(--green); font-weight: 600; font-family: var(--mono); font-size: 0.8rem; }
|
| 451 |
|
| 452 |
/* ─── Info Boxes ─── */
|
| 453 |
.info-box {
|
| 454 |
-
border-radius:
|
| 455 |
padding: 1.25rem 1.5rem;
|
| 456 |
margin: 1.5rem 0;
|
| 457 |
font-size: 0.85rem;
|
| 458 |
line-height: 1.8;
|
| 459 |
border: 1px solid;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 460 |
}
|
| 461 |
.info-box strong { display: inline; }
|
| 462 |
.info-box.highlight {
|
|
@@ -492,15 +718,17 @@
|
|
| 492 |
margin: 2rem 0;
|
| 493 |
}
|
| 494 |
.stat-box {
|
| 495 |
-
background:
|
| 496 |
-
border: 1px solid
|
| 497 |
-
border-radius:
|
| 498 |
padding: 1.25rem;
|
| 499 |
text-align: center;
|
| 500 |
transition: all 0.3s;
|
| 501 |
}
|
| 502 |
.stat-box:hover {
|
| 503 |
-
border-color:
|
|
|
|
|
|
|
| 504 |
}
|
| 505 |
.stat-box .num {
|
| 506 |
font-size: 1.5rem; font-weight: 800;
|
|
@@ -516,12 +744,20 @@
|
|
| 516 |
|
| 517 |
/* ─── Budget Tiers ─── */
|
| 518 |
.budget-tier {
|
| 519 |
-
background:
|
| 520 |
-
border: 1px solid
|
| 521 |
-
border-radius:
|
| 522 |
padding: 1.5rem 1.75rem;
|
| 523 |
margin: 1rem 0;
|
| 524 |
transition: all 0.3s;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 525 |
}
|
| 526 |
.budget-tier:hover {
|
| 527 |
border-color: var(--border-hover);
|
|
@@ -662,15 +898,24 @@
|
|
| 662 |
margin: 2rem 0;
|
| 663 |
}
|
| 664 |
.rec-card {
|
| 665 |
-
background:
|
| 666 |
-
border: 1px solid
|
| 667 |
-
border-radius:
|
| 668 |
padding: 1.5rem;
|
| 669 |
transition: all 0.3s;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 670 |
}
|
| 671 |
.rec-card:hover {
|
| 672 |
-
border-color:
|
| 673 |
background: var(--bg-card-hover);
|
|
|
|
| 674 |
}
|
| 675 |
.rec-card .rec-type {
|
| 676 |
font-size: 0.7rem;
|
|
@@ -702,7 +947,8 @@
|
|
| 702 |
text-align: center;
|
| 703 |
padding: 4rem 1.5rem;
|
| 704 |
position: relative; z-index: 1;
|
| 705 |
-
border-top: 1px solid
|
|
|
|
| 706 |
}
|
| 707 |
.footer-brand {
|
| 708 |
font-size: 0.85rem; font-weight: 700;
|
|
@@ -726,11 +972,54 @@
|
|
| 726 |
background: var(--text-dim);
|
| 727 |
}
|
| 728 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 729 |
/* ─── Mobile ─── */
|
| 730 |
@media (max-width: 600px) {
|
| 731 |
.hero { padding: 5rem 1rem 3rem; min-height: auto; }
|
| 732 |
.hero h1 { font-size: 2rem; }
|
| 733 |
-
.hero-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 734 |
.section { padding: 3rem 0; }
|
| 735 |
.summary-card { padding: 1.5rem; }
|
| 736 |
.stat-grid { grid-template-columns: 1fr 1fr; }
|
|
@@ -749,6 +1038,14 @@
|
|
| 749 |
<div class="orb"></div>
|
| 750 |
</div>
|
| 751 |
<div class="noise"></div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 752 |
|
| 753 |
<!-- ─── Navigation ─── -->
|
| 754 |
<nav class="nav" id="nav">
|
|
@@ -773,10 +1070,16 @@
|
|
| 773 |
<h1>
|
| 774 |
<span class="gradient">Automatisierte<br>Bienenzucht</span> 2026
|
| 775 |
</h1>
|
|
|
|
| 776 |
<p class="subtitle">
|
| 777 |
-
|
| 778 |
-
|
| 779 |
</p>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 780 |
<div class="hero-stats">
|
| 781 |
<div class="hero-stat">
|
| 782 |
<div class="num">135</div>
|
|
@@ -827,6 +1130,29 @@
|
|
| 827 |
</p>
|
| 828 |
</div>
|
| 829 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 830 |
<div class="intro-grid">
|
| 831 |
<a href="#commercial" class="intro-card card-accent-blue reveal reveal-delay-1">
|
| 832 |
<div class="card-dot"></div>
|
|
@@ -1634,6 +1960,17 @@ const counterObserver = new IntersectionObserver((entries) => {
|
|
| 1634 |
}, { threshold: 0.5 });
|
| 1635 |
|
| 1636 |
document.querySelectorAll('.hero-stats').forEach(el => counterObserver.observe(el));
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1637 |
</script>
|
| 1638 |
</body>
|
| 1639 |
</html>
|
|
|
|
| 22 |
--blue: #3b82f6;
|
| 23 |
--purple: #8b5cf6;
|
| 24 |
--red: #ef4444;
|
| 25 |
+
--honey: #ffd166;
|
| 26 |
+
--wax: #ffb703;
|
| 27 |
+
--propolis: #6b2f13;
|
| 28 |
+
--cyan: #22d3ee;
|
| 29 |
--border: rgba(255,255,255,0.06);
|
| 30 |
--border-hover: rgba(255,255,255,0.12);
|
| 31 |
+
--glass: rgba(18,18,24,0.58);
|
| 32 |
+
--shadow-amber: 0 24px 80px rgba(245,158,11,0.16);
|
| 33 |
--radius: 16px;
|
| 34 |
--radius-sm: 10px;
|
| 35 |
--mono: 'JetBrains Mono', monospace;
|
|
|
|
| 39 |
html { scroll-behavior: smooth; font-size: 16px; }
|
| 40 |
body {
|
| 41 |
font-family: 'Inter', system-ui, -apple-system, sans-serif;
|
| 42 |
+
background:
|
| 43 |
+
radial-gradient(circle at 18% -10%, rgba(245,158,11,0.18), transparent 34rem),
|
| 44 |
+
radial-gradient(circle at 85% 12%, rgba(34,211,238,0.10), transparent 28rem),
|
| 45 |
+
radial-gradient(circle at 50% 110%, rgba(107,47,19,0.28), transparent 38rem),
|
| 46 |
+
var(--bg);
|
| 47 |
color: var(--text);
|
| 48 |
line-height: 1.7;
|
| 49 |
overflow-x: hidden;
|
|
|
|
| 100 |
background-size: 128px;
|
| 101 |
}
|
| 102 |
|
| 103 |
+
/* ─── Subtle Honeycomb / Waben-Look ─── */
|
| 104 |
+
.honeycomb-bg {
|
| 105 |
+
position: fixed; inset: -10vh -10vw; z-index: 0; pointer-events: none;
|
| 106 |
+
opacity: 0.18;
|
| 107 |
+
background-image: url("data:image/svg+xml,%3Csvg width='112' height='96' viewBox='0 0 112 96' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23f59e0b' stroke-opacity='.42' stroke-width='1'%3E%3Cpath d='M28 1 55 16v31L28 63 1 47V16z'/%3E%3Cpath d='M84 1l27 15v31L84 63 57 47V16z'/%3E%3Cpath d='M56 48l27 16v31L56 111 29 95V64z'/%3E%3C/g%3E%3C/svg%3E");
|
| 108 |
+
background-size: 112px 96px;
|
| 109 |
+
mask-image: radial-gradient(circle at 50% 10%, black 0%, transparent 62%);
|
| 110 |
+
animation: honey-drift 42s linear infinite;
|
| 111 |
+
}
|
| 112 |
+
@keyframes honey-drift { to { transform: translate3d(-56px, -48px, 0); } }
|
| 113 |
+
|
| 114 |
+
.cursor-glow {
|
| 115 |
+
position: fixed; left: 0; top: 0; z-index: 0; pointer-events: none;
|
| 116 |
+
width: 420px; height: 420px; border-radius: 50%;
|
| 117 |
+
background: radial-gradient(circle, rgba(245,158,11,0.13), rgba(245,158,11,0.045) 38%, transparent 68%);
|
| 118 |
+
filter: blur(10px);
|
| 119 |
+
opacity: 0;
|
| 120 |
+
transform: translate3d(-50%, -50%, 0);
|
| 121 |
+
transition: opacity 0.35s ease;
|
| 122 |
+
}
|
| 123 |
+
.bee-swarm { position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
|
| 124 |
+
.bee-swarm span {
|
| 125 |
+
position: absolute; left: var(--x); top: var(--y);
|
| 126 |
+
font-size: var(--s); opacity: 0.18;
|
| 127 |
+
filter: blur(0.1px) drop-shadow(0 0 12px rgba(245,158,11,0.45));
|
| 128 |
+
animation: bee-flight var(--d) ease-in-out infinite;
|
| 129 |
+
animation-delay: var(--delay);
|
| 130 |
+
}
|
| 131 |
+
@keyframes bee-flight {
|
| 132 |
+
0%, 100% { transform: translate3d(0,0,0) rotate(-8deg); }
|
| 133 |
+
35% { transform: translate3d(36px,-24px,0) rotate(10deg); }
|
| 134 |
+
70% { transform: translate3d(-18px,18px,0) rotate(-16deg); }
|
| 135 |
+
}
|
| 136 |
+
|
| 137 |
/* ─── Navigation ─── */
|
| 138 |
.nav {
|
| 139 |
position: fixed; top: 0; left: 0; right: 0; z-index: 100;
|
|
|
|
| 141 |
transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
|
| 142 |
}
|
| 143 |
.nav.scrolled {
|
| 144 |
+
background: linear-gradient(180deg, rgba(10,10,15,0.9), rgba(10,10,15,0.72));
|
| 145 |
+
backdrop-filter: blur(22px) saturate(140%); -webkit-backdrop-filter: blur(22px) saturate(140%);
|
| 146 |
+
border-bottom: 1px solid rgba(245,158,11,0.13);
|
| 147 |
+
box-shadow: 0 18px 60px rgba(0,0,0,0.22);
|
| 148 |
}
|
| 149 |
.nav-inner {
|
| 150 |
max-width: 1200px; margin: 0 auto;
|
|
|
|
| 194 |
min-height: 100vh;
|
| 195 |
display: flex; flex-direction: column; align-items: center; justify-content: center;
|
| 196 |
text-align: center;
|
| 197 |
+
padding: 7rem 1.5rem 4rem;
|
| 198 |
position: relative; z-index: 1;
|
| 199 |
+
isolation: isolate;
|
| 200 |
}
|
| 201 |
+
.hero::before {
|
| 202 |
+
content: '';
|
| 203 |
+
position: absolute;
|
| 204 |
+
width: min(72vw, 820px); aspect-ratio: 1;
|
| 205 |
+
top: 50%; left: 50%; transform: translate(-50%, -52%);
|
| 206 |
+
background:
|
| 207 |
+
radial-gradient(circle, rgba(245,158,11,0.18), transparent 42%),
|
| 208 |
+
conic-gradient(from 30deg, transparent 0 8%, rgba(245,158,11,0.18) 8% 10%, transparent 10% 24%, rgba(245,158,11,0.12) 24% 26%, transparent 26% 100%);
|
| 209 |
+
clip-path: polygon(25% 6%,75% 6%,100% 50%,75% 94%,25% 94%,0 50%);
|
| 210 |
+
opacity: 0.55;
|
| 211 |
+
filter: blur(0.2px);
|
| 212 |
+
z-index: -1;
|
| 213 |
+
animation: hero-cell 18s ease-in-out infinite;
|
| 214 |
+
}
|
| 215 |
+
@keyframes hero-cell {
|
| 216 |
+
0%, 100% { transform: translate(-50%, -52%) rotate(0deg) scale(1); opacity: 0.48; }
|
| 217 |
+
50% { transform: translate(-50%, -52%) rotate(6deg) scale(1.04); opacity: 0.7; }
|
| 218 |
+
}
|
| 219 |
+
.hero-kicker {
|
| 220 |
+
display: inline-flex; align-items: center; gap: 0.6rem;
|
| 221 |
+
margin: -0.8rem 0 1.6rem;
|
| 222 |
+
color: rgba(255,209,102,0.88);
|
| 223 |
+
font-size: 0.78rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
|
| 224 |
+
}
|
| 225 |
+
.hero-kicker::before, .hero-kicker::after {
|
| 226 |
+
content: ''; width: 42px; height: 1px;
|
| 227 |
+
background: linear-gradient(90deg, transparent, rgba(245,158,11,0.65));
|
| 228 |
+
}
|
| 229 |
+
.hero-kicker::after { background: linear-gradient(90deg, rgba(245,158,11,0.65), transparent); }
|
| 230 |
.hero-badge {
|
| 231 |
display: inline-flex; align-items: center; gap: 0.5rem;
|
| 232 |
+
padding: 0.42rem 1rem;
|
| 233 |
+
background: linear-gradient(135deg, rgba(245,158,11,0.18), rgba(255,255,255,0.035));
|
| 234 |
+
border: 1px solid rgba(245, 158, 11, 0.28);
|
| 235 |
border-radius: 100px;
|
| 236 |
+
font-size: 0.75rem; font-weight: 700;
|
| 237 |
+
color: var(--honey);
|
| 238 |
margin-bottom: 2rem;
|
| 239 |
letter-spacing: 0.02em;
|
| 240 |
+
box-shadow: 0 0 0 1px rgba(255,255,255,0.03) inset, 0 18px 50px rgba(245,158,11,0.12);
|
| 241 |
}
|
| 242 |
.hero-badge .dot {
|
| 243 |
width: 6px; height: 6px;
|
|
|
|
| 258 |
max-width: 800px;
|
| 259 |
}
|
| 260 |
.hero h1 .gradient {
|
| 261 |
+
background: linear-gradient(135deg, #fff8d6 0%, var(--honey) 24%, var(--amber) 56%, #b45309 100%);
|
| 262 |
-webkit-background-clip: text; -webkit-text-fill-color: transparent;
|
| 263 |
background-clip: text;
|
| 264 |
+
filter: drop-shadow(0 0 28px rgba(245,158,11,0.22));
|
| 265 |
}
|
| 266 |
.hero .subtitle {
|
| 267 |
font-size: 1.15rem;
|
| 268 |
+
color: #bdb7ad;
|
| 269 |
+
max-width: 670px;
|
| 270 |
line-height: 1.8;
|
| 271 |
margin-bottom: 2.5rem;
|
| 272 |
+
text-wrap: balance;
|
| 273 |
+
}
|
| 274 |
+
.hero-actions {
|
| 275 |
+
display: flex; gap: 0.8rem; flex-wrap: wrap; justify-content: center;
|
| 276 |
+
margin: -0.4rem 0 2.8rem;
|
| 277 |
+
}
|
| 278 |
+
.btn {
|
| 279 |
+
display: inline-flex; align-items: center; gap: 0.55rem;
|
| 280 |
+
padding: 0.78rem 1.05rem;
|
| 281 |
+
border-radius: 999px;
|
| 282 |
+
font-size: 0.82rem; font-weight: 800;
|
| 283 |
+
text-decoration: none;
|
| 284 |
+
transition: transform 0.25s, border-color 0.25s, background 0.25s, box-shadow 0.25s;
|
| 285 |
+
}
|
| 286 |
+
.btn.primary {
|
| 287 |
+
color: #1b1207;
|
| 288 |
+
background: linear-gradient(135deg, #ffe08a, #f59e0b 56%, #d97706);
|
| 289 |
+
box-shadow: 0 16px 50px rgba(245,158,11,0.24);
|
| 290 |
}
|
| 291 |
+
.btn.ghost {
|
| 292 |
+
color: var(--text);
|
| 293 |
+
background: rgba(255,255,255,0.045);
|
| 294 |
+
border: 1px solid rgba(255,255,255,0.10);
|
| 295 |
+
}
|
| 296 |
+
.btn:hover { transform: translateY(-2px); color: inherit; }
|
| 297 |
+
.btn.primary:hover { box-shadow: 0 20px 70px rgba(245,158,11,0.34); }
|
| 298 |
+
.btn.ghost:hover { background: rgba(255,255,255,0.075); border-color: rgba(245,158,11,0.24); }
|
| 299 |
.hero-stats {
|
| 300 |
display: flex; gap: 3rem; flex-wrap: wrap; justify-content: center;
|
| 301 |
margin-bottom: 3rem;
|
| 302 |
}
|
| 303 |
.hero-stat {
|
| 304 |
text-align: center;
|
| 305 |
+
min-width: 128px;
|
| 306 |
+
padding: 0.95rem 1rem;
|
| 307 |
+
border: 1px solid rgba(255,255,255,0.07);
|
| 308 |
+
background: linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.018));
|
| 309 |
+
border-radius: 18px;
|
| 310 |
+
backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
|
| 311 |
+
box-shadow: 0 18px 60px rgba(0,0,0,0.18);
|
| 312 |
+
position: relative;
|
| 313 |
+
overflow: hidden;
|
| 314 |
}
|
| 315 |
+
.hero-stat::before {
|
| 316 |
+
content: ''; position: absolute; inset: 0;
|
| 317 |
+
background: linear-gradient(120deg, transparent, rgba(255,209,102,0.12), transparent);
|
| 318 |
+
transform: translateX(-120%);
|
| 319 |
+
animation: stat-shine 6s ease-in-out infinite;
|
| 320 |
+
}
|
| 321 |
+
@keyframes stat-shine { 45%, 100% { transform: translateX(120%); } }
|
| 322 |
.hero-stat .num {
|
| 323 |
font-size: 2rem; font-weight: 800;
|
| 324 |
font-family: var(--mono);
|
|
|
|
| 357 |
.section + .section {
|
| 358 |
border-top: 1px solid var(--border);
|
| 359 |
}
|
| 360 |
+
.section::before {
|
| 361 |
+
content: '';
|
| 362 |
+
position: absolute; left: 50%; top: 0;
|
| 363 |
+
width: min(92vw, 1120px); height: 1px;
|
| 364 |
+
transform: translateX(-50%);
|
| 365 |
+
background: linear-gradient(90deg, transparent, rgba(245,158,11,0.22), transparent);
|
| 366 |
+
opacity: 0.75;
|
| 367 |
+
}
|
| 368 |
|
| 369 |
.section-label {
|
| 370 |
display: inline-flex; align-items: center; gap: 0.5rem;
|
|
|
|
| 382 |
}
|
| 383 |
.section-title {
|
| 384 |
font-size: clamp(1.8rem, 3.5vw, 2.5rem);
|
| 385 |
+
font-weight: 900;
|
| 386 |
+
letter-spacing: -0.035em;
|
| 387 |
margin-bottom: 0.75rem;
|
| 388 |
line-height: 1.2;
|
| 389 |
+
text-wrap: balance;
|
| 390 |
}
|
| 391 |
.section-desc {
|
| 392 |
font-size: 1rem;
|
|
|
|
| 413 |
|
| 414 |
/* ─── Executive Summary ─── */
|
| 415 |
.summary-card {
|
| 416 |
+
background:
|
| 417 |
+
linear-gradient(135deg, rgba(245,158,11,0.12) 0%, rgba(255,255,255,0.035) 52%, rgba(34,211,238,0.045) 100%);
|
| 418 |
+
border: 1px solid rgba(245,158,11,0.22);
|
| 419 |
+
border-radius: 24px;
|
| 420 |
padding: 2rem 2.5rem;
|
| 421 |
margin-bottom: 4rem;
|
| 422 |
position: relative;
|
| 423 |
overflow: hidden;
|
| 424 |
+
box-shadow: var(--shadow-amber), 0 0 0 1px rgba(255,255,255,0.035) inset;
|
| 425 |
+
backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
|
| 426 |
+
}
|
| 427 |
+
.summary-card::after {
|
| 428 |
+
content: '';
|
| 429 |
+
position: absolute; inset: -40%;
|
| 430 |
+
background-image: url("data:image/svg+xml,%3Csvg width='84' height='72' viewBox='0 0 84 72' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M21 1 41 12v24L21 48 1 36V12zM63 1l20 11v24L63 48 43 36V12zM42 36l20 12v24L42 84 22 72V48z' fill='none' stroke='%23ffd166' stroke-opacity='.28'/%3E%3C/svg%3E");
|
| 431 |
+
opacity: 0.24;
|
| 432 |
+
transform: rotate(-8deg);
|
| 433 |
+
pointer-events: none;
|
| 434 |
}
|
| 435 |
.summary-card::before {
|
| 436 |
content: '';
|
|
|
|
| 442 |
font-size: 0.92rem;
|
| 443 |
color: #c0b8a8;
|
| 444 |
line-height: 1.85;
|
| 445 |
+
position: relative;
|
| 446 |
+
z-index: 1;
|
| 447 |
}
|
| 448 |
.summary-card strong { color: var(--amber-light); }
|
| 449 |
|
| 450 |
+
/* ─── Compass Cards (Overview) ─── */
|
| 451 |
.intro-grid {
|
| 452 |
display: grid;
|
| 453 |
+
grid-template-columns: repeat(3, minmax(0, 1fr));
|
| 454 |
+
gap: 1rem;
|
| 455 |
margin-bottom: 4rem;
|
| 456 |
+
counter-reset: compass;
|
| 457 |
}
|
| 458 |
+
@media (max-width: 900px) {
|
| 459 |
.intro-grid { grid-template-columns: 1fr; }
|
| 460 |
}
|
| 461 |
.intro-card {
|
| 462 |
+
--card-accent: var(--amber);
|
| 463 |
+
min-height: 380px;
|
| 464 |
+
padding: 1.25rem;
|
| 465 |
+
border-radius: 28px;
|
|
|
|
| 466 |
position: relative;
|
| 467 |
overflow: hidden;
|
| 468 |
cursor: pointer;
|
| 469 |
text-decoration: none;
|
| 470 |
color: inherit;
|
| 471 |
+
display: flex;
|
| 472 |
+
flex-direction: column;
|
| 473 |
+
isolation: isolate;
|
| 474 |
+
background:
|
| 475 |
+
linear-gradient(180deg, rgba(255,255,255,0.075), rgba(255,255,255,0.025)),
|
| 476 |
+
radial-gradient(circle at 50% -10%, rgba(255,209,102,0.10), transparent 52%);
|
| 477 |
+
border: 1px solid rgba(255,255,255,0.09);
|
| 478 |
+
box-shadow: 0 24px 80px rgba(0,0,0,0.23), inset 0 1px 0 rgba(255,255,255,0.08);
|
| 479 |
+
backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
|
| 480 |
+
transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.35s, box-shadow 0.35s;
|
| 481 |
+
}
|
| 482 |
+
.intro-card::before {
|
| 483 |
+
content: '';
|
| 484 |
+
position: absolute; inset: 0;
|
| 485 |
+
background:
|
| 486 |
+
linear-gradient(120deg, transparent 0 36%, rgba(255,255,255,0.10) 48%, transparent 60%),
|
| 487 |
+
radial-gradient(circle at 28% 8%, var(--card-glow, rgba(245,158,11,0.24)), transparent 13rem);
|
| 488 |
+
opacity: 0.55;
|
| 489 |
+
transform: translateX(-18%);
|
| 490 |
+
transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s;
|
| 491 |
+
z-index: -1;
|
| 492 |
}
|
| 493 |
.intro-card::after {
|
| 494 |
content: '';
|
| 495 |
+
position: absolute;
|
| 496 |
+
width: 158px; height: 138px;
|
| 497 |
+
right: -44px; bottom: -38px;
|
| 498 |
+
clip-path: polygon(25% 6%,75% 6%,100% 50%,75% 94%,25% 94%,0 50%);
|
| 499 |
+
background:
|
| 500 |
+
linear-gradient(135deg, rgba(255,255,255,0.10), transparent),
|
| 501 |
+
var(--card-glow, rgba(245,158,11,0.18));
|
| 502 |
+
opacity: 0.34;
|
| 503 |
+
z-index: -1;
|
| 504 |
+
transition: transform 0.5s ease, opacity 0.35s;
|
| 505 |
}
|
| 506 |
.intro-card:hover {
|
| 507 |
+
transform: translateY(-8px);
|
| 508 |
+
border-color: var(--card-border, rgba(245,158,11,0.34));
|
| 509 |
+
box-shadow: 0 34px 110px rgba(0,0,0,0.32), 0 0 46px var(--card-shadow, rgba(245,158,11,0.14)), inset 0 1px 0 rgba(255,255,255,0.12);
|
| 510 |
}
|
| 511 |
+
.intro-card:hover::before { transform: translateX(18%); opacity: 0.82; }
|
| 512 |
+
.intro-card:hover::after { transform: translate(-10px, -8px) rotate(8deg); opacity: 0.52; }
|
| 513 |
+
.intro-card .card-dot { display: none; }
|
| 514 |
.intro-card .card-num {
|
| 515 |
+
width: 52px; height: 52px;
|
| 516 |
+
border-radius: 16px;
|
| 517 |
+
display: grid; place-items: center;
|
| 518 |
font-family: var(--mono);
|
| 519 |
+
font-size: 0.78rem; font-weight: 800;
|
| 520 |
+
color: var(--card-accent);
|
| 521 |
+
margin-bottom: 1.4rem;
|
| 522 |
+
letter-spacing: 0.04em;
|
| 523 |
+
background: rgba(0,0,0,0.20);
|
| 524 |
+
border: 1px solid var(--card-border, rgba(245,158,11,0.22));
|
| 525 |
+
box-shadow: inset 0 0 24px var(--card-shadow, rgba(245,158,11,0.10));
|
| 526 |
}
|
| 527 |
.intro-card h3 {
|
| 528 |
+
font-size: clamp(1.28rem, 2vw, 1.7rem);
|
| 529 |
+
font-weight: 900;
|
| 530 |
+
line-height: 1.08;
|
| 531 |
+
letter-spacing: -0.035em;
|
| 532 |
+
margin-bottom: 1rem;
|
| 533 |
+
color: var(--text);
|
| 534 |
}
|
| 535 |
.intro-card .card-desc {
|
| 536 |
+
font-size: 0.9rem;
|
| 537 |
+
color: #b9b4ad;
|
| 538 |
+
line-height: 1.78;
|
| 539 |
+
}
|
| 540 |
+
.intro-card .card-desc a {
|
| 541 |
+
color: var(--card-accent);
|
| 542 |
+
font-weight: 700;
|
| 543 |
+
text-decoration: underline;
|
| 544 |
+
text-decoration-color: transparent;
|
| 545 |
+
text-underline-offset: 0.18em;
|
| 546 |
}
|
| 547 |
+
.intro-card .card-desc a:hover { text-decoration-color: currentColor; }
|
| 548 |
.intro-card .card-arrow {
|
| 549 |
+
margin-top: auto;
|
| 550 |
+
padding-top: 1.35rem;
|
| 551 |
+
font-size: 0.78rem;
|
| 552 |
+
font-weight: 900;
|
| 553 |
+
color: var(--card-accent);
|
| 554 |
+
text-transform: uppercase;
|
| 555 |
+
letter-spacing: 0.08em;
|
| 556 |
+
display: flex; align-items: center; justify-content: space-between; gap: 0.75rem;
|
| 557 |
+
}
|
| 558 |
+
.intro-card .card-arrow::after {
|
| 559 |
+
content: '';
|
| 560 |
+
width: 40px; height: 40px;
|
| 561 |
+
border-radius: 50%;
|
| 562 |
+
background: rgba(255,255,255,0.06);
|
| 563 |
+
border: 1px solid var(--card-border, rgba(245,158,11,0.22));
|
| 564 |
+
box-shadow: inset 0 0 18px var(--card-shadow, rgba(245,158,11,0.10));
|
| 565 |
}
|
| 566 |
+
.intro-card:hover .card-arrow { gap: 1rem; }
|
| 567 |
|
| 568 |
+
.card-accent-blue {
|
| 569 |
+
--card-accent: #7fb0ff;
|
| 570 |
+
--card-glow: rgba(59,130,246,0.24);
|
| 571 |
+
--card-border: rgba(127,176,255,0.34);
|
| 572 |
+
--card-shadow: rgba(59,130,246,0.16);
|
| 573 |
+
}
|
| 574 |
+
.card-accent-amber {
|
| 575 |
+
--card-accent: #ffd166;
|
| 576 |
+
--card-glow: rgba(245,158,11,0.28);
|
| 577 |
+
--card-border: rgba(255,209,102,0.34);
|
| 578 |
+
--card-shadow: rgba(245,158,11,0.18);
|
| 579 |
+
}
|
| 580 |
.card-accent-green { --card-accent: var(--green); }
|
| 581 |
+
.card-accent-purple {
|
| 582 |
+
--card-accent: #b79cff;
|
| 583 |
+
--card-glow: rgba(139,92,246,0.25);
|
| 584 |
+
--card-border: rgba(183,156,255,0.36);
|
| 585 |
+
--card-shadow: rgba(139,92,246,0.18);
|
|
|
|
|
|
|
| 586 |
}
|
| 587 |
|
| 588 |
/* ─── Automatisierbarkeits-Grid ─── */
|
|
|
|
| 593 |
margin: 2rem 0;
|
| 594 |
}
|
| 595 |
.auto-item {
|
| 596 |
+
background: linear-gradient(180deg, rgba(255,255,255,0.052), rgba(255,255,255,0.018));
|
| 597 |
+
border: 1px solid rgba(255,255,255,0.07);
|
| 598 |
+
border-radius: 18px;
|
| 599 |
padding: 1.25rem;
|
| 600 |
text-align: center;
|
| 601 |
transition: all 0.3s;
|
| 602 |
+
position: relative;
|
| 603 |
+
overflow: hidden;
|
| 604 |
+
}
|
| 605 |
+
.auto-item::before {
|
| 606 |
+
content: '';
|
| 607 |
+
position: absolute; inset: auto 18% -42px;
|
| 608 |
+
height: 70px;
|
| 609 |
+
background: radial-gradient(ellipse, rgba(245,158,11,0.20), transparent 70%);
|
| 610 |
+
opacity: 0; transition: opacity 0.3s;
|
| 611 |
}
|
| 612 |
.auto-item:hover {
|
| 613 |
+
border-color: rgba(245,158,11,0.24);
|
| 614 |
background: var(--bg-card-hover);
|
| 615 |
+
transform: translateY(-4px);
|
| 616 |
}
|
| 617 |
+
.auto-item:hover::before { opacity: 1; }
|
| 618 |
.auto-item .emoji { font-size: 1.6rem; margin-bottom: 0.5rem; }
|
| 619 |
.auto-item .name { font-size: 0.82rem; font-weight: 600; margin-bottom: 0.25rem; }
|
| 620 |
.auto-item .detail { font-size: 0.72rem; color: var(--text-muted); }
|
|
|
|
| 637 |
.tbl-wrap {
|
| 638 |
overflow-x: auto;
|
| 639 |
margin: 1.5rem 0;
|
| 640 |
+
border: 1px solid rgba(255,255,255,0.075);
|
| 641 |
+
border-radius: 18px;
|
| 642 |
+
background: rgba(255,255,255,0.018);
|
| 643 |
+
box-shadow: 0 18px 60px rgba(0,0,0,0.16);
|
| 644 |
}
|
| 645 |
table {
|
| 646 |
width: 100%; border-collapse: collapse;
|
| 647 |
font-size: 0.82rem;
|
| 648 |
}
|
| 649 |
table th {
|
| 650 |
+
text-align: left; padding: 0.82rem 1rem;
|
| 651 |
+
font-weight: 800; font-size: 0.68rem;
|
| 652 |
text-transform: uppercase;
|
| 653 |
+
letter-spacing: 0.08em;
|
| 654 |
+
color: #d6b46c;
|
| 655 |
+
background: linear-gradient(180deg, rgba(245,158,11,0.09), rgba(255,255,255,0.025));
|
| 656 |
+
border-bottom: 1px solid rgba(245,158,11,0.13);
|
| 657 |
white-space: nowrap;
|
| 658 |
}
|
| 659 |
table td {
|
|
|
|
| 662 |
color: var(--text-muted);
|
| 663 |
}
|
| 664 |
table tr:last-child td { border-bottom: none; }
|
| 665 |
+
table tr:hover td { background: rgba(245,158,11,0.035); }
|
| 666 |
table td strong { color: var(--text); }
|
| 667 |
|
| 668 |
.price { color: var(--green); font-weight: 600; font-family: var(--mono); font-size: 0.8rem; }
|
| 669 |
|
| 670 |
/* ─── Info Boxes ─── */
|
| 671 |
.info-box {
|
| 672 |
+
border-radius: 18px;
|
| 673 |
padding: 1.25rem 1.5rem;
|
| 674 |
margin: 1.5rem 0;
|
| 675 |
font-size: 0.85rem;
|
| 676 |
line-height: 1.8;
|
| 677 |
border: 1px solid;
|
| 678 |
+
position: relative;
|
| 679 |
+
overflow: hidden;
|
| 680 |
+
backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
|
| 681 |
+
}
|
| 682 |
+
.info-box::before {
|
| 683 |
+
content: '';
|
| 684 |
+
position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
|
| 685 |
+
background: currentColor; opacity: 0.55;
|
| 686 |
}
|
| 687 |
.info-box strong { display: inline; }
|
| 688 |
.info-box.highlight {
|
|
|
|
| 718 |
margin: 2rem 0;
|
| 719 |
}
|
| 720 |
.stat-box {
|
| 721 |
+
background: linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.018));
|
| 722 |
+
border: 1px solid rgba(255,255,255,0.075);
|
| 723 |
+
border-radius: 18px;
|
| 724 |
padding: 1.25rem;
|
| 725 |
text-align: center;
|
| 726 |
transition: all 0.3s;
|
| 727 |
}
|
| 728 |
.stat-box:hover {
|
| 729 |
+
border-color: rgba(245,158,11,0.24);
|
| 730 |
+
transform: translateY(-3px);
|
| 731 |
+
box-shadow: 0 18px 58px rgba(245,158,11,0.08);
|
| 732 |
}
|
| 733 |
.stat-box .num {
|
| 734 |
font-size: 1.5rem; font-weight: 800;
|
|
|
|
| 744 |
|
| 745 |
/* ─── Budget Tiers ─── */
|
| 746 |
.budget-tier {
|
| 747 |
+
background: linear-gradient(180deg, rgba(255,255,255,0.052), rgba(255,255,255,0.018));
|
| 748 |
+
border: 1px solid rgba(255,255,255,0.075);
|
| 749 |
+
border-radius: 18px;
|
| 750 |
padding: 1.5rem 1.75rem;
|
| 751 |
margin: 1rem 0;
|
| 752 |
transition: all 0.3s;
|
| 753 |
+
position: relative;
|
| 754 |
+
overflow: hidden;
|
| 755 |
+
}
|
| 756 |
+
.budget-tier::after {
|
| 757 |
+
content: ''; position: absolute; right: -32px; top: -36px;
|
| 758 |
+
width: 120px; height: 104px;
|
| 759 |
+
clip-path: polygon(25% 6%,75% 6%,100% 50%,75% 94%,25% 94%,0 50%);
|
| 760 |
+
background: rgba(245,158,11,0.08);
|
| 761 |
}
|
| 762 |
.budget-tier:hover {
|
| 763 |
border-color: var(--border-hover);
|
|
|
|
| 898 |
margin: 2rem 0;
|
| 899 |
}
|
| 900 |
.rec-card {
|
| 901 |
+
background: linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.018));
|
| 902 |
+
border: 1px solid rgba(255,255,255,0.075);
|
| 903 |
+
border-radius: 18px;
|
| 904 |
padding: 1.5rem;
|
| 905 |
transition: all 0.3s;
|
| 906 |
+
position: relative;
|
| 907 |
+
overflow: hidden;
|
| 908 |
+
}
|
| 909 |
+
.rec-card::before {
|
| 910 |
+
content: ''; position: absolute; inset: 0;
|
| 911 |
+
background: radial-gradient(circle at 100% 0, rgba(245,158,11,0.12), transparent 9rem);
|
| 912 |
+
opacity: 0.5;
|
| 913 |
+
pointer-events: none;
|
| 914 |
}
|
| 915 |
.rec-card:hover {
|
| 916 |
+
border-color: rgba(245,158,11,0.24);
|
| 917 |
background: var(--bg-card-hover);
|
| 918 |
+
transform: translateY(-4px);
|
| 919 |
}
|
| 920 |
.rec-card .rec-type {
|
| 921 |
font-size: 0.7rem;
|
|
|
|
| 947 |
text-align: center;
|
| 948 |
padding: 4rem 1.5rem;
|
| 949 |
position: relative; z-index: 1;
|
| 950 |
+
border-top: 1px solid rgba(245,158,11,0.12);
|
| 951 |
+
background: linear-gradient(180deg, transparent, rgba(245,158,11,0.035));
|
| 952 |
}
|
| 953 |
.footer-brand {
|
| 954 |
font-size: 0.85rem; font-weight: 700;
|
|
|
|
| 972 |
background: var(--text-dim);
|
| 973 |
}
|
| 974 |
|
| 975 |
+
/* ─── Decision Trail ─── */
|
| 976 |
+
.decision-trail {
|
| 977 |
+
display: grid;
|
| 978 |
+
grid-template-columns: repeat(4, 1fr);
|
| 979 |
+
gap: 0.9rem;
|
| 980 |
+
margin: -1.2rem 0 3.4rem;
|
| 981 |
+
}
|
| 982 |
+
.decision-step {
|
| 983 |
+
min-height: 150px;
|
| 984 |
+
padding: 1.2rem;
|
| 985 |
+
border-radius: 20px;
|
| 986 |
+
border: 1px solid rgba(255,255,255,0.075);
|
| 987 |
+
background: linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.018));
|
| 988 |
+
position: relative;
|
| 989 |
+
overflow: hidden;
|
| 990 |
+
}
|
| 991 |
+
.decision-step::after {
|
| 992 |
+
content: '';
|
| 993 |
+
position: absolute; right: -28px; bottom: -34px;
|
| 994 |
+
width: 110px; height: 96px;
|
| 995 |
+
clip-path: polygon(25% 6%,75% 6%,100% 50%,75% 94%,25% 94%,0 50%);
|
| 996 |
+
background: rgba(245,158,11,0.07);
|
| 997 |
+
}
|
| 998 |
+
.decision-step .step-num {
|
| 999 |
+
font-family: var(--mono); font-size: 0.68rem; color: var(--amber);
|
| 1000 |
+
margin-bottom: 0.65rem;
|
| 1001 |
+
}
|
| 1002 |
+
.decision-step h3 { font-size: 0.95rem; line-height: 1.35; margin-bottom: 0.4rem; }
|
| 1003 |
+
.decision-step p { font-size: 0.75rem; color: var(--text-muted); line-height: 1.65; }
|
| 1004 |
+
|
| 1005 |
+
@media (max-width: 900px) {
|
| 1006 |
+
.decision-trail { grid-template-columns: 1fr 1fr; }
|
| 1007 |
+
}
|
| 1008 |
+
|
| 1009 |
+
@media (prefers-reduced-motion: reduce) {
|
| 1010 |
+
*, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: 0.01ms !important; }
|
| 1011 |
+
}
|
| 1012 |
+
|
| 1013 |
/* ─── Mobile ─── */
|
| 1014 |
@media (max-width: 600px) {
|
| 1015 |
.hero { padding: 5rem 1rem 3rem; min-height: auto; }
|
| 1016 |
.hero h1 { font-size: 2rem; }
|
| 1017 |
+
.hero-kicker { font-size: 0.64rem; }
|
| 1018 |
+
.hero-kicker::before, .hero-kicker::after { width: 22px; }
|
| 1019 |
+
.hero-actions { margin-bottom: 2rem; }
|
| 1020 |
+
.hero-stats { gap: 0.8rem; }
|
| 1021 |
+
.hero-stat { min-width: calc(50% - 0.4rem); }
|
| 1022 |
+
.decision-trail { grid-template-columns: 1fr; }
|
| 1023 |
.section { padding: 3rem 0; }
|
| 1024 |
.summary-card { padding: 1.5rem; }
|
| 1025 |
.stat-grid { grid-template-columns: 1fr 1fr; }
|
|
|
|
| 1038 |
<div class="orb"></div>
|
| 1039 |
</div>
|
| 1040 |
<div class="noise"></div>
|
| 1041 |
+
<div class="honeycomb-bg"></div>
|
| 1042 |
+
<div class="cursor-glow" id="cursorGlow" aria-hidden="true"></div>
|
| 1043 |
+
<div class="bee-swarm" aria-hidden="true">
|
| 1044 |
+
<span style="--x:8%;--y:22%;--s:1.1rem;--d:13s;--delay:-2s">🐝</span>
|
| 1045 |
+
<span style="--x:82%;--y:18%;--s:0.9rem;--d:16s;--delay:-7s">🐝</span>
|
| 1046 |
+
<span style="--x:72%;--y:66%;--s:1rem;--d:18s;--delay:-11s">🐝</span>
|
| 1047 |
+
<span style="--x:16%;--y:74%;--s:0.85rem;--d:15s;--delay:-5s">🐝</span>
|
| 1048 |
+
</div>
|
| 1049 |
|
| 1050 |
<!-- ─── Navigation ─── -->
|
| 1051 |
<nav class="nav" id="nav">
|
|
|
|
| 1070 |
<h1>
|
| 1071 |
<span class="gradient">Automatisierte<br>Bienenzucht</span> 2026
|
| 1072 |
</h1>
|
| 1073 |
+
<div class="hero-kicker">Smart Hive · Varroa · TinyML · DACH-Markt</div>
|
| 1074 |
<p class="subtitle">
|
| 1075 |
+
Ein visueller Entscheidungs-Atlas für Privatanwender: kommerzielle IoT-Waagen,
|
| 1076 |
+
DIY-Sensorik, Hyperthermie gegen Varroa und KI-Forschung — ohne den Realitätscheck zu verlieren.
|
| 1077 |
</p>
|
| 1078 |
+
<div class="hero-actions">
|
| 1079 |
+
<a class="btn primary" href="#budget">Empfehlung finden →</a>
|
| 1080 |
+
<a class="btn ghost" href="#commercial">Systeme vergleichen</a>
|
| 1081 |
+
<a class="btn ghost" href="#diy">DIY-Budget ansehen</a>
|
| 1082 |
+
</div>
|
| 1083 |
<div class="hero-stats">
|
| 1084 |
<div class="hero-stat">
|
| 1085 |
<div class="num">135</div>
|
|
|
|
| 1130 |
</p>
|
| 1131 |
</div>
|
| 1132 |
|
| 1133 |
+
<div class="decision-trail reveal">
|
| 1134 |
+
<div class="decision-step">
|
| 1135 |
+
<div class="step-num">01 · Messen</div>
|
| 1136 |
+
<h3>Gewicht, Klima, Akustik</h3>
|
| 1137 |
+
<p>Monitoring ist der reife Kern: Waage + Temperatur/Feuchte liefern sofort nutzbare Entscheidungen.</p>
|
| 1138 |
+
</div>
|
| 1139 |
+
<div class="decision-step">
|
| 1140 |
+
<div class="step-num">02 · Warnen</div>
|
| 1141 |
+
<h3>Schwarm, Futter, Diebstahl</h3>
|
| 1142 |
+
<p>Alarme sind praxisnah — KI-Versprechen bleiben aber ohne unabhängige Feldvalidierung zu prüfen.</p>
|
| 1143 |
+
</div>
|
| 1144 |
+
<div class="decision-step">
|
| 1145 |
+
<div class="step-num">03 · Behandeln</div>
|
| 1146 |
+
<h3>Varroa teilautomatisiert</h3>
|
| 1147 |
+
<p>Hyperthermie und KI-Zählung sind verfügbar; Diagnose und Behandlung bleiben getrennte Bausteine.</p>
|
| 1148 |
+
</div>
|
| 1149 |
+
<div class="decision-step">
|
| 1150 |
+
<div class="step-num">04 · Nicht überschätzen</div>
|
| 1151 |
+
<h3>Keine private Vollautomatik</h3>
|
| 1152 |
+
<p>Fütterung, Ernte und komplette Autonomie sind 2026 primär Großsysteme oder Forschung.</p>
|
| 1153 |
+
</div>
|
| 1154 |
+
</div>
|
| 1155 |
+
|
| 1156 |
<div class="intro-grid">
|
| 1157 |
<a href="#commercial" class="intro-card card-accent-blue reveal reveal-delay-1">
|
| 1158 |
<div class="card-dot"></div>
|
|
|
|
| 1960 |
}, { threshold: 0.5 });
|
| 1961 |
|
| 1962 |
document.querySelectorAll('.hero-stats').forEach(el => counterObserver.observe(el));
|
| 1963 |
+
|
| 1964 |
+
// ─── Subtle amber cursor glow on pointer devices ───
|
| 1965 |
+
const cursorGlow = document.getElementById('cursorGlow');
|
| 1966 |
+
if (cursorGlow && window.matchMedia('(pointer: fine)').matches) {
|
| 1967 |
+
window.addEventListener('pointermove', (e) => {
|
| 1968 |
+
cursorGlow.style.opacity = '1';
|
| 1969 |
+
cursorGlow.style.left = `${e.clientX}px`;
|
| 1970 |
+
cursorGlow.style.top = `${e.clientY}px`;
|
| 1971 |
+
}, { passive: true });
|
| 1972 |
+
window.addEventListener('pointerleave', () => { cursorGlow.style.opacity = '0'; });
|
| 1973 |
+
}
|
| 1974 |
</script>
|
| 1975 |
</body>
|
| 1976 |
</html>
|