/* Reset and Base Styles */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
:root {
--primary-color: #6366f1;
--primary-dark: #4f46e5;
--primary-light: #818cf8;
--secondary-color: #8b5cf6;
--text-primary: #1f2937;
--text-secondary: #6b7280;
--text-light: #9ca3af;
--bg-primary: #ffffff;
--bg-secondary: #f9fafb;
--bg-dark: #111827;
--border-color: #e5e7eb;
--success-color: #10b981;
--shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
--shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
--shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
--shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
--gradient-primary: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
--gradient-hero: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}
body {
font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
color: var(--text-primary);
line-height: 1.6;
overflow-x: hidden;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
}
/* Navigation */
.navbar {
position: fixed;
top: 0;
left: 0;
right: 0;
background: rgba(255, 255, 255, 0.95);
backdrop-filter: blur(10px);
box-shadow: var(--shadow-sm);
z-index: 1000;
transition: all 0.3s ease;
}
.nav-wrapper {
display: flex;
justify-content: space-between;
align-items: center;
padding: 1rem 0;
}
.logo {
display: flex;
align-items: center;
gap: 0.5rem;
font-size: 1.5rem;
font-weight: 700;
color: var(--primary-color);
text-decoration: none;
}
.logo-icon {
font-size: 1.75rem;
}
.nav-menu {
display: flex;
list-style: none;
gap: 2rem;
align-items: center;
}
.nav-menu a {
text-decoration: none;
color: var(--text-primary);
font-weight: 500;
transition: color 0.3s ease;
position: relative;
}
.nav-menu a:hover {
color: var(--primary-color);
}
.nav-menu a::after {
content: '';
position: absolute;
bottom: -5px;
left: 0;
width: 0;
height: 2px;
background: var(--primary-color);
transition: width 0.3s ease;
}
.nav-menu a:hover::after {
width: 100%;
}
.nav-toggle {
display: none;
flex-direction: column;
background: none;
border: none;
cursor: pointer;
gap: 4px;
}
.nav-toggle span {
width: 25px;
height: 3px;
background: var(--text-primary);
border-radius: 2px;
transition: all 0.3s ease;
}
/* Hero Section */
.hero {
position: relative;
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
padding: 120px 0 80px;
overflow: hidden;
}
.hero-background {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: var(--gradient-hero);
opacity: 0.05;
z-index: -1;
}
.hero-background::before {
content: '';
position: absolute;
top: -50%;
right: -50%;
width: 200%;
height: 200%;
background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
animation: pulse 20s ease-in-out infinite;
}
@keyframes pulse {
0%, 100% { transform: scale(1); opacity: 0.5; }
50% { transform: scale(1.1); opacity: 0.8; }
}
.hero-content {
text-align: center;
max-width: 800px;
margin: 0 auto;
animation: fadeInUp 0.8s ease;
}
@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(30px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
.hero-title {
font-size: 3.5rem;
font-weight: 800;
line-height: 1.2;
margin-bottom: 1.5rem;
background: var(--gradient-primary);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
.hero-subtitle {
font-size: 1.25rem;
color: var(--text-secondary);
margin-bottom: 2.5rem;
line-height: 1.8;
}
.hero-buttons {
display: flex;
gap: 1rem;
justify-content: center;
margin-bottom: 4rem;
flex-wrap: wrap;
}
.btn {
display: inline-block;
padding: 0.875rem 2rem;
border-radius: 0.5rem;
text-decoration: none;
font-weight: 600;
transition: all 0.3s ease;
border: none;
cursor: pointer;
font-size: 1rem;
}
.btn-primary {
background: var(--gradient-primary);
color: white;
box-shadow: var(--shadow-md);
}
.btn-primary:hover {
transform: translateY(-2px);
box-shadow: var(--shadow-lg);
}
.btn-secondary {
background: white;
color: var(--primary-color);
border: 2px solid var(--primary-color);
}
.btn-secondary:hover {
background: var(--primary-color);
color: white;
}
.btn-large {
padding: 1.125rem 2.5rem;
font-size: 1.125rem;
}
.hero-stats {
display: flex;
justify-content: center;
gap: 4rem;
flex-wrap: wrap;
}
.stat-item {
text-align: center;
}
.stat-number {
font-size: 2.5rem;
font-weight: 800;
color: var(--primary-color);
margin-bottom: 0.5rem;
}
.stat-label {
color: var(--text-secondary);
font-weight: 500;
}
/* Section Styles */
section {
padding: 80px 0;
}
.section-header {
text-align: center;
margin-bottom: 4rem;
}
.section-title {
font-size: 2.5rem;
font-weight: 800;
margin-bottom: 1rem;
color: var(--text-primary);
}
.section-subtitle {
font-size: 1.125rem;
color: var(--text-secondary);
}
/* Features Section */
.features {
background: var(--bg-secondary);
}
.features-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 2rem;
}
.feature-card {
background: white;
padding: 2rem;
border-radius: 1rem;
box-shadow: var(--shadow-sm);
transition: all 0.3s ease;
border: 1px solid var(--border-color);
}
.feature-card:hover {
transform: translateY(-5px);
box-shadow: var(--shadow-lg);
border-color: var(--primary-light);
}
.feature-icon {
font-size: 3rem;
margin-bottom: 1rem;
}
.feature-title {
font-size: 1.5rem;
font-weight: 700;
margin-bottom: 1rem;
color: var(--text-primary);
}
.feature-description {
color: var(--text-secondary);
line-height: 1.7;
}
/* Screenshots Section */
.screenshots-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 2rem;
}
.screenshot-card {
background: white;
border-radius: 1rem;
overflow: hidden;
box-shadow: var(--shadow-md);
transition: all 0.3s ease;
}
.screenshot-card:hover {
transform: translateY(-5px);
box-shadow: var(--shadow-xl);
}
.screenshot-placeholder {
background: var(--bg-secondary);
height: 300px;
position: relative;
overflow: hidden;
}
.screenshot-content {
padding: 1rem;
height: 100%;
display: flex;
flex-direction: column;
}
.mockup-header {
height: 40px;
background: var(--primary-color);
border-radius: 0.5rem 0.5rem 0 0;
margin-bottom: 1rem;
}
.mockup-chat {
flex: 1;
display: flex;
flex-direction: column;
gap: 1rem;
}
.mockup-message {
display: flex;
gap: 0.75rem;
align-items: flex-start;
}
.mockup-message.left {
align-self: flex-start;
}
.mockup-message.right {
align-self: flex-end;
flex-direction: row-reverse;
}
.mockup-avatar {
width: 40px;
height: 40px;
border-radius: 50%;
background: var(--primary-light);
flex-shrink: 0;
}
.mockup-text {
background: white;
padding: 0.75rem 1rem;
border-radius: 1rem;
max-width: 70%;
height: 20px;
box-shadow: var(--shadow-sm);
}
.mockup-text.long {
width: 60%;
}
.mockup-list {
flex: 1;
display: flex;
flex-direction: column;
gap: 0.75rem;
}
.mockup-item {
height: 60px;
background: white;
border-radius: 0.5rem;
box-shadow: var(--shadow-sm);
}
.mockup-item.active {
background: var(--primary-light);
opacity: 0.3;
}
.mockup-group {
flex: 1;
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 1rem;
}
.mockup-member {
background: white;
border-radius: 0.5rem;
height: 100px;
box-shadow: var(--shadow-sm);
}
.screenshot-card h3 {
padding: 1.5rem;
text-align: center;
font-size: 1.25rem;
font-weight: 600;
color: var(--text-primary);
}
/* Pricing Section */
.pricing {
background: var(--bg-secondary);
}
.pricing-card {
max-width: 600px;
margin: 0 auto;
background: white;
border-radius: 1.5rem;
padding: 3rem;
box-shadow: var(--shadow-xl);
position: relative;
border: 2px solid var(--primary-color);
}
.pricing-badge {
position: absolute;
top: -15px;
left: 50%;
transform: translateX(-50%);
background: var(--gradient-primary);
color: white;
padding: 0.5rem 1.5rem;
border-radius: 2rem;
font-weight: 600;
font-size: 0.875rem;
}
.pricing-header {
text-align: center;
margin-bottom: 2rem;
}
.pricing-title {
font-size: 1.75rem;
font-weight: 700;
margin-bottom: 1.5rem;
color: var(--text-primary);
}
.pricing-price {
display: flex;
align-items: baseline;
justify-content: center;
gap: 0.25rem;
margin-bottom: 0.5rem;
}
.price-currency {
font-size: 1.5rem;
font-weight: 600;
color: var(--text-secondary);
}
.price-amount {
font-size: 4rem;
font-weight: 800;
background: var(--gradient-primary);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
.price-period {
font-size: 1rem;
color: var(--text-secondary);
font-weight: 500;
}
.pricing-features {
list-style: none;
margin-bottom: 2rem;
}
.pricing-features li {
padding: 0.75rem 0;
color: var(--text-primary);
font-size: 1.0625rem;
border-bottom: 1px solid var(--border-color);
}
.pricing-features li:last-child {
border-bottom: none;
}
.pricing-note {
text-align: center;
color: var(--text-light);
font-size: 0.875rem;
margin-top: 1rem;
}
/* Tech Stack Section */
.tech-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
gap: 1.5rem;
}
.tech-item {
background: white;
padding: 2rem;
border-radius: 1rem;
text-align: center;
box-shadow: var(--shadow-sm);
border: 1px solid var(--border-color);
transition: all 0.3s ease;
}
.tech-item:hover {
transform: translateY(-3px);
box-shadow: var(--shadow-md);
border-color: var(--primary-light);
}
.tech-name {
font-size: 1.25rem;
font-weight: 700;
color: var(--primary-color);
margin-bottom: 0.5rem;
}
.tech-desc {
color: var(--text-secondary);
font-size: 0.875rem;
}
/* Contact Section */
.contact {
background: var(--bg-secondary);
}
.contact-content {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 3rem;
max-width: 1000px;
margin: 0 auto;
}
.contact-info {
display: flex;
flex-direction: column;
gap: 2rem;
}
.contact-item {
display: flex;
gap: 1.5rem;
align-items: flex-start;
}
.contact-icon {
font-size: 2.5rem;
flex-shrink: 0;
}
.contact-details h3 {
font-size: 1.25rem;
font-weight: 700;
margin-bottom: 0.5rem;
color: var(--text-primary);
}
.contact-details p {
color: var(--text-secondary);
}
.contact-form-wrapper {
background: white;
padding: 2rem;
border-radius: 1rem;
box-shadow: var(--shadow-md);
}
.contact-form {
display: flex;
flex-direction: column;
gap: 1.5rem;
}
.form-group {
display: flex;
flex-direction: column;
gap: 0.5rem;
}
.form-group label {
font-weight: 600;
color: var(--text-primary);
}
.form-group input,
.form-group textarea {
padding: 0.875rem;
border: 2px solid var(--border-color);
border-radius: 0.5rem;
font-family: inherit;
font-size: 1rem;
transition: border-color 0.3s ease;
}
.form-group input:focus,
.form-group textarea:focus {
outline: none;
border-color: var(--primary-color);
}
.form-group textarea {
resize: vertical;
}
/* Footer */
.footer {
background: var(--bg-dark);
color: white;
padding: 4rem 0 2rem;
}
.footer-content {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 3rem;
margin-bottom: 3rem;
}
.footer-logo {
display: flex;
align-items: center;
gap: 0.5rem;
font-size: 1.5rem;
font-weight: 700;
margin-bottom: 1rem;
}
.footer-description {
color: rgba(255, 255, 255, 0.7);
line-height: 1.7;
}
.footer-title {
font-size: 1.125rem;
font-weight: 700;
margin-bottom: 1rem;
}
.footer-links {
list-style: none;
display: flex;
flex-direction: column;
gap: 0.75rem;
}
.footer-links a {
color: rgba(255, 255, 255, 0.7);
text-decoration: none;
transition: color 0.3s ease;
}
.footer-links a:hover {
color: white;
}
.footer-bottom {
text-align: center;
padding-top: 2rem;
border-top: 1px solid rgba(255, 255, 255, 0.1);
color: rgba(255, 255, 255, 0.7);
}
/* Responsive Design */
@media (max-width: 768px) {
.nav-menu {
position: fixed;
top: 70px;
left: -100%;
flex-direction: column;
background: white;
width: 100%;
padding: 2rem;
box-shadow: var(--shadow-lg);
transition: left 0.3s ease;
gap: 1.5rem;
}
.nav-menu.active {
left: 0;
}
.nav-toggle {
display: flex;
}
.hero-title {
font-size: 2.5rem;
}
.hero-subtitle {
font-size: 1.125rem;
}
.hero-stats {
gap: 2rem;
}
.section-title {
font-size: 2rem;
}
.features-grid {
grid-template-columns: 1fr;
}
.screenshots-grid {
grid-template-columns: 1fr;
}
.contact-content {
grid-template-columns: 1fr;
}
.pricing-card {
padding: 2rem 1.5rem;
}
.price-amount {
font-size: 3rem;
}
.tech-grid {
grid-template-columns: repeat(2, 1fr);
}
}
@media (max-width: 480px) {
.hero-title {
font-size: 2rem;
}
.hero-buttons {
flex-direction: column;
width: 100%;
}
.btn {
width: 100%;
text-align: center;
}
.hero-stats {
flex-direction: column;
gap: 1.5rem;
}
.tech-grid {
grid-template-columns: 1fr;
}
}
/* Smooth Scrolling */
html {
scroll-behavior: smooth;
}
/* Animations */
@keyframes fadeIn {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
.feature-card,
.screenshot-card,
.tech-item {
animation: fadeIn 0.6s ease forwards;
}
.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }
.feature-card:nth-child(4) { animation-delay: 0.4s; }
.feature-card:nth-child(5) { animation-delay: 0.5s; }
.feature-card:nth-child(6) { animation-delay: 0.6s; }
.feature-card:nth-child(7) { animation-delay: 0.7s; }
.feature-card:nth-child(8) { animation-delay: 0.8s; }
.feature-card:nth-child(9) { animation-delay: 0.9s; }