
.fade-out-right {
    transform: translateX(-100%);
    opacity: 0;
}
.splash {
    font-family: "Manrope", sans-serif;
    background: hsl(0, 78%, 48%);
    color: #fff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}
.splash .circle {
    position: absolute;
    border-radius: 50%;
    background: hsl(0, 90%, 58%);
}
.splash .c1 {
    width: 400px;
    height: 400px;
    top: -120px;
    right: -120px;
    opacity: 0.2;
    animation: pulse 3s ease-in-out infinite;
}
.splash .c2 {
    width: 300px;
    height: 300px;
    bottom: -80px;
    left: -80px;
    opacity: 0.15;
    animation: pulse 3s ease-in-out infinite 1.5s;
}
.splash .c3 {
    width: 600px;
    height: 600px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.1;
    animation: pulse 3s ease-in-out infinite 0.8s;
}
.splash .content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 500px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}
.splash .logo {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.2);
    animation: fadeUp 0.8s ease-out 0.2s both;
}
.splash .logo span {
    font-family: "Sora", sans-serif;
    font-weight: 700;
    font-size: 30px;
    color: hsl(0, 78%, 48%);
}
.splash h1 {
    font-family: "Sora", sans-serif;
    font-size: clamp(2rem, 6vw, 3.2rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    animation: fadeUp 0.8s ease-out 0.5s both;
}
.splash h1 .highlight {
    color: rgba(255, 255, 255, 0.85);
}
.splash .tagline {
    font-size: 1.1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.75);
    animation: fadeUp 0.8s ease-out 0.8s both;
}
.splash .cta {
    background: #fff;
    color: hsl(0, 78%, 48%);
    font-family: "Manrope", sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 16px 40px;
    border-radius: 9999px;
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.25);
    transition: all 0.3s;
    animation: fadeUp 0.8s ease-out 1.1s both;
}
.splash .cta:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 32px rgba(255, 255, 255, 0.35);
}
.splash .company {
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    animation: fadeIn 1s ease-out 1.5s both;
}
@keyframes pulse {
    0%,
    100% {
        opacity: 0.4;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.05);
    }
}
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
