:root {
    --primary: #14F195;
    --primary-dark: #0FD97F;
    --secondary: #9945FF;
    --secondary-dark: #7B2CBF;
    --background: #0A0E27;
    --surface: #141B2D;
    --surface-light: #1E2742;
    --text-primary: #FFFFFF;
    --text-secondary: #A0AEC0;
    --text-muted: #718096;
    --border: rgba(255, 255, 255, 0.1);
    --gradient-1: linear-gradient(135deg, #14F195 0%, #9945FF 100%);
    --gradient-2: linear-gradient(135deg, #9945FF 0%, #14F195 100%);
    --gradient-3: linear-gradient(135deg, #00D9FF 0%, #9945FF 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--background);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 14, 39, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 16px 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.logo:hover {
    opacity: 0.8;
}

.logo-icon {
    font-size: 24px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.1); }
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--text-primary);
}

.nav-cta {
    background: var(--gradient-1);
    color: var(--background);
    padding: 8px 20px;
    border-radius: 8px;
    font-weight: 600;
}

.nav-cta:hover {
    color: var(--background);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(20, 241, 149, 0.3);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 24px 80px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 0;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: float 20s ease-in-out infinite;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: var(--gradient-1);
    top: -200px;
    left: -200px;
    animation-delay: 0s;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: var(--gradient-3);
    bottom: -150px;
    right: -150px;
    animation-delay: 5s;
}

.orb-3 {
    width: 400px;
    height: 400px;
    background: var(--gradient-2);
    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;
    max-width: 900px;
    text-align: center;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(20, 241, 149, 0.1);
    border: 1px solid rgba(20, 241, 149, 0.2);
    border-radius: 100px;
    font-size: 14px;
    color: var(--primary);
    margin-bottom: 32px;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.hero-title {
    font-size: clamp(48px, 8vw, 96px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.title-line {
    display: block;
}

.title-gradient {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 32px;
    line-height: 1.6;
}

.hero-tagline {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 40px;
    color: var(--text-primary);
    font-style: italic;
}

.tagline-quote {
    color: var(--primary);
    font-size: 32px;
    vertical-align: middle;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.hero-social {
    display: flex;
    gap: 24px;
    justify-content: center;
    margin-bottom: 64px;
    flex-wrap: wrap;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    min-width: 240px;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.social-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 ease;
}

.social-btn:hover::before {
    left: 100%;
}

.social-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.social-btn-twitter {
    background: linear-gradient(135deg, #1DA1F2 0%, #0d8bd9 100%);
    color: white;
    box-shadow: 0 8px 24px rgba(29, 161, 242, 0.3);
}

.social-btn-twitter:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 16px 40px rgba(29, 161, 242, 0.5);
    border-color: rgba(255, 255, 255, 0.3);
}

.social-btn-pump {
    background: linear-gradient(135deg, #9945FF 0%, #7B2CBF 100%);
    color: white;
    box-shadow: 0 8px 24px rgba(153, 69, 255, 0.3);
}

.social-btn-pump:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 16px 40px rgba(153, 69, 255, 0.5);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--gradient-1);
    color: var(--background);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(20, 241, 149, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border);
}

.btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

.btn-large {
    padding: 16px 40px;
    font-size: 18px;
}

.hero-stats {
    display: flex;
    gap: 64px;
    justify-content: center;
    flex-wrap: wrap;
    padding-top: 64px;
    border-top: 1px solid var(--border);
}

.stat {
    text-align: center;
}

.stat-value {
    font-size: 48px;
    font-weight: 800;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Section Styles */
.section {
    padding: 120px 0;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px;
}

.section-label {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(153, 69, 255, 0.1);
    border: 1px solid rgba(153, 69, 255, 0.2);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.section-description {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* How It Works */
.how-it-works {
    background: var(--surface);
}

.workflow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
}

.workflow-step {
    flex: 1;
    min-width: 280px;
    max-width: 320px;
    padding: 40px;
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: 24px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.workflow-step:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 16px 48px rgba(20, 241, 149, 0.2);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    color: var(--background);
}

.step-icon {
    font-size: 48px;
    margin-bottom: 24px;
}

.step-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
}

.step-description {
    color: var(--text-secondary);
    line-height: 1.6;
}

.workflow-connector {
    width: 60px;
    height: 2px;
    background: var(--gradient-1);
    opacity: 0.3;
}

@media (max-width: 768px) {
    .workflow-connector {
        display: none;
    }
}

/* Benefits */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-card {
    padding: 40px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 24px;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 16px 48px rgba(20, 241, 149, 0.15);
}

.benefit-icon {
    font-size: 40px;
    margin-bottom: 24px;
}

.benefit-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
}

.benefit-description {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Future Section */
.future {
    background: var(--surface);
}

.future-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.future-text {
    text-align: left;
}

.future-description {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 24px;
}

.future-features {
    margin-top: 40px;
}

.future-feature {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
    font-size: 16px;
    color: var(--text-secondary);
}

.feature-check {
    width: 24px;
    height: 24px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--background);
    font-weight: 700;
    flex-shrink: 0;
}

.future-visual {
    position: relative;
}

.code-block {
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

.code-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    background: var(--surface-light);
    border-bottom: 1px solid var(--border);
}

.code-dots {
    display: flex;
    gap: 8px;
}

.code-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--text-muted);
}

.code-dots span:nth-child(1) {
    background: #FF5F56;
}

.code-dots span:nth-child(2) {
    background: #FFBD2E;
}

.code-dots span:nth-child(3) {
    background: #27C93F;
}

.code-title {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 500;
}

.code-content {
    padding: 24px;
    font-family: 'Monaco', 'Menlo', 'Courier New', monospace;
    font-size: 14px;
    line-height: 1.8;
}

.code-line {
    margin-bottom: 8px;
}

.code-keyword {
    color: #C792EA;
}

.code-string {
    color: #C3E88D;
}

.code-comment {
    color: var(--text-muted);
    font-style: italic;
}

@media (max-width: 968px) {
    .future-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

/* CTA Section */
.cta-section {
    background: var(--surface);
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.2;
}

.cta-description {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: var(--background);
    border-top: 1px solid var(--border);
    padding: 80px 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 80px;
    margin-bottom: 64px;
}

.footer-brand {
    max-width: 300px;
}

.footer-tagline {
    color: var(--text-secondary);
    margin-top: 16px;
    font-size: 14px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-heading {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.footer-column a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 14px;
}

@media (max-width: 768px) {
    .nav-links {
        gap: 16px;
    }
    
    .nav-links a {
        font-size: 12px;
    }
    
    .nav-cta {
        padding: 6px 16px;
    }
    
    .hero-social {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
        margin-bottom: 48px;
    }
    
    .social-btn {
        min-width: auto;
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
        padding: 16px 28px;
        font-size: 16px;
    }
    
    .hero-stats {
        gap: 32px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

/* Smooth scroll animations */
@media (prefers-reduced-motion: no-preference) {
    .workflow-step,
    .benefit-card {
        opacity: 0;
        transform: translateY(30px);
        animation: fadeInUp 0.6s ease-out forwards;
    }
    
    .workflow-step:nth-child(1) { animation-delay: 0.1s; }
    .workflow-step:nth-child(3) { animation-delay: 0.2s; }
    .workflow-step:nth-child(5) { animation-delay: 0.3s; }
    
    .benefit-card:nth-child(1) { animation-delay: 0.1s; }
    .benefit-card:nth-child(2) { animation-delay: 0.2s; }
    .benefit-card:nth-child(3) { animation-delay: 0.3s; }
    .benefit-card:nth-child(4) { animation-delay: 0.4s; }
    .benefit-card:nth-child(5) { animation-delay: 0.5s; }
    .benefit-card:nth-child(6) { animation-delay: 0.6s; }
}

/* Coming Soon Page */
.coming-soon-hero {
    min-height: 100vh;
}

.coming-soon-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.coming-soon-icon {
    font-size: 80px;
    margin-bottom: 32px;
    animation: pulse 2s ease-in-out infinite;
}

.coming-soon-title {
    font-size: clamp(48px, 6vw, 72px);
    font-weight: 800;
    margin-bottom: 64px;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.coming-soon-messages {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 64px;
}

.coming-soon-message {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 40px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 24px;
    text-align: left;
    transition: all 0.3s ease;
}

.coming-soon-message:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
    box-shadow: 0 16px 48px rgba(20, 241, 149, 0.2);
}

.message-icon {
    font-size: 48px;
    flex-shrink: 0;
}

.message-content {
    flex: 1;
}

.message-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.message-subtitle {
    font-size: 18px;
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

@media (max-width: 768px) {
    .coming-soon-message {
        flex-direction: column;
        text-align: center;
        padding: 32px 24px;
    }
    
    .message-icon {
        margin-bottom: 16px;
    }
    
    .coming-soon-icon {
        font-size: 60px;
    }
}

