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

:root {
    --max-width: 1200px;
    --edge-padding: 40px;
    --content-max-width: 900px;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f5f5f5;
    color: #333;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.container {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: var(--edge-padding);
}

header {
    position: absolute;
    top: var(--edge-padding);
    left: var(--edge-padding);
    animation: fadeIn 0.6s ease-out;
}

.logo {
    height: 40px;
}

main {
    text-align: center;
    max-width: var(--content-max-width);
    width: 100%;
    z-index: 1;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 400;
    line-height: 1.4;
    margin-bottom: 4rem;
    color: #333;
    animation: fadeIn 0.8s ease-out 0.2s both;
}

.brand {
    background: linear-gradient(135deg, #40B5B8, #2DD4DA);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.highlight {
    font-weight: 600;
    color: #333;
}

.regular {
    font-weight: 400;
    color: #666;
}

.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.features .feature-card:nth-child(1) {
    animation: fadeIn 0.8s ease-out 0.4s both;
}

.features .feature-card:nth-child(2) {
    animation: fadeIn 0.8s ease-out 0.5s both;
}

.features .feature-card:nth-child(3) {
    animation: fadeIn 0.8s ease-out 0.6s both;
}

.feature-card {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 16px;
    padding: 2rem 1.5rem;
    transition: all 0.3s ease;
    cursor: default;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: #40B5B8;
}

.feature-card p {
    font-size: 1.1rem;
    font-weight: 500;
    color: #333;
}

.cta-button {
    background-color: #005C5E;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    padding: 1rem 4rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: fadeIn 0.8s ease-out 0.8s both;
    text-decoration: none;
    display: inline-block;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.characters {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 0 var(--edge-padding) 0;
    pointer-events: none;
}

.character-group {
    display: flex;
    align-items: flex-end;
    gap: 10px;
    pointer-events: auto;
}

.character-group.left {
    animation: slideInLeft 1s ease-out 1s both;
}

.character-group.right {
    animation: slideInRight 1s ease-out 1s both;
}

.character {
    height: 120px;
    width: auto;
}

.mobile-only {
    display: none;
}

.desktop-only {
    display: block;
}

@media (max-width: 768px) {
    :root {
        --edge-padding: 24px;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .character {
        height: 80px;
    }
    
    .mobile-only.character {
        height: 180px;
    }
    
    .character-group.left {
        display: none;
    }
    
    .characters {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        display: flex;
        justify-content: center;
        padding: 0;
        margin: 0;
    }
    
    .character-group.right {
        position: static;
    }
    
    .mobile-only {
        display: block;
    }
    
    .desktop-only {
        display: none;
    }
}

@media (max-width: 480px) {
    :root {
        --edge-padding: 16px;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .cta-button {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
    
    .character {
        height: 60px;
    }
    
    .mobile-only.character {
        height: 150px;
    }
    
    .character-group.left {
        display: none;
    }
    
    .characters {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        display: flex;
        justify-content: center;
        padding: 0;
        margin: 0;
    }
    
    .character-group.right {
        position: static;
    }
    
    .mobile-only {
        display: block;
    }
    
    .desktop-only {
        display: none;
    }
}