*, *::before, *::after {
margin: 0;
padding: 0;
box-sizing: border-box;
}
:root {
--blue: #1a6dff;
--blue-dark: #1456cc;
--blue-light: #4d8eff;
--teal: #00d4aa;
--teal-dark: #00b894;
--white: #ffffff;
--gray-50: #f8fafc;
--gray-100: #f1f5f9;
--gray-200: #e2e8f0;
--gray-400: #94a3b8;
--gray-500: #64748b;
--gray-700: #334155;
--gray-900: #0f172a;
}
html {
scroll-behavior: smooth;
-webkit-text-size-adjust: 100%;
}
body {
font-family: 'DM Sans', sans-serif;
background: var(--white);
color: var(--gray-900);
min-height: 100dvh;
display: flex;
flex-direction: column;
align-items: center;
overflow-x: hidden;
position: relative;
}
/* === BACKGROUND ATMOSPHERE === */
body::before {
content: '';
position: fixed;
top: -30%;
left: -20%;
width: 70%;
height: 70%;
background: radial-gradient(ellipse, rgba(26, 109, 255, 0.06) 0%, transparent 70%);
pointer-events: none;
z-index: 0;
}
body::after {
content: '';
position: fixed;
bottom: -20%;
right: -20%;
width: 60%;
height: 60%;
background: radial-gradient(ellipse, rgba(0, 212, 170, 0.05) 0%, transparent 70%);
pointer-events: none;
z-index: 0;
}
/* === GRAIN OVERLAY === */
.grain {
position: fixed;
inset: 0;
background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
pointer-events: none;
z-index: 1;
opacity: 0.35;
}
/* === FLOATING DOTS === */
.dot {
position: fixed;
border-radius: 50%;
pointer-events: none;
z-index: 1;
animation: float 8s ease-in-out infinite;
}
.dot-1 {
width: 6px; height: 6px;
background: var(--teal);
opacity: 0.35;
top: 15%; left: 10%;
animation-delay: 0s;
}
.dot-2 {
width: 4px; height: 4px;
background: var(--blue-light);
opacity: 0.25;
top: 30%; right: 12%;
animation-delay: -3s;
}
.dot-3 {
width: 8px; height: 8px;
background: var(--teal);
opacity: 0.18;
bottom: 25%; left: 15%;
animation-delay: -5s;
}
@keyframes float {
0%, 100% { transform: translateY(0px); }
50% { transform: translateY(-20px); }
}
/* === MAIN CONTAINER === */
.container {
position: relative;
z-index: 2;
width: 100%;
max-width: 480px;
padding: 3rem 1.5rem 2rem;
display: flex;
flex-direction: column;
align-items: center;
min-height: 100dvh;
}
/* === LOGO === */
.logo-wrap {
width: 96px;
height: 96px;
border-radius: 24px;
background: linear-gradient(135deg, var(--blue) 0%, var(--teal) 100%);
display: flex;
align-items: center;
justify-content: center;
box-shadow:
0 4px 16px rgba(26, 109, 255, 0.2),
0 12px 40px rgba(26, 109, 255, 0.12),
0 0 0 1px rgba(26, 109, 255, 0.06);
margin-bottom: 1.75rem;
position: relative;
animation: logoIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.logo-wrap::before {
content: '';
position: absolute;
inset: -2px;
border-radius: 26px;
background: linear-gradient(135deg, var(--blue-light), var(--teal));
z-index: -1;
opacity: 0.2;
filter: blur(12px);
}
.logo-icon {
font-size: 2.6rem;
line-height: 1;
}
@keyframes logoIn {
from { opacity: 0; transform: scale(0.7) translateY(20px); }
to { opacity: 1; transform: scale(1) translateY(0); }
}
/* === APP NAME === */
.app-name {
font-family: 'Outfit', sans-serif;
font-weight: 800;
font-size: 2rem;
letter-spacing: -0.02em;
background: linear-gradient(135deg, var(--gray-900) 30%, var(--blue) 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
margin-bottom: 0.5rem;
animation: fadeUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.15s both;
}
/* === TAGLINE === */
.tagline {
font-size: 1.05rem;
color: var(--gray-500);
font-weight: 400;
text-align: center;
line-height: 1.5;
max-width: 320px;
margin-bottom: 2.25rem;
animation: fadeUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.25s both;
}
@keyframes fadeUp {
from { opacity: 0; transform: translateY(16px); }
to { opacity: 1; transform: translateY(0); }
}
/* === CTA BUTTON === */
.cta-wrap {
position: relative;
animation: fadeUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.4s both;
}
/* Pulsing ring behind button */
.cta-wrap::before {
content: '';
position: absolute;
inset: -4px;
border-radius: 20px;
background: linear-gradient(135deg, var(--teal), var(--teal-dark));
opacity: 0;
z-index: -1;
animation: ringPulse 2.5s ease-in-out infinite 1.5s;
}
@keyframes ringPulse {
0%, 100% { opacity: 0; transform: scale(1); }
50% { opacity: 0.25; transform: scale(1.04); }
}
.cta-btn {
display: inline-flex;
align-items: center;
gap: 0.75rem;
padding: 1rem 2rem;
background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
color: var(--white);
font-family: 'DM Sans', sans-serif;
font-size: 1.05rem;
font-weight: 700;
border: none;
border-radius: 16px;
cursor: pointer;
text-decoration: none;
transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
box-shadow:
0 2px 8px rgba(0, 184, 148, 0.2),
0 8px 24px rgba(0, 184, 148, 0.18);
position: relative;
overflow: hidden;
animation: gentleBounce 3s ease-in-out infinite 2s;
}
@keyframes gentleBounce {
0%, 100% { transform: translateY(0); }
15% { transform: translateY(-4px); }
30% { transform: translateY(0); }
}
.cta-btn::before {
content: '';
position: absolute;
inset: 0;
background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 50%);
opacity: 0;
transition: opacity 0.3s;
}
/* Shimmer sweep */
.cta-btn::after {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 50%;
height: 100%;
background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
animation: shimmer 3.5s ease-in-out infinite 2s;
}
@keyframes shimmer {
0%, 100% { left: -100%; }
40% { left: 150%; }
}
.cta-btn:hover, .cta-btn:focus-visible {
transform: translateY(-3px) scale(1.03);
box-shadow:
0 4px 12px rgba(0, 184, 148, 0.25),
0 16px 40px rgba(0, 184, 148, 0.28);
animation: none;
}
.cta-btn:hover::before {
opacity: 1;
}
.cta-btn:active {
transform: translateY(0) scale(0.98);
transition-duration: 0.1s;
}
.cta-btn:focus-visible {
outline: 3px solid var(--teal);
outline-offset: 3px;
}
.play-icon {
width: 28px;
height: 28px;
flex-shrink: 0;
}
/* Bouncing arrow below button */
.cta-hint {
display: flex;
flex-direction: column;
align-items: center;
gap: 0.4rem;
margin-top: 0.75rem;
animation: fadeUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.5s both;
}
.cta-hint-text {
font-size: 0.75rem;
font-weight: 600;
color: var(--gray-400);
letter-spacing: 0.02em;
}
.cta-hint-arrow {
width: 18px;
height: 18px;
color: var(--teal);
animation: bounceArrow 1.5s ease-in-out infinite;
}
@keyframes bounceArrow {
0%, 100% { transform: translateY(0); opacity: 1; }
50% { transform: translateY(6px); opacity: 0.5; }
}
/* === FEATURES === */
.features {
margin-top: 2.5rem;
width: 100%;
max-width: 340px;
display: flex;
flex-direction: column;
gap: 0;
animation: fadeUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.55s both;
}
.feature {
display: flex;
align-items: center;
gap: 1rem;
padding: 1rem 0;
border-bottom: 1px solid var(--gray-200);
}
.feature:last-child {
border-bottom: none;
}
.feature-icon {
width: 40px;
height: 40px;
border-radius: 12px;
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
font-size: 1.15rem;
}
.feature-icon.govt {
background: rgba(26, 109, 255, 0.08);
}
.feature-icon.private {
background: rgba(0, 212, 170, 0.08);
}
.feature-icon.notify {
background: rgba(255, 193, 7, 0.08);
}
.feature-text {
font-size: 0.95rem;
font-weight: 500;
color: var(--gray-500);
letter-spacing: 0.01em;
}
/* === TRUST BADGE === */
.trust {
margin-top: 2rem;
display: flex;
align-items: center;
gap: 0.5rem;
padding: 0.6rem 1.2rem;
border-radius: 100px;
background: var(--gray-50);
border: 1px solid var(--gray-200);
animation: fadeUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.65s both;
}
.trust-dot {
width: 8px;
height: 8px;
border-radius: 50%;
background: var(--teal);
animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(0, 212, 170, 0.4); }
50% { opacity: 0.7; box-shadow: 0 0 0 6px rgba(0, 212, 170, 0); }
}
.trust-text {
font-size: 0.8rem;
color: var(--gray-500);
font-weight: 500;
}
/* === FOOTER === */
footer {
margin-top: auto;
padding-top: 3rem;
padding-bottom: 1.5rem;
text-align: center;
animation: fadeUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.75s both;
}
footer p {
font-size: 0.8rem;
color: var(--gray-400);
letter-spacing: 0.02em;
}
/* === DESKTOP === */
@media (min-width: 640px) {
.container {
padding: 4rem 2rem 2.5rem;
justify-content: center;
}
.logo-wrap {
width: 112px;
height: 112px;
border-radius: 28px;
}
.logo-icon { font-size: 3rem; }
.app-name { font-size: 2.5rem; }
.tagline { font-size: 1.15rem; }
.cta-btn {
padding: 1.1rem 2.5rem;
font-size: 1.1rem;
border-radius: 18px;
}
}
/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
*, *::before, *::after {
animation-duration: 0.01ms !important;
transition-duration: 0.01ms !important;
}
}
💼
Youth Naukri
Latest Govt & Private Jobs for Youth
Free on Google Play