/* ============================================
   Paleafei Consulting — Landing Page
   "Simplicity is the ultimate sophistication."
   ============================================ */

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

/* --- Cloud gradient background --- */

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(212, 219, 237, 0.6) 0%, transparent 50%),
        radial-gradient(ellipse at 75% 30%, rgba(197, 213, 234, 0.5) 0%, transparent 45%),
        radial-gradient(ellipse at 50% 80%, rgba(226, 224, 236, 0.5) 0%, transparent 50%),
        linear-gradient(180deg, #C5D5EA 0%, #F0F4F8 45%, #E2E0EC 100%);
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}

/* Slow-drifting cloud layer */
body::before {
    content: "";
    position: fixed;
    inset: -50%;
    width: 200%;
    height: 200%;
    background:
        radial-gradient(ellipse at 30% 40%, rgba(255, 255, 255, 0.4) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 60%, rgba(212, 219, 237, 0.3) 0%, transparent 45%),
        radial-gradient(ellipse at 50% 20%, rgba(255, 255, 255, 0.3) 0%, transparent 40%);
    animation: drift 80s ease-in-out infinite alternate;
    pointer-events: none;
    z-index: 0;
}

@keyframes drift {
    0% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(-5%, 3%) scale(1.02);
    }
    100% {
        transform: translate(3%, -2%) scale(1);
    }
}

/* --- Layout --- */

main {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem 1.5rem;
    max-width: 640px;
    animation: fadeIn 1.5s ease both;
    animation-delay: 0.3s;
}

footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    text-align: center;
    padding: 1.5rem;
    z-index: 1;
    animation: fadeIn 1.5s ease both;
    animation-delay: 1s;
}

footer p {
    font-size: 0.7rem;
    color: #A8ADBD;
    letter-spacing: 0.05em;
}

/* --- Logo --- */

.logo {
    width: clamp(40px, 5vw, 60px);
    height: auto;
    opacity: 0.85;
    margin-bottom: 3rem;
}

/* --- Quote --- */

blockquote {
    margin-bottom: 3.5rem;
}

blockquote p {
    font-family: Georgia, "Times New Roman", serif;
    font-style: italic;
    font-size: clamp(1.4rem, 3.5vw, 2.2rem);
    line-height: 1.6;
    color: #1E2A4A;
    letter-spacing: 0.01em;
    max-width: 580px;
}

blockquote cite {
    display: block;
    margin-top: 1.5rem;
    font-family: Georgia, "Times New Roman", serif;
    font-style: normal;
    font-size: clamp(0.8rem, 1.2vw, 0.95rem);
    color: #9B9EAB;
    letter-spacing: 0.05em;
}

blockquote cite::before {
    content: "— ";
}

/* --- Coming Soon --- */

.coming-soon {
    font-size: clamp(0.65rem, 1vw, 0.75rem);
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: #A8ADBD;
}

/* --- Fade-in animation --- */

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

/* --- Responsive --- */

@media (max-width: 480px) {
    main {
        padding: 2rem 1.25rem;
    }

    .logo {
        margin-bottom: 2rem;
    }

    blockquote {
        margin-bottom: 2.5rem;
    }
}

@media (min-width: 1600px) {
    main {
        max-width: 720px;
    }
}
