/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #000;
    color: #fff;
    overflow-x: hidden;
    line-height: 1.6;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}

/* Utility classes */
.hidden {
    display: none;
}

.gradient-text {
    background: linear-gradient(to right, #a855f7, #ec4899);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.white-text {
    color: #fff;
}

.purple-text {
    color: #a855f7;
}

.pink-text {
    color: #ec4899;
}

/* Gradients */
.purple-gradient {
    background: linear-gradient(to right, #8b5cf6, #3b82f6);
}

.pink-gradient {
    background: linear-gradient(to right, #ec4899, #8b5cf6);
}

.blue-gradient {
    background: linear-gradient(to right, #3b82f6, #8b5cf6);
}

.purple-pink-gradient {
    background: linear-gradient(to right, #8b5cf6, #ec4899);
}

.pink-red-gradient {
    background: linear-gradient(to right, #ec4899, #ef4444);
}

.purple-indigo-gradient {
    background: linear-gradient(to right, #8b5cf6, #6366f1);
}

.purple-blue-gradient {
    background: linear-gradient(to right, #8b5cf6, #3b82f6);
}

.blue-purple-gradient {
    background: linear-gradient(to right, #3b82f6, #8b5cf6);
}

.green-gradient {
    background: linear-gradient(to right, #10b981, #059669);
}

.orange-gradient {
    background: linear-gradient(to right, #f97316, #ea580c);
}

.cyan-gradient {
    background: linear-gradient(to right, #06b6d4, #0891b2);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(168, 85, 247, 0.2);
}

.header-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .header-container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .header-container {
        padding: 0 2rem;
    }
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4rem;
}

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

.logo-img {
    height: 2.5rem;
    width: 2.5rem;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: bold;
    background: linear-gradient(to right, #a855f7, #ec4899);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.nav-desktop {
    display: none;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 768px) {
    .nav-desktop {
        display: flex;
    }
}

.nav-link {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.2s;
}

.nav-link:hover {
    color: #a855f7;
}

.cta-button {
    background: linear-gradient(to right, #7c3aed, #db2777);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 9999px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.cta-button:hover {
    background: linear-gradient(to right, #6d28d9, #be185d);
    transform: scale(1.05);
}

.menu-toggle {
    display: block;
    background: none;
    border: none;
    color: #d1d5db;
    cursor: pointer;
    padding: 0.5rem;
}

@media (min-width: 768px) {
    .menu-toggle {
        display: none;
    }
}

.menu-toggle:hover {
    color: #a855f7;
}

.mobile-menu {
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(12px);
    border-radius: 0.5rem;
    margin-top: 0.5rem;
    padding: 1rem;
    border: 1px solid rgba(168, 85, 247, 0.2);
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-nav-link {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.2s;
}

.mobile-nav-link:hover {
    color: #a855f7;
}

.mobile-cta-button {
    background: linear-gradient(to right, #7c3aed, #db2777);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 9999px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    width: 100%;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #581c87, #000, #831843);
}

.hero-pattern {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%239C92AC' fill-opacity='0.1'%3E%3Ccircle cx='30' cy='30' r='1'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.2;
}

.floating-particle {
    position: absolute;
    border-radius: 50%;
}

.particle-1 {
    top: 5rem;
    left: 2.5rem;
    width: 0.5rem;
    height: 0.5rem;
    background-color: #a855f7;
    animation: pulse 2s infinite;
}

.particle-2 {
    top: 10rem;
    right: 5rem;
    width: 0.25rem;
    height: 0.25rem;
    background-color: #ec4899;
    animation: ping 1s infinite;
}

.particle-3 {
    bottom: 10rem;
    left: 5rem;
    width: 0.75rem;
    height: 0.75rem;
    background-color: #c084fc;
    animation: bounce 1s infinite;
}

.particle-4 {
    bottom: 5rem;
    right: 2.5rem;
    width: 0.5rem;
    height: 0.5rem;
    background-color: #f9a8d4;
    animation: pulse 2s infinite;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(168, 85, 247, 0.1);
    border: 1px solid rgba(168, 85, 247, 0.2);
    border-radius: 9999px;
    padding: 0.5rem 1rem;
    margin-bottom: 1.5rem;
}

.badge-icon {
    width: 1rem;
    height: 1rem;
    color: #a855f7;
}

.hero-badge span {
    color: #c084fc;
    font-size: 0.875rem;
    font-weight: 500;
}

.hero-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 4.5rem;
    }
}

.hero-description {
    font-size: 1.25rem;
    color: #d1d5db;
    margin-bottom: 2rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

@media (min-width: 768px) {
    .hero-description {
        font-size: 1.5rem;
    }
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
        gap: 1.5rem;
    }
}

.primary-button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(to right, #7c3aed, #db2777);
    color: white;
    padding: 1rem 2rem;
    border-radius: 9999px;
    border: none;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.primary-button:hover {
    background: linear-gradient(to right, #6d28d9, #be185d);
    transform: scale(1.05);
}

.button-icon {
    width: 1.25rem;
    height: 1.25rem;
    transition: transform 0.2s;
}

.primary-button:hover .button-icon {
    transform: translateX(0.25rem);
}

.secondary-button {
    border: 1px solid rgba(168, 85, 247, 0.5);
    color: #c084fc;
    background: transparent;
    padding: 1rem 2rem;
    border-radius: 9999px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.secondary-button:hover {
    border-color: #a855f7;
    color: #ddd6fe;
    background: rgba(168, 85, 247, 0.1);
}

.hero-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 64rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .hero-features {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(168, 85, 247, 0.2);
    border-radius: 1rem;
    padding: 1.5rem;
    transition: all 0.3s;
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.1);
}

.feature-icon {
    width: 2rem;
    height: 2rem;
    color: #a855f7;
    margin: 0 auto 1rem;
}

.feature-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #9ca3af;
    font-size: 0.875rem;
}

/* Features Section */
.features {
    padding: 5rem 0;
    background: linear-gradient(to bottom, #000, rgba(88, 28, 135, 0.2));
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 3rem;
    }
}

.section-description {
    font-size: 1.25rem;
    color: #d1d5db;
    max-width: 48rem;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(168, 85, 247, 0.2);
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.3s;
    transform: translateY(0);
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(168, 85, 247, 0.4);
    transform: translateY(-0.5rem);
}

.feature-icon-wrapper {
    width: 4rem;
    height: 4rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: transform 0.3s;
}

.feature-item:hover .feature-icon-wrapper {
    transform: scale(1.1);
}

.feature-icon-large {
    width: 2rem;
    height: 2rem;
    color: white;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
    transition: color 0.3s;
}

.feature-item:hover .feature-title {
    color: #c084fc;
}

.feature-desc {
    color: #9ca3af;
    line-height: 1.6;
}

/* Technology Section */
.technology {
    padding: 5rem 0;
    background: linear-gradient(to bottom, rgba(88, 28, 135, 0.2), #000);
}

.technology-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .technology-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

.technology-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.tech-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.tech-icon {
    border-radius: 0.75rem;
    padding: 0.75rem;
    flex-shrink: 0;
}

.tech-icon-small {
    width: 1.5rem;
    height: 1.5rem;
    color: white;
}

.tech-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.5rem;
}

.tech-content p {
    color: #9ca3af;
    line-height: 1.6;
}

.technology-stats {
    position: relative;
}

.stats-container {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.2), rgba(236, 72, 153, 0.2));
    border-radius: 1.5rem;
    padding: 2rem;
    border: 1px solid rgba(168, 85, 247, 0.3);
}

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

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(4px);
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: center;
    border: 1px solid rgba(168, 85, 247, 0.2);
}

.stat-value {
    font-size: 1.875rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #d1d5db;
    font-size: 0.875rem;
}

.floating-element {
    position: absolute;
    border-radius: 50%;
    opacity: 0.6;
}

.top-right {
    top: -1rem;
    right: -1rem;
    width: 2rem;
    height: 2rem;
    background-color: #8b5cf6;
    animation: pulse 2s infinite;
}

.bottom-left {
    bottom: -1rem;
    left: -1rem;
    width: 1.5rem;
    height: 1.5rem;
    background-color: #ec4899;
    animation: bounce 1s infinite;
}

/* Solutions Section */
.solutions {
    padding: 5rem 0;
    background: linear-gradient(to bottom, #000, rgba(88, 28, 135, 0.2));
}

.solutions-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .solutions-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.solution-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(168, 85, 247, 0.2);
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.3s;
    transform: translateY(0);
}

.solution-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(168, 85, 247, 0.4);
    transform: translateY(-0.5rem);
}

.solution-icon-wrapper {
    width: 4rem;
    height: 4rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    border: 1px solid;
    transition: transform 0.3s;
}

.solution-item:hover .solution-icon-wrapper {
    transform: scale(1.1);
}

.solution-icon {
    width: 2rem;
    height: 2rem;
    color: white;
}

.solution-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
    transition: color 0.3s;
}

.solution-item:hover .solution-title {
    color: #c084fc;
}

.solution-desc {
    color: #9ca3af;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.learn-more-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #a855f7;
    background: none;
    border: none;
    font-weight: 500;
    cursor: pointer;
    transition: color 0.2s;
}

.learn-more-btn:hover {
    color: #c084fc;
}

.learn-more-icon {
    width: 1rem;
    height: 1rem;
    transition: transform 0.2s;
}

.learn-more-btn:hover .learn-more-icon {
    transform: translateX(0.25rem);
}

/* Footer */
.footer {
    background: linear-gradient(to top, #000, rgba(88, 28, 135, 0.2));
    border-top: 1px solid rgba(168, 85, 247, 0.2);
    padding: 4rem 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-logo-img {
    height: 2.5rem;
    width: 2.5rem;
}

.footer-logo-text {
    font-size: 1.5rem;
    font-weight: bold;
    background: linear-gradient(to right, #a855f7, #ec4899);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.footer-description {
    color: #9ca3af;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    color: #9ca3af;
    transition: color 0.2s;
}

.social-link:hover {
    color: #a855f7;
}

.social-icon {
    width: 1.25rem;
    height: 1.25rem;
}

.footer-heading {
    color: white;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-link {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-link:hover {
    color: #a855f7;
}

.contact-info {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: #9ca3af;
}

.contact-icon {
    width: 1rem;
    height: 1rem;
    margin-top: 0.125rem;
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(168, 85, 247, 0.2);
    margin-top: 3rem;
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
    }
}

.copyright {
    color: #9ca3af;
    font-size: 0.875rem;
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.legal-link {
    color: #9ca3af;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s;
}

.legal-link:hover {
    color: #a855f7;
}

/* Animations */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

@keyframes ping {
    75%, 100% {
        transform: scale(2);
        opacity: 0;
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(-25%);
        animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
    }
    50% {
        transform: none;
        animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
    }
}

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