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

body {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
        "Helvetica Neue", Arial, sans-serif;
    background: #0a0a0f;
    color: #e0e0e8;
    overflow: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(88, 28, 135, 0.15),
        rgba(15, 23, 42, 0.0) 40%,
        rgba(6, 78, 59, 0.12) 60%,
        rgba(15, 23, 42, 0.0) 80%,
        rgba(30, 58, 138, 0.15)
    );
    background-size: 400% 400%;
    animation: gradient-shift 12s ease infinite;
    z-index: -1;
}

@keyframes gradient-shift {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

main {
    text-align: center;
    padding: 2rem;
    max-width: 600px;
    animation: fade-in 1.2s ease both;
}

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

h1 {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #c084fc, #67e8f9, #a78bfa);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    margin-bottom: 2rem;
}

blockquote {
    border-left: 3px solid rgba(167, 139, 250, 0.4);
    padding: 1rem 1.5rem;
    margin: 0 auto 2rem;
    max-width: 440px;
}

blockquote p {
    font-size: 1.15rem;
    line-height: 1.6;
    font-style: italic;
    color: #a5a5b8;
}

.tagline {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #555568;
}
