:root {
    --primary-purple: #6B46C1;
    --secondary-purple: #9F7AEA;
    --dark-purple: #4C1D95;
    --neon-cyan: #06B6D4;
    --neon-pink: #EC4899;
    --text-light: #F8FAFC;
    --text-gray: #CBD5E1;
    --dark-bg: #0F0F23;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    transition: all 0.3s ease-in-out;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-purple) 50%, var(--primary-purple) 100%);
    color: var(--text-light);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(15, 15, 35, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(159, 122, 234, 0.2);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(15, 15, 35, 0.98);
    box-shadow: 0 4px 20px rgba(107, 70, 193, 0.3);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.nav-logo {
    display: flex;
    align-items: rem;
    font-family: 'Arial';
    font-size: 1.5rem;
    font-weight: 700;
    color:white;/*var(--secondary-purple);*/
    text-decoration: none;
}

.text-purple-300 {
    --tw-text-opacity: 1;
    color: rgb(216 180 254 / var(--tw-text-opacity, 1));
    margin-right: 0.5rem;
    font-size: 1.5rem;
    filter: drop-shadow(0 0 10px var(--neon-cyan));
}

/*.nav-logo::before {
    content: '📋';
    margin-right: 0.5rem;
    font-size: 1.5rem;
    filter: drop-shadow(0 0 10px var(--neon-cyan));
}
*/
.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-gray);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: var(--neon-cyan);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--neon-cyan);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--secondary-purple);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: radial-gradient(ellipse at center, var(--primary-purple) 0%, var(--dark-purple) 40%, var(--dark-bg) 100%);
    padding-top: 80px;
}

#svglogo {
  animation: zoom 2s infinite ease-in-out;
}

@keyframes zoom {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}

/*.hero::before{
    <svg xmlns="http://www.w3.org/2000/svg" width="40" height="40" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-scroll w-8 h-8 text-purple-300" id="svglogo"><path d="M19 17V5a2 2 0 0 0-2-2H4"></path><path d="M8 21h12a2 2 0 0 0 2-2v-1a1 1 0 0 0-1-1H11a1 1 0 0 0-1 1v1a2 2 0 1 1-4 0V5a2 2 0 1 0-4 0v2a1 1 0 0 0 1 1h3"></path></svg>
}*/

/*.hero::before {
    position: absolute;
    left: -80px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 3rem;
    filter: drop-shadow(0 0 20px var(--neon-cyan));
    animation: pulse 2s ease-in-out infinite;
}*/

@keyframes drift {
    0% { transform: translateY(0); }
    100% { transform: translateY(-100px); }
}

.hero-content {
    text-align: center;
    z-index: 2;
    position: relative;
}

.logo {
    font-family: 'Arial','Orbitron', monospace;
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

/*#svglogo {
    color:rgb(216 180 254 / var(--tw-text-opacity, 1)) ;
    position: rem;
    left: -80px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 3rem;
    filter: drop-shadow(0 0 20px var(--neon-cyan));
    animation: pulse 2s ease-in-out infinite;
}*/

.logo::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--neon-cyan), transparent);
    animation: glow 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: translateY(-50%) scale(1); }
    50% { transform: translateY(-50%) scale(1.1); }
}

@keyframes glow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, var(--text-light), var(--secondary-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(45deg, var(--primary-purple), var(--secondary-purple));
    color: white;
    box-shadow: 0 4px 15px rgba(107, 70, 193, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--secondary-purple);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(107, 70, 193, 0.6);
}

.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: 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-indicator::before {
    content: '⬇';
    font-size: 2rem;
    color: var(--secondary-purple);
    filter: drop-shadow(0 0 10px var(--secondary-purple));
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* How ScrollScape Works Section */
.how-it-works {
    padding: 100px 0;
    background: linear-gradient(180deg, transparent 0%, rgba(15, 15, 35, 0.6) 100%);
}

.works-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.work-step {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 20px;
    border: 2px solid transparent;
    position: relative;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

/*.work-step::before {
    content: '';
    position: absolute;
    inset: 0;
    padding: 2px;
    background: linear-gradient(45deg, var(--neon-cyan), var(--neon-pink));
    border-radius: 20px;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: xor;
    opacity: 0;
    transition: opacity 0.3s ease;
}*/

.work-step:hover{
    
    box-shadow: 0 20px 40px rgba(6, 182, 212, 0.6), 0 0 30px #3b82f6;
    transform: translateX(10px);
    opacity: 0.95;
    
}


.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, var(--primary-purple), var(--secondary-purple));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(107, 70, 193, 0.4);
}

.step-number:hover{
    transform: inherit;
    opacity: inherit;
    translate: inherit;
}

.step-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
    filter: drop-shadow(0 0 10px currentColor);
}

.work-step h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--secondary-purple);
}

.work-step p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Features Section */
.features {
    padding: 100px 0;
    background: linear-gradient(180deg, transparent 0%, rgba(15, 15, 35, 0.8) 100%);
}

.section-title {
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-light);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, var(--neon-cyan), var(--neon-pink));
    border-radius: 2px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
    perspective: 1000px;
    position: relative;
}

.feature-card {
    
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border: 0px solid #1e1e2f;
    backdrop-filter: blur(10px);
    transition: transform 0.15s ease-out, box-shadow 0.25s ease;
    transform-style: preserve-3d;
    will-change: transform;
    perspective: 1000px;
    overflow: hidden;


}

.feature-card:hover {
    
    z-index: 10;
    box-shadow:
        0 0 60px rgba(99, 102, 241, 0.8),
        0 0 30px #160595,
        inset -4px -4px 8px rgba(255, 255, 255, 0.1),
        inset 4px 4px 8px rgba(0, 0, 0, 0.3);
}


.feature-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(159, 122, 234, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 0;
}

.feature-card:hover::before {
    opacity: 1;
}




.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
    filter: drop-shadow(0 0 10px currentColor);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-purple);
}

.feature-card p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Use Cases Section */
.use-cases {
    padding: 100px 0;
    background: linear-gradient(45deg, var(--dark-bg) 0%, var(--dark-purple) 100%);
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.use-case-card {
    background: linear-gradient(135deg, rgba(107, 70, 193, 0.1) 0%, rgba(76, 29, 149, 0.1) 100%);
    padding: 2rem;
    border-radius: 20px;
    border: 2px solid transparent;
    background-clip: padding-box;
    position: relative;
    transition: all 0.3s ease;
}

.use-case-card::before {
    content: '';
    position: absolute;
    inset: 0;
    padding: 2px;
    background: linear-gradient(45deg, var(--neon-cyan), var(--neon-pink));
    border-radius: 20px;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: xor;
    opacity: 0;
    transition: opacity 0.3s ease;
}

/*.use-case-card:hover::before {
    opacity: 0;

}*/

.use-case-card:hover {
    transform: scale(1.05);
    border: 2px solid var(--neon-cyan);
    box-shadow: 0 20px 40px rgba(6, 182, 212, 0.2);
}

.use-case-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    display: block;
    background: linear-gradient(45deg, var(--neon-cyan), var(--neon-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: radial-gradient(ellipse at center, rgba(107, 70, 193, 0.1) 0%, transparent 70%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: linear-gradient(135deg, rgba(248, 250, 252, 0.05) 0%, rgba(203, 213, 225, 0.05) 100%);
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid var(--neon-cyan);
    position: relative;
    backdrop-filter: blur(5px);
}

.testimonial-card::before {
    content: '"';
    font-size: 4rem;
    color: var(--secondary-purple);
    position: absolute;
    top: -10px;
    left: 20px;
    font-family: serif;
}

.testimonial-card:hover{
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
    background-color: #1e1e2f;
    transition: all 0.3s ease-in-out;    
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1rem;
    color: var(--text-gray);
    line-height: 1.6;
}

.testimonial-author {
    font-weight: 600;
    color: var(--neon-cyan);
}

.testimonial-role {
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* Footer */
.footer {
    padding: 50px 0;
    background: linear-gradient(180deg, transparent 0%, var(--dark-bg) 100%);
    border-top: 1px solid rgba(159, 122, 234, 0.2);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-logo {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-purple);
}

#footer-logo{
    animation: zoom 2s infinite ease-in-out
}

.footer-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--neon-cyan);
}

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(159, 122, 234, 0.1);
    color: var(--text-gray);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(15, 15, 35, 0.98);
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }

    .logo {
        font-size: 2.5rem;
    }

    .logo::before {
        left: -60px;
        font-size: 2rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 250px;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 2rem;
    }

    .logo::before {
        left: -40px;
        font-size: 1.5rem;
    }

    .hero h1 {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .features-grid,
    .use-cases-grid,
    .testimonials-grid,
    .works-grid {
        grid-template-columns: 1fr;
    }
}