:root {
--bg: #f6f6fb;
--bg2: #f0eff6;
--bg3: #e9e7f2;
--surface: #ffffff;
--border: rgba(111, 44, 143, 0.10);
--border2: rgba(111, 44, 143, 0.18); --purple: #6F2C8F;
--purple-dark: #5B2C83;
--blue: #1E73BE;
--green: #39B54A;
--orange: #F36C21; --text: #1c1c28;
--text2: #5c5c6b;
--text3: #8a8a8a; --grad: linear-gradient(135deg, #1E73BE 0%, #6F2C8F 100%);
--grad2: linear-gradient(135deg, #6F2C8F 0%, #5B2C83 100%); --glow: 0 4px 32px rgba(30, 115, 190, 0.18);
--glow2: 0 4px 32px rgba(111, 44, 143, 0.18); --r: 16px;
--r2: 12px;
}
*,
*::before,
*::after {
box-sizing: border-box;
margin: 0;
padding: 0;
}
html {
scroll-behavior: smooth;
}
body {
font-family: 'Poppins', sans-serif;
background: var(--bg);
color: var(--text);
line-height: 1.65;
overflow-x: hidden;
}
h1,
h2,
h3,
h4,
.brand {
font-family: 'Poppins', sans-serif;
}
.container {
padding: 0px 8vw;
} nav {
position: fixed;
top: 0;
left: 0;
right: 0;
z-index: 100;
display: flex;
align-items: center;
justify-content: space-between;
padding: 0 5vw;
height: 68px;
background: rgba(245, 247, 255, 0.92);
backdrop-filter: blur(18px);
border-bottom: 1px solid rgba(61, 90, 241, 0.12);
}
.brand {
font-size: 1.05rem;
font-weight: 800;
letter-spacing: -0.02em;
background: var(--grad);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
.nav-links {
display: flex;
gap: 2rem;
list-style: none;
}
.nav-links a {
color: var(--text2);
text-decoration: none;
font-size: 0.88rem;
font-weight: 400;
transition: color 0.2s;
}
.nav-links a:hover {
color: var(--text);
}
.nav-cta {
background: var(--grad);
color: #fff;
border: none;
border-radius: 8px;
padding: 9px 20px;
font-weight: 700;
font-size: 0.82rem;
cursor: pointer;
letter-spacing: 0.01em;
transition: opacity 0.2s, transform 0.15s;
}
.nav-cta:hover {
opacity: 0.88;
transform: translateY(-1px);
}
.hamburger {
display: none;
flex-direction: column;
gap: 5px;
cursor: pointer;
}
.hamburger span {
width: 24px;
height: 2px;
background: var(--text);
border-radius: 2px;
display: block;
} .hero {
min-height: 100vh;
display: grid;
grid-template-columns: 1fr 1fr;
align-items: center;
gap: 4rem;
padding: 120px 8vw 80px;
position: relative;
overflow: hidden;
}
.hero::before {
content: '';
position: absolute;
inset: 0;
background: radial-gradient(ellipse 60% 70% at 70% 40%, rgba(79, 110, 247, 0.12) 0%, transparent 65%),
radial-gradient(ellipse 40% 50% at 20% 80%, rgba(168, 85, 247, 0.08) 0%, transparent 60%);
pointer-events: none;
}
.hero-grid-bg {
position: absolute;
inset: 0;
pointer-events: none;
background-image:
linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
background-size: 60px 60px;
mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 75%);
}
.hero-left {
position: relative;
z-index: 2;
}
.hero-badge {
display: inline-flex;
align-items: center;
justify-content: center;
gap: 5px;
background: rgba(79, 110, 247, 0.12);
border: 1px solid rgba(79, 110, 247, 0.3);
border-radius: 100px;
padding: 5px 14px;
font-size: 0.75rem;
color: var(--accent);
font-weight: 500;
margin-bottom: 1.5rem;
animation: fadeUp 0.6s ease both;
}
.hero-badge-dot {
width: 5px;
height: 5px;
background: #276ab8;
border-radius: 50%;
animation: pulse 2s infinite;
}
@keyframes pulse {
0%,
100% {
opacity: 1;
transform: scale(1);
}
50% {
opacity: 0.5;
transform: scale(1.3);
}
}
.hero h1 {
font-size: clamp(2.4rem, 4.5vw, 3.8rem);
font-weight: 600;
line-height: 1.1;
letter-spacing: -0.04em;
margin-bottom: 1.25rem;
animation: fadeUp 0.6s 0.1s ease both;
}
.hero h1 em {
font-style: normal;
background: var(--grad);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
.hero-sub {
font-size: 1.05rem;
color: var(--text2);
font-weight: 300;
max-width: 480px;
margin-bottom: 2.2rem;
animation: fadeUp 0.6s 0.2s ease both;
}
.hero-actions {
display: flex;
gap: 1rem;
align-items: center;
flex-wrap: wrap;
animation: fadeUp 0.6s 0.3s ease both;
}
.btn-primary {
display: inline-flex;
align-items: center;
gap: 10px;
background: var(--grad);
color: #fff;
border: none;
border-radius: 10px;
padding: 14px 28px;
font-weight: 700;
font-size: 0.95rem;
cursor: pointer;
text-decoration: none;
box-shadow: 0 8px 32px rgba(79, 110, 247, 0.35);
transition: transform 0.2s, box-shadow 0.2s;
letter-spacing: -0.01em;
}
.btn-primary:hover {
transform: translateY(-2px);
box-shadow: 0 12px 40px rgba(79, 110, 247, 0.5);
}
.btn-primary svg {
transition: transform 0.2s;
}
.btn-primary:hover svg {
transform: translateX(3px);
}
.btn-ghost {
display: inline-flex;
align-items: center;
gap: 8px;
color: #6a3192;
border: 1px solid #6a3192;
border-radius: 10px;
padding: 14px 24px;
font-weight: 600;
font-size: 0.92rem;
cursor: pointer;
text-decoration: none;
background: transparent;
transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.btn-ghost:hover {
color: #2d67b6;
border-color: #2d67b6;
background: rgba(255, 255, 255, 0.04);
}
.hero-stat-row {
display: flex;
gap: 2.5rem;
margin-top: 2.5rem;
animation: fadeUp 0.6s 0.4s ease both;
}
.hero-stat {}
.hero-stat strong {
display: block;
font-size: 1.5rem;
font-weight: 800;
letter-spacing: -0.03em;
background: var(--grad);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
.hero-stat span {
font-size: 0.78rem;
color: var(--text3);
font-weight: 400;
}  .mock-profile-header.tw {
width: 100%;
background: #000;
color: #e7e9ea;
border-radius: 12px;
overflow: hidden;
font-family: -apple-system, BlinkMacSystemFont, sans-serif;
border: 1px solid #2f3336;
} .tw-banner {
height: 34px;
background: #1d9bf0;
border-radius: 6px;
} .tw-profile-row {
display: flex;
justify-content: space-between;
align-items: center;
padding: 0 10px;
margin-top: -22px;
}
.tw-avatar {
width: 40px;
height: 40px;
border-radius: 50%;
background: #1d9bf0;
border: 3px solid #ffffff;
display: flex;
align-items: center;
justify-content: center;
font-size: 16px;
} .tw-follow {
background: #eff3f4;
color: #000;
border: none;
border-radius: 999px;
font-size: 10px;
font-weight: 700;
padding: 4px 10px;
cursor: pointer;
} .tw-info {
padding: 6px 10px 0;
}
.tw-name {
font-size: 12px;
font-weight: 700;
}
.tw-handle {
font-size: 10px;
color: #71767b;
} .tw-bio {
font-size: 10px;
padding: 6px 10px;
line-height: 1.4;
} .tw-stats {
font-size: 10px;
color: #71767b;
padding: 0 10px 6px;
} .tw-tweet {
border-top: 1px solid #2f3336;
padding: 8px 10px;
}
.tw-tweet p {
font-size: 10px;
line-height: 1.4;
margin-bottom: 6px;
}
.tw-meta {
font-size: 9px;
color: #71767b;
display: flex;
gap: 10px;
}
.mock-profile-header.rd {
background: #fff;
border-radius: 10px;
padding: 10px;
font-family: sans-serif;
}
.rd-cover {
height: 34px;
background: linear-gradient(90deg, #ff6534, #ff4500);
border-radius: 6px;
margin-bottom: 18px;
position: relative;
}
.rd-avatar {
width: 38px;
height: 38px;
border-radius: 50%;
background: #ff4500;
border: 3px solid #fff;
position: absolute;
left: 8px;
bottom: -16px;
display: flex;
align-items: center;
justify-content: center;
}
.mock-profile-header.rd .mock-name {
font-size: 11px;
font-weight: 700;
color: #1c1c1c;
margin: 20px 0 2px 2px;
}
.mock-profile-header.rd .mock-title {
font-size: 9px;
color: #878a8c;
margin-bottom: 8px;
}
.rd-post {
display: flex;
gap: 6px;
margin-top: 6px;
}
.rd-vote {
font-size: 7px;
color: #ff4500;
font-weight: 800;
text-align: center;
min-width: 20px;
}
.rd-vote span {
display: block;
}
.rd-content strong {
font-size: 8px;
display: block;
margin-bottom: 2px;
}
.slide-page {
padding: 16px !important;
}
.rd-content p {
font-size: 7px;
color: #878a8c;
} #hero-slider {
padding: 148px 0 96px;
background: radial-gradient(ellipse 80% 60% at 60% 0%, rgba(108, 52, 131, 0.07) 0%, transparent 70%),
radial-gradient(ellipse 60% 50% at 100% 50%, rgba(31, 119, 180, 0.06) 0%, transparent 70%),
white;
overflow: hidden;
position: relative;
}
#hero::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-image: radial-gradient(circle, rgba(108, 52, 131, 0.04) 1px, transparent 1px);
background-size: 40px 40px;
pointer-events: none;
}
.hero-inner {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 64px;
align-items: center;
}
.hero-badge {
display: inline-flex;
align-items: center;
gap: 8px;
background: var(--purple-ultra-light);
border: 1px solid rgba(108, 52, 131, 0.15);
padding: 6px 14px 6px 8px;
border-radius: 100px;
font-size: 12px;
font-weight: 600;
color: var(--purple);
margin-bottom: 24px;
}
.hero-badge-pill {
background: var(--grad-main);
color: white;
padding: 2px 10px;
border-radius: 100px;
font-size: 11px;
}
.hero-title {
margin-bottom: 24px;
font-size: 50px;
line-height: 1.1;
}
.hero-title em {
font-style: normal;
background: var(--grad);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
.hero-sub {
margin-bottom: 40px;
}
.hero-ctas {
display: flex;
gap: 14px;
flex-wrap: wrap;
align-items: center;
}
.hero-ctas .btn-ghost {
color: var(--text-muted);
}
.hero-trust {
margin-top: 36px;
display: flex;
align-items: center;
gap: 16px;
font-size: 13px;
color: var(--text-muted);
font-weight: 500;
}
.hero-trust-avatars {
display: flex;
}
.hero-trust-avatars span {
width: 28px;
height: 28px;
border-radius: 50%;
border: 2px solid white;
background: var(--grad-main);
margin-left: -8px;
display: inline-block;
font-size: 11px;
font-weight: 700;
color: white;
display: inline-flex;
align-items: center;
justify-content: center;
}
.hero-trust-avatars span:first-child {
margin-left: 0;
}
.stars {
color: var(--orange);
font-size: 12px;
letter-spacing: 1px;
} .browser-mockup {
background: #f0f0f5;
border-radius: 16px;
box-shadow: 0 32px 80px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(0, 0, 0, 0.06);
overflow: hidden;
animation: float 6s ease-in-out infinite;
}
@keyframes float {
0%,
100% {
transform: translateY(0px);
}
50% {
transform: translateY(-10px);
}
}
.browser-chrome {
background: #e8e8ed;
padding: 10px 14px;
display: flex;
align-items: center;
gap: 8px;
border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.browser-dots {
display: flex;
gap: 6px;
}
.browser-dots span {
width: 10px;
height: 10px;
border-radius: 50%;
}
.browser-dots span:nth-child(1) {
background: #ff5f57;
}
.browser-dots span:nth-child(2) {
background: #ffbd2e;
}
.browser-dots span:nth-child(3) {
background: #28c840;
}
.browser-url {
flex: 1;
background: white;
border-radius: 6px;
padding: 4px 12px;
font-size: 11px;
color: var(--text-muted);
font-family: monospace;
}
.browser-body {
display: flex;
height: 340px;
overflow: hidden;
}
.mock-linkedin {
flex: 1;
background: #f3f2ef;
padding: 16px;
overflow: hidden;
}
.mock-profile-header {
background: white;
border-radius: 10px;
padding: 14px;
margin-bottom: 10px;
box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}
.mock-cover {
height: 36px;
background: var(--grad-main);
border-radius: 6px;
}
.mock-avatar {
width: 44px;
height: 44px;
border-radius: 50%;
background: linear-gradient(135deg, #6c3483, #1f77b4);
border: 3px solid white;
margin-top: -22px;
display: flex;
align-items: center;
justify-content: center;
font-size: 16px;
}
.mock-name {
font-size: 12px;
font-weight: 700;
color: var(--dark);
margin: 6px 0 2px;
}
.mock-title {
font-size: 10px;
color: var(--text-muted);
}
.mock-section {
background: white;
border-radius: 8px;
padding: 10px 12px;
box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}
.mock-section-title {
font-size: 10px;
font-weight: 700;
color: var(--dark);
margin-bottom: 8px;
}
.mock-exp {
display: flex;
gap: 8px;
align-items: flex-start;
}
.mock-exp-icon {
width: 24px;
height: 24px;
border-radius: 4px;
background: var(--blue-ultra-light);
flex-shrink: 0;
}
.mock-exp-text p {
font-size: 9px;
color: var(--text-muted);
}
.mock-exp-text strong {
font-size: 10px;
font-weight: 600;
} .mock-sidebar {
width: 220px;
background: white;
border-left: 1px solid var(--border);
padding: 12px;
overflow: hidden;
position: relative;
}
.sidebar-header {
display: flex;
align-items: center;
gap: 8px;
margin-bottom: 12px;
}
.sidebar-logo-sm {
width: 22px;
height: 22px;
border-radius: 6px;
background: var(--grad-main);
display: flex;
align-items: center;
justify-content: center;
font-size: 10px;
font-weight: 800;
color: white;
}
.sidebar-title {
font-size: 11px;
font-weight: 700;
color: var(--dark);
}
.sidebar-subtitle {
font-size: 8px;
color: var(--text-muted);
}
.sidebar-section {
margin-bottom: 10px;
}
.sidebar-label {
font-size: 8px;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.06em;
color: var(--text-muted);
margin-bottom: 5px;
}
.trait-row {
display: flex;
align-items: center;
justify-content: space-between;
margin-bottom: 4px;
}
.trait-name {
font-size: 8px;
font-weight: 500;
color: var(--text);
}
.trait-bar-wrap {
flex: 1;
height: 4px;
background: var(--border);
border-radius: 2px;
margin: 0 6px;
}
.trait-bar {
height: 100%;
border-radius: 2px;
background: var(--grad);
}
.trait-score {
font-size: 8px;
font-weight: 700;
color: var(--purple);
}
.sidebar-email-box {
background: var(--purple-ultra-light);
border: 1px solid rgba(108, 52, 131, 0.12);
border-radius: 6px;
padding: 7px;
}
.email-subj {
font-size: 8px;
font-weight: 700;
color: var(--purple);
margin-bottom: 3px;
}
.email-body {
font-size: 7px;
color: var(--text-muted);
line-height: 1.5;
}
.sidebar-tags {
display: flex;
flex-wrap: wrap;
gap: 3px;
}
.sidebar-tag {
font-size: 7px;
font-weight: 600;
padding: 2px 6px;
border-radius: 100px;
background: var(--blue-ultra-light);
color: var(--blue);
}
.sidebar-tag.green {
background: rgba(39, 174, 96, 0.1);
color: var(--green);
}
.sidebar-tag.orange {
background: rgba(230, 126, 34, 0.1);
color: var(--orange);
}
.sidebar-btn-sm {
width: 100%;
padding: 6px;
border-radius: 6px;
background: var(--grad);
color: white;
font-size: 8px;
font-weight: 700;
text-align: center;
margin-top: 8px;
cursor: pointer;
box-shadow: 0 2px 8px rgba(108, 52, 131, 0.25);
}
.pulse-dot {
width: 6px;
height: 6px;
border-radius: 50%;
background: var(--green);
display: inline-block;
margin-left: 4px;
animation: pulse 2s infinite;
}
@keyframes pulse {
0%,
100% {
opacity: 1;
transform: scale(1);
}
50% {
opacity: 0.5;
transform: scale(0.8);
}
} .hero-right {
position: relative;
z-index: 2;
animation: fadeRight 0.8s 0.2s ease both;
}
.dashboard {
background: var(--surface);
border: 1px solid var(--border2);
border-radius: 20px;
overflow: hidden;
box-shadow: 0 24px 80px rgba(61, 90, 241, 0.12), var(--glow);
position: relative;
}
.dashboard::before {
content: '';
position: absolute;
inset: 0;
border-radius: 20px;
background: linear-gradient(135deg, rgba(79, 110, 247, 0.04) 0%, rgba(0, 196, 180, 0.04) 100%);
pointer-events: none;
}
.db-topbar {
background: #f0f1fa;
padding: 12px 16px;
display: flex;
align-items: center;
gap: 8px;
border-bottom: 1px solid var(--border);
}
.db-dot {
width: 10px;
height: 10px;
border-radius: 50%;
}
.db-dot:nth-child(1) {
background: #ff5f57;
}
.db-dot:nth-child(2) {
background: #ffbd2e;
}
.db-dot:nth-child(3) {
background: #28c840;
}
.db-title {
margin-left: auto;
margin-right: auto;
font-size: 0.72rem;
color: var(--text3);
}
.db-body {
padding: 20px;
display: flex;
flex-direction: column;
gap: 16px;
}
.profile-card {
display: flex;
align-items: center;
gap: 15px;
padding: 15px 18px;
background: #fff;
margin-bottom: 20px;
border-radius: 10px;
box-shadow: 0 5px 18px rgba(0, 0, 0, 0.08);
transition: all 0.3s ease;
}
.profile-card:hover {
transform: translateY(-4px);
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}
.profile-img {
width: 70px;
height: 70px;
border-radius: 50%;
object-fit: cover;
border: 3px solid #f3f3f3;
}
.person-data h4 {
margin: 0;
font-size: 18px;
color: #222;
font-weight: 600;
}
.person-data .email {
margin-top: 4px;
font-size: 14px;
color: #777;
}
.db-bars {
display: flex;
flex-direction: column;
gap: 9px;
}
.db-bar-row {
display: flex;
align-items: center;
gap: 10px;
}
.db-bar-label {
font-size: 0.72rem;
color: var(--text2);
min-width: 120px;
}
.db-bar-track {
flex: 1;
height: 6px;
background: rgba(255, 255, 255, 0.07);
border-radius: 99px;
overflow: hidden;
}
.db-bar-fill {
height: 100%;
border-radius: 99px;
background: var(--grad);
transition: width 1s cubic-bezier(.4, 0, .2, 1);
}
.db-bar-pct {
font-size: 0.68rem;
color: var(--text3);
min-width: 30px;
text-align: right;
font-weight: 700;
}
.db-suggestions {
background: rgba(79, 110, 247, 0.07);
border: 1px solid rgba(79, 110, 247, 0.2);
border-radius: var(--r2);
padding: 13px;
}
.db-sug-title {
font-size: 0.72rem;
color: var(--blue);
font-weight: 600;
margin-bottom: 8px;
letter-spacing: 0.05em;
text-transform: uppercase;
}
.db-sug-item {
display: flex;
align-items: flex-start;
gap: 8px;
font-size: 0.73rem;
color: var(--text2);
padding: 4px 0;
}
.db-sug-icon {
color: var(--teal);
flex-shrink: 0;
margin-top: 1px;
} .hero-slider-body {
position: relative;
height: 340px;
overflow: hidden;
}
.hero-slide {
display: flex;
width: 100%;
height: 100%;
position: absolute;
top: 0;
left: 0;
opacity: 0;
transform: translateX(32px);
transition: opacity 0.45s ease, transform 0.45s ease;
pointer-events: none;
}
.hero-slide.active {
opacity: 1;
transform: translateX(0);
pointer-events: auto;
}
.hero-slide.exit {
opacity: 0;
transform: translateX(-32px);
}
.hero-slider-controls {
display: flex;
align-items: center;
justify-content: center;
gap: 12px;
padding: 8px 0 10px;
background: #e8e8ed;
border-top: 1px solid rgba(0, 0, 0, 0.07);
}
.hero-arrow {
width: 28px;
height: 28px;
border-radius: 50%;
background: white;
border: 1.5px solid var(--border);
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
color: var(--text-muted);
transition: all 0.2s;
padding: 0;
}
.hero-arrow:hover {
background: var(--purple);
border-color: var(--purple);
color: white;
transform: scale(1.08);
}
.hero-dots {
display: flex;
gap: 6px;
align-items: center;
}
.hero-dot {
width: 7px;
height: 7px;
border-radius: 50%;
background: rgba(108, 52, 131, 0.2);
cursor: pointer;
transition: all 0.3s;
}
.hero-dot.active {
background: var(--purple);
width: 20px;
border-radius: 4px;
}
.reveal {
opacity: 0;
transform: translateY(28px);
transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
opacity: 1;
transform: translateY(0);
}
section#platforms h2 {
font-size: 48px;
line-height: 1.1;
margin-top: 15px;
}
section#platforms .reveal.visible {
text-align: center;
}
.reveal-delay-1 {
transition-delay: 0.1s;
}
.reveal-delay-2 {
transition-delay: 0.2s;
}
.reveal-delay-3 {
transition-delay: 0.3s;
}
.reveal-delay-4 {
transition-delay: 0.4s;
} section {
padding: 100px 8vw;
}
.section-label {
font-size: 0.72rem;
letter-spacing: 0.12em;
text-transform: uppercase;
color: var(--blue);
font-weight: 600;
}
.section-title {
font-size: clamp(2rem, 3.5vw, 3rem);
font-weight: 600;
letter-spacing: -0.04em;
line-height: 1.1;
margin-bottom: 1.1rem;
}
.section-sub {
font-size: 1.02rem;
color: var(--text2);
max-width: 520px;
font-weight: 300;
}
.section-header {
text-align: center;
margin-bottom: 4rem;
}
.section-header .section-sub {
margin: 0 auto;
} .how {
background: var(--bg2);
position: relative;
overflow: hidden;
}
.how::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 1px;
background: linear-gradient(90deg, transparent, rgba(44, 123, 229, 0.4), transparent);
}
.steps {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 30px;
position: relative;
}
.step {
background: var(--bg3);
border: 1px solid var(--border);
border-radius: var(--r);
padding: 2.5rem 2rem;
position: relative;
transition: border-color 0.3s, transform 0.3s;
}
.step:hover {
border-color: var(--border2);
transform: translateY(-4px);
}
.step-num {
position: absolute;
top: -1px;
right: 20px;
font-size: 5rem;
font-weight: 800;
color: rgba(255, 255, 255, 0.025);
line-height: 1;
pointer-events: none;
}
.step-icon {
width: 52px;
height: 52px;
border-radius: 14px;
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 1.25rem;
background: rgba(79, 110, 247, 0.1);
border: 1px solid rgba(79, 110, 247, 0.2);
}
.step:nth-child(2) .step-icon {
background: rgba(168, 85, 247, 0.1);
border-color: rgba(168, 85, 247, 0.2);
}
.step:nth-child(3) .step-icon {
background: rgba(192, 132, 252, 0.1);
border-color: rgba(192, 132, 252, 0.2);
}
.step h3 {
font-size: 1.15rem;
font-weight: 700;
margin-bottom: 0.6rem;
letter-spacing: -0.02em;
}
.step p {
font-size: 0.88rem;
color: var(--text2);
line-height: 1.7;
font-weight: 300;
}
.step-arrow {
position: absolute;
top: 50px;
right: -18px;
z-index: 1;
color: var(--text3);
font-size: 1.3rem;
} .feature-items {
display: flex;
flex-direction: column;
gap: 5px;
margin-top: 10px;
}
.feature-item {
display: flex;
align-items: center;
gap: 10px;
font-size: 12px;
font-weight: 400;
color: #000;
}
.feature-item::before {
content: '';
width: 6px;
height: 6px;
border-radius: 50%;
background: var(--grad);
flex-shrink: 0;
}
.features {
position: relative;
}
.features::before {
content: '';
position: absolute;
inset: 0;
background: radial-gradient(ellipse 50% 60% at 10% 50%, rgba(79, 110, 247, 0.06) 0%, transparent 60%),
radial-gradient(ellipse 40% 50% at 90% 50%, rgba(168, 85, 247, 0.05) 0%, transparent 60%);
pointer-events: none;
}
.features-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 1.5rem;
position: relative;
}
.feature-card {
background: var(--surface);
border: 1px solid var(--border);
border-radius: var(--r);
padding: 2rem;
transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
position: relative;
overflow: hidden;
}
.feature-card::before {
content: '';
position: absolute;
inset: 0;
background: linear-gradient(135deg, rgba(44, 123, 229, 0.03) 0%, transparent 60%);
opacity: 0;
transition: opacity 0.3s;
}
.feature-card:hover {
border-color: var(--border2);
box-shadow: var(--glow);
transform: translateY(-3px);
}
.feature-card:hover::before {
opacity: 1;
}
.feature-card.wide {
grid-column: span 2;
display: flex;
align-items: flex-start;
gap: 2rem;
}
.feat-icon {
width: 48px;
height: 48px;
border-radius: 12px;
flex-shrink: 0;
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 1rem;
background: rgba(79, 110, 247, 0.1);
border: 1px solid rgba(79, 110, 247, 0.2);
}
.feature-card.wide .feat-icon {
margin-bottom: 0;
}
.feature-card:nth-child(2) .feat-icon {
background: rgba(168, 85, 247, 0.1);
border-color: rgba(168, 85, 247, 0.2);
}
.feature-card:nth-child(3) .feat-icon {
background: rgba(139, 92, 246, 0.1);
border-color: rgba(139, 92, 246, 0.2);
}
.feature-card:nth-child(4) .feat-icon {
background: rgba(249, 115, 22, 0.1);
border-color: rgba(249, 115, 22, 0.2);
}
.feature-card.wide .feat-icon {
background: rgba(192, 132, 252, 0.1);
border-color: rgba(192, 132, 252, 0.2);
}
.feature-card h3 {
font-size: 1.05rem;
font-weight: 700;
margin-bottom: 0.5rem;
letter-spacing: -0.02em;
}
.feature-card p {
font-size: 0.85rem;
color: var(--text2);
line-height: 1.65;
font-weight: 300;
}
.features-left {
padding-right: 3rem;
} .testi-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 1.5rem;
}
.testi-card {
background: #fff;
border: 1px solid var(--border);
border-radius: var(--r);
padding: 1.75rem;
transition: border-color 0.3s, transform 0.3s;
}
.testi-card:hover {
border-color: var(--border2);
transform: translateY(-3px);
}
.testi-stars {
display: flex;
gap: 2px;
margin-bottom: 1rem;
}
.testi-stars span {
color: #fbbf24;
font-size: 0.8rem;
}
.testi-text {
font-size: 0.88rem;
color: var(--text2);
line-height: 1.7;
font-weight: 300;
margin-bottom: 1.25rem;
font-style: italic;
}
.testi-author {
display: flex;
align-items: center;
gap: 10px;
}
.testi-avatar {
width: 38px;
height: 38px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-weight: 700;
font-size: 0.82rem;
color: #fff;
flex-shrink: 0;
}
.testi-name {
font-weight: 700;
font-size: 0.85rem;
}
.testi-role {
font-size: 0.72rem;
color: var(--text3);
}
.social-proof-bar {
display: flex;
justify-content: center;
align-items: center;
gap: 3rem;
margin-bottom: 3.5rem;
flex-wrap: wrap;
}
.sp-stat {
text-align: center;
}
.sp-stat strong {
display: block;
font-size: 2rem;
font-weight: 800;
letter-spacing: -0.04em;
background: var(--grad);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
.sp-stat span {
font-size: 0.8rem;
color: var(--text3);
}
.sp-divider {
width: 1px;
height: 40px;
background: var(--border2);
} .cta-section {
background: var(--bg2);
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
padding: 100px 5vw;
position: relative;
overflow: hidden;
}
.cta-section::before {
content: '';
position: absolute;
inset: 0;
background: radial-gradient(ellipse 60% 80% at 50% 50%, rgb(161 177 245 / 24%) 0%, transparent 70%);
pointer-events: none;
}
.cta-inner {
position: relative;
z-index: 1;
max-width: 795px;
}
h2.section-title.reveal.visible {
margin-top: 20px;
}
.cta-section .section-title {
font-size: clamp(2.2rem, 4vw, 3.2rem);
}
.cta-section .section-sub {
margin: 1rem auto 2.5rem;
}
.cta-actions {
display: flex;
gap: 1rem;
justify-content: center;
flex-wrap: wrap;
}
.cta-chrome {
display: inline-flex;
align-items: center;
gap: 8px;
margin-top: 1.5rem;
font-size: 0.78rem;
color: var(--text3);
}
.cta-chrome svg {
opacity: 0.5;
} footer {
border-top: 1px solid var(--border);
padding: 15px 8vw;
}
.footer-links {
display: flex;
gap: 24px;
flex-wrap: wrap;
}
.footer-links a {
color: #7e7e7e;
text-decoration: none;
font-size: 0.82rem;
transition: color .2s;
}
.footer-links a:hover {
color: #2e66b5;
}
.footer-bottom {
display: flex;
justify-content: space-between;
align-items: center;
font-size: 0.75rem;
color: var(--text3);
} @keyframes fadeUp {
from {
opacity: 0;
transform: translateY(24px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
@keyframes fadeRight {
from {
opacity: 0;
transform: translateX(32px);
}
to {
opacity: 1;
transform: translateX(0);
}
}
.reveal {
opacity: 0;
transform: translateY(28px);
transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
opacity: 1;
transform: translateY(0);
} @media (max-width: 1024px) {
.hero {
grid-template-columns: 1fr;
padding-top: 100px;
}
.hero-right {
max-width: 600px;
margin: 0 auto;
}
.features-grid {
grid-template-columns: 1fr;
}
.feature-card.wide {
flex-direction: column;
grid-column: span 1;
}
.footer-main {
grid-template-columns: 1fr 1fr;
}
}
@media (max-width: 767px) {
.mock-sidebar {
width: 100% !important;
}
.hero-slide.active {
display: block !IMPORTANT;
}
.solution-visual {
padding: 20px !important;
}
.browser-body.hero-slider-body {
height: 643px !important;
}
section {
padding: 50px 25px;
}
.platform-cards,
.solution-inner,
.steps-grid,
.problem-grid,
.hero-inner {
grid-template-columns: 1fr !important;
}
.hero-inner {
gap: 0 !important;
}
.problem-content h2,
section#platforms h2,
.solution-content h2 {
font-size: 32px !important;
}
.hero-title {
font-size: 38px !important;
}
.problem-grid {
gap: 20px !important;
}
.steps-grid::before {
display: none;
}
.nav-links.active {
display: flex;
flex-direction: column;
gap: 1rem;
position: absolute;
top: 68px;
left: 0;
right: 0;
background: rgba(245, 247, 255, 0.98);
border-bottom: 1px solid rgba(61, 90, 241, 0.12);
padding: 1rem 4vw 1rem;
z-index: 99;
}
.footer-links {
justify-content: center;
gap: 12px !important;
}
.section-label {
margin-bottom: 20px;
}
.section-header {
margin: 0 !important;
}
.nav-links.active li {
width: 100%;
}
.nav-links.active li a {
display: block;
width: 100%;
padding: 0.55rem 0;
}
.nav-cta {
display: none !important;
}
.resume-inner,
.tracking-layout,
section#features div {
gap: 30px !important;
grid-template-columns: 1fr !important;
}
nav {
padding: 0 4vw;
}
.nav-links {
display: none;
}
.hamburger {
display: flex;
}
.hero {
padding: 50px 20px;
gap: 3rem;
margin-top: 75px;
}
.step-arrow {
display: none;
}
.testi-grid,
.footer-main,
.tiers-grid,
.steps {
grid-template-columns: 1fr !important;
}
.footer-main {
gap: 2rem;
}
.footer-bottom {
flex-direction: column;
gap: 0.75rem;
text-align: center;
}
.social-proof-bar {
gap: 1.5rem;
}
.sp-divider {
display: none;
}
} .score-ring {
position: relative;
display: inline-flex;
align-items: center;
justify-content: center;
}
.score-ring svg {
transform: rotate(-90deg);
}
.score-ring-text {
position: absolute;
text-align: center;
}
.score-ring-num {
font-size: 1.6rem;
font-weight: 800;
color: var(--teal);
display: block;
line-height: 1;
}
.score-ring-label {
font-size: 0.55rem;
color: var(--text3);
display: block;
margin-top: 2px;
} #tiers,
#tracking {
background: var(--bg2);
}
.tiers-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 20px;
margin-top: 40px;
}
.tier-card.critical {
border-color: #fecaca;
background: #fff5f5;
}
.tier-card.critical .tier-range {
color: #ff0000;
}
.tier-range {
font-weight: 800;
font-size: 26px;
margin-bottom: 6px;
}
.tier-desc {
font-size: 0.82rem;
color: #637068;
line-height: 1.6;
}
.tier-card.good .tier-range {
color: #f59e0b;
}
.tier-card.excellent .tier-range {
color: #31b3e5;
}
.tier-card.elite .tier-range {
color: #8b5cf6;
}
.tier-card.good {
border-color: #fde68a;
background: #fffbeb;
}
.tier-card.elite {
border-color: #ddd6fe;
background: #faf5ff;
}
.tier-card.excellent {
border-color: #bae6fd;
background: #f0f9ff;
}
.tier-label {
font-weight: 700;
font-size: 20px;
}
.tier-card {
border-radius: 12px;
padding: 24px 20px;
border: 1.5px solid;
transition: all 0.3s ease;
}
.tier-card:hover {
transform: translateY(-6px) scale(1.02);
box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
} #problem {
background: var(--grad);
color: white;
padding: 96px 0;
position: relative;
overflow: hidden;
}
#problem::before {
content: '';
position: absolute;
top: -100px;
right: -100px;
width: 400px;
height: 400px;
border-radius: 50%;
background: radial-gradient(circle, rgba(108, 52, 131, 0.3) 0%, transparent 70%);
pointer-events: none;
}
#problem::after {
content: '';
position: absolute;
bottom: -100px;
left: -100px;
width: 300px;
height: 300px;
border-radius: 50%;
background: radial-gradient(circle, rgba(31, 119, 180, 0.2) 0%, transparent 70%);
pointer-events: none;
}
.problem-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 80px;
align-items: center;
}
.problem-content h2 {
color: white;
margin-bottom: 20px;
font-size: 48px;
line-height: 1.1;
margin-top: 15px;
}
.problem-content p {
color: rgba(255, 255, 255, 0.65);
font-size: 17px;
line-height: 1.8;
margin-bottom: 16px;
}
.problem-stats {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 16px;
margin-top: 40px;
}
.stat-card {
background: rgba(255, 255, 255, 0.05);
border: 1px solid rgba(255, 255, 255, 0.08);
border-radius: 14px;
padding: 24px;
transition: transform 0.3s;
}
.stat-card:hover {
transform: translateY(-4px);
}
.stat-num {
font-size: 36px;
font-weight: 800;
background: var(--grad-main);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
.stat-label {
font-size: 13px;
color: rgba(255, 255, 255, 0.5);
margin-top: 4px;
}
.problem-visual {
display: flex;
flex-direction: column;
gap: 14px;
}
.fail-card {
background: rgba(255, 255, 255, 0.04);
border: 1px solid rgba(255, 255, 255, 0.07);
border-radius: 14px;
padding: 20px 24px;
display: flex;
align-items: flex-start;
gap: 16px;
transition: all 0.3s;
}
.fail-card:hover {
background: rgba(255, 255, 255, 0.07);
transform: translateX(4px);
}
.fail-icon {
width: 38px;
height: 38px;
border-radius: 10px;
flex-shrink: 0;
display: flex;
align-items: center;
justify-content: center;
font-size: 18px;
}
.fail-icon.red {
background: rgba(231, 76, 60, 0.15);
}
.fail-icon.yellow {
background: rgba(230, 126, 34, 0.15);
}
.fail-icon.orange {
background: rgba(243, 156, 18, 0.15);
}
.fail-card h4 {
font-size: 14px;
font-weight: 600;
color: white;
margin-bottom: 4px;
}
.fail-card p {
font-size: 12px;
color: #fff line-height: 1.6;
} .resume-features {
display: flex;
flex-direction: column;
gap: 18px;
margin-top: 28px;
}
.resume-feat {
display: flex;
gap: 14px;
}
.feat-text p {
font-size: 14px;
color: #637068;
line-height: 1.6;
}
.resume-inner {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 60px;
align-items: center;
}
.upload-visual {
background: #fff;
border-radius: 14px;
border: 1.5px solid #1a4b80;
padding: 28px;
box-shadow: 0 2px 16px rgba(20, 184, 126, 0.08), 0 1px 4px rgba(0, 0, 0, 0.04);
}
.upload-zone {
border: 2px dashed #1a4b8096;
border-radius: 10px;
padding: 28px 20px;
text-align: center;
transition: border-color .2s, background .2s;
cursor: pointer;
margin-bottom: 16px;
}
.upload-zone:hover {
border-color: #236ebb;
}
.upload-zone svg {
color: #1a4b80;
margin-bottom: 10px;
}
.upload-zone h4 {
font-weight: 700;
font-size: 0.92rem;
margin-bottom: 5px;
}
.upload-zone p {
font-size: 0.78rem;
color: var(--muted);
}
.upload-result {
background: var(--grad);
border-radius: 8px;
padding: 12px 14px;
font-size: 10px;
color: #fff;
}
.upload-result strong {
display: block;
font-weight: 600;
margin-bottom: 3px;
font-size: 16px;
} .steps-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 24px;
margin-top: 60px;
position: relative;
}
.steps-grid::before {
content: '';
position: absolute;
top: 32px;
left: calc(12.5% + 24px);
right: calc(12.5% + 24px);
height: 2px;
background: linear-gradient(90deg, var(--purple), var(--blue));
z-index: 0;
}
.step-card {
background: var(--surface);
border: 1px solid var(--border);
border-radius: var(--r);
padding: 28px 24px 24px;
box-shadow: var(--shadow-sm);
text-align: center;
position: relative;
z-index: 1;
transition: transform 0.3s, box-shadow 0.3s;
}
.step-card:hover {
transform: translateY(-6px);
box-shadow: var(--shadow-md);
}
.step-nums {
width: 48px;
height: 48px;
border-radius: 50%;
background: var(--grad);
color: white;
font-size: 18px;
font-weight: 800;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 20px;
box-shadow: 0 4px 16px rgba(108, 52, 131, 0.3);
}
.step-card h3 {
font-size: 15px;
font-weight: 700;
margin-bottom: 8px;
}
.step-card p {
font-size: 13px;
color: var(--text-muted);
line-height: 1.6;
} .tracking-layout {
display: grid;
grid-template-columns: 1fr 1.3fr;
gap: 60px;
align-items: center;
}
.tracking-mock {
background: var(--bg);
border-radius: 14px;
border: 1.5px solid var(--border);
padding: 20px;
box-shadow: var(--card-shadow);
}
.tracking-mock h4 {
font-weight: 700;
font-size: 0.85rem;
margin-bottom: 14px;
color: var(--muted);
}
.tracking-item {
display: flex;
align-items: center;
justify-content: space-between;
padding: 10px 0;
border-bottom: 1px solid var(--border);
}
.h-date {
font-size: 0.75rem;
color: var(--muted);
}
.h-score {
font-weight: 700;
font-size: 1rem;
}
.delta-up {
background: #dcfce7;
color: #16a34a;
}
.delta-same {
background: #f1f5f9;
color: #64748b;
}
.h-delta {
font-size: 0.75rem;
font-weight: 600;
padding: 2px 8px;
border-radius: 100px;
}
.h-point svg {
flex-shrink: 0;
color: var(--green);
margin-top: 2px;
}
.h-point {
display: flex;
align-items: flex-start;
gap: 10px;
font-size: 0.88rem;
color: var(--muted);
}
.tracking-text p {
font-size: 0.95rem;
color: var(--muted);
line-height: 1.7;
max-width: 440px;
}
.tracking-points {
display: flex;
flex-direction: column;
gap: 12px;
margin-top: 20px;
} #solution {
padding: 96px 0;
background: white;
}
.solution-inner {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 80px;
align-items: center;
}
.solution-visual {
background: var(--grad-soft);
border-radius: 24px;
padding: 40px;
border: 1px solid rgba(108, 52, 131, 0.08);
position: relative;
overflow: hidden;
}
.solution-visual::before {
content: '';
position: absolute;
top: -40px;
right: -40px;
width: 200px;
height: 200px;
border-radius: 50%;
background: radial-gradient(circle, rgba(108, 52, 131, 0.1) 0%, transparent 70%);
}
.solution-visual-item {
display: flex;
align-items: center;
gap: 14px;
background: white;
border-radius: 12px;
padding: 16px 20px;
box-shadow: var(--shadow-sm);
margin-bottom: 12px;
border: 1px solid var(--border);
transition: transform 0.3s, box-shadow 0.3s;
}
.solution-visual-item:hover {
transform: translateX(6px);
box-shadow: var(--shadow-md);
}
.sol-icon {
width: 40px;
height: 40px;
border-radius: 10px;
display: flex;
align-items: center;
justify-content: center;
font-size: 18px;
flex-shrink: 0;
}
.sol-icon.purple {
background: var(--purple-ultra-light);
}
.sol-icon.blue {
background: var(--blue-ultra-light);
}
.sol-icon.green {
background: rgba(39, 174, 96, 0.08);
}
.sol-text strong {
font-size: 14px;
font-weight: 600;
color: var(--dark);
display: block;
}
.sol-text span {
font-size: 12px;
color: var(--text-muted);
}
.solution-content h2 {
margin-bottom: 20px;
font-size: 48px;
line-height: 1.1;
margin-top: 15px;
}
.solution-content p {
color: var(--text2);
font-size: 17px;
line-height: 1.8;
margin-bottom: 20px;
}
.check-list {
list-style: none;
display: flex;
flex-direction: column;
gap: 14px;
}
.check-list li {
display: flex;
align-items: center;
gap: 12px;
font-size: 15px;
font-weight: 500;
color: var(--text);
}
.check-list li::before {
content: '✓';
width: 24px;
height: 24px;
border-radius: 50%;
background: var(--grad);
color: white;
font-size: 12px;
font-weight: 700;
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
} #platforms {
padding: 80px 0;
background: var(--bg2);
}
.platform-cards {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 24px;
margin-top: 56px;
}
.platform-card {
border-radius: 20px;
padding: 36px 32px;
text-align: center;
border: 1px solid var(--border);
transition: all 0.3s;
position: relative;
overflow: hidden;
}
.platform-card::after {
content: '';
position: absolute;
inset: 0;
background: var(--grad-main);
opacity: 0;
transition: opacity 0.4s;
z-index: 0;
}
.platform-card:hover::after {
opacity: 0.04;
}
.platform-card:hover {
transform: translateY(-6px);
box-shadow: var(--shadow-md);
border-color: rgba(108, 52, 131, 0.2);
}
.platform-card>* {
position: relative;
z-index: 1;
}
.platform-logo {
width: 56px;
height: 56px;
border-radius: 14px;
margin: 0 auto 20px;
display: flex;
align-items: center;
justify-content: center;
font-size: 28px;
font-weight: 800;
}
.platform-logo.li {
background: #0077b5;
color: white;
font-size: 16px;
}
.platform-logo.tw {
background: #1da1f2;
color: white;
font-size: 18px;
}
.platform-logo.rd {
background: #ff4500;
color: white;
font-size: 18px;
}
.platform-card h3 {
font-size: 18px;
font-weight: 700;
margin-bottom: 8px;
}
.platform-card p {
font-size: 13px;
color: var(--text-muted);
line-height: 1.6;
}
.platform-badge {
display: inline-block;
margin-top: 16px;
background: var(--grad-soft);
border: 1px solid rgba(108, 52, 131, 0.1);
color: var(--purple);
padding: 4px 14px;
border-radius: 100px;
font-size: 11px;
font-weight: 700;
}