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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: #90EE90;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.container {
    width: 100%;
    max-width: 1200px;
    padding: 2rem;
    position: relative;
    z-index: 2;
}

.content {
    text-align: center;
    animation: fadeInUp 0.8s ease-out;
}

.logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(4rem, 12vw, 8rem);
    font-weight: 400;
    color: #000000;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    line-height: 1;
    text-transform: uppercase;
    font-style: normal;
    display: inline-block;
}

.logo .letter {
    display: inline-block;
    opacity: 0;
    transform: translateY(50px) scale(0.5) rotate(-10deg);
    animation: letterPopIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.logo .letter:nth-child(1) { animation-delay: 0.1s; }
.logo .letter:nth-child(2) { animation-delay: 0.2s; }
.logo .letter:nth-child(3) { animation-delay: 0.3s; }
.logo .letter:nth-child(4) { animation-delay: 0.4s; }
.logo .letter:nth-child(5) { animation-delay: 0.5s; }
.logo .letter:nth-child(6) { animation-delay: 0.6s; }

.tagline {
    font-size: clamp(1.25rem, 3vw, 2rem);
    font-weight: 600;
    color: #000000;
    margin-bottom: 4rem;
    opacity: 0.9;
    letter-spacing: -0.01em;
}

.features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 4rem;
    align-items: center;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    font-size: clamp(1.125rem, 2.5vw, 1.75rem);
    font-weight: 600;
    color: #000000;
    opacity: 0.85;
    animation: fadeInUp 0.8s ease-out;
    animation-fill-mode: both;
}

.feature-item:nth-child(1) {
    animation-delay: 0.2s;
}

.feature-item:nth-child(2) {
    animation-delay: 0.4s;
}

.feature-item:nth-child(3) {
    animation-delay: 0.6s;
}

.feature-number {
    font-weight: 800;
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    color: #000000;
    opacity: 0.4;
    min-width: 3rem;
    text-align: right;
}

.feature-text {
    text-align: left;
}

.cta-section {
    margin-top: 3rem;
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.cta-button {
    background-color: #000000;
    color: #90EE90;
    border: none;
    padding: 1.25rem 3rem;
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.3);
    background-color: #1a1a1a;
}

.cta-button:active {
    transform: translateY(0);
}

.background-decoration {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.03);
    animation: float 20s infinite ease-in-out;
}

.circle-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.circle-2 {
    width: 200px;
    height: 200px;
    top: 60%;
    right: 15%;
    animation-delay: 5s;
}

.circle-3 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 20%;
    animation-delay: 10s;
}

@keyframes letterPopIn {
    0% {
        opacity: 0;
        transform: translateY(50px) scale(0.5) rotate(-10deg);
    }
    60% {
        transform: translateY(-10px) scale(1.1) rotate(2deg);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1) rotate(0deg);
    }
}

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

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

@media (max-width: 768px) {
    .features {
        gap: 1.5rem;
    }
    
    .feature-item {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .feature-number {
        min-width: auto;
    }
    
    .feature-text {
        text-align: center;
    }
    
    .cta-button {
        padding: 1rem 2rem;
    }
}

