<write_to_file>
<path>assets/css/style.css</path>
<content>/* Reset & Base Styles */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

:root {
--primary: #6366f1;
--primary-dark: #4f46e5;
--secondary: #8b5cf6;
--accent: #ec4899;
--dark: #0f172a;
--dark-light: #1e293b;
--gray: #64748b;
--light: #f1f5f9;
--white: #ffffff;
--gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
--gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
--gradient-3: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

body {
font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
background: var(--dark);
color: var(--white);
line-height: 1.6;
overflow-x: hidden;
}

.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 2rem;
}

/* Navbar */
.navbar {
position: fixed;
top: 0;
left: 0;
right: 0;
z-index: 1000;
background: rgba(15, 23, 42, 0.8);
backdrop-filter: blur(10px);
border-bottom: 1px solid rgba(255, 255, 255, 0.1);
padding: 1rem 0;
}

.navbar .container {
display: flex;
justify-content: space-between;
align-items: center;
}

.nav-brand h2 {
font-size: 1.5rem;
font-weight: 800;
background: var(--gradient);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}

.nav-links {
display: flex;
gap: 2rem;
}

.nav-links a {
color: var(--light);
text-decoration: none;
font-weight: 500;
transition: color 0.3s;
}

.nav-links a:hover {
color: var(--white);
}

/* Hero Section */
.hero {
position: relative;
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
padding: 8rem 0 4rem;
overflow: hidden;
}

.hero-background {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
z-index: 0;
}

.gradient-orb {
position: absolute;
border-radius: 50%;
filter: blur(80px);
opacity: 0.3;
animation: float 20s infinite ease-in-out;
}

.orb-1 {
width: 500px;
height: 500px;
background: var(--gradient);
top: -10%;
left: -10%;
animation-delay: 0s;
}

.orb-2 {
width: 400px;
height: 400px;
background: var(--gradient-2);
bottom: -10%;
right: -10%;
animation-delay: 5s;
}

.orb-3 {
width: 300px;
height: 300px;
background: var(--gradient-3);
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
animation-delay: 10s;
}

@keyframes float {
0%, 100% {
transform: translate(0, 0) scale(1);
}
33% {
transform: translate(30px, -30px) scale(1.1);
}
66% {
transform: translate(-20px, 20px) scale(0.9);
}
}

.hero-content {
position: relative;
z-index: 1;
text-align: center;
max-width: 800px;
margin: 0 auto;
animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(30px);
}
to {
opacity: 1;
transform: translateY(0);
}
}

.hero-badge {
display: inline-block;
padding: 0.5rem 1rem;
background: rgba(99, 102, 241, 0.1);
border: 1px solid rgba(99, 102, 241, 0.3);
border-radius: 50px;
color: var(--primary);
font-size: 0.875rem;
font-weight: 600;
margin-bottom: 1.5rem;
}

.hero-title {
font-size: 3.5rem;
font-weight: 800;
line-height: 1.2;
margin-bottom: 1.5rem;
}

.gradient-text {
background: var(--gradient);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}

.hero-description {
font-size: 1.25rem;
color: var(--gray);
margin-bottom: 2rem;
max-width: 600px;
margin-left: auto;
margin-right: auto;
}

.hero-buttons {
display: flex;
gap: 1rem;
justify-content: center;
margin-bottom: 4rem;
}

.btn {
display: inline-flex;
align-items: center;
gap: 0.5rem;
padding: 0.875rem 2rem;
border-radius: 12px;
font-weight: 600;
text-decoration: none;
transition: all 0.3s;
cursor: pointer;
border: none;
font-size: 1rem;
}

.btn-primary {
background: var(--gradient);
color: var(--white);
box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
}

.btn-primary:hover {
transform: translateY(-2px);
box-shadow: 0 15px 40px rgba(99, 102, 241, 0.4);
}

.btn-secondary {
background: rgba(255, 255, 255, 0.1);
color: var(--white);
border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
background: rgba(255, 255, 255, 0.15);
transform: translateY(-2px);
}

.btn-large {
padding: 1.125rem 2.5rem;
font-size: 1.125rem;
}

.hero-stats {
display: flex;
gap: 3rem;
justify-content: center;
}

.stat {
text-align: center;
}

.stat-number {
font-size: 2rem;
font-weight: 800;
background: var(--gradient);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
margin-bottom: 0.5rem;
}

.stat-label {
color: var(--gray);
font-size: 0.875rem;
}

/* Features Section */
.features {
padding: 6rem 0;
position: relative;
}

.section-header {
text-align: center;
margin-bottom: 4rem;
}

.section-title {
font-size: 2.5rem;
font-weight: 800;
margin-bottom: 1rem;
}

.section-description {
font-size: 1.125rem;
color: var(--gray);
max-width: 600px;
margin: 0 auto;
}

.features-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 2rem;
}

.feature-card {
background: rgba(255, 255, 255, 0.05);
backdrop-filter: blur(10px);
border: 1px solid rgba(255, 255, 255, 0.1);
border-radius: 20px;
padding: 2rem;
transition: all 0.3s;
}

.feature-card:hover {
transform: translateY(-5px);
background: rgba(255, 255, 255, 0.08);
border-color: rgba(99, 102, 241, 0.3);
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.feature-icon {
width: 60px;
height: 60px;
background: var(--gradient);
border-radius: 15px;
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 1.5rem;
color: var(--white);
}

.feature-card h3 {
font-size: 1.5rem;
font-weight: 700;
margin-bottom: 1rem;
}

.feature-card p {
color: var(--gray);
line-height: 1.7;
}

/* CTA Section */
.cta {
padding: 6rem 0;
position: relative;
}

.cta-content {
text-align: center;
background: var(--gradient);
border-radius: 30px;
padding: 4rem 2rem;
position: relative;
overflow: hidden;
}

.cta-content::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="white" opacity="0.1"/></svg>');
opacity: 0.3;
}

.cta-content h2 {
font-size: 2.5rem;
font-weight: 800;
margin-bottom: 1rem;
position: relative;
z-index: 1;
}

.cta-content p {
font-size: 1.25rem;
margin-bottom: 2rem;
opacity: 0.9;
position: relative;
z-index: 1;
}

.cta-content .btn {
background: var(--white);
color: var(--primary);
position: relative;
z-index: 1;
}

.cta-content .btn:hover {
background: var(--light);
}

/* Footer */
.footer {
background: var(--dark-light);
padding: 4rem 0 2rem;
border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
display: grid;
grid-template-columns: 2fr 3fr;
gap: 4rem;
margin-bottom: 3rem;
}

.footer-brand h3 {
font-size: 1.5rem;
font-weight: 800;
background: var(--gradient);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
margin-bottom: 1rem;
}

.footer-brand p {
color: var(--gray);
}

.footer-links {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 2rem;
}

.footer-column h4 {
font-size: 1rem;
font-weight: 700;
margin-bottom: 1rem;
}

.footer-column a {
display: block;
color: var(--gray);
text-decoration: none;
margin-bottom: 0.75rem;
transition: color 0.3s;
}

.footer-column a:hover {
color: var(--white);
}

.footer-bottom {
display: flex;
justify-content: space-between;
align-items: center;
padding-top: 2rem;
border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
color: var(--gray);
}

.social-links {
display: flex;
gap: 1rem;
}

.social-links a {
width: 40px;
height: 40px;
background: rgba(255, 255, 255, 0.05);
border-radius: 10px;
display: flex;
align-items: center;
justify-content: center;
color: var(--gray);
transition: all 0.3s;
}

.social-links a:hover {
background: var(--gradient);
color: var(--white);
transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 768px) {
.nav-links {
display: none;
}

.hero-title {
font-size: 2.5rem;
}

.hero-description {
font-size: 1rem;
}

.hero-buttons {
flex-direction: column;
align-items: center;
}

.hero-stats {
flex-direction: column;
gap: 1.5rem;
}

.features-grid {
grid-template-columns: 1fr;
}

.footer-content {
grid-template-columns: 1fr;
gap: 2rem;
}

.footer-links {
grid-template-columns: 1fr;
}

.footer-bottom {
flex-direction: column;
gap: 1rem;
text-align: center;
}

.section-title {
font-size: 2rem;
}

.cta-content h2 {
font-size: 2rem;
}
}

@media (max-width: 480px) {
.container {
padding: 0 1rem;
}

.hero-title {
font-size: 2rem;
}

.btn {
width: 100%;
justify-content: center;
}
}
</content>
</write_to_file>