/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: #0a0a0a;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Navigation */
.navbar {
    background-color: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar-brand {
    text-decoration: none;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon {
    font-size: 1.5rem;
    color: #8b5cf6;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
}

.navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: #8b5cf6;
}

.cta-button {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    color: white;
}

.cta-button:hover {
    background: linear-gradient(135deg, #7c3aed, #6d28d9);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(139, 92, 246, 0.3);
    color: white;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: radial-gradient(ellipse at center, rgba(139, 92, 246, 0.1) 0%, rgba(10, 10, 10, 1) 70%);
    padding-top: 100px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 1;
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
}

.floating-element {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(139, 92, 246, 0.6);
    font-size: 0.875rem;
    animation: float 6s ease-in-out infinite;
}

.floating-element i {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.floating-element:nth-child(2) { animation-delay: -2s; }
.floating-element:nth-child(3) { animation-delay: -4s; }
.floating-element:nth-child(4) { animation-delay: -1s; }

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff, #e5e7eb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.watch-video-btn {
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
}

.watch-video-btn:hover {
    border-color: #8b5cf6;
    background-color: rgba(139, 92, 246, 0.1);
    color: white;
}

/* Introduction Section */
.introduction-section {
    background-color: #111111;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

/* Trusted By Section */
.trusted-section {
    background-color: #0a0a0a;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.trusted-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
}

.company-logo {
    padding: 1rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
    transition: all 0.3s ease;
}

.company-logo:hover {
    background-color: rgba(139, 92, 246, 0.1);
    color: #8b5cf6;
}

/* Features Section */
.features-section {
    background-color: #111111;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #ffffff;
}

.demo-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.demo-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.demo-avatar {
    width: 40px;
    height: 40px;
    background-color: #8b5cf6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.demo-info {
    flex: 1;
}

.demo-info strong {
    display: block;
    color: #ffffff;
}

.demo-status {
    color: #10b981;
    font-size: 0.875rem;
}

.demo-value {
    background-color: #10b981;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.875rem;
}

.demo-details p {
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.demo-metrics {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.metric {
    padding: 0.25rem 0.75rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    font-size: 0.875rem;
}

.metric.active {
    background-color: #10b981;
    color: white;
}

/* Chart Styles */
.feature-visual {
    padding: 2rem;
}

.chart-container {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.chart-header h4 {
    color: #ffffff;
    margin: 0;
}

.chart-controls {
    display: flex;
    gap: 0.5rem;
}

.chart-btn {
    padding: 0.5rem 1rem;
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.7);
    border-radius: 6px;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.chart-btn.active,
.chart-btn:hover {
    background-color: #8b5cf6;
    border-color: #8b5cf6;
    color: white;
}

.chart-content {
    display: flex;
    align-items: end;
    gap: 1rem;
    height: 200px;
}

.chart-bar {
    flex: 1;
    background: linear-gradient(to top, #8b5cf6, #a78bfa);
    border-radius: 4px 4px 0 0;
    position: relative;
    transition: all 0.3s ease;
}

.chart-bar:hover {
    background: linear-gradient(to top, #7c3aed, #8b5cf6);
}

.bar-value {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    color: #ffffff;
    font-size: 0.875rem;
    font-weight: 600;
}

/* Social Dashboard */
.social-dashboard {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.dashboard-header h4 {
    color: #ffffff;
    margin: 0;
}

.network-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

.status-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #10b981;
}

.status-indicator.active {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

.network-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.network-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 1rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.network-card:hover {
    background-color: rgba(139, 92, 246, 0.1);
    border-color: #8b5cf6;
}

.network-card i {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #8b5cf6;
}

.network-card span {
    display: block;
    color: #ffffff;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.network-metrics small {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.75rem;
}

/* Campaign Interface */
.campaign-interface {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.campaign-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.campaign-header h4 {
    color: #ffffff;
    margin: 0;
}

.campaign-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.campaign-item {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.campaign-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.campaign-info strong {
    color: #ffffff;
}

.campaign-status {
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.campaign-status.active {
    background-color: #10b981;
    color: white;
}

.campaign-status.pending {
    background-color: #f59e0b;
    color: white;
}

.campaign-metrics {
    display: flex;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

/* Technology Section */
.technology-section {
    background-color: #0a0a0a;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.section-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
}

.highlight-text {
    font-size: 1.25rem;
    font-weight: 600;
    color: #8b5cf6;
    margin-bottom: 2rem;
}

.subsection-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
}

.subsection-text {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
}

.integration-showcase {
    margin-top: 3rem;
}

.integration-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 2rem 1rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.integration-item:hover {
    background-color: rgba(139, 92, 246, 0.1);
    border-color: #8b5cf6;
    transform: translateY(-5px);
}

.integration-item i {
    font-size: 2rem;
    color: #8b5cf6;
}

.integration-item span {
    color: #ffffff;
    font-weight: 500;
}

/* Pricing Preview */
.pricing-preview {
    background-color: #111111;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-cards {
    margin-top: 3rem;
}

.pricing-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.pricing-card:hover {
    transform: translateY(-5px);
    border-color: #8b5cf6;
}

.pricing-card.featured {
    border-color: #8b5cf6;
    background-color: rgba(139, 92, 246, 0.1);
}

.pricing-card h4 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #8b5cf6;
    margin-bottom: 0.5rem;
}

.price span {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
}

.pricing-card p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(124, 58, 237, 0.1));
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

.cta-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

/* Footer */
.footer {
    background-color: #0a0a0a;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
    margin-bottom: 1rem;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    margin-top: 1rem;
}

.footer-title {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #8b5cf6;
}

.contact-info p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.contact-info a {
    color: #8b5cf6;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 2rem 0;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    margin: 0;
}

.footer-tagline-bottom {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .feature-title {
        font-size: 1.5rem;
    }
    
    .floating-element {
        display: none;
    }
    
    .network-grid {
        grid-template-columns: 1fr;
    }
    
    .chart-content {
        height: 150px;
    }
    
    .cta-title {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .pricing-card {
        margin-bottom: 1rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Button hover effects */
.btn {
    transition: all 0.3s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

/* Legal Pages Styles */
.legal-section {
    min-height: 100vh;
    padding-top: 120px;
    padding-bottom: 80px;
    background: radial-gradient(ellipse at center, rgba(139, 92, 246, 0.05) 0%, rgba(10, 10, 10, 1) 70%);
}

.legal-header {
    margin-bottom: 3rem;
}

.legal-title {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.legal-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.6);
}

.legal-content {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.legal-section-content {
    margin-bottom: 3rem;
}

.legal-section-content:last-child {
    margin-bottom: 0;
}

.legal-section-content h2 {
    font-size: 1.75rem;
    font-weight: 600;
    color: #8b5cf6;
    margin-bottom: 1rem;
    border-bottom: 2px solid rgba(139, 92, 246, 0.3);
    padding-bottom: 0.5rem;
}

.legal-section-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.75rem;
    margin-top: 1.5rem;
}

.legal-section-content p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.legal-section-content ul {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.legal-section-content li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.legal-section-content strong {
    color: #ffffff;
    font-weight: 600;
}

.contact-details {
    background-color: rgba(139, 92, 246, 0.1);
    border-radius: 8px;
    padding: 1.5rem;
    border: 1px solid rgba(139, 92, 246, 0.3);
    margin-top: 1rem;
}

.contact-details p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.9);
}

.contact-details a {
    color: #8b5cf6;
    text-decoration: none;
}

.contact-details a:hover {
    text-decoration: underline;
}

/* Coming Soon Pages Styles */
.docs-section,
.blog-section,
.company-section,
.community-section {
    min-height: 100vh;
    padding-top: 120px;
    padding-bottom: 80px;
    background: radial-gradient(ellipse at center, rgba(139, 92, 246, 0.05) 0%, rgba(10, 10, 10, 1) 70%);
}

.docs-header,
.blog-header,
.company-header,
.community-header {
    margin-bottom: 3rem;
}

.docs-title,
.blog-title,
.company-title,
.community-title {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.docs-subtitle,
.blog-subtitle,
.company-subtitle,
.community-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

.docs-content,
.blog-content,
.company-content,
.community-content {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.coming-soon-card {
    text-align: center;
    padding: 2rem;
}

.coming-soon-icon {
    font-size: 4rem;
    color: #8b5cf6;
    margin-bottom: 2rem;
}

.coming-soon-card h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.coming-soon-card p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.coming-soon-card .btn {
    margin-top: 1rem;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #0a0a0a;
}

::-webkit-scrollbar-thumb {
    background: #8b5cf6;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #7c3aed;
}

/* Responsive adjustments for all pages */
@media (max-width: 768px) {
    .contact-title,
    .pricing-hero-title,
    .legal-title,
    .docs-title,
    .blog-title,
    .company-title,
    .community-title {
        font-size: 2.5rem;
    }
    
    .contact-form-container,
    .legal-content,
    .docs-content,
    .blog-content,
    .company-content,
    .community-content {
        padding: 2rem;
    }
    
    .checkbox-group {
        grid-template-columns: 1fr;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
    }
    
    .pricing-plan-card.featured {
        transform: none;
    }
    
    .price-amount {
        font-size: 2.5rem;
    }
    
    .legal-section-content h2 {
        font-size: 1.5rem;
    }
    
    .legal-section-content h3 {
        font-size: 1.125rem;
    }
    
    .coming-soon-icon {
        font-size: 3rem;
    }
    
    .coming-soon-card h2 {
        font-size: 1.75rem;
    }
}
