new design
Recommender Build and Deploy (internal) / Build Recommender Image (push) Successful in 3m22s
Recommender Build and Deploy (internal) / Deploy Recommender (internal) (push) Successful in 48s

This commit is contained in:
2026-04-18 21:19:24 -03:00
parent 6e9cfc5d30
commit c319dea2bf
9 changed files with 504 additions and 153 deletions
+61 -27
View File
@@ -5,22 +5,30 @@
height: 100vh;
position: relative;
overflow: hidden;
isolation: isolate;
}
.landing-bg {
position: absolute;
inset: -6px;
/* overflow slightly to hide blur edges */
inset: -10px;
background: url('/wallpaper.png') center / cover no-repeat;
filter: blur(3px) brightness(0.35);
filter: blur(5px) brightness(0.28) saturate(0.85);
z-index: 0;
}
.landing-layout::after {
content: '';
position: absolute;
inset: 0;
background:
linear-gradient(90deg, rgba(10, 8, 15, 0.34) 0%, rgba(10, 8, 15, 0.08) 32%, rgba(10, 8, 15, 0.28) 100%);
z-index: 0;
pointer-events: none;
}
.landing-layout .sidebar {
position: relative;
z-index: 1;
background: rgba(26, 29, 39, 0.85);
backdrop-filter: blur(8px);
}
.landing-main {
@@ -33,41 +41,67 @@
text-align: center;
position: relative;
z-index: 1;
padding: 40px;
padding: var(--sp-10);
}
.landing-title {
font-size: 5rem;
font-weight: 800;
color: #fff;
letter-spacing: -2px;
font-size: clamp(3.8rem, 9vw, 5.6rem);
font-weight: 300;
color: var(--text);
letter-spacing: -0.03em;
line-height: 1;
text-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
}
.landing-tagline {
font-size: 1.4rem;
color: rgba(255, 255, 255, 0.6);
max-width: 620px;
font-size: clamp(1rem, 2vw, 1.3rem);
color: rgba(245, 240, 232, 0.7);
font-weight: 400;
line-height: 1.7;
}
.btn-gradient {
padding: 16px 42px;
font-size: 1.20rem;
font-weight: 700;
color: rgba(255, 255, 255, 0.9);
border: 1px solid rgba(255, 255, 255, 0.1);
border-radius: 12px;
padding: 14px 30px;
font-size: 1rem;
font-weight: 600;
color: #1a141f;
border: 1px solid rgba(255, 244, 232, 0.14);
border-radius: var(--radius);
cursor: pointer;
background: linear-gradient(135deg, rgba(113, 88, 226, 0.8), rgba(61, 59, 243, 0.8));
backdrop-filter: blur(6px);
box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2), inset 0 1px 1px rgba(255, 255, 255, 0.1);
transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
letter-spacing: 0.02em;
background:
linear-gradient(180deg, rgba(255, 255, 255, 0.12), transparent 100%),
linear-gradient(135deg, rgba(232, 168, 124, 0.96), rgba(214, 149, 106, 0.94));
backdrop-filter: blur(10px);
box-shadow:
0 10px 30px rgba(232, 168, 124, 0.22),
inset 0 1px 0 rgba(255, 255, 255, 0.22);
transition:
transform 0.2s ease,
box-shadow 0.2s ease,
background 0.2s ease;
letter-spacing: -0.01em;
}
.btn-gradient:hover {
transform: translateY(-2px);
color: #fff;
background: linear-gradient(135deg, rgba(113, 88, 226, 0.95), rgba(41, 121, 255, 0.95));
box-shadow: 0 8px 24px rgba(113, 88, 226, 0.3), inset 0 1px 2px rgba(255, 255, 255, 0.2);
}
box-shadow:
0 16px 38px rgba(232, 168, 124, 0.28),
inset 0 1px 0 rgba(255, 255, 255, 0.24);
background:
linear-gradient(180deg, rgba(255, 255, 255, 0.14), transparent 100%),
linear-gradient(135deg, rgba(232, 168, 124, 1), rgba(214, 149, 106, 0.98));
}
@media (max-width: 720px) {
.landing-layout {
flex-direction: column;
min-height: 100vh;
height: auto;
}
.landing-main {
min-height: 55vh;
padding: var(--sp-8) var(--sp-5);
}
}