/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #0A0A0A;
    color: #FFFFFF;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #1A1A1A;
}

::-webkit-scrollbar-thumb {
    background: #1ab13e;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #16a34a;
}

/* Utility Classes */
.gradient-text {
    background: linear-gradient(135deg, #1ab13e 0%, #4ade80 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(26, 177, 62, 0.2);
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    opacity: 0;
    transform: translateX(-20px);
    animation: slideInLeft 0.5s ease forwards;
}

.logo-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: linear-gradient(135deg, #1ab13e 0%, #16a34a 100%);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-image {
    width: 2rem;
    height: 2rem;
    object-fit: contain;
}

.logo-text {
    color: #1ab13e;
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: 0.05em;
}

.nav-desktop {
    display: none;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: #FFFFFF;
    text-decoration: none;
    transition: all 0.2s ease;
    opacity: 0;
    transform: translateY(-20px);
    animation: slideInDown 0.5s ease forwards;
}

.nav-link:hover {
    color: #1ab13e;
    transform: scale(1.05);
}

.mobile-menu-btn {
    display: block;
    background: none;
    border: none;
    color: #1ab13e;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger {
    display: block;
    width: 1.5rem;
    height: 2px;
    background: #1ab13e;
    position: relative;
    transition: all 0.3s ease;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: #1ab13e;
    transition: all 0.3s ease;
}

.hamburger::before {
    top: -6px;
}

.hamburger::after {
    bottom: -6px;
}

.mobile-menu-btn.active .hamburger {
    background: transparent;
}

.mobile-menu-btn.active .hamburger::before {
    transform: rotate(45deg);
    top: 0;
}

.mobile-menu-btn.active .hamburger::after {
    transform: rotate(-45deg);
    bottom: 0;
}

.mobile-nav {
    display: none;
    background: #1A1A1A;
    border-radius: 0.5rem;
    margin-top: 0.5rem;
    padding: 0.5rem;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.mobile-nav.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #FFFFFF;
    text-decoration: none;
    padding: 0.75rem;
    border-radius: 0.375rem;
    transition: all 0.2s ease;
}

.mobile-nav-link:hover {
    color: #1ab13e;
    background: rgba(26, 177, 62, 0.1);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #0A0A0A 0%, #1A1A1A 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.1;
}

.pattern-circle {
    position: absolute;
    border: 1px solid #1ab13e;
    border-radius: 50%;
    animation: pulse 3s ease-in-out infinite;
}

.pattern-1 {
    top: 5rem;
    left: 2.5rem;
    width: 8rem;
    height: 8rem;
}

.pattern-2 {
    bottom: 5rem;
    right: 5rem;
    width: 6rem;
    height: 6rem;
    animation-delay: 1s;
}

.pattern-3 {
    top: 50%;
    left: 25%;
    width: 4rem;
    height: 4rem;
    animation-delay: 2s;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 10;
}

.hero-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
    opacity: 0;
    transform: scale(0);
    animation: scaleIn 0.8s ease 0.2s forwards;
}

.hero-logo-icon {
    width: 6rem;
    height: 6rem;
    background: linear-gradient(135deg, #1ab13e 0%, #16a34a 100%);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulseGlow 2s ease-in-out infinite alternate;
}

.hero-logo-image {
    width: 4rem;
    height: 4rem;
    object-fit: contain;
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(20px);
    animation: slideInUp 0.8s ease 0.4s forwards;
}

.hero-subtitle {
    font-size: clamp(1.125rem, 3vw, 1.5rem);
    color: rgba(255, 255, 255, 0.8);
    max-width: 48rem;
    margin: 0 auto 3rem;
    opacity: 0;
    transform: translateY(20px);
    animation: slideInUp 0.8s ease 0.6s forwards;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateY(20px);
    animation: slideInUp 0.8s ease 0.8s forwards;
}

.feature-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #1A1A1A;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    color: #FFFFFF;
    font-size: 0.875rem;
}

.hero-cta {
    margin-bottom: 4rem;
    opacity: 0;
    transform: scale(0.8);
    animation: scaleIn 0.8s ease 1s forwards;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #1ab13e 0%, #16a34a 100%);
    color: #0A0A0A;
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(26, 177, 62, 0.3);
}

.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(26, 177, 62, 0.4);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    max-width: 32rem;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(30px);
    animation: slideInUp 0.8s ease 1.2s forwards;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 1.875rem;
    font-weight: 700;
    color: #1ab13e;
    margin-bottom: 0.25rem;
}

.stat-label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

/* Features Section */
.features {
    padding: 5rem 0;
    background: linear-gradient(135deg, #0A0A0A 0%, #1A1A1A 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: clamp(1.875rem, 5vw, 2.5rem);
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 48rem;
    margin: 0 auto;
}

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

.feature-card {
    background: #0A0A0A;
    border-radius: 1rem;
    padding: 1.5rem;
    border: 1px solid rgba(26, 177, 62, 0.2);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
    animation: slideInUp 0.8s ease forwards;
}

.feature-card:hover {
    border-color: rgba(26, 177, 62, 0.4);
    transform: translateY(-5px);
}

.feature-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.75rem;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.blue-gradient {
    background: linear-gradient(135deg, #1E3A8A 0%, #3B82F6 100%);
}

.green-gradient {
    background: linear-gradient(135deg, #1ab13e 0%, #16a34a 100%);
}

.emerald-gradient {
    background: linear-gradient(135deg, #059669 0%, #10b981 100%);
}

.purple-gradient {
    background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
}

.orange-gradient {
    background: linear-gradient(135deg, #f97316 0%, #ef4444 100%);
}

.pink-gradient {
    background: linear-gradient(135deg, #ec4899 0%, #f43f5e 100%);
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 0.75rem;
}

.feature-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.feature-badge-small {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(26, 177, 62, 0.2);
    color: #1ab13e;
    font-size: 0.875rem;
    font-weight: 500;
}

.badge-dot {
    width: 0.5rem;
    height: 0.5rem;
    background: #1ab13e;
    border-radius: 50%;
}

.ai-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    background: rgba(10, 10, 10, 0.5);
    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid rgba(26, 177, 62, 0.2);
    text-align: center;
}

.stat-item {
    opacity: 0;
    transform: translateY(20px);
    animation: slideInUp 0.8s ease forwards;
}

.stat-item .stat-number {
    font-size: 1.875rem;
    font-weight: 700;
    color: #1ab13e;
    margin-bottom: 0.5rem;
}

.stat-item .stat-label {
    color: rgba(255, 255, 255, 0.6);
}

/* Whitelist Section */
.whitelist {
    padding: 5rem 0;
    background: #1A1A1A;
}

.whitelist-form-container {
    background: #0A0A0A;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(26, 177, 62, 0.2);
    margin-bottom: 3rem;
}

.whitelist-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: #FFFFFF;
    margin-bottom: 0.5rem;
}

.input-wrapper {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.25rem;
}

.form-input {
    width: 100%;
    padding: 0.75rem 0.75rem 0.75rem 3rem;
    background: #2A2A2A;
    border: 1px solid rgba(26, 177, 62, 0.3);
    border-radius: 0.5rem;
    color: #FFFFFF;
    font-size: 1rem;
    transition: all 0.2s ease;
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-input:focus {
    outline: none;
    border-color: #1ab13e;
    box-shadow: 0 0 0 1px #1ab13e;
}

.submit-button {
    width: 100%;
    background: linear-gradient(135deg, #1ab13e 0%, #16a34a 100%);
    color: #0A0A0A;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.submit-button:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(26, 177, 62, 0.3);
}

.submit-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.loading-spinner {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.spinner {
    width: 1.25rem;
    height: 1.25rem;
    border: 2px solid rgba(10, 10, 10, 0.3);
    border-top: 2px solid #0A0A0A;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.form-disclaimer {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
}

.success-message {
    display: none;
    background: #0A0A0A;
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(26, 177, 62, 0.2);
    margin-bottom: 3rem;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.5s ease;
}

.success-message.show {
    display: block;
    opacity: 1;
    transform: scale(1);
}

.success-icon {
    width: 4rem;
    height: 4rem;
    background: #059669;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
}

.success-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 1rem;
}

.success-text {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
}

.register-another-btn {
    background: none;
    border: none;
    color: #1ab13e;
    cursor: pointer;
    text-decoration: underline;
    transition: color 0.2s ease;
}

.register-another-btn:hover {
    color: #4ade80;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.benefit-card {
    background: rgba(10, 10, 10, 0.5);
    border-radius: 0.5rem;
    padding: 1.5rem;
    text-align: center;
    border: 1px solid rgba(26, 177, 62, 0.2);
}

.benefit-icon {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.benefit-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 0.5rem;
}

.benefit-description {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

/* Footer */
.footer {
    background: #0A0A0A;
    border-top: 1px solid rgba(26, 177, 62, 0.2);
    padding: 3rem 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-main {
    grid-column: span 2;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-logo-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: linear-gradient(135deg, #1ab13e 0%, #16a34a 100%);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo-image {
    width: 2rem;
    height: 2rem;
    object-fit: contain;
}

.footer-logo-text {
    color: #1ab13e;
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: 0.05em;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    max-width: 24rem;
    margin-bottom: 1.5rem;
}

.footer-domain {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #1ab13e;
    font-weight: 500;
}

.footer-section-title {
    color: #FFFFFF;
    font-weight: 600;
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: #1ab13e;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.5rem;
    text-decoration: none;
    transition: all 0.2s ease;
}

.social-link:hover {
    color: #3B82F6;
    transform: scale(1.2);
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(26, 177, 62, 0.2);
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
    text-align: center;
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.legal-link {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s ease;
}

.legal-link:hover {
    color: #1ab13e;
}

/* Animations */
@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInDown {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.4;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 0 0 rgba(26, 177, 62, 0.7);
    }
    100% {
        box-shadow: 0 0 0 20px rgba(26, 177, 62, 0);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Responsive Design */
@media (min-width: 768px) {
    .container {
        padding: 0 2rem;
    }
    
    .nav-desktop {
        display: flex;
    }
    
    .mobile-menu-btn {
        display: none;
    }
    
    .nav-link:nth-child(1) { animation-delay: 0.1s; }
    .nav-link:nth-child(2) { animation-delay: 0.2s; }
    .nav-link:nth-child(3) { animation-delay: 0.3s; }
    .nav-link:nth-child(4) { animation-delay: 0.4s; }
    
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
    
    .footer-main {
        grid-column: span 1;
    }
}

@media (min-width: 1024px) {
    .features-grid .feature-card:nth-child(1) { animation-delay: 0.1s; }
    .features-grid .feature-card:nth-child(2) { animation-delay: 0.2s; }
    .features-grid .feature-card:nth-child(3) { animation-delay: 0.3s; }
    .features-grid .feature-card:nth-child(4) { animation-delay: 0.4s; }
    .features-grid .feature-card:nth-child(5) { animation-delay: 0.5s; }
    .features-grid .feature-card:nth-child(6) { animation-delay: 0.6s; }
    
    .ai-stats .stat-item:nth-child(1) { animation-delay: 0.6s; }
    .ai-stats .stat-item:nth-child(2) { animation-delay: 0.7s; }
    .ai-stats .stat-item:nth-child(3) { animation-delay: 0.8s; }
    .ai-stats .stat-item:nth-child(4) { animation-delay: 0.9s; }
}