* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Geist', sans-serif;
}
body {
    background-color: #08080c; /* Matches the dark void in the image */
    
    /* Using those same text colors at extremely low opacity for the background */
    background-image: 
        linear-gradient(
            135deg, 
            rgba(181, 52, 147, 0.1) 0%,   /* #b53493 */
            rgba(233, 30, 99, 0.08) 30%,  /* #e91e63 */
            rgba(255, 204, 128, 0.05) 100% /* #ffcc80 */
        );
        
    background-attachment: fixed;
    color: #ffffff;
}

.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

/* 
   This adds that "glow" effect from the bottom of your screenshot 
   but keeps it smooth and non-distracting.
*/
/* Enhancing the background glow to match the text colors */
.hero::before {
    content: "";
    position: absolute;
    bottom: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    height: 50%;
    background: radial-gradient(
        ellipse at center, 
        rgba(233, 30, 99, 0.12) 0%, 
        transparent 75%
    );
    filter: blur(100px);
    z-index: -1;
}

/* Navbar Styling */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 80px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: transparent; 
}

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

.logo-icon-container img {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon {
    width: 45px;
    height: 45px;
}

.logo-text {
    font-weight: 600;
    font-size: 1.7rem;
    letter-spacing: -0.5px;
    color: #ffffff;
}

/* Optional: subtle animation to make the logo feel "alive" */
@keyframes pulse {
    from { transform: scale(1); opacity: 0.4; }
    to { transform: scale(1.2); opacity: 0.7; }
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
    
    /* Glassmorphism Effect */
    background: rgba(255, 255, 255, 0.03); /* Extremely subtle white */
    backdrop-filter: blur(12px); /* Blurs the background gradient underneath */
    -webkit-backdrop-filter: blur(12px);
    
    padding: 12px 30px;
    border-radius: 100px; /* Makes it a pill shape */
    
    /* Subtle border to catch the light, similar to your screenshot */
    border: 1px solid rgba(255, 255, 255, 0.3); 
    
    /* Soft shadow to give it elevation */
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

.nav-links a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.7); /* Slightly dimmed until hover */
    font-size: 0.9rem;
    font-weight: 400;
    transition: 0.3s ease;
}

.nav-links a:hover {
    color: #fff;
}

.gradient-text {
    /* Reduced size slightly and lightened the weight to match the images */
    font-size: 4.2rem;
    font-weight: 500; 
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -0.02em; /* Tighter spacing for that designer look */
    
    /* The exact gradient from image_b40f80.png */
    background: linear-gradient(
        to right, 
        #b53493 0%,    
        #e91e63 25%,   
        #ff4b5c 50%,   
        #f98e6b 75%,   
        #ffcc80 100%   
    );
    
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.subtext {
    color: #94a3b8;
    font-size: 1.1rem;
    font-weight: 300; /* Light weight for the subtext */
    margin-bottom: 40px;
    letter-spacing: 0.01em;
}

.btn-cta {
    background: linear-gradient(90deg, #a855f7, #f472b6, #fb923c);
    color: white;
    border: none;
    padding: 15px 35px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(168, 85, 247, 0.3);
    transition: transform 0.2s;
}

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

.capabilities {
    padding: 60px 80px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 500;
    margin-bottom: 15px;
}

.line-divider {
    width: 60px;
    height: 4px;
    background: linear-gradient(to right, #e91e63, #ffcc80);
    border-radius: 2px;
}

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* Glass Card Design */
.cap-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 40px;
    border-radius: 24px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.cap-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(233, 30, 99, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.icon-box {
    font-size: 1.2rem;
    font-weight: 600;
    color: #e91e63;
    margin-bottom: 20px;
    opacity: 0.8;
}

.cap-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 500;
}

.cap-card p {
    color: #94a3b8;
    font-size: 1rem;
    line-height: 1.6;
}

/* --- Reveal Animation Classes --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}


/* --- Marquee Section Styles --- */

.marquee-section {
    padding: 20px 0;
    overflow: hidden;
    background: transparent;
}

.marquee-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.marquee-row {
    display: flex;
    user-select: none;
    overflow: hidden;
}

.marquee-content {
    display: flex;
    gap: 20px;
    padding: 10px;
}

/* Glass Link Style from your reference */
.marquee-content span {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.7);
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 0.9rem;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.marquee-content span:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-color: #e91e63; /* Use your hot pink from the logo */
    transform: translateY(-2px);
}

/* Keyframe Animations */
.scroll-left .marquee-content {
    animation: scroll-left 30s linear infinite;
}

.scroll-right .marquee-content {
    animation: scroll-right 30s linear infinite;
}

@keyframes scroll-left {
    from { transform: translateX(0); }
    to { transform: translateX(-20%); }
}

@keyframes scroll-right {
    from { transform: translateX(-20%); }
    to { transform: translateX(0); }
}

/* Fade out edges for a smoother integration */
.marquee-container {
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.pricing-section {
    padding: 100px 80px;
    text-align: center;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.price-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 50px 40px;
    border-radius: 30px;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    display: flex;
    flex-direction: column;
}

/* Hover Animation: Scale and Glow */
.price-card:hover {
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(181, 52, 147, 0.5); /* Brand Magenta */
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

/* Featured Card Highlights */
.price-card.featured {
    border: 1px solid rgba(233, 30, 99, 0.4);
    background: linear-gradient(180deg, rgba(233, 30, 99, 0.05) 0%, transparent 100%);
}

.popular-tag {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, #b53493, #ff4b5c);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.plan-tier {
    font-size: 1.2rem;
    color: #94a3b8;
    margin-bottom: 10px;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 30px;
}

.price span {
    font-size: 1rem;
    color: #64748b;
}

.features {
    list-style: none;
    text-align: left;
    margin-bottom: 40px;
    flex-grow: 1;
}

.features li {
    margin-bottom: 15px;
    color: #cbd5e1;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
}

.features li::before {
    content: "✓";
    color: #ff4b5c;
    margin-right: 10px;
    font-weight: bold;
}

.btn-plan {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 15px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.btn-plan.glow {
    background: linear-gradient(90deg, #b53493, #e91e63);
    border: none;
    box-shadow: 0 10px 20px rgba(181, 52, 147, 0.3);
}

.btn-plan:hover {
    background: white;
    color: black;
}

/* Modal Background */
.modal {
    display: none; 
    position: fixed; 
    z-index: 2000; 
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
}

/* Modal Box */
.modal-content {
    background: rgba(20, 21, 26, 0.95);
    margin: 5% auto;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 90%;
    max-width: 600px;
    border-radius: 24px;
    position: relative;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    animation: modalFadeIn 0.4s ease;
}

@keyframes modalFadeIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

.close-btn {
    position: absolute;
    right: 25px;
    top: 20px;
    font-size: 28px;
    cursor: pointer;
    color: #94a3b8;
}

/* Form Elements */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.form-row {
    display: flex;
    gap: 15px;
}

.contact-form input, .contact-form select, .contact-form textarea {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: white;
    font-size: 0.95rem;
}

.contact-form label {
    font-size: 0.85rem;
    color: #94a3b8;
    margin-bottom: -5px;
}

.btn-submit {
    background: linear-gradient(90deg, #b53493, #e91e63);
    color: white;
    padding: 15px;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 10px;
    transition: 0.3s;
}

.btn-submit:hover {
    transform: scale(1.02);
    box-shadow: 0 0 20px rgba(233, 30, 99, 0.4);
}


/* phone and tablet */

@media screen and (max-width: 768px) {
    .logo {
        display: none;
    }
    .navbar {
        transform: scale(0.8);
        justify-content: center;
        padding: 15px 20px;
    } 

    .hero {
        height: 75vh;
        padding-top: 80px;
    }

    .gradient-text {
        font-size: 2.5rem;
        padding: 20px;
        text-align: center;
    }

    .btn-cta {
        padding: 12px 30px;
        font-size: 0.9rem;
    }

    .subtext {
        font-size: 1rem;
    }

    .section-header {
        text-align: center;
        margin-bottom: 40px;
    }   

    .section-header h2 {
        font-size: 2rem;
    }

    .line-divider {
        margin: 0 auto;
    }

    .capabilities {
        padding: 60px 40px;
    }

    .capabilities-grid {
        grid-template-columns: 1fr;
    
    }
}