:root {
    --primary: #8b1ee5;
    --primary-light: #b064f6;
    --background: #03061a;
    --card-bg: rgba(62, 60, 66, 0.089);
    --text: #e0e0e0;
    --success: #4caf50;
    --warning: #ff9800;
    --danger: #f44336;
    --border-radius: 12px;
    --glass-border: 1px solid rgba(255, 255, 255, 0.1);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    --glass-bg: rgba(30, 30, 36, 0.6);
    --glass-blur: 10px;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--background);
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(30, 136, 229, 0.12), transparent 30%),
        radial-gradient(circle at 80% 50%, rgba(172, 76, 175, 0.08), transparent 40%),
        radial-gradient(circle at 40% 80%, rgba(132, 0, 255, 0.1), transparent 35%);
    background-attachment: fixed;
    color: var(--text);
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    background-color: rgba(18, 18, 18, 0.7);
    backdrop-filter: blur(var(--glass-blur));
    position: fixed;
    width: 100%;
    z-index: 1000;
    padding: 1.2rem 0;
    border-bottom: var(--glass-border);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    position: relative;
}

.logo::after {
    content: "";
    position: absolute;
    width: 30px;
    height: 30px;
    background: var(--primary);
    border-radius: 50%;
    filter: blur(20px);
    opacity: 0.5;
    z-index: -1;
}

.logo img {
    height: 36px;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
    letter-spacing: 0.5px;
    text-shadow: 0 0 10px rgba(196, 30, 229, 0.3);
    margin-left: 1rem;
}

.primary-color {
    color: var(--primary);
    position: relative;
}

nav ul {
    display: flex;
    gap: 2rem;
    list-style: none;
}

nav a {
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    padding: 0.5rem 0;
    position: relative;
}

nav a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-light), var(--primary));
    transition: var(--transition);
}

nav a:hover {
    color: var(--primary-light);
}

nav a:hover::after {
    width: 100%;
}

.btn {
    display: inline-block;
    padding: 0.85rem 1.8rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(-100%) rotate(45deg);
    transition: all 0.6s ease;
    z-index: -1;
}

.btn:hover::before {
    transform: translateX(100%) rotate(45deg);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), #b215c0);
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(229, 30, 219, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(229, 30, 219, 0.5);
}

.btn-outline {
    background: rgba(229, 30, 153, 0.1);
    border: 1px solid rgba(222, 30, 229, 0.3);
    color: var(--primary-light);
    backdrop-filter: blur(var(--glass-blur));
}

.btn-outline:hover {
    border-color: var(--primary);
    color: white;
    background: rgba(229, 30, 229, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(229, 30, 219, 0.25);
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 80% 20%, rgba(30, 136, 229, 0.15), transparent 60%),
        radial-gradient(circle at 20% 70%, rgba(147, 76, 175, 0.08), transparent 50%);
    z-index: -1;
}

.hero::after {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), rgba(30, 136, 229, 0.3));
    filter: blur(80px);
    opacity: 0.2;
    top: 20%;
    right: 10%;
    z-index: -1;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.hero-text {
    flex: 1;
    min-width: 300px;
    position: relative;
    min-height: fit-content;
}

.hero-text::before {
    content: "";
    position: absolute;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--primary);
    filter: blur(50px);
    opacity: 0.2;
    left: -20px;
    top: -20px;
    z-index: -1;
}

.hero-image {
    flex: 1;
    min-width: 300px;
    max-width: 800px;
    position: relative;
    z-index: 2;
}

.hero-image::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary), var(--success));
    filter: blur(70px);
    opacity: 0.1;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    z-index: -1;
    animation: morphBlob 10s ease-in-out infinite;
}

@keyframes morphBlob {
    0% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
    25% { border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%; }
    50% { border-radius: 50% 50% 50% 50% / 50% 50% 50% 50%; }
    75% { border-radius: 30% 70% 70% 30% / 70% 30% 70% 30%; }
    100% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
}

.hero-image img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--glass-shadow);
    backdrop-filter: blur(var(--glass-blur));
    border: var(--glass-border);
    transition: var(--transition);
    transform: perspective(1000px) rotateY(-5deg);
}

.hero-image:hover img {
    transform: perspective(1000px) rotateY(0deg);
}

h1 {
    font-size: 3.8rem;
    line-height: 1.1;
    margin-bottom: 0.5rem;
    font-weight: 700;
    background: linear-gradient(to right, #fff, var(--primary-light));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: shimmer 3s infinite;
    position: relative;
    overflow: visible;
    min-height: fit-content;
    padding-bottom: 1rem;
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.tagline {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    line-height: 1.7;
    position: relative;
}

.hero-buttons {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
    position: relative;
}

.partners-section {
    position: relative;
    overflow: hidden;
    text-align: center;
    background-color: rgba(18, 18, 18, 0.7);
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    
  }

.partners-section::before {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 10% 80%, rgba(76, 175, 80, 0.1), transparent 60%);
    z-index: -1;
}

.partners-section h3{
    font-style: italic;
    font-weight: 100;
    text-decoration: underline;
    color: lightgrey;
    font-size: 1rem;
}
  
  .marquee {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
  }
  
  .marquee__group {
    display: flex;
    flex-wrap: nowrap;
    gap: 6rem; /* Increases spacing between logos */
    
    justify-content: center;
    align-items: center;
  }
  
  .marquee__group img {
    height: 6rem;
    width: auto;
    margin-top: 3rem;
    margin-bottom: 3rem;
    opacity: 75%;
    filter: grayscale(50%);
    transition: transform 0.3s ease;
    max-width: 90vw;
  }
  
  .marquee__group img:hover {
    transform: scale(1.1);
    opacity: 100%;
    filter: grayscale(0%);
  }

@media (max-width: 768px) {
  .marquee__group {
    flex-direction: column;
    gap: 0;
    justify-content: center;
  }
  }

section {
    padding: 5rem 0;
}

.section-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    text-align: center;
}

.section-subtitle {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 3rem;
    text-align: center;
    opacity: 0.8;
}

.features {
    background-color: rgba(18, 18, 18, 0.7);
    position: relative;
    overflow: hidden;
}

.features::before {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 10% 80%, rgba(147, 76, 175, 0.1), transparent 60%);
    z-index: -1;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: rgba(30, 30, 36, 0.4);
    border-radius: var(--border-radius);
    padding: 2.2rem;
    transition: var(--transition);
    border: var(--glass-border);
    height: 100%;
    backdrop-filter: blur(var(--glass-blur));
    box-shadow: var(--glass-shadow);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.feature-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    transform: scaleX(0);
    transition: transform 0.6s ease;
    z-index: -1;
}

.feature-card::after {
    content: "";
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--primary);
    opacity: 0.1;
    filter: blur(30px);
    transition: var(--transition);
    z-index: -2;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(183, 30, 229, 0.4);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover::after {
    opacity: 0.3;
    width: 150px;
    height: 150px;
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    position: relative;
}

.feature-icon::after {
    content: "";
    position: absolute;
    width: 40px;
    height: 40px;
    background: var(--primary);
    border-radius: 50%;
    filter: blur(20px);
    opacity: 0.2;
    left: 0;
    top: 0;
    z-index: -1;
}

.feature-title {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, #fff, var(--primary-light));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.how-it-works-container {
    max-width: 800px;
    margin: 0 auto;
}

.steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
}

.step {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    position: relative;
}

.step::before {
    content: "";
    position: absolute;
    left: 20px;
    top: 50px;
    bottom: -50px;
    width: 1px;
    background: linear-gradient(to bottom, var(--primary), transparent);
    z-index: 1;
}

.steps .step:last-child::before {
    display: none;
}

.step-number {
    background: rgba(30, 136, 229, 0.2);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    flex-shrink: 0;
    position: relative;
    border: 1px solid rgba(30, 136, 229, 0.3);
    box-shadow: 0 0 15px rgba(30, 136, 229, 0.3);
    z-index: 2;
}

.step-number::before {
    content: "";
    position: absolute;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--primary);
    filter: blur(10px);
    opacity: 0.3;
    z-index: -1;
}

.step-content {
    background: rgba(30, 30, 36, 0.4);
    border-radius: var(--border-radius);
    border: var(--glass-border);
    padding: 1.5rem;
    backdrop-filter: blur(var(--glass-blur));
    transition: var(--transition);
    box-shadow: var(--glass-shadow);
    position: relative;
    overflow: hidden;
    flex: 1;
}

.step-content::after {
    content: "";
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary);
    opacity: 0.1;
    filter: blur(15px);
}

.step:hover .step-content {
    transform: translateY(-5px);
    border-color: rgba(30, 136, 229, 0.4);
}

.step-content h3 {
    margin-bottom: 0.8rem;
    color: var(--primary-light);
    font-weight: 600;
}

.pricing {
    background-color: rgba(18, 18, 18, 0.7);
    position: relative;
    overflow: hidden;
}

.pricing::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 90% 40%, rgba(255, 152, 0, 0.1), transparent 60%);
    z-index: -1;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.pricing-card {
    background: rgba(30, 30, 36, 0.4);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    border: var(--glass-border);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    backdrop-filter: blur(var(--glass-blur));
    box-shadow: var(--glass-shadow);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.pricing-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(30, 136, 229, 0.05) 0%, 
        rgba(30, 30, 36, 0) 50%,
        rgba(30, 136, 229, 0.03) 100%);
    z-index: -1;
}

.pricing-card::after {
    content: "";
    position: absolute;
    width: 150px;
    height: 150px;
    background: var(--primary);
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.06;
    bottom: -50px;
    right: -50px;
    transition: var(--transition);
    z-index: -2;
}

.pricing-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(30, 136, 229, 0.4);
}

.pricing-card:hover::after {
    opacity: 0.12;
    width: 180px;
    height: 180px;
}

.pricing-header {
    margin-bottom: 2rem;
    position: relative;
}

.pricing-header::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), rgba(255, 6, 255, 0.178));
    border-radius: 3px;
}

.pricing-name {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    background: linear-gradient(90deg, #fff, var(--primary-light));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.pricing-price {
    font-size: 3rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 700;
    display: inline-block;
    text-shadow: 0 5px 15px rgba(30, 136, 229, 0.2);
}

.pricing-features {
    margin: 1.5rem 0;
    list-style: none;
}

.pricing-features li {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.pricing-features i {
    color: var(--success);
    margin-top: 0.25rem;
}

.pricing-btn {
    margin-top: auto;
    width: 100%;
}

.open-source {
    text-align: center;
}


footer {
    background-color: rgba(10, 10, 25, 0.288);
    padding: 80px 0 40px;
    border-top: 1px solid var(--glass-border);
    list-style-type: none;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer-logo {
    margin-bottom: 30px;
    
}

.powered-by-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.powered-by-footer span {
    margin-right: 10px;
    font-weight: 900;
    font-size: 1.2rem;
    color: var(--text-secondary);
}

.powered-by-footer img {
    max-width: 2rem;
    max-height: auto;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
}

.footer-column {
    margin-right: 60px;
    margin-bottom: 30px;
    list-style-type: none;
    color: var(--text);
}

.footer-column:last-child {
    margin-right: 0;
}

.footer-column h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--accent-color);
}

.footer-column li {
    margin-bottom: 10px;
    list-style-type: none;
    color: var(--text);
    text-decoration: none;
}

.footer-column li a {
    color: var(--text-secondary);
    transition: var(--transition);
}

.footer-column li a:hover {
    color: var(--accent-color);
}

.social-links {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    text-decoration: none;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    margin: 0 10px;
    transition: var(--transition);
    text-decoration: none;
    color: var(--text);
}

.social-links a:hover {
    background-color: var(--accent-color);
    transform: translateY(-5px);
    text-decoration: none;
}

footer p {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Responsive styles */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text);
    cursor: pointer;
}

.powered-by {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    text-decoration: none;
}

.powered-by span {
    margin-right: 10px;
    font-weight: 900;
    font-size: 1.2rem;
    color: var(--text);
    text-decoration: none;
}

.powered-by img {
    max-width: 2rem;
    max-height: auto;
    text-decoration: none;
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }
    
    nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: rgba(18, 18, 18, 0.95);
        padding: 1rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
    }
    
    nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    nav ul {
        flex-direction: column;
        gap: 1rem;
        padding: 0 20px;
    }
    
    .hero-content {
        flex-direction: column;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    .tagline {
        font-size: 1.1rem;
    }
}

/* Animation keyframes */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate {
    animation: fadeIn 0.6s ease forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 24px;
    font-weight: 700;
}

.logo img {
    margin-bottom: 10px;
}

.logo span {
    margin-bottom: 10px;
    font-weight: 900;
    background: linear-gradient(to right, var(--primary), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}