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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #000;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(255,255,255,0.08) 1px, transparent 1px),
        radial-gradient(circle at 75% 75%, rgba(11,38,66,0.06) 1px, transparent 1px);
    background-size: 50px 50px;
    color: white;
    overflow-x: hidden;
    cursor: none;
}

.custom-cursor {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 10000;
    mix-blend-mode: difference;
    transition: transform 0.1s ease;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 1rem 2rem;
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    height: 60px;
    position: relative;
    z-index: 1001;
}

.logo-img {
    height: 50px;
    width: auto;
    transition: all 0.3s ease;
}

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

.nav-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
    cursor: pointer;
}

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

.hero-section {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.dots-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.floating-dot {
    position: absolute;
    border-radius: 50%;
    transition: all 0.6s cubic-bezier(0.4, 0.0, 0.2, 1);
    pointer-events: none;
    opacity: 0.7;
    filter: drop-shadow(0 0 8px currentColor);
}

.floating-dot.filled {
    background: radial-gradient(circle, currentColor 0%, currentColor 70%, transparent 100%);
}

.floating-dot.outlined {
    background: transparent;
    border: 2px solid currentColor;
}

.floating-dot.large {
    width: 24px;
    height: 24px;
}

.floating-dot.medium {
    width: 16px;
    height: 16px;
}

.floating-dot.small {
    width: 8px;
    height: 8px;
}

.floating-dot.tiny {
    width: 4px;
    height: 4px;
}

/* Enhanced hover effects */
.floating-dot:hover {
    transform: scale(1.8) !important;
    opacity: 1 !important;
    filter: drop-shadow(0 0 20px currentColor) brightness(1.2);
    z-index: 100;
}

/* Special styling for interactive dots */
.floating-dot.interactive {
    pointer-events: auto;
    cursor: pointer;
    transition: all 0.3s ease;
}

.floating-dot.interactive:hover {
    transform: scale(2) !important;
    filter: drop-shadow(0 0 25px currentColor) brightness(1.5);
}

/* Floating animation keyframes */
@keyframes float {
    0%, 100% {
        transform: translateY(0px) translateX(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-20px) translateX(10px) rotate(90deg);
    }
    50% {
        transform: translateY(-40px) translateX(-5px) rotate(180deg);
    }
    75% {
        transform: translateY(-20px) translateX(-15px) rotate(270deg);
    }
}

@keyframes float2 {
    0%, 100% {
        transform: translateY(0px) translateX(0px) rotate(0deg);
    }
    33% {
        transform: translateY(-30px) translateX(15px) rotate(120deg);
    }
    66% {
        transform: translateY(-15px) translateX(-20px) rotate(240deg);
    }
}

@keyframes float3 {
    0%, 100% {
        transform: translateY(0px) translateX(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-25px) translateX(25px) rotate(180deg);
    }
}

/* Remove old dot styles */
.dot {
    display: none;
}

.hero-text {
    text-align: center;
    z-index: 2;
    position: relative;
    max-width: 1000px;
    padding: 0 2rem;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 8rem);
    font-weight: 700;
    line-height: 0.9;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.6) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0;
    animation: fadeInUp 1.5s ease forwards;
}

.intro-textbox {
    background: #101c11;
    border: 2px solid #7ED957;
    border-radius: 16px;
    padding: 2rem 1.5rem;
    margin-bottom: 2rem;
    color: rgba(255,255,255,0.95);
    font-size: 1.2rem;
    box-shadow: 0 4px 24px rgba(0,0,0,0.15);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    z-index: 10;
    position: relative;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #7ED957, #7ED957);
    border: none;
    border-radius: 50px;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: fadeInUp 1.5s ease 0.6s both;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(126, 217, 87, 0.3);
}

.scroll-section {
    min-height: 100vh;
    padding: 10rem 2rem;
    position: relative;
    z-index: 2;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.9) 20%, #000 100%);
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.5rem;
    background: rgba(126, 217, 87, 0.1);
    border: 1.5px solid rgba(126, 217, 87, 0.3);
    border-radius: 25px;
    color: #7ED957;
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 auto 2rem;
    display: block;
    width: fit-content;
    text-align: center;
}

.gradient-text {
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.1;
    text-align: center;
    background: linear-gradient(135deg, #7ED957 0%, #7ED957 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4rem;
    opacity: 0;
    transform: translateY(100px);
    transition: all 1s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.gradient-text.visible {
    opacity: 1;
    transform: translateY(0);
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto 8rem;
}

.step-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    position: relative;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(50px);
    text-align: center;
}

.step-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.step-card:hover {
    transform: translateY(-10px);
    border-color: rgba(126, 217, 87, 0.3);
    background: linear-gradient(135deg, rgba(126, 217, 87, 0.08) 0%, rgba(126, 217, 87, 0.02) 100%);
}

.step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #7ED957, #7ED957);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
}

.step-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.step-description {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

.features-section {
    padding: 8rem 2rem;
    background: linear-gradient(180deg, transparent 0%, rgba(255, 107, 53, 0.02) 50%, transparent 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 0;
    min-height: 500px;
    z-index: 2;
}

.feature-card.aesthetic {
    background: #101c11;
    color: #fff;
    border: 2px solid #7ED957;
    min-height: 420px;
    max-width: 420px;
    margin: 0 auto;
    border-radius: 20px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.18);
    padding: 2.5rem 2rem 2rem 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    z-index: 2;
    opacity: 1;
}

.feature-icon.aesthetic {
    background: #7ED957;
    color: #101c11;
    border-radius: 50%;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.2rem auto;
}

.feature-title.aesthetic {
    color: #fff;
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 1rem;
    margin-top: 0.5rem;
}

.feature-description.aesthetic {
    color: #bdbdbd;
    font-size: 1.08rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.feature-description.aesthetic ul {
    text-align: left;
    margin: 1rem 0 0 1.5rem;
    padding: 0;
}

.feature-description.aesthetic li {
    margin-bottom: 0.5rem;
    color: #bdbdbd;
    font-size: 1.08rem;
    line-height: 1.6;
}

.contact-section {
    padding: 12rem 2rem;
    text-align: center;
    background: linear-gradient(180deg, transparent 0%, rgba(255, 107, 53, 0.02) 50%, transparent 100%);
    position: relative;
    overflow: hidden;
}

.contact-form {
    max-width: 800px;
    margin: 4rem auto 0 auto;
    padding: 3rem;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-group label {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 1.2rem;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #7ED957;
    background: rgba(126, 217, 87, 0.05);
}

.floating-element {
    position: fixed;
    width: 4px;
    height: 4px;
    background: rgba(126, 217, 87, 0.3);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
}

.social-buttons {
    position: fixed;
    bottom: 32px;
    left: 32px;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.social-buttons.visible {
    opacity: 1;
    pointer-events: auto;
}

.social-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #181f18;
    border: 2px solid #7ED957;
    color: white;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.social-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px rgba(126, 217, 87, 0.3);
    background: #7ED957;
    color: #181f18;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .form-group.full-width {
        grid-column: span 1;
    }
    
    .logo {
        height: 50px;
    }
    
    .logo-img {
        height: 42px;
    }
} 