/* Reset and Base Styles */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html {
scroll-behavior: smooth;
}
body {
font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
line-height: 1.6;
color: #2d3748;
background-color: #ffffff;
overflow-x: hidden;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 2rem;
}
/* Typography */
h1, h2, h3, h4, h5, h6 {
font-weight: 600;
line-height: 1.2;
}
.gradient-text {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
/* Buttons */
.btn {
display: inline-flex;
align-items: center;
gap: 0.5rem;
padding: 0.75rem 1.5rem;
border: none;
border-radius: 0.75rem;
font-weight: 500;
font-size: 1rem;
text-decoration: none;
cursor: pointer;
transition: all 0.3s ease;
position: relative;
overflow: hidden;
}
.btn:before {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
transition: left 0.5s;
}
.btn:hover:before {
left: 100%;
}
.btn-primary {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: white;
box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}
.btn-primary:hover {
transform: translateY(-2px);
box-shadow: 0 8px 25px rgba(102, 126, 234, 0.6);
}
.btn-secondary {
background: rgba(102, 126, 234, 0.1);
color: #667eea;
border: 1px solid rgba(102, 126, 234, 0.3);
}
.btn-secondary:hover {
background: rgba(102, 126, 234, 0.2);
transform: translateY(-1px);
}
.btn-icon {
transition: transform 0.3s ease;
}
.btn:hover .btn-icon {
transform: translateX(3px);
}
/* Navigation */
.navbar {
position: fixed;
top: 0;
left: 0;
right: 0;
background: rgba(255, 255, 255, 0.95);
backdrop-filter: blur(20px);
border-bottom: 1px solid rgba(0, 0, 0, 0.1);
z-index: 1000;
transition: all 0.3s ease;
}
.nav-container {
display: flex;
align-items: center;
justify-content: space-between;
padding: 1rem 2rem;
max-width: 1200px;
margin: 0 auto;
}
.nav-brand {
display: flex;
align-items: center;
gap: 0.5rem;
font-weight: 700;
font-size: 1.25rem;
color: #2d3748;
text-decoration: none;
}
.brand-icon {
font-size: 1.5rem;
}
.nav-menu {
display: flex;
align-items: center;
gap: 2rem;
list-style: none;
}
.nav-link {
color: #4a5568;
text-decoration: none;
font-weight: 500;
padding: 0.5rem 1rem;
border-radius: 0.5rem;
transition: all 0.3s ease;
position: relative;
}
.nav-link:hover,
.nav-link.active {
color: #667eea;
background: rgba(102, 126, 234, 0.1);
}
.github-link {
background: #24292e;
color: white !important;
padding: 0.5rem 1rem;
border-radius: 0.5rem;
}
.github-link:hover {
background: #1a1e22 !important;
transform: translateY(-1px);
}
.nav-toggle {
display: none;
flex-direction: column;
gap: 0.25rem;
cursor: pointer;
}
.nav-toggle span {
width: 25px;
height: 3px;
background: #2d3748;
border-radius: 3px;
transition: all 0.3s ease;
}
/* Hero Section */
.hero {
min-height: 100vh;
display: flex;
align-items: center;
position: relative;
background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
overflow: hidden;
}
.hero-background {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
opacity: 0.1;
}
.hero-grid {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-image:
linear-gradient(rgba(102, 126, 234, 0.1) 1px, transparent 1px),
linear-gradient(90deg, rgba(102, 126, 234, 0.1) 1px, transparent 1px);
background-size: 50px 50px;
animation: moveGrid 20s linear infinite;
}
@keyframes moveGrid {
0% {
transform: translate(0, 0);
}
100% {
transform: translate(50px, 50px);
}
}
.hero .container {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 4rem;
align-items: center;
position: relative;
z-index: 2;
}
.hero-content {
animation: fadeInUp 1s ease-out;
}
.hero-badge {
display: inline-flex;
align-items: center;
gap: 0.5rem;
background: rgba(102, 126, 234, 0.1);
color: #667eea;
padding: 0.5rem 1rem;
border-radius: 50px;
font-size: 0.875rem;
font-weight: 500;
margin-bottom: 1.5rem;
border: 1px solid rgba(102, 126, 234, 0.2);
}
.hero-title {
font-size: 3.5rem;
font-weight: 700;
margin-bottom: 1.5rem;
line-height: 1.1;
}
.hero-description {
font-size: 1.25rem;
color: #4a5568;
margin-bottom: 2rem;
line-height: 1.6;
}
.hero-actions {
display: flex;
gap: 1rem;
margin-bottom: 3rem;
}
.hero-stats {
display: flex;
gap: 2rem;
}
.stat-item {
text-align: center;
}
.stat-number {
font-size: 2rem;
font-weight: 700;
color: #2d3748;
margin-bottom: 0.25rem;
}
.stat-label {
color: #718096;
font-size: 0.875rem;
}
/* Hero Visual */
.hero-visual {
animation: fadeInUp 1s ease-out 0.3s both;
}
.code-window {
background: #1a202c;
border-radius: 1rem;
overflow: hidden;
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
transition: transform 0.5s ease;
}
.code-window:hover {
transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}
.code-header {
background: #2d3748;
padding: 1rem;
display: flex;
align-items: center;
justify-content: space-between;
}
.code-buttons {
display: flex;
gap: 0.5rem;
}
.code-btn {
width: 12px;
height: 12px;
border-radius: 50%;
}
.code-btn.red {
background: #fc8181;
}
.code-btn.yellow {
background: #f6e05e;
}
.code-btn.green {
background: #68d391;
}
.code-title {
color: #a0aec0;
font-size: 0.875rem;
}
.code-content {
padding: 1.5rem;
background: #1a202c;
color: #e2e8f0;
font-family: 'Monaco', 'Cascadia Code', 'Roboto Mono', monospace;
font-size: 0.875rem;
line-height: 1.6;
overflow-x: auto;
}
/* Animations */
@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(30px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
@keyframes typewriter {
from {
width: 0;
}
to {
width: 100%;
}
}
/* Section Styles */
.section-header {
text-align: center;
margin-bottom: 4rem;
}
.section-title {
font-size: 2.5rem;
font-weight: 700;
margin-bottom: 1rem;
}
.section-description {
font-size: 1.125rem;
color: #4a5568;
max-width: 600px;
margin: 0 auto;
}
/* Features Section */
.features {
padding: 6rem 0;
background: white;
}
.features-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
gap: 2rem;
}
.feature-card {
background: white;
padding: 2rem;
border-radius: 1rem;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
transition: all 0.3s ease;
border: 1px solid #f7fafc;
position: relative;
overflow: hidden;
}
.feature-card:before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 4px;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
transform: scaleX(0);
transition: transform 0.3s ease;
}
.feature-card:hover:before {
transform: scaleX(1);
}
.feature-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}
.feature-icon {
font-size: 2.5rem;
margin-bottom: 1rem;
}
.feature-title {
font-size: 1.25rem;
font-weight: 600;
margin-bottom: 1rem;
color: #2d3748;
}
.feature-description {
color: #4a5568;
line-height: 1.6;
}
/* Examples Section */
.examples {
padding: 6rem 0;
background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
}
.examples-container {
max-width: 900px;
margin: 0 auto;
}
.examples-tabs {
display: flex;
gap: 0.5rem;
margin-bottom: 2rem;
background: white;
padding: 0.5rem;
border-radius: 0.75rem;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.tab-btn {
flex: 1;
padding: 1rem 1.5rem;
border: none;
background: transparent;
color: #4a5568;
font-weight: 500;
border-radius: 0.5rem;
cursor: pointer;
transition: all 0.3s ease;
}
.tab-btn.active {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: white;
box-shadow: 0 2px 10px rgba(102, 126, 234, 0.3);
}
.examples-content {
position: relative;
}
.tab-content {
display: none;
animation: fadeInUp 0.5s ease-out;
}
.tab-content.active {
display: block;
}
.code-example {
background: #1a202c;
border-radius: 1rem;
padding: 2rem;
overflow-x: auto;
box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}
.code-example pre {
margin: 0;
}
.code-example code {
color: #e2e8f0;
font-family: 'Monaco', 'Cascadia Code', 'Roboto Mono', monospace;
font-size: 0.875rem;
line-height: 1.6;
}
/* Getting Started Section */
.getting-started {
padding: 6rem 0;
background: white;
}
.steps-container {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 2rem;
max-width: 900px;
margin: 0 auto;
}
.step-item {
display: flex;
gap: 1.5rem;
padding: 2rem;
background: #f7fafc;
border-radius: 1rem;
position: relative;
}
.step-number {
width: 60px;
height: 60px;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: white;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-weight: 700;
font-size: 1.25rem;
flex-shrink: 0;
}
.step-content h3 {
font-size: 1.25rem;
font-weight: 600;
margin-bottom: 1rem;
color: #2d3748;
}
.code-block {
background: #1a202c;
color: #e2e8f0;
padding: 1rem;
border-radius: 0.5rem;
font-family: 'Monaco', 'Cascadia Code', 'Roboto Mono', monospace;
position: relative;
display: flex;
align-items: center;
justify-content: space-between;
}
.copy-btn {
background: rgba(255, 255, 255, 0.1);
border: none;
color: #e2e8f0;
padding: 0.25rem 0.5rem;
border-radius: 0.25rem;
cursor: pointer;
font-size: 0.875rem;
transition: background 0.3s ease;
}
.copy-btn:hover {
background: rgba(255, 255, 255, 0.2);
}
/* Community Section */
.community {
padding: 6rem 0;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: white;
}
.community .section-title,
.community .section-description {
color: white;
}
.community-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 2rem;
}
.community-card {
background: rgba(255, 255, 255, 0.1);
padding: 2rem;
border-radius: 1rem;
text-decoration: none;
color: white;
backdrop-filter: blur(20px);
border: 1px solid rgba(255, 255, 255, 0.2);
transition: all 0.3s ease;
text-align: center;
}
.community-card:hover {
transform: translateY(-5px);
background: rgba(255, 255, 255, 0.15);
}
.community-icon {
font-size: 3rem;
margin-bottom: 1rem;
}
.community-card h3 {
font-size: 1.25rem;
font-weight: 600;
margin-bottom: 1rem;
}
.community-card p {
color: rgba(255, 255, 255, 0.9);
margin-bottom: 1rem;
}
.community-link {
color: rgba(255, 255, 255, 0.8);
font-weight: 500;
}
/* Newsletter Section */
.newsletter {
padding: 4rem 0;
background: #f7fafc;
}
.newsletter-content {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 4rem;
align-items: center;
max-width: 800px;
margin: 0 auto;
}
.newsletter-text h2 {
font-size: 2rem;
font-weight: 700;
margin-bottom: 1rem;
color: #2d3748;
}
.newsletter-text p {
color: #4a5568;
font-size: 1.125rem;
}
.newsletter-form {
display: flex;
gap: 1rem;
}
.newsletter-form input {
flex: 1;
padding: 1rem;
border: 1px solid #e2e8f0;
border-radius: 0.5rem;
font-size: 1rem;
background: white;
transition: border-color 0.3s ease;
}
.newsletter-form input:focus {
outline: none;
border-color: #667eea;
box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}
/* Footer */
.footer {
background: #2d3748;
color: white;
padding: 4rem 0 2rem;
}
.footer-content {
display: grid;
grid-template-columns: 2fr 1fr 1fr 1fr;
gap: 3rem;
margin-bottom: 3rem;
}
.footer-brand {
display: flex;
align-items: center;
gap: 0.5rem;
font-weight: 700;
font-size: 1.25rem;
margin-bottom: 1rem;
}
.footer-description {
color: #a0aec0;
line-height: 1.6;
}
.footer-section h3 {
font-weight: 600;
margin-bottom: 1rem;
}
.footer-links {
list-style: none;
}
.footer-links li {
margin-bottom: 0.5rem;
}
.footer-links a {
color: #a0aec0;
text-decoration: none;
transition: color 0.3s ease;
}
.footer-links a:hover {
color: white;
}
.footer-bottom {
display: flex;
justify-content: space-between;
align-items: center;
padding-top: 2rem;
border-top: 1px solid #4a5568;
color: #a0aec0;
}
.footer-social {
display: flex;
gap: 1rem;
}
.footer-social a {
color: #a0aec0;
font-size: 1.25rem;
text-decoration: none;
transition: color 0.3s ease;
}
.footer-social a:hover {
color: white;
}
/* Back to Top Button */
.back-to-top {
position: fixed;
bottom: 2rem;
right: 2rem;
width: 50px;
height: 50px;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: white;
border: none;
border-radius: 50%;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.25rem;
box-shadow: 0 4px 20px rgba(102, 126, 234, 0.4);
transform: translateY(100px);
transition: all 0.3s ease;
z-index: 1000;
}
.back-to-top.visible {
transform: translateY(0);
}
.back-to-top:hover {
transform: translateY(-5px);
box-shadow: 0 8px 25px rgba(102, 126, 234, 0.6);
}
/* Responsive Design */
@media (max-width: 1024px) {
.hero .container {
grid-template-columns: 1fr;
gap: 2rem;
text-align: center;
}
.hero-title {
font-size: 3rem;
}
.features-grid {
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
.footer-content {
grid-template-columns: 1fr 1fr;
gap: 2rem;
}
}
@media (max-width: 768px) {
.container {
padding: 0 1rem;
}
.nav-menu {
display: none;
}
.nav-toggle {
display: flex;
}
.hero-title {
font-size: 2.5rem;
}
.hero-actions {
flex-direction: column;
align-items: stretch;
}
.hero-stats {
justify-content: center;
}
.section-title {
font-size: 2rem;
}
.features-grid {
grid-template-columns: 1fr;
}
.steps-container {
grid-template-columns: 1fr;
}
.newsletter-content {
grid-template-columns: 1fr;
gap: 2rem;
text-align: center;
}
.newsletter-form {
flex-direction: column;
}
.footer-content {
grid-template-columns: 1fr;
text-align: center;
}
.footer-bottom {
flex-direction: column;
gap: 1rem;
text-align: center;
}
}
@media (max-width: 480px) {
.hero-title {
font-size: 2rem;
}
.hero-description {
font-size: 1rem;
}
.section-title {
font-size: 1.75rem;
}
.code-window {
transform: none;
}
.examples-tabs {
flex-direction: column;
}
.tab-btn {
padding: 0.75rem 1rem;
}
}
/* Loading Animation */
.loading {
display: inline-block;
width: 20px;
height: 20px;
border: 3px solid rgba(255, 255, 255, .3);
border-radius: 50%;
border-top-color: #fff;
animation: spin 1s ease-in-out infinite;
}
@keyframes spin {
to {
transform: rotate(360deg);
}
}
/* Success Message */
.success-message {
background: #48bb78;
color: white;
padding: 1rem;
border-radius: 0.5rem;
margin-top: 1rem;
display: none;
}
.success-message.show {
display: block;
animation: fadeInUp 0.5s ease-out;
}
/* Hover Effects */
.hover-lift {
transition: transform 0.3s ease;
}
.hover-lift:hover {
transform: translateY(-2px);
}
/* Focus States */
input:focus,
button:focus {
outline: 2px solid #667eea;
outline-offset: 2px;
}
/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
:root {
--bg-color: #1a202c;
--text-color: #e2e8f0;
--border-color: #4a5568;
}
}