Complete deployment of unified Light Trinity system: 🔴 RedLight: Template & brand system (18 HTML templates) 💚 GreenLight: Project & collaboration (14 layers, 103 templates) 💛 YellowLight: Infrastructure & deployment 🌈 Trinity: Unified compliance & testing Includes: - 12 documentation files - 8 shell scripts - 18 HTML brand templates - Trinity compliance workflow Built by: Cece + Alexa Date: December 23, 2025 Source: blackroad-os/blackroad-os-infra 🌸✨
1843 lines
62 KiB
HTML
1843 lines
62 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>BlackRoad OS — Motion</title>
|
|
<style>
|
|
:root {
|
|
--black: #000000;
|
|
--white: #FFFFFF;
|
|
--amber: #F5A623;
|
|
--orange: #F26522;
|
|
--hot-pink: #FF1D6C;
|
|
--magenta: #E91E63;
|
|
--electric-blue: #2979FF;
|
|
--sky-blue: #448AFF;
|
|
--violet: #9C27B0;
|
|
--deep-purple: #5E35B1;
|
|
|
|
--gradient-brand: linear-gradient(135deg, var(--amber) 0%, var(--hot-pink) 38.2%, var(--violet) 61.8%, var(--electric-blue) 100%);
|
|
|
|
--phi: 1.618;
|
|
--space-xs: 8px;
|
|
--space-sm: 13px;
|
|
--space-md: 21px;
|
|
--space-lg: 34px;
|
|
--space-xl: 55px;
|
|
--space-2xl: 89px;
|
|
--space-3xl: 144px;
|
|
|
|
--ease: cubic-bezier(0.25, 0.1, 0.25, 1);
|
|
--ease-out: cubic-bezier(0, 0, 0.2, 1);
|
|
--ease-spring: cubic-bezier(0.175, 0.885, 0.32, 1.275);
|
|
}
|
|
|
|
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
html { scroll-behavior: smooth; }
|
|
|
|
body {
|
|
font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', sans-serif;
|
|
background: var(--black);
|
|
color: var(--white);
|
|
overflow-x: hidden;
|
|
line-height: 1.618;
|
|
-webkit-font-smoothing: antialiased;
|
|
}
|
|
|
|
/* ========== NAVIGATION ========== */
|
|
nav {
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
z-index: 1000;
|
|
padding: var(--space-md) var(--space-xl);
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
background: rgba(0, 0, 0, 0.85);
|
|
backdrop-filter: saturate(180%) blur(20px);
|
|
}
|
|
|
|
.nav-logo {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: var(--space-sm);
|
|
}
|
|
|
|
.nav-logo-mark {
|
|
width: 36px;
|
|
height: 36px;
|
|
}
|
|
|
|
.nav-logo-text {
|
|
font-size: 15px;
|
|
font-weight: 500;
|
|
letter-spacing: 0.02em;
|
|
}
|
|
|
|
/* ========== HERO ========== */
|
|
.hero {
|
|
min-height: 100vh;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
align-items: center;
|
|
text-align: center;
|
|
position: relative;
|
|
overflow: hidden;
|
|
background: var(--black);
|
|
}
|
|
|
|
/* Animated Background Grid */
|
|
.hero-grid {
|
|
position: absolute;
|
|
inset: 0;
|
|
background-image:
|
|
linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
|
|
linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
|
|
background-size: 55px 55px;
|
|
animation: grid-move 20s linear infinite;
|
|
opacity: 0.5;
|
|
}
|
|
|
|
@keyframes grid-move {
|
|
0% { transform: translate(0, 0); }
|
|
100% { transform: translate(55px, 55px); }
|
|
}
|
|
|
|
/* Floating Particles */
|
|
.particles {
|
|
position: absolute;
|
|
inset: 0;
|
|
overflow: hidden;
|
|
pointer-events: none;
|
|
}
|
|
|
|
.particle {
|
|
position: absolute;
|
|
border-radius: 50%;
|
|
animation: particle-float linear infinite;
|
|
opacity: 0;
|
|
}
|
|
|
|
@keyframes particle-float {
|
|
0% {
|
|
transform: translateY(100vh) rotate(0deg);
|
|
opacity: 0;
|
|
}
|
|
10% { opacity: 1; }
|
|
90% { opacity: 1; }
|
|
100% {
|
|
transform: translateY(-100vh) rotate(720deg);
|
|
opacity: 0;
|
|
}
|
|
}
|
|
|
|
/* Generate particles */
|
|
.particle:nth-child(1) { left: 5%; width: 4px; height: 4px; background: var(--hot-pink); animation-duration: 15s; animation-delay: 0s; }
|
|
.particle:nth-child(2) { left: 15%; width: 6px; height: 6px; background: var(--amber); animation-duration: 18s; animation-delay: -2s; }
|
|
.particle:nth-child(3) { left: 25%; width: 3px; height: 3px; background: var(--electric-blue); animation-duration: 12s; animation-delay: -4s; }
|
|
.particle:nth-child(4) { left: 35%; width: 5px; height: 5px; background: var(--violet); animation-duration: 20s; animation-delay: -1s; }
|
|
.particle:nth-child(5) { left: 45%; width: 4px; height: 4px; background: var(--hot-pink); animation-duration: 16s; animation-delay: -3s; }
|
|
.particle:nth-child(6) { left: 55%; width: 7px; height: 7px; background: var(--amber); animation-duration: 22s; animation-delay: -5s; }
|
|
.particle:nth-child(7) { left: 65%; width: 3px; height: 3px; background: var(--electric-blue); animation-duration: 14s; animation-delay: -2s; }
|
|
.particle:nth-child(8) { left: 75%; width: 5px; height: 5px; background: var(--violet); animation-duration: 19s; animation-delay: -4s; }
|
|
.particle:nth-child(9) { left: 85%; width: 4px; height: 4px; background: var(--hot-pink); animation-duration: 17s; animation-delay: -1s; }
|
|
.particle:nth-child(10) { left: 95%; width: 6px; height: 6px; background: var(--amber); animation-duration: 21s; animation-delay: -3s; }
|
|
.particle:nth-child(11) { left: 10%; width: 5px; height: 5px; background: var(--electric-blue); animation-duration: 13s; animation-delay: -6s; }
|
|
.particle:nth-child(12) { left: 30%; width: 4px; height: 4px; background: var(--violet); animation-duration: 24s; animation-delay: -7s; }
|
|
.particle:nth-child(13) { left: 50%; width: 6px; height: 6px; background: var(--hot-pink); animation-duration: 11s; animation-delay: -8s; }
|
|
.particle:nth-child(14) { left: 70%; width: 3px; height: 3px; background: var(--amber); animation-duration: 23s; animation-delay: -9s; }
|
|
.particle:nth-child(15) { left: 90%; width: 5px; height: 5px; background: var(--electric-blue); animation-duration: 15s; animation-delay: -10s; }
|
|
|
|
/* Glowing Orbs */
|
|
.orbs {
|
|
position: absolute;
|
|
inset: 0;
|
|
pointer-events: none;
|
|
}
|
|
|
|
.orb {
|
|
position: absolute;
|
|
border-radius: 50%;
|
|
filter: blur(100px);
|
|
}
|
|
|
|
.orb-1 {
|
|
width: 600px;
|
|
height: 600px;
|
|
background: var(--hot-pink);
|
|
opacity: 0.12;
|
|
top: -200px;
|
|
right: -100px;
|
|
animation: orb-drift-1 25s ease-in-out infinite;
|
|
}
|
|
|
|
.orb-2 {
|
|
width: 500px;
|
|
height: 500px;
|
|
background: var(--electric-blue);
|
|
opacity: 0.1;
|
|
bottom: -150px;
|
|
left: -100px;
|
|
animation: orb-drift-2 30s ease-in-out infinite;
|
|
}
|
|
|
|
.orb-3 {
|
|
width: 400px;
|
|
height: 400px;
|
|
background: var(--amber);
|
|
opacity: 0.08;
|
|
top: 50%;
|
|
left: 50%;
|
|
transform: translate(-50%, -50%);
|
|
animation: orb-pulse 8s ease-in-out infinite;
|
|
}
|
|
|
|
@keyframes orb-drift-1 {
|
|
0%, 100% { transform: translate(0, 0) scale(1); }
|
|
25% { transform: translate(-80px, 60px) scale(1.1); }
|
|
50% { transform: translate(-40px, 120px) scale(0.95); }
|
|
75% { transform: translate(40px, 40px) scale(1.05); }
|
|
}
|
|
|
|
@keyframes orb-drift-2 {
|
|
0%, 100% { transform: translate(0, 0) scale(1); }
|
|
25% { transform: translate(60px, -40px) scale(0.9); }
|
|
50% { transform: translate(100px, -80px) scale(1.1); }
|
|
75% { transform: translate(30px, -20px) scale(1); }
|
|
}
|
|
|
|
@keyframes orb-pulse {
|
|
0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.08; }
|
|
50% { transform: translate(-50%, -50%) scale(1.3); opacity: 0.15; }
|
|
}
|
|
|
|
/* ========== 3D LOGO - THE STAR ========== */
|
|
.logo-container {
|
|
width: 280px;
|
|
height: 280px;
|
|
margin-bottom: var(--space-xl);
|
|
perspective: 1000px;
|
|
position: relative;
|
|
z-index: 10;
|
|
}
|
|
|
|
.logo-3d {
|
|
width: 100%;
|
|
height: 100%;
|
|
position: relative;
|
|
transform-style: preserve-3d;
|
|
animation: logo-float 6s ease-in-out infinite;
|
|
}
|
|
|
|
@keyframes logo-float {
|
|
0%, 100% { transform: translateY(0) rotateX(0deg) rotateY(0deg); }
|
|
25% { transform: translateY(-15px) rotateX(5deg) rotateY(8deg); }
|
|
50% { transform: translateY(-8px) rotateX(0deg) rotateY(-5deg); }
|
|
75% { transform: translateY(-20px) rotateX(-5deg) rotateY(3deg); }
|
|
}
|
|
|
|
/* Main Logo SVG */
|
|
.logo-main {
|
|
width: 100%;
|
|
height: 100%;
|
|
position: relative;
|
|
filter: drop-shadow(0 30px 60px rgba(255, 29, 108, 0.4));
|
|
}
|
|
|
|
/* Outer Ring - The Road */
|
|
.logo-road {
|
|
fill: none;
|
|
stroke: var(--hot-pink);
|
|
stroke-width: 12;
|
|
filter: drop-shadow(0 0 20px rgba(255, 29, 108, 0.6));
|
|
animation: road-glow 3s ease-in-out infinite;
|
|
}
|
|
|
|
@keyframes road-glow {
|
|
0%, 100% {
|
|
stroke-width: 12;
|
|
filter: drop-shadow(0 0 20px rgba(255, 29, 108, 0.6));
|
|
}
|
|
50% {
|
|
stroke-width: 14;
|
|
filter: drop-shadow(0 0 40px rgba(255, 29, 108, 0.9));
|
|
}
|
|
}
|
|
|
|
/* Road Dashes - Animated */
|
|
.road-dashes {
|
|
animation: dashes-spin 8s linear infinite;
|
|
transform-origin: center;
|
|
}
|
|
|
|
@keyframes dashes-spin {
|
|
from { transform: rotate(0deg); }
|
|
to { transform: rotate(360deg); }
|
|
}
|
|
|
|
.road-dash {
|
|
fill: var(--black);
|
|
animation: dash-pulse 2s ease-in-out infinite;
|
|
}
|
|
|
|
.road-dash:nth-child(odd) { animation-delay: 0s; }
|
|
.road-dash:nth-child(even) { animation-delay: 1s; }
|
|
|
|
@keyframes dash-pulse {
|
|
0%, 100% { opacity: 1; }
|
|
50% { opacity: 0.6; }
|
|
}
|
|
|
|
/* Inner Eye */
|
|
.eye-container {
|
|
transform-origin: center;
|
|
}
|
|
|
|
/* Top Half - Amber */
|
|
.eye-top {
|
|
fill: var(--amber);
|
|
filter: drop-shadow(0 0 10px rgba(245, 166, 35, 0.5));
|
|
animation: eye-top-animate 4s ease-in-out infinite;
|
|
transform-origin: center;
|
|
}
|
|
|
|
@keyframes eye-top-animate {
|
|
0%, 40%, 100% { transform: scaleY(1); }
|
|
45%, 55% { transform: scaleY(0.1); }
|
|
}
|
|
|
|
/* Bottom Half - Blue */
|
|
.eye-bottom {
|
|
fill: var(--electric-blue);
|
|
filter: drop-shadow(0 0 10px rgba(41, 121, 255, 0.5));
|
|
animation: eye-bottom-animate 4s ease-in-out infinite;
|
|
transform-origin: center;
|
|
}
|
|
|
|
@keyframes eye-bottom-animate {
|
|
0%, 40%, 100% { transform: scaleY(1); }
|
|
45%, 55% { transform: scaleY(0.1); }
|
|
}
|
|
|
|
/* Pupil */
|
|
.pupil-group {
|
|
animation: pupil-look 8s ease-in-out infinite;
|
|
}
|
|
|
|
@keyframes pupil-look {
|
|
0%, 100% { transform: translate(0, 0); }
|
|
15% { transform: translate(8px, -5px); }
|
|
30% { transform: translate(-6px, 4px); }
|
|
45% { transform: translate(0, 0); }
|
|
60% { transform: translate(5px, 6px); }
|
|
75% { transform: translate(-8px, -3px); }
|
|
90% { transform: translate(3px, -2px); }
|
|
}
|
|
|
|
.pupil {
|
|
fill: var(--black);
|
|
}
|
|
|
|
.pupil-highlight {
|
|
fill: rgba(255, 255, 255, 0.5);
|
|
animation: highlight-sparkle 2s ease-in-out infinite;
|
|
}
|
|
|
|
@keyframes highlight-sparkle {
|
|
0%, 100% { opacity: 0.5; transform: translate(0, 0) scale(1); }
|
|
50% { opacity: 0.9; transform: translate(2px, 2px) scale(1.3); }
|
|
}
|
|
|
|
.pupil-highlight-2 {
|
|
fill: rgba(255, 255, 255, 0.3);
|
|
animation: highlight-sparkle-2 3s ease-in-out infinite;
|
|
}
|
|
|
|
@keyframes highlight-sparkle-2 {
|
|
0%, 100% { opacity: 0.3; }
|
|
50% { opacity: 0.6; }
|
|
}
|
|
|
|
/* Glow Rings */
|
|
.glow-ring {
|
|
fill: none;
|
|
stroke-width: 2;
|
|
opacity: 0;
|
|
animation: glow-ring-pulse 3s ease-out infinite;
|
|
}
|
|
|
|
.glow-ring-1 {
|
|
stroke: var(--hot-pink);
|
|
animation-delay: 0s;
|
|
}
|
|
|
|
.glow-ring-2 {
|
|
stroke: var(--amber);
|
|
animation-delay: 1s;
|
|
}
|
|
|
|
.glow-ring-3 {
|
|
stroke: var(--electric-blue);
|
|
animation-delay: 2s;
|
|
}
|
|
|
|
@keyframes glow-ring-pulse {
|
|
0% {
|
|
r: 90;
|
|
opacity: 0.8;
|
|
stroke-width: 4;
|
|
}
|
|
100% {
|
|
r: 140;
|
|
opacity: 0;
|
|
stroke-width: 1;
|
|
}
|
|
}
|
|
|
|
/* Hero Content */
|
|
.hero-content {
|
|
position: relative;
|
|
z-index: 10;
|
|
}
|
|
|
|
.hero-title {
|
|
font-size: clamp(48px, 12vw, 120px);
|
|
font-weight: 600;
|
|
letter-spacing: -0.03em;
|
|
line-height: 1;
|
|
margin-bottom: var(--space-md);
|
|
overflow: hidden;
|
|
}
|
|
|
|
.hero-title .word {
|
|
display: inline-block;
|
|
animation: word-reveal 1s var(--ease-out) forwards;
|
|
opacity: 0;
|
|
transform: translateY(100%);
|
|
}
|
|
|
|
.hero-title .word:nth-child(1) { animation-delay: 0.2s; }
|
|
.hero-title .word:nth-child(2) { animation-delay: 0.4s; }
|
|
|
|
@keyframes word-reveal {
|
|
to {
|
|
opacity: 1;
|
|
transform: translateY(0);
|
|
}
|
|
}
|
|
|
|
.hero-title .gradient {
|
|
background: var(--gradient-brand);
|
|
-webkit-background-clip: text;
|
|
-webkit-text-fill-color: transparent;
|
|
background-clip: text;
|
|
}
|
|
|
|
.hero-subtitle {
|
|
font-size: 21px;
|
|
font-weight: 400;
|
|
opacity: 0;
|
|
color: rgba(255, 255, 255, 0.6);
|
|
max-width: 500px;
|
|
margin: 0 auto;
|
|
animation: fade-up 1s var(--ease-out) 0.6s forwards;
|
|
}
|
|
|
|
@keyframes fade-up {
|
|
to {
|
|
opacity: 1;
|
|
transform: translateY(0);
|
|
}
|
|
}
|
|
|
|
/* Scroll Indicator */
|
|
.scroll-indicator {
|
|
position: absolute;
|
|
bottom: var(--space-xl);
|
|
left: 50%;
|
|
transform: translateX(-50%);
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
gap: var(--space-xs);
|
|
opacity: 0;
|
|
animation: fade-in 1s var(--ease) 1.5s forwards;
|
|
}
|
|
|
|
@keyframes fade-in {
|
|
to { opacity: 0.5; }
|
|
}
|
|
|
|
.scroll-indicator span {
|
|
font-size: 11px;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.2em;
|
|
}
|
|
|
|
.scroll-arrow {
|
|
width: 24px;
|
|
height: 24px;
|
|
border-right: 2px solid var(--white);
|
|
border-bottom: 2px solid var(--white);
|
|
transform: rotate(45deg);
|
|
animation: scroll-bounce 2s ease-in-out infinite;
|
|
}
|
|
|
|
@keyframes scroll-bounce {
|
|
0%, 100% { transform: rotate(45deg) translate(0, 0); opacity: 0.5; }
|
|
50% { transform: rotate(45deg) translate(5px, 5px); opacity: 1; }
|
|
}
|
|
|
|
/* ========== SECTIONS ========== */
|
|
section {
|
|
padding: var(--space-3xl) var(--space-2xl);
|
|
background: var(--black);
|
|
position: relative;
|
|
}
|
|
|
|
.section-header {
|
|
max-width: 800px;
|
|
margin-bottom: var(--space-2xl);
|
|
}
|
|
|
|
.section-label {
|
|
font-size: 12px;
|
|
font-weight: 600;
|
|
letter-spacing: 0.2em;
|
|
text-transform: uppercase;
|
|
background: var(--gradient-brand);
|
|
-webkit-background-clip: text;
|
|
-webkit-text-fill-color: transparent;
|
|
background-clip: text;
|
|
margin-bottom: var(--space-sm);
|
|
display: inline-block;
|
|
}
|
|
|
|
.section-title {
|
|
font-size: clamp(34px, 5vw, 55px);
|
|
font-weight: 600;
|
|
letter-spacing: -0.02em;
|
|
margin-bottom: var(--space-md);
|
|
}
|
|
|
|
.section-desc {
|
|
font-size: 17px;
|
|
opacity: 0.5;
|
|
max-width: 600px;
|
|
}
|
|
|
|
/* ========== EMOJI SECTION ========== */
|
|
.emoji-section {
|
|
overflow: hidden;
|
|
}
|
|
|
|
.emoji-marquee {
|
|
display: flex;
|
|
gap: var(--space-2xl);
|
|
animation: marquee 30s linear infinite;
|
|
}
|
|
|
|
.emoji-marquee-inner {
|
|
display: flex;
|
|
gap: var(--space-2xl);
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
@keyframes marquee {
|
|
0% { transform: translateX(0); }
|
|
100% { transform: translateX(-50%); }
|
|
}
|
|
|
|
.emoji-item {
|
|
font-size: 89px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
/* Individual Emoji Animations */
|
|
.emoji-spin {
|
|
animation: emoji-spin 4s linear infinite;
|
|
}
|
|
|
|
@keyframes emoji-spin {
|
|
from { transform: rotate(0deg); }
|
|
to { transform: rotate(360deg); }
|
|
}
|
|
|
|
.emoji-bounce {
|
|
animation: emoji-bounce 1s ease-in-out infinite;
|
|
}
|
|
|
|
@keyframes emoji-bounce {
|
|
0%, 100% { transform: translateY(0); }
|
|
50% { transform: translateY(-20px); }
|
|
}
|
|
|
|
.emoji-pulse {
|
|
animation: emoji-pulse 1.5s ease-in-out infinite;
|
|
}
|
|
|
|
@keyframes emoji-pulse {
|
|
0%, 100% { transform: scale(1); }
|
|
50% { transform: scale(1.2); }
|
|
}
|
|
|
|
.emoji-shake {
|
|
animation: emoji-shake 0.5s ease-in-out infinite;
|
|
}
|
|
|
|
@keyframes emoji-shake {
|
|
0%, 100% { transform: rotate(-10deg); }
|
|
50% { transform: rotate(10deg); }
|
|
}
|
|
|
|
.emoji-float {
|
|
animation: emoji-float 3s ease-in-out infinite;
|
|
}
|
|
|
|
@keyframes emoji-float {
|
|
0%, 100% { transform: translateY(0) rotate(-5deg); }
|
|
50% { transform: translateY(-15px) rotate(5deg); }
|
|
}
|
|
|
|
.emoji-flip {
|
|
animation: emoji-flip 2s ease-in-out infinite;
|
|
}
|
|
|
|
@keyframes emoji-flip {
|
|
0%, 100% { transform: rotateY(0deg); }
|
|
50% { transform: rotateY(180deg); }
|
|
}
|
|
|
|
.emoji-swing {
|
|
animation: emoji-swing 2s ease-in-out infinite;
|
|
transform-origin: top center;
|
|
}
|
|
|
|
@keyframes emoji-swing {
|
|
0%, 100% { transform: rotate(-15deg); }
|
|
50% { transform: rotate(15deg); }
|
|
}
|
|
|
|
.emoji-wobble {
|
|
animation: emoji-wobble 1s ease-in-out infinite;
|
|
}
|
|
|
|
@keyframes emoji-wobble {
|
|
0%, 100% { transform: scale(1) rotate(0deg); }
|
|
25% { transform: scale(1.1) rotate(-5deg); }
|
|
50% { transform: scale(1) rotate(0deg); }
|
|
75% { transform: scale(1.1) rotate(5deg); }
|
|
}
|
|
|
|
.emoji-zoom {
|
|
animation: emoji-zoom 2s ease-in-out infinite;
|
|
}
|
|
|
|
@keyframes emoji-zoom {
|
|
0%, 100% { transform: scale(1); filter: blur(0); }
|
|
50% { transform: scale(1.3); filter: blur(1px); }
|
|
}
|
|
|
|
.emoji-wave {
|
|
animation: emoji-wave 1s ease-in-out infinite;
|
|
transform-origin: bottom center;
|
|
}
|
|
|
|
@keyframes emoji-wave {
|
|
0%, 100% { transform: rotate(0deg); }
|
|
25% { transform: rotate(20deg); }
|
|
75% { transform: rotate(-20deg); }
|
|
}
|
|
|
|
/* ========== LOADERS ========== */
|
|
.loaders-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(6, 1fr);
|
|
gap: var(--space-lg);
|
|
}
|
|
|
|
.loader-card {
|
|
aspect-ratio: 1;
|
|
background: rgba(255, 255, 255, 0.02);
|
|
border: 1px solid rgba(255, 255, 255, 0.04);
|
|
border-radius: var(--space-md);
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
gap: var(--space-md);
|
|
transition: all 0.4s var(--ease);
|
|
}
|
|
|
|
.loader-card:hover {
|
|
background: rgba(255, 255, 255, 0.04);
|
|
transform: translateY(-5px);
|
|
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
|
|
}
|
|
|
|
.loader-name {
|
|
font-size: 10px;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.15em;
|
|
opacity: 0.4;
|
|
}
|
|
|
|
/* Loader 1 - Orbit */
|
|
.loader-orbit {
|
|
width: 50px;
|
|
height: 50px;
|
|
position: relative;
|
|
}
|
|
|
|
.loader-orbit::before {
|
|
content: '';
|
|
position: absolute;
|
|
inset: 0;
|
|
border: 2px solid rgba(255, 255, 255, 0.1);
|
|
border-radius: 50%;
|
|
}
|
|
|
|
.loader-orbit::after {
|
|
content: '';
|
|
position: absolute;
|
|
width: 10px;
|
|
height: 10px;
|
|
background: var(--hot-pink);
|
|
border-radius: 50%;
|
|
top: -5px;
|
|
left: 50%;
|
|
margin-left: -5px;
|
|
animation: orbit 1.5s linear infinite;
|
|
box-shadow: 0 0 20px var(--hot-pink);
|
|
}
|
|
|
|
@keyframes orbit {
|
|
from { transform: rotate(0deg) translateY(25px) rotate(0deg); }
|
|
to { transform: rotate(360deg) translateY(25px) rotate(-360deg); }
|
|
}
|
|
|
|
/* Loader 2 - DNA */
|
|
.loader-dna {
|
|
display: flex;
|
|
gap: 6px;
|
|
height: 50px;
|
|
align-items: center;
|
|
}
|
|
|
|
.loader-dna span {
|
|
width: 8px;
|
|
height: 8px;
|
|
border-radius: 50%;
|
|
animation: dna 1.5s ease-in-out infinite;
|
|
}
|
|
|
|
.loader-dna span:nth-child(1) { background: var(--hot-pink); animation-delay: 0s; }
|
|
.loader-dna span:nth-child(2) { background: var(--amber); animation-delay: 0.1s; }
|
|
.loader-dna span:nth-child(3) { background: var(--electric-blue); animation-delay: 0.2s; }
|
|
.loader-dna span:nth-child(4) { background: var(--violet); animation-delay: 0.3s; }
|
|
.loader-dna span:nth-child(5) { background: var(--hot-pink); animation-delay: 0.4s; }
|
|
|
|
@keyframes dna {
|
|
0%, 100% { transform: translateY(-15px) scale(0.8); }
|
|
50% { transform: translateY(15px) scale(1.2); }
|
|
}
|
|
|
|
/* Loader 3 - Ripple */
|
|
.loader-ripple {
|
|
width: 50px;
|
|
height: 50px;
|
|
position: relative;
|
|
}
|
|
|
|
.loader-ripple span {
|
|
position: absolute;
|
|
inset: 0;
|
|
border: 2px solid var(--electric-blue);
|
|
border-radius: 50%;
|
|
animation: ripple 2s ease-out infinite;
|
|
}
|
|
|
|
.loader-ripple span:nth-child(2) { animation-delay: 0.5s; }
|
|
.loader-ripple span:nth-child(3) { animation-delay: 1s; }
|
|
|
|
@keyframes ripple {
|
|
0% { transform: scale(0.5); opacity: 1; }
|
|
100% { transform: scale(1.5); opacity: 0; }
|
|
}
|
|
|
|
/* Loader 4 - Bars */
|
|
.loader-bars {
|
|
display: flex;
|
|
gap: 4px;
|
|
height: 50px;
|
|
align-items: flex-end;
|
|
}
|
|
|
|
.loader-bars span {
|
|
width: 6px;
|
|
background: var(--gradient-brand);
|
|
border-radius: 3px;
|
|
animation: bars 1s ease-in-out infinite;
|
|
}
|
|
|
|
.loader-bars span:nth-child(1) { animation-delay: 0s; }
|
|
.loader-bars span:nth-child(2) { animation-delay: 0.1s; }
|
|
.loader-bars span:nth-child(3) { animation-delay: 0.2s; }
|
|
.loader-bars span:nth-child(4) { animation-delay: 0.3s; }
|
|
.loader-bars span:nth-child(5) { animation-delay: 0.4s; }
|
|
|
|
@keyframes bars {
|
|
0%, 100% { height: 15px; }
|
|
50% { height: 45px; }
|
|
}
|
|
|
|
/* Loader 5 - Morph */
|
|
.loader-morph {
|
|
width: 50px;
|
|
height: 50px;
|
|
background: var(--gradient-brand);
|
|
animation: morph-loader 3s ease-in-out infinite;
|
|
}
|
|
|
|
@keyframes morph-loader {
|
|
0%, 100% { border-radius: 50%; transform: rotate(0deg); }
|
|
25% { border-radius: 0; transform: rotate(90deg); }
|
|
50% { border-radius: 50%; transform: rotate(180deg); }
|
|
75% { border-radius: 20% 80% 20% 80%; transform: rotate(270deg); }
|
|
}
|
|
|
|
/* Loader 6 - Infinity */
|
|
.loader-infinity {
|
|
width: 80px;
|
|
height: 40px;
|
|
position: relative;
|
|
}
|
|
|
|
.loader-infinity::before,
|
|
.loader-infinity::after {
|
|
content: '';
|
|
position: absolute;
|
|
width: 30px;
|
|
height: 30px;
|
|
border: 3px solid transparent;
|
|
border-top-color: var(--hot-pink);
|
|
border-radius: 50%;
|
|
animation: infinity 1.5s linear infinite;
|
|
}
|
|
|
|
.loader-infinity::before {
|
|
left: 5px;
|
|
top: 5px;
|
|
}
|
|
|
|
.loader-infinity::after {
|
|
right: 5px;
|
|
top: 5px;
|
|
animation-delay: -0.75s;
|
|
}
|
|
|
|
@keyframes infinity {
|
|
from { transform: rotate(0deg); }
|
|
to { transform: rotate(360deg); }
|
|
}
|
|
|
|
/* Loader 7 - Cube */
|
|
.loader-cube-container {
|
|
width: 40px;
|
|
height: 40px;
|
|
perspective: 100px;
|
|
}
|
|
|
|
.loader-cube {
|
|
width: 100%;
|
|
height: 100%;
|
|
position: relative;
|
|
transform-style: preserve-3d;
|
|
animation: cube 2s ease-in-out infinite;
|
|
}
|
|
|
|
@keyframes cube {
|
|
0% { transform: rotateX(0deg) rotateY(0deg); }
|
|
25% { transform: rotateX(90deg) rotateY(90deg); }
|
|
50% { transform: rotateX(180deg) rotateY(180deg); }
|
|
75% { transform: rotateX(270deg) rotateY(270deg); }
|
|
100% { transform: rotateX(360deg) rotateY(360deg); }
|
|
}
|
|
|
|
.loader-cube div {
|
|
position: absolute;
|
|
width: 40px;
|
|
height: 40px;
|
|
background: var(--gradient-brand);
|
|
opacity: 0.9;
|
|
}
|
|
|
|
.loader-cube div:nth-child(1) { transform: translateZ(20px); }
|
|
.loader-cube div:nth-child(2) { transform: rotateY(180deg) translateZ(20px); }
|
|
.loader-cube div:nth-child(3) { transform: rotateY(90deg) translateZ(20px); }
|
|
.loader-cube div:nth-child(4) { transform: rotateY(-90deg) translateZ(20px); }
|
|
.loader-cube div:nth-child(5) { transform: rotateX(90deg) translateZ(20px); }
|
|
.loader-cube div:nth-child(6) { transform: rotateX(-90deg) translateZ(20px); }
|
|
|
|
/* Loader 8 - Pulse Ring */
|
|
.loader-pulse-ring {
|
|
width: 50px;
|
|
height: 50px;
|
|
position: relative;
|
|
}
|
|
|
|
.loader-pulse-ring span {
|
|
position: absolute;
|
|
inset: 0;
|
|
border-radius: 50%;
|
|
border: 3px solid var(--amber);
|
|
animation: pulse-ring 1.5s ease-in-out infinite;
|
|
}
|
|
|
|
.loader-pulse-ring span:nth-child(2) {
|
|
animation-delay: 0.5s;
|
|
border-color: var(--hot-pink);
|
|
}
|
|
|
|
@keyframes pulse-ring {
|
|
0%, 100% { transform: scale(0.8); opacity: 1; }
|
|
50% { transform: scale(1.2); opacity: 0.5; }
|
|
}
|
|
|
|
/* Loader 9 - Dots Circle */
|
|
.loader-dots-circle {
|
|
width: 50px;
|
|
height: 50px;
|
|
position: relative;
|
|
animation: dots-circle-rotate 3s linear infinite;
|
|
}
|
|
|
|
@keyframes dots-circle-rotate {
|
|
from { transform: rotate(0deg); }
|
|
to { transform: rotate(360deg); }
|
|
}
|
|
|
|
.loader-dots-circle span {
|
|
position: absolute;
|
|
width: 8px;
|
|
height: 8px;
|
|
border-radius: 50%;
|
|
animation: dots-circle-pulse 1.5s ease-in-out infinite;
|
|
}
|
|
|
|
.loader-dots-circle span:nth-child(1) { top: 0; left: 50%; margin-left: -4px; background: var(--hot-pink); animation-delay: 0s; }
|
|
.loader-dots-circle span:nth-child(2) { top: 14%; right: 14%; background: var(--amber); animation-delay: 0.15s; }
|
|
.loader-dots-circle span:nth-child(3) { right: 0; top: 50%; margin-top: -4px; background: var(--electric-blue); animation-delay: 0.3s; }
|
|
.loader-dots-circle span:nth-child(4) { bottom: 14%; right: 14%; background: var(--violet); animation-delay: 0.45s; }
|
|
.loader-dots-circle span:nth-child(5) { bottom: 0; left: 50%; margin-left: -4px; background: var(--hot-pink); animation-delay: 0.6s; }
|
|
.loader-dots-circle span:nth-child(6) { bottom: 14%; left: 14%; background: var(--amber); animation-delay: 0.75s; }
|
|
.loader-dots-circle span:nth-child(7) { left: 0; top: 50%; margin-top: -4px; background: var(--electric-blue); animation-delay: 0.9s; }
|
|
.loader-dots-circle span:nth-child(8) { top: 14%; left: 14%; background: var(--violet); animation-delay: 1.05s; }
|
|
|
|
@keyframes dots-circle-pulse {
|
|
0%, 100% { transform: scale(1); opacity: 1; }
|
|
50% { transform: scale(0.5); opacity: 0.5; }
|
|
}
|
|
|
|
/* Loader 10 - Wave */
|
|
.loader-wave {
|
|
display: flex;
|
|
gap: 3px;
|
|
align-items: center;
|
|
height: 50px;
|
|
}
|
|
|
|
.loader-wave span {
|
|
width: 4px;
|
|
height: 30px;
|
|
background: var(--gradient-brand);
|
|
border-radius: 2px;
|
|
animation: wave-loader 1s ease-in-out infinite;
|
|
}
|
|
|
|
.loader-wave span:nth-child(1) { animation-delay: 0s; }
|
|
.loader-wave span:nth-child(2) { animation-delay: 0.1s; }
|
|
.loader-wave span:nth-child(3) { animation-delay: 0.2s; }
|
|
.loader-wave span:nth-child(4) { animation-delay: 0.3s; }
|
|
.loader-wave span:nth-child(5) { animation-delay: 0.4s; }
|
|
.loader-wave span:nth-child(6) { animation-delay: 0.5s; }
|
|
.loader-wave span:nth-child(7) { animation-delay: 0.6s; }
|
|
|
|
@keyframes wave-loader {
|
|
0%, 100% { transform: scaleY(0.5); }
|
|
50% { transform: scaleY(1.5); }
|
|
}
|
|
|
|
/* Loader 11 - Spinner Gradient */
|
|
.loader-spinner-gradient {
|
|
width: 50px;
|
|
height: 50px;
|
|
border-radius: 50%;
|
|
background: conic-gradient(from 0deg, transparent, var(--hot-pink), var(--amber), var(--electric-blue), transparent);
|
|
animation: spinner-gradient 1s linear infinite;
|
|
position: relative;
|
|
}
|
|
|
|
.loader-spinner-gradient::before {
|
|
content: '';
|
|
position: absolute;
|
|
inset: 4px;
|
|
background: var(--black);
|
|
border-radius: 50%;
|
|
}
|
|
|
|
@keyframes spinner-gradient {
|
|
from { transform: rotate(0deg); }
|
|
to { transform: rotate(360deg); }
|
|
}
|
|
|
|
/* Loader 12 - Bounce Dots */
|
|
.loader-bounce-dots {
|
|
display: flex;
|
|
gap: 8px;
|
|
align-items: flex-end;
|
|
height: 50px;
|
|
}
|
|
|
|
.loader-bounce-dots span {
|
|
width: 12px;
|
|
height: 12px;
|
|
border-radius: 50%;
|
|
animation: bounce-dots 0.6s ease-in-out infinite alternate;
|
|
}
|
|
|
|
.loader-bounce-dots span:nth-child(1) { background: var(--hot-pink); animation-delay: 0s; }
|
|
.loader-bounce-dots span:nth-child(2) { background: var(--amber); animation-delay: 0.2s; }
|
|
.loader-bounce-dots span:nth-child(3) { background: var(--electric-blue); animation-delay: 0.4s; }
|
|
|
|
@keyframes bounce-dots {
|
|
0% { transform: translateY(0); }
|
|
100% { transform: translateY(-25px); }
|
|
}
|
|
|
|
/* ========== TEXT ANIMATIONS ========== */
|
|
.text-section {
|
|
text-align: center;
|
|
}
|
|
|
|
.text-demos {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: var(--space-3xl);
|
|
align-items: center;
|
|
}
|
|
|
|
.text-demo {
|
|
width: 100%;
|
|
}
|
|
|
|
.text-label {
|
|
font-size: 10px;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.2em;
|
|
opacity: 0.3;
|
|
margin-bottom: var(--space-md);
|
|
}
|
|
|
|
/* Gradient Flow */
|
|
.text-gradient-flow {
|
|
font-size: clamp(55px, 10vw, 120px);
|
|
font-weight: 700;
|
|
background: linear-gradient(90deg, var(--amber), var(--hot-pink), var(--violet), var(--electric-blue), var(--amber));
|
|
background-size: 300% auto;
|
|
-webkit-background-clip: text;
|
|
-webkit-text-fill-color: transparent;
|
|
background-clip: text;
|
|
animation: gradient-flow 4s linear infinite;
|
|
}
|
|
|
|
@keyframes gradient-flow {
|
|
from { background-position: 0% center; }
|
|
to { background-position: 300% center; }
|
|
}
|
|
|
|
/* 3D Wave */
|
|
.text-wave-3d {
|
|
font-size: clamp(34px, 6vw, 72px);
|
|
font-weight: 600;
|
|
display: flex;
|
|
justify-content: center;
|
|
perspective: 500px;
|
|
}
|
|
|
|
.text-wave-3d span {
|
|
display: inline-block;
|
|
background: var(--gradient-brand);
|
|
-webkit-background-clip: text;
|
|
-webkit-text-fill-color: transparent;
|
|
background-clip: text;
|
|
animation: wave-3d 2s ease-in-out infinite;
|
|
transform-style: preserve-3d;
|
|
}
|
|
|
|
.text-wave-3d span:nth-child(1) { animation-delay: 0s; }
|
|
.text-wave-3d span:nth-child(2) { animation-delay: 0.05s; }
|
|
.text-wave-3d span:nth-child(3) { animation-delay: 0.1s; }
|
|
.text-wave-3d span:nth-child(4) { animation-delay: 0.15s; }
|
|
.text-wave-3d span:nth-child(5) { animation-delay: 0.2s; }
|
|
.text-wave-3d span:nth-child(6) { animation-delay: 0.25s; }
|
|
.text-wave-3d span:nth-child(7) { animation-delay: 0.3s; }
|
|
.text-wave-3d span:nth-child(8) { animation-delay: 0.35s; }
|
|
.text-wave-3d span:nth-child(9) { animation-delay: 0.4s; }
|
|
|
|
@keyframes wave-3d {
|
|
0%, 100% { transform: translateY(0) translateZ(0) rotateX(0deg); }
|
|
50% { transform: translateY(-20px) translateZ(30px) rotateX(15deg); }
|
|
}
|
|
|
|
/* Glitch */
|
|
.text-glitch {
|
|
font-size: clamp(40px, 8vw, 89px);
|
|
font-weight: 700;
|
|
position: relative;
|
|
color: var(--white);
|
|
}
|
|
|
|
.text-glitch::before,
|
|
.text-glitch::after {
|
|
content: attr(data-text);
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
.text-glitch::before {
|
|
color: var(--hot-pink);
|
|
animation: glitch-1 3s infinite linear alternate-reverse;
|
|
clip-path: polygon(0 0, 100% 0, 100% 40%, 0 40%);
|
|
}
|
|
|
|
.text-glitch::after {
|
|
color: var(--electric-blue);
|
|
animation: glitch-2 3s infinite linear alternate-reverse;
|
|
clip-path: polygon(0 60%, 100% 60%, 100% 100%, 0 100%);
|
|
}
|
|
|
|
@keyframes glitch-1 {
|
|
0%, 100% { transform: translate(0); }
|
|
20% { transform: translate(-3px, 3px); }
|
|
40% { transform: translate(3px, -3px); }
|
|
60% { transform: translate(-2px, 2px); }
|
|
80% { transform: translate(2px, -2px); }
|
|
}
|
|
|
|
@keyframes glitch-2 {
|
|
0%, 100% { transform: translate(0); }
|
|
20% { transform: translate(3px, -3px); }
|
|
40% { transform: translate(-3px, 3px); }
|
|
60% { transform: translate(2px, -2px); }
|
|
80% { transform: translate(-2px, 2px); }
|
|
}
|
|
|
|
/* Typewriter */
|
|
.text-typewriter {
|
|
font-size: clamp(24px, 4vw, 48px);
|
|
font-weight: 500;
|
|
font-family: 'SF Mono', monospace;
|
|
overflow: hidden;
|
|
border-right: 3px solid var(--hot-pink);
|
|
white-space: nowrap;
|
|
animation: typing 4s steps(22) infinite, blink 0.75s step-end infinite;
|
|
max-width: fit-content;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
@keyframes typing {
|
|
0%, 100% { width: 0; }
|
|
50%, 90% { width: 22ch; }
|
|
}
|
|
|
|
@keyframes blink {
|
|
50% { border-color: transparent; }
|
|
}
|
|
|
|
/* ========== MORPHING SHAPES ========== */
|
|
.morph-section {
|
|
overflow: hidden;
|
|
}
|
|
|
|
.morph-container {
|
|
display: flex;
|
|
justify-content: center;
|
|
gap: var(--space-3xl);
|
|
flex-wrap: wrap;
|
|
perspective: 1000px;
|
|
}
|
|
|
|
.morph-item {
|
|
transform-style: preserve-3d;
|
|
}
|
|
|
|
.morph-blob {
|
|
width: 180px;
|
|
height: 180px;
|
|
background: var(--gradient-brand);
|
|
border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
|
|
animation:
|
|
blob-morph 12s ease-in-out infinite,
|
|
blob-3d 8s ease-in-out infinite;
|
|
filter: drop-shadow(0 30px 60px rgba(255, 29, 108, 0.4));
|
|
}
|
|
|
|
@keyframes blob-morph {
|
|
0%, 100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
|
|
17% { border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; }
|
|
33% { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; }
|
|
50% { border-radius: 50% 60% 30% 60% / 30% 60% 70% 40%; }
|
|
67% { border-radius: 60% 40% 60% 30% / 70% 30% 50% 60%; }
|
|
83% { border-radius: 40% 60% 50% 40% / 60% 50% 40% 60%; }
|
|
}
|
|
|
|
@keyframes blob-3d {
|
|
0%, 100% { transform: rotateX(0deg) rotateY(0deg); }
|
|
25% { transform: rotateX(15deg) rotateY(20deg); }
|
|
50% { transform: rotateX(-10deg) rotateY(-15deg); }
|
|
75% { transform: rotateX(10deg) rotateY(-10deg); }
|
|
}
|
|
|
|
.morph-ring {
|
|
width: 180px;
|
|
height: 180px;
|
|
border: 10px solid transparent;
|
|
border-radius: 50%;
|
|
background: linear-gradient(var(--black), var(--black)) padding-box,
|
|
var(--gradient-brand) border-box;
|
|
animation: ring-dance 6s ease-in-out infinite;
|
|
filter: drop-shadow(0 30px 60px rgba(41, 121, 255, 0.4));
|
|
}
|
|
|
|
@keyframes ring-dance {
|
|
0%, 100% {
|
|
transform: rotateX(0deg) rotateY(0deg) scale(1);
|
|
border-width: 10px;
|
|
}
|
|
25% {
|
|
transform: rotateX(45deg) rotateY(0deg) scale(1.1);
|
|
border-width: 15px;
|
|
}
|
|
50% {
|
|
transform: rotateX(0deg) rotateY(45deg) scale(1);
|
|
border-width: 8px;
|
|
}
|
|
75% {
|
|
transform: rotateX(-45deg) rotateY(-45deg) scale(0.95);
|
|
border-width: 12px;
|
|
}
|
|
}
|
|
|
|
.morph-square {
|
|
width: 120px;
|
|
height: 120px;
|
|
background: var(--violet);
|
|
animation: square-dance 8s ease-in-out infinite;
|
|
filter: drop-shadow(0 30px 60px rgba(156, 39, 176, 0.4));
|
|
}
|
|
|
|
@keyframes square-dance {
|
|
0%, 100% {
|
|
border-radius: 0;
|
|
transform: rotate(0deg) scale(1);
|
|
}
|
|
20% {
|
|
border-radius: 30% 0 30% 0;
|
|
transform: rotate(72deg) scale(1.1);
|
|
}
|
|
40% {
|
|
border-radius: 50%;
|
|
transform: rotate(144deg) scale(0.9);
|
|
}
|
|
60% {
|
|
border-radius: 0 30% 0 30%;
|
|
transform: rotate(216deg) scale(1.05);
|
|
}
|
|
80% {
|
|
border-radius: 20%;
|
|
transform: rotate(288deg) scale(1);
|
|
}
|
|
}
|
|
|
|
/* ========== HOVER CARDS ========== */
|
|
.hover-section {
|
|
perspective: 1000px;
|
|
}
|
|
|
|
.hover-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(4, 1fr);
|
|
gap: var(--space-md);
|
|
}
|
|
|
|
.hover-card {
|
|
aspect-ratio: 1.618;
|
|
background: rgba(255, 255, 255, 0.02);
|
|
border: 1px solid rgba(255, 255, 255, 0.04);
|
|
border-radius: var(--space-sm);
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
cursor: pointer;
|
|
transform-style: preserve-3d;
|
|
transition: all 0.5s var(--ease);
|
|
position: relative;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.hover-card span {
|
|
font-size: 11px;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.1em;
|
|
opacity: 0.4;
|
|
transition: all 0.3s var(--ease);
|
|
z-index: 1;
|
|
position: relative;
|
|
}
|
|
|
|
.hover-card:hover span {
|
|
opacity: 1;
|
|
}
|
|
|
|
/* Effects */
|
|
.hover-lift:hover {
|
|
transform: translateY(-15px) translateZ(40px);
|
|
box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
|
|
}
|
|
|
|
.hover-tilt:hover {
|
|
transform: rotateX(15deg) rotateY(-15deg) translateZ(30px);
|
|
}
|
|
|
|
.hover-glow:hover {
|
|
box-shadow:
|
|
0 0 0 1px var(--hot-pink),
|
|
0 0 40px rgba(255, 29, 108, 0.4),
|
|
0 0 80px rgba(255, 29, 108, 0.2);
|
|
}
|
|
|
|
.hover-scale:hover {
|
|
transform: scale(1.08) translateZ(20px);
|
|
}
|
|
|
|
.hover-shine::after {
|
|
content: '';
|
|
position: absolute;
|
|
inset: 0;
|
|
background: linear-gradient(
|
|
105deg,
|
|
transparent 40%,
|
|
rgba(255, 255, 255, 0.15) 45%,
|
|
rgba(255, 255, 255, 0.3) 50%,
|
|
rgba(255, 255, 255, 0.15) 55%,
|
|
transparent 60%
|
|
);
|
|
transform: translateX(-150%);
|
|
transition: transform 0.8s var(--ease);
|
|
}
|
|
|
|
.hover-shine:hover::after {
|
|
transform: translateX(150%);
|
|
}
|
|
|
|
.hover-gradient::before {
|
|
content: '';
|
|
position: absolute;
|
|
inset: 0;
|
|
background: var(--gradient-brand);
|
|
opacity: 0;
|
|
transition: opacity 0.5s var(--ease);
|
|
border-radius: var(--space-sm);
|
|
}
|
|
|
|
.hover-gradient:hover::before {
|
|
opacity: 0.2;
|
|
}
|
|
|
|
.hover-flip:hover {
|
|
transform: rotateY(180deg);
|
|
}
|
|
|
|
.hover-depth:hover {
|
|
transform: translateZ(60px) rotateX(8deg);
|
|
box-shadow:
|
|
0 50px 100px rgba(0, 0, 0, 0.6),
|
|
0 0 0 1px rgba(255, 255, 255, 0.05);
|
|
}
|
|
|
|
/* ========== FOOTER ========== */
|
|
footer {
|
|
background: var(--black);
|
|
padding: var(--space-2xl);
|
|
border-top: 1px solid rgba(255, 255, 255, 0.04);
|
|
text-align: center;
|
|
}
|
|
|
|
.footer-logo {
|
|
width: 55px;
|
|
height: 55px;
|
|
margin: 0 auto var(--space-md);
|
|
}
|
|
|
|
.footer-logo svg {
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
.footer-logo .road-dashes {
|
|
animation: dashes-spin 8s linear infinite;
|
|
transform-origin: center;
|
|
}
|
|
|
|
footer p {
|
|
font-size: 13px;
|
|
opacity: 0.3;
|
|
}
|
|
|
|
/* Scroll Progress */
|
|
.scroll-progress {
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
height: 2px;
|
|
background: var(--gradient-brand);
|
|
z-index: 9999;
|
|
width: 0%;
|
|
}
|
|
|
|
/* ========== RESPONSIVE ========== */
|
|
@media (max-width: 1024px) {
|
|
.loaders-grid {
|
|
grid-template-columns: repeat(4, 1fr);
|
|
}
|
|
|
|
.hover-grid {
|
|
grid-template-columns: repeat(2, 1fr);
|
|
}
|
|
}
|
|
|
|
@media (max-width: 768px) {
|
|
section {
|
|
padding: var(--space-2xl) var(--space-lg);
|
|
}
|
|
|
|
.loaders-grid {
|
|
grid-template-columns: repeat(3, 1fr);
|
|
}
|
|
|
|
.hover-grid {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
|
|
.morph-container {
|
|
gap: var(--space-xl);
|
|
}
|
|
|
|
.logo-container {
|
|
width: 200px;
|
|
height: 200px;
|
|
}
|
|
|
|
.emoji-item {
|
|
font-size: 55px;
|
|
}
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
|
|
<!-- Scroll Progress -->
|
|
<div class="scroll-progress" id="scrollProgress"></div>
|
|
|
|
<!-- Navigation -->
|
|
<nav>
|
|
<div class="nav-logo">
|
|
<div class="nav-logo-mark">
|
|
<svg viewBox="0 0 100 100" fill="none">
|
|
<circle cx="50" cy="50" r="44" stroke="#FF1D6C" stroke-width="6"/>
|
|
<g class="road-dashes" style="animation: dashes-spin 8s linear infinite; transform-origin: 50px 50px;">
|
|
<rect x="47" y="4" width="6" height="12" fill="#000" rx="2"/>
|
|
<rect x="47" y="84" width="6" height="12" fill="#000" rx="2"/>
|
|
<rect x="84" y="47" width="12" height="6" fill="#000" rx="2"/>
|
|
<rect x="4" y="47" width="12" height="6" fill="#000" rx="2"/>
|
|
<rect x="75" y="18" width="6" height="10" fill="#000" rx="2" transform="rotate(45 78 23)"/>
|
|
<rect x="19" y="72" width="6" height="10" fill="#000" rx="2" transform="rotate(45 22 77)"/>
|
|
<rect x="72" y="72" width="6" height="10" fill="#000" rx="2" transform="rotate(-45 75 77)"/>
|
|
<rect x="22" y="18" width="6" height="10" fill="#000" rx="2" transform="rotate(-45 25 23)"/>
|
|
</g>
|
|
<path d="M50 10C27.9 10 10 27.9 10 50H90C90 27.9 72.1 10 50 10Z" fill="#F5A623"/>
|
|
<path d="M10 50C10 72.1 27.9 90 50 90C72.1 90 90 72.1 90 50H10Z" fill="#2979FF"/>
|
|
<circle cx="50" cy="50" r="14" fill="#000"/>
|
|
</svg>
|
|
</div>
|
|
<span class="nav-logo-text">BlackRoad OS</span>
|
|
</div>
|
|
</nav>
|
|
|
|
<!-- Hero -->
|
|
<section class="hero">
|
|
<!-- Animated Grid Background -->
|
|
<div class="hero-grid"></div>
|
|
|
|
<!-- Floating Particles -->
|
|
<div class="particles">
|
|
<div class="particle"></div>
|
|
<div class="particle"></div>
|
|
<div class="particle"></div>
|
|
<div class="particle"></div>
|
|
<div class="particle"></div>
|
|
<div class="particle"></div>
|
|
<div class="particle"></div>
|
|
<div class="particle"></div>
|
|
<div class="particle"></div>
|
|
<div class="particle"></div>
|
|
<div class="particle"></div>
|
|
<div class="particle"></div>
|
|
<div class="particle"></div>
|
|
<div class="particle"></div>
|
|
<div class="particle"></div>
|
|
</div>
|
|
|
|
<!-- Glowing Orbs -->
|
|
<div class="orbs">
|
|
<div class="orb orb-1"></div>
|
|
<div class="orb orb-2"></div>
|
|
<div class="orb orb-3"></div>
|
|
</div>
|
|
|
|
<!-- 3D Logo -->
|
|
<div class="logo-container">
|
|
<div class="logo-3d">
|
|
<svg class="logo-main" viewBox="0 0 200 200" fill="none">
|
|
<!-- Glow Rings -->
|
|
<circle class="glow-ring glow-ring-1" cx="100" cy="100" r="90"/>
|
|
<circle class="glow-ring glow-ring-2" cx="100" cy="100" r="90"/>
|
|
<circle class="glow-ring glow-ring-3" cx="100" cy="100" r="90"/>
|
|
|
|
<!-- Main Road Ring -->
|
|
<circle class="logo-road" cx="100" cy="100" r="88"/>
|
|
|
|
<!-- Road Dashes -->
|
|
<g class="road-dashes">
|
|
<rect class="road-dash" x="94" y="6" width="12" height="20" rx="3"/>
|
|
<rect class="road-dash" x="94" y="174" width="12" height="20" rx="3"/>
|
|
<rect class="road-dash" x="174" y="94" width="20" height="12" rx="3"/>
|
|
<rect class="road-dash" x="6" y="94" width="20" height="12" rx="3"/>
|
|
|
|
<rect class="road-dash" x="152" y="32" width="12" height="16" rx="3" transform="rotate(45 158 40)"/>
|
|
<rect class="road-dash" x="36" y="152" width="12" height="16" rx="3" transform="rotate(45 42 160)"/>
|
|
<rect class="road-dash" x="152" y="152" width="12" height="16" rx="3" transform="rotate(-45 158 160)"/>
|
|
<rect class="road-dash" x="36" y="32" width="12" height="16" rx="3" transform="rotate(-45 42 40)"/>
|
|
|
|
<rect class="road-dash" x="130" y="14" width="10" height="14" rx="2" transform="rotate(22.5 135 21)"/>
|
|
<rect class="road-dash" x="60" y="172" width="10" height="14" rx="2" transform="rotate(22.5 65 179)"/>
|
|
<rect class="road-dash" x="172" y="60" width="14" height="10" rx="2" transform="rotate(22.5 179 65)"/>
|
|
<rect class="road-dash" x="14" y="130" width="14" height="10" rx="2" transform="rotate(22.5 21 135)"/>
|
|
|
|
<rect class="road-dash" x="60" y="14" width="10" height="14" rx="2" transform="rotate(-22.5 65 21)"/>
|
|
<rect class="road-dash" x="130" y="172" width="10" height="14" rx="2" transform="rotate(-22.5 135 179)"/>
|
|
<rect class="road-dash" x="172" y="130" width="14" height="10" rx="2" transform="rotate(-22.5 179 135)"/>
|
|
<rect class="road-dash" x="14" y="60" width="14" height="10" rx="2" transform="rotate(-22.5 21 65)"/>
|
|
</g>
|
|
|
|
<!-- Eye Container -->
|
|
<g class="eye-container">
|
|
<!-- Top Half (Amber) -->
|
|
<path class="eye-top" d="M100 16C53.6 16 16 53.6 16 100H184C184 53.6 146.4 16 100 16Z"/>
|
|
|
|
<!-- Bottom Half (Blue) -->
|
|
<path class="eye-bottom" d="M16 100C16 146.4 53.6 184 100 184C146.4 184 184 146.4 184 100H16Z"/>
|
|
</g>
|
|
|
|
<!-- Pupil Group -->
|
|
<g class="pupil-group">
|
|
<circle class="pupil" cx="100" cy="100" r="28"/>
|
|
<circle class="pupil-highlight" cx="88" cy="88" r="8"/>
|
|
<circle class="pupil-highlight-2" cx="108" cy="95" r="4"/>
|
|
</g>
|
|
</svg>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Hero Content -->
|
|
<div class="hero-content">
|
|
<h1 class="hero-title">
|
|
<span class="word">Motion</span>
|
|
<span class="word gradient">System</span>
|
|
</h1>
|
|
<p class="hero-subtitle">Fluid, purposeful animation crafted with golden ratio proportions.</p>
|
|
</div>
|
|
|
|
<!-- Scroll Indicator -->
|
|
<div class="scroll-indicator">
|
|
<span>Scroll</span>
|
|
<div class="scroll-arrow"></div>
|
|
</div>
|
|
</section>
|
|
|
|
<!-- Emoji Marquee -->
|
|
<section class="emoji-section">
|
|
<div class="section-header">
|
|
<span class="section-label">Animated Icons</span>
|
|
<h2 class="section-title">Every Emoji Alive</h2>
|
|
</div>
|
|
|
|
<div class="emoji-marquee">
|
|
<div class="emoji-marquee-inner">
|
|
<div class="emoji-item emoji-spin">⚙️</div>
|
|
<div class="emoji-item emoji-bounce">🚀</div>
|
|
<div class="emoji-item emoji-pulse">💜</div>
|
|
<div class="emoji-item emoji-shake">🔔</div>
|
|
<div class="emoji-item emoji-float">👁️</div>
|
|
<div class="emoji-item emoji-flip">💎</div>
|
|
<div class="emoji-item emoji-swing">🎯</div>
|
|
<div class="emoji-item emoji-wobble">🔥</div>
|
|
<div class="emoji-item emoji-zoom">⚡</div>
|
|
<div class="emoji-item emoji-wave">✨</div>
|
|
<div class="emoji-item emoji-spin">🌐</div>
|
|
<div class="emoji-item emoji-bounce">🎨</div>
|
|
<div class="emoji-item emoji-pulse">💫</div>
|
|
<div class="emoji-item emoji-shake">🌊</div>
|
|
<div class="emoji-item emoji-float">🔮</div>
|
|
</div>
|
|
<div class="emoji-marquee-inner">
|
|
<div class="emoji-item emoji-spin">⚙️</div>
|
|
<div class="emoji-item emoji-bounce">🚀</div>
|
|
<div class="emoji-item emoji-pulse">💜</div>
|
|
<div class="emoji-item emoji-shake">🔔</div>
|
|
<div class="emoji-item emoji-float">👁️</div>
|
|
<div class="emoji-item emoji-flip">💎</div>
|
|
<div class="emoji-item emoji-swing">🎯</div>
|
|
<div class="emoji-item emoji-wobble">🔥</div>
|
|
<div class="emoji-item emoji-zoom">⚡</div>
|
|
<div class="emoji-item emoji-wave">✨</div>
|
|
<div class="emoji-item emoji-spin">🌐</div>
|
|
<div class="emoji-item emoji-bounce">🎨</div>
|
|
<div class="emoji-item emoji-pulse">💫</div>
|
|
<div class="emoji-item emoji-shake">🌊</div>
|
|
<div class="emoji-item emoji-float">🔮</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<!-- Loaders -->
|
|
<section class="loaders-section">
|
|
<div class="section-header">
|
|
<span class="section-label">Loading States</span>
|
|
<h2 class="section-title">12 Loader Animations</h2>
|
|
<p class="section-desc">Captivating loading states that make waiting enjoyable.</p>
|
|
</div>
|
|
|
|
<div class="loaders-grid">
|
|
<div class="loader-card">
|
|
<div class="loader-orbit"></div>
|
|
<span class="loader-name">Orbit</span>
|
|
</div>
|
|
<div class="loader-card">
|
|
<div class="loader-dna">
|
|
<span></span><span></span><span></span><span></span><span></span>
|
|
</div>
|
|
<span class="loader-name">DNA</span>
|
|
</div>
|
|
<div class="loader-card">
|
|
<div class="loader-ripple">
|
|
<span></span><span></span><span></span>
|
|
</div>
|
|
<span class="loader-name">Ripple</span>
|
|
</div>
|
|
<div class="loader-card">
|
|
<div class="loader-bars">
|
|
<span></span><span></span><span></span><span></span><span></span>
|
|
</div>
|
|
<span class="loader-name">Bars</span>
|
|
</div>
|
|
<div class="loader-card">
|
|
<div class="loader-morph"></div>
|
|
<span class="loader-name">Morph</span>
|
|
</div>
|
|
<div class="loader-card">
|
|
<div class="loader-infinity"></div>
|
|
<span class="loader-name">Infinity</span>
|
|
</div>
|
|
<div class="loader-card">
|
|
<div class="loader-cube-container">
|
|
<div class="loader-cube">
|
|
<div></div><div></div><div></div><div></div><div></div><div></div>
|
|
</div>
|
|
</div>
|
|
<span class="loader-name">Cube</span>
|
|
</div>
|
|
<div class="loader-card">
|
|
<div class="loader-pulse-ring">
|
|
<span></span><span></span>
|
|
</div>
|
|
<span class="loader-name">Pulse</span>
|
|
</div>
|
|
<div class="loader-card">
|
|
<div class="loader-dots-circle">
|
|
<span></span><span></span><span></span><span></span>
|
|
<span></span><span></span><span></span><span></span>
|
|
</div>
|
|
<span class="loader-name">Circle</span>
|
|
</div>
|
|
<div class="loader-card">
|
|
<div class="loader-wave">
|
|
<span></span><span></span><span></span><span></span><span></span><span></span><span></span>
|
|
</div>
|
|
<span class="loader-name">Wave</span>
|
|
</div>
|
|
<div class="loader-card">
|
|
<div class="loader-spinner-gradient"></div>
|
|
<span class="loader-name">Gradient</span>
|
|
</div>
|
|
<div class="loader-card">
|
|
<div class="loader-bounce-dots">
|
|
<span></span><span></span><span></span>
|
|
</div>
|
|
<span class="loader-name">Bounce</span>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<!-- Text Animations -->
|
|
<section class="text-section">
|
|
<div class="section-header" style="text-align: center; max-width: 100%;">
|
|
<span class="section-label">Typography</span>
|
|
<h2 class="section-title">Kinetic Text</h2>
|
|
</div>
|
|
|
|
<div class="text-demos">
|
|
<div class="text-demo">
|
|
<div class="text-label">Gradient Flow</div>
|
|
<div class="text-gradient-flow">BlackRoad</div>
|
|
</div>
|
|
|
|
<div class="text-demo">
|
|
<div class="text-label">3D Wave</div>
|
|
<div class="text-wave-3d">
|
|
<span>M</span><span>O</span><span>T</span><span>I</span><span>O</span><span>N</span><span> </span><span>O</span><span>S</span>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="text-demo">
|
|
<div class="text-label">Glitch</div>
|
|
<div class="text-glitch" data-text="SYSTEM">SYSTEM</div>
|
|
</div>
|
|
|
|
<div class="text-demo">
|
|
<div class="text-label">Typewriter</div>
|
|
<div class="text-typewriter">console.log("Hello");</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<!-- Morphing Shapes -->
|
|
<section class="morph-section">
|
|
<div class="section-header" style="text-align: center; max-width: 100%;">
|
|
<span class="section-label">Organic</span>
|
|
<h2 class="section-title">Shape Morphing</h2>
|
|
</div>
|
|
|
|
<div class="morph-container">
|
|
<div class="morph-item">
|
|
<div class="morph-blob"></div>
|
|
</div>
|
|
<div class="morph-item">
|
|
<div class="morph-ring"></div>
|
|
</div>
|
|
<div class="morph-item">
|
|
<div class="morph-square"></div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<!-- Hover Cards -->
|
|
<section class="hover-section">
|
|
<div class="section-header">
|
|
<span class="section-label">Interactions</span>
|
|
<h2 class="section-title">Hover Effects</h2>
|
|
<p class="section-desc">Micro-interactions with dimensional feedback.</p>
|
|
</div>
|
|
|
|
<div class="hover-grid">
|
|
<div class="hover-card hover-lift"><span>Lift</span></div>
|
|
<div class="hover-card hover-tilt"><span>Tilt</span></div>
|
|
<div class="hover-card hover-glow"><span>Glow</span></div>
|
|
<div class="hover-card hover-scale"><span>Scale</span></div>
|
|
<div class="hover-card hover-shine"><span>Shine</span></div>
|
|
<div class="hover-card hover-gradient"><span>Gradient</span></div>
|
|
<div class="hover-card hover-flip"><span>Flip</span></div>
|
|
<div class="hover-card hover-depth"><span>Depth</span></div>
|
|
</div>
|
|
</section>
|
|
|
|
<!-- Footer -->
|
|
<footer>
|
|
<div class="footer-logo">
|
|
<svg viewBox="0 0 100 100" fill="none">
|
|
<circle cx="50" cy="50" r="44" stroke="#FF1D6C" stroke-width="6"/>
|
|
<g class="road-dashes" style="transform-origin: 50px 50px;">
|
|
<rect x="47" y="4" width="6" height="12" fill="#000" rx="2"/>
|
|
<rect x="47" y="84" width="6" height="12" fill="#000" rx="2"/>
|
|
<rect x="84" y="47" width="12" height="6" fill="#000" rx="2"/>
|
|
<rect x="4" y="47" width="12" height="6" fill="#000" rx="2"/>
|
|
<rect x="75" y="18" width="6" height="10" fill="#000" rx="2" transform="rotate(45 78 23)"/>
|
|
<rect x="19" y="72" width="6" height="10" fill="#000" rx="2" transform="rotate(45 22 77)"/>
|
|
<rect x="72" y="72" width="6" height="10" fill="#000" rx="2" transform="rotate(-45 75 77)"/>
|
|
<rect x="22" y="18" width="6" height="10" fill="#000" rx="2" transform="rotate(-45 25 23)"/>
|
|
</g>
|
|
<path d="M50 10C27.9 10 10 27.9 10 50H90C90 27.9 72.1 10 50 10Z" fill="#F5A623"/>
|
|
<path d="M10 50C10 72.1 27.9 90 50 90C72.1 90 90 72.1 90 50H10Z" fill="#2979FF"/>
|
|
<circle cx="50" cy="50" r="14" fill="#000"/>
|
|
</svg>
|
|
</div>
|
|
<p>BlackRoad OS · Motion with intention</p>
|
|
</footer>
|
|
|
|
<script>
|
|
// Scroll Progress
|
|
window.addEventListener('scroll', () => {
|
|
const progress = document.getElementById('scrollProgress');
|
|
const scrollTop = document.documentElement.scrollTop;
|
|
const scrollHeight = document.documentElement.scrollHeight - document.documentElement.clientHeight;
|
|
progress.style.width = (scrollTop / scrollHeight) * 100 + '%';
|
|
});
|
|
|
|
// 3D Tilt on Hover Cards
|
|
document.querySelectorAll('.hover-tilt').forEach(card => {
|
|
card.addEventListener('mousemove', e => {
|
|
const rect = card.getBoundingClientRect();
|
|
const x = e.clientX - rect.left;
|
|
const y = e.clientY - rect.top;
|
|
const centerX = rect.width / 2;
|
|
const centerY = rect.height / 2;
|
|
const rotateX = (y - centerY) / 8;
|
|
const rotateY = (centerX - x) / 8;
|
|
card.style.transform = `rotateX(${rotateX}deg) rotateY(${rotateY}deg) translateZ(30px)`;
|
|
});
|
|
|
|
card.addEventListener('mouseleave', () => {
|
|
card.style.transform = '';
|
|
});
|
|
});
|
|
</script>
|
|
|
|
</body>
|
|
</html>
|