
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #000;
    color: #fff;
    overflow-x: hidden;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}


#rainCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    opacity: 0.3;
}


#cursorGlow {
    position: fixed;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(147, 51, 234, 0.2);
    filter: blur(12px);
    pointer-events: none;
    z-index: 50;
    transition: all 0.3s ease-out;
}


#navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 40;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(147, 51, 234, 0.1);
    transition: all 0.3s ease;
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.logo-section:hover {
    transform: scale(1.05);
}

.logo-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #9333ea, #6b21a8);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(147, 51, 234, 0.25);
    transition: all 0.3s ease;
}

.logo-icon:hover {
    box-shadow: 0 8px 25px rgba(147, 51, 234, 0.4);
}

.logo-icon span {
    color: white;
    font-weight: bold;
    font-size: 1.25rem;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: bold;
    background: linear-gradient(to right, #fff, #f3e8ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    position: relative;
    background: none;
    border: none;
    color: #d1d5db;
    font-size: 1.125rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(to right, #9333ea, #6b21a8);
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #9333ea;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    padding: 0.5rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-menu-btn:hover {
    background: rgba(147, 51, 234, 0.1);
}

.mobile-nav {
    display: none;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(147, 51, 234, 0.2);
}

.mobile-nav-content {
    padding: 1.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-nav-link {
    background: none;
    border: none;
    color: #d1d5db;
    font-size: 1.125rem;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    text-align: left;
    cursor: pointer;
    border-radius: 8px;
    margin: 0 0.5rem;
    transition: all 0.3s ease;
}

.mobile-nav-link:hover {
    color: #9333ea;
    background: rgba(147, 51, 234, 0.05);
}


.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(107, 33, 168, 0.1) 0%, #000 50%, rgba(107, 33, 168, 0.1) 100%);
}

.bg-element {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
}

.bg-element-1 {
    top: 25%;
    left: 25%;
    width: 384px;
    height: 384px;
    background: rgba(147, 51, 234, 0.05);
    animation: pulse 4s ease-in-out infinite;
}

.bg-element-2 {
    bottom: 25%;
    right: 25%;
    width: 512px;
    height: 512px;
    background: rgba(147, 51, 234, 0.03);
    animation: pulse 4s ease-in-out infinite 1s;
}

.bg-element-3 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 640px;
    height: 640px;
    background: linear-gradient(45deg, rgba(147, 51, 234, 0.02), rgba(107, 33, 168, 0.02));
    animation: spin 20s linear infinite;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 10;
    max-width: 80rem;
    animation: fadeInUp 1s ease-out;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(to right, rgba(147, 51, 234, 0.1), rgba(107, 33, 168, 0.1));
    backdrop-filter: blur(8px);
    border: 1px solid rgba(147, 51, 234, 0.2);
    border-radius: 50px;
    padding: 12px 24px;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-badge i {
    color: #9333ea;
}

.hero-badge span {
    font-size: 1.125rem;
    font-weight: 500;
}

.cursor {
    color: #9333ea;
    animation: blink 1s infinite;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 8rem);
    font-weight: 900;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.5s both;
}

.title-blox {
    background: linear-gradient(to right, #fff, #f3e8ff, #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-tools {
    background: linear-gradient(to right, #9333ea, #6b21a8, #9333ea);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 20px rgba(147, 51, 234, 0.3));
}

.hero-description {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    color: #d1d5db;
    margin-bottom: 3rem;
    max-width: 64rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    animation: fadeInUp 1s ease-out 0.7s both;
}

.hero-btn {
    position: relative;
    background: linear-gradient(to right, #9333ea, #6b21a8);
    border: none;
    color: white;
    padding: 1rem 3rem;
    border-radius: 50px;
    font-size: 1.25rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(147, 51, 234, 0.25);
    overflow: hidden;
    animation: fadeInUp 1s ease-out 0.9s both;
}

.hero-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 40px rgba(147, 51, 234, 0.5);
}

.btn-shimmer {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.7s ease;
}

.hero-btn:hover .btn-shimmer {
    left: 100%;
}

.btn-content {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-content i {
    transition: transform 0.3s ease;
}

.hero-btn:hover .btn-content i {
    transform: translateX(4px);
}


.tools-section {
    padding: 8rem 0;
    position: relative;
    background: linear-gradient(to bottom, #000, rgba(17, 24, 39, 0.5), #000);
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
}

.title-white {
    background: linear-gradient(to right, #fff, #d1d5db);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-purple {
    background: linear-gradient(to right, #9333ea, #6b21a8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #9ca3af;
    max-width: 32rem;
    margin: 0 auto;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 88rem;
    margin: 0 auto;
}

.tool-card {
    position: relative;
    background: linear-gradient(to bottom, rgba(17, 24, 39, 0.8), rgba(17, 24, 39, 0.4));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(147, 51, 234, 0.2);
    border-radius: 24px;
    padding: 2rem;
    transition: all 0.5s ease;
    overflow: visible;
}

.tool-card:hover {
    transform: scale(1.02) translateY(-8px);
    border-color: rgba(147, 51, 234, 0.4);
}

.tool-card.featured {
    border: 2px solid rgba(147, 51, 234, 0.5);
    padding-top: 3rem;
}

.tool-card.featured:hover {
    border-color: rgba(147, 51, 234, 0.7);
}

.card-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(147, 51, 234, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
    border-radius: 24px;
}

.tool-card:hover .card-glow {
    opacity: 1;
}

.card-border {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, transparent, #9333ea, transparent);
    border-radius: 24px 24px 0 0;
}

.tool-card.featured .card-border {
    height: 8px;
    background: linear-gradient(to right, #9333ea, #6b21a8, #9333ea);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(to right, #9333ea, #6b21a8);
    color: white;
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: bold;
    box-shadow: 0 8px 25px rgba(147, 51, 234, 0.5);
    z-index: 20;
}

.card-content {
    position: relative;
    z-index: 10;
}

.card-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.card-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #9333ea, #6b21a8);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    box-shadow: 0 8px 25px rgba(147, 51, 234, 0.25);
}

.card-icon i {
    color: white;
    font-size: 1.5rem;
}

.card-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
    margin-bottom: 4px;
}

.card-subtitle {
    color: #9333ea;
    font-size: 0.875rem;
    font-weight: 600;
}

.card-description {
    color: #d1d5db;
    font-size: 1.125rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.card-features {
    margin-bottom: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.feature:hover {
    color: white;
}

.feature-icon {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #9333ea, #6b21a8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    color: white;
    font-size: 0.75rem;
}

.feature span {
    color: #d1d5db;
    transition: color 0.3s ease;
}

.card-footer {
    text-align: center;
}

.card-cta-text {
    color: #9333ea;
    font-weight: bold;
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.card-btn {
    position: relative;
    width: 100%;
    background: linear-gradient(to right, #9333ea, #6b21a8);
    border: none;
    color: white;
    padding: 12px 24px;
    border-radius: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(147, 51, 234, 0.25);
    overflow: hidden;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.card-btn:hover {
    box-shadow: 0 12px 40px rgba(147, 51, 234, 0.5);
}

.card-btn:hover .btn-shimmer {
    left: 100%;
}

.card-btn:hover .btn-content i {
    transform: translateX(4px);
}


.contact-section {
    padding: 8rem 0;
    background: #000;
    position: relative;
    overflow: hidden;
}

.contact-bg {
    position: absolute;
    inset: 0;
}

.bg-element-4 {
    top: 50%;
    left: 25%;
    width: 384px;
    height: 384px;
    background: rgba(147, 51, 234, 0.05);
    border-radius: 50%;
    filter: blur(60px);
}

.bg-element-5 {
    bottom: 25%;
    right: 25%;
    width: 384px;
    height: 384px;
    background: rgba(107, 33, 168, 0.05);
    border-radius: 50%;
    filter: blur(60px);
}

.contact-content {
    text-align: center;
    position: relative;
    z-index: 10;
}

.contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 24rem;
    margin: 0 auto;
}

.contact-btn {
    position: relative;
    padding: 1rem 2.5rem;
    border-radius: 16px;
    font-size: 1.125rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
}

.contact-btn.primary {
    background: linear-gradient(to right, #9333ea, #6b21a8);
    border: none;
    color: white;
    box-shadow: 0 8px 25px rgba(147, 51, 234, 0.25);
}

.contact-btn.primary:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 40px rgba(147, 51, 234, 0.5);
}

.contact-btn.secondary {
    background: transparent;
    border: 2px solid rgba(147, 51, 234, 0.5);
    color: #9333ea;
}

.contact-btn.secondary:hover {
    background: rgba(147, 51, 234, 0.1);
    border-color: #9333ea;
    color: white;
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(147, 51, 234, 0.25);
}


.footer {
    padding: 3rem 0;
    background: linear-gradient(to top, #111827, #000);
    border-top: 1px solid rgba(147, 51, 234, 0.2);
}

.footer-text {
    text-align: center;
    color: #9ca3af;
    font-size: 1.125rem;
}

.heart {
    color: #9333ea;
    animation: pulse 2s ease-in-out infinite;
}


@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%,
    100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

@keyframes spin {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes blink {
    0%,
    50% {
        opacity: 1;
    }
    51%,
    100% {
        opacity: 0;
    }
}


@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .mobile-menu-btn {
        display: block;
    }
    .mobile-nav.active {
        display: block;
    }
    .tools-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .contact-buttons {
        flex-direction: column;
    }
    .hero-title {
        font-size: 3rem;
    }
    .section-title {
        font-size: 2.5rem;
    }
}

@media (min-width: 640px) {
    .contact-buttons {
        flex-direction: row;
        justify-content: center;
    }
}
