Spaces:
Running
Running
File size: 2,151 Bytes
cdcf600 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 | .landing-container {
width: 100vw;
height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
position: relative;
overflow: hidden;
background: var(--bg-0);
z-index: 1;
}
.neural-background {
position: absolute;
inset: 0;
z-index: -1;
background: radial-gradient(circle at 50% 50%, #0a0a1a 0%, #05050a 100%);
}
.neural-particles {
position: absolute;
inset: 0;
background-image: radial-gradient(circle at 2px 2px, rgba(77, 159, 255, 0.1) 1px, transparent 0);
background-size: 40px 40px;
animation: drift 60s linear infinite;
}
@keyframes drift {
from { transform: translateY(0); }
to { transform: translateY(-1000px); }
}
.hero-section {
text-align: center;
max-width: 800px;
z-index: 2;
margin-bottom: 80px;
}
.hero-title {
font-size: 8rem;
font-weight: 900;
letter-spacing: 0.2em;
background: linear-gradient(to bottom, #fff 0%, #4d9fff 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
margin-bottom: 8px;
filter: drop-shadow(0 0 30px rgba(77, 159, 255, 0.3));
}
.hero-subtitle {
font-family: var(--font-display);
font-size: 1.5rem;
color: var(--text-1);
letter-spacing: 0.1em;
margin-bottom: 12px;
}
.hero-description {
color: var(--text-2);
font-size: 1.1rem;
margin-bottom: 40px;
}
.hero-actions {
display: flex;
gap: 20px;
justify-content: center;
}
.btn-large {
padding: 16px 32px;
font-size: 1.1rem;
border-radius: var(--radius-md);
}
.features-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 30px;
width: 100%;
max-width: 1200px;
padding: 0 40px;
z-index: 2;
}
.feature-card {
padding: 40px;
text-align: center;
display: flex;
flex-direction: column;
align-items: center;
gap: 16px;
}
.feature-icon {
font-size: 3rem;
margin-bottom: 8px;
}
.feature-card h3 {
font-family: var(--font-display);
font-size: 1.4rem;
color: var(--text-0);
}
.feature-card p {
color: var(--text-2);
line-height: 1.6;
}
.landing-footer {
position: absolute;
bottom: 40px;
width: 100%;
text-align: center;
opacity: 0.6;
}
|