.orqeo-word {
    display: inline-flex;
    align-items: flex-end;
    position: relative;
    line-height: 1;
    letter-spacing: 0;
}

.orqeo-char {
    display: inline-block;
    opacity: 0;
    transform: translateY(16px);
    color: #f8fafc;
    animation: orqeo-char-in 0.45s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-delay: calc(var(--orqeo-i, 0) * 70ms);
}

.orqeo-char-accent {
    color: #33d1ff;
    text-shadow: 0 0 16px rgba(51, 209, 255, 0.32);
}

.orqeo-underline {
    position: absolute;
    left: 50%;
    bottom: -0.2em;
    width: 0;
    height: 0.12em;
    border-radius: 999px;
    transform: translateX(-50%);
    background: linear-gradient(90deg, #0ea5e9, #22d3ee, #67e8f9);
    animation: orqeo-line-in 0.8s ease-out forwards;
    animation-delay: 340ms;
}

@keyframes orqeo-char-in {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes orqeo-line-in {
    from { width: 0; left: 50%; }
    to { width: 100%; left: 50%; }
}
